Skip to content

Commit

Permalink
Merge pull request #1084 from pawosm-arm/no-outsmarting
Browse files Browse the repository at this point in the history
build: the toolchain can be installed anywhere, e.g. in the home directory
  • Loading branch information
EtchedPixels committed Aug 31, 2024
2 parents 9621bc2 + 60361eb commit 5332970
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tools/build-armm4
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 5332970

Please sign in to comment.