diff options
-rwxr-xr-x | build | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -6,5 +6,8 @@ install: mkdir -p dest/usr/bin cp src/c89/c89.sh dest/usr/bin/c89 cp src/c99/c99.sh dest/usr/bin/c99 - ln -s gcc-4.7 dest/usr/bin/gcc + set -e; for target in $$(cat ../targets); do \ + ln -s "$${target}-gcc-4.7" "dest/usr/bin/$${target}-gcc"; \ + ln -s "$${target}-g++-4.7" "dest/usr/bin/$${target}-g++"; \ + done oh-installfiles |