VCMI compiles

This commit is contained in:
Sergii Pylypenko
2013-02-21 20:33:52 +02:00
parent d0ee583da2
commit 4971d35d50
16 changed files with 97 additions and 185 deletions

View File

@@ -1,4 +1,6 @@
#!/bin/sh
make -j4 2>&1 | tee build.log
# 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 | tee build.log
[ -f libapplication.so ] || exit 1
exit 0