# HG changeset patch # User Michael Pavone # Date 1488101377 28800 # Node ID 22b4297a5913eeda30af950490df64829e89f5db # Parent 1fee3c14e607cdfdeb2c74ef0a398f1445790a50 Add some parallelism to build_release make invocations diff -r 1fee3c14e607 -r 22b4297a5913 build_release --- a/build_release Sun Feb 26 01:10:09 2017 -0800 +++ b/build_release Sun Feb 26 01:29:37 2017 -0800 @@ -9,7 +9,7 @@ if [ $OS = "Linux" ]; then cd sdl ./configure - make clean all + make -j4 clean all cd .. rm -rf lib mkdir lib @@ -25,7 +25,7 @@ cd .. fi -make PORTABLE=1 clean all +make PORTABLE=1 -j4 clean all make menu.bin if [ $OS = "Windows" ]; then binaries="dis.exe zdis.exe stateview.exe vgmplay.exe blastem.exe SDL2.dll"