diff options
Diffstat (limited to 'templates')
-rwxr-xr-x | templates/turris.run | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/turris.run b/templates/turris.run index b7822d2..f41504e 100755 --- a/templates/turris.run +++ b/templates/turris.run @@ -2,10 +2,10 @@ # vim: ft=sh . "$(dirname "$(readlink -f "$0")")/../job.common" ################################################### -compile_params="-j$(nproc)" +compile_params="-j$(nproc) -f" make="make -j$(($(nproc) * 2)) -l$(nproc) BUILD_LOG=1" if [ "$V" -ge 1 ]; then - compile_params=-j1 + compile_params="-j1 -f" make="make -j1 BUILD_LOG=1 V=99" fi ################################################### |