diff options
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -13,7 +13,8 @@ make -C gcc $CCOPT $CXXOPT mv gcc/agbcc . # not sure if the ARM compiler is the old one or the new one (-DOLD_COMPILER) [ ! -e gcc_arm/Makefile ] || make -C gcc_arm clean -cd gcc_arm && ./configure --target=arm-elf --host=i686-linux-gnu && make cc1 && cd .. +rm -f gcc_arm/config.status gcc_arm/config.cache +cd gcc_arm && ./configure --target=arm-elf --host=i386-linux-gnu && make cc1 && cd .. mv gcc_arm/cc1 agbcc_arm make -C libgcc clean make -C libgcc $CCOPT $CXXOPT |