VCMI: aimlessly messing around

This commit is contained in:
pelya
2013-08-03 15:48:21 +03:00
parent badb381f3f
commit 8349494361
7 changed files with 25 additions and 19 deletions

View File

@@ -1,7 +1,7 @@
#!/bin/sh
# With default -O3 optimization each G++ process eats 2Gb RAM, so tone optimization down to -O2, and limit make to two jobs
{ make -j2 2>&1 || exit 1 ; } | tee build.log
{ make -j4 2>&1 || exit 1 ; } | tee build.log
[ -f libapplication.so ] || exit 1
mv -f libapplication.so libapplication-armeabi-v7a.so
exit 0