From 60361eb8f257074a7fe6112f27ca8866794b1ac8 Mon Sep 17 00:00:00 2001 From: Paul Osmialowski Date: Sat, 31 Aug 2024 10:52:04 +0100 Subject: [PATCH] build: the toolchain can be installed anywhere, e.g. in the home directory As long as the cross-compiler is in the PATH, there should be no complaints. --- Tools/build-armm4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tools/build-armm4 b/Tools/build-armm4 index 16812c975d..37887fc625 100755 --- a/Tools/build-armm4 +++ b/Tools/build-armm4 @@ -1,7 +1,7 @@ #!/bin/sh -X=`which /opt/gcc-arm-eabi/bin/arm-none-eabi-gcc` +X=`which arm-none-eabi-gcc` if [ "$X" = "" ]; then - echo "gcc: /opt/gcc-arm-eabi/bin/arm-none-eabi-gcc is required" + echo "gcc: arm-none-eabi-gcc is required" exit 1 fi