dist-cores.sh : Add big stack rule for unix target

This commit is contained in:
twinaphex 2016-02-05 17:38:09 +01:00
parent 0ed22af4f5
commit feb744fafe

View File

@ -150,6 +150,8 @@ for f in *_${platform}.${EXT} ; do
make -C ../ -f Makefile.griffin platform=${platform} clean || exit 1
elif [ $PLATFORM = "emscripten" ]; then
make -C ../ -f Makefile.emscripten LTO=$lto -j7 clean || exit 1
elif [ $PLATFORM = "unix" ]; then
make -C ../ -f Makefile LINK=g++ LTO=$lto -j7 clean || exit 1
else
make -C ../ -f Makefile.${platform} clean || exit 1
fi