Skip to content

Commit

Permalink
build: the toolchain can be installed anywhere, e.g. in the home dire…
Browse files Browse the repository at this point in the history
…ctory

As long as the cross-compiler is in the PATH, there should be no complaints.
  • Loading branch information
pawosm-arm committed Aug 31, 2024
1 parent 9621bc2 commit 60361eb
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 60361eb

Please sign in to comment.