From 7dbc7fc3efb59869389376809a641e9feb3ef413 Mon Sep 17 00:00:00 2001 From: bryan Date: Sat, 30 Nov 2024 20:57:50 -0500 Subject: [PATCH] Multicore --debug make --- openwrtbuilder | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openwrtbuilder b/openwrtbuilder index 51cc2f8..99bd614 100755 --- a/openwrtbuilder +++ b/openwrtbuilder @@ -578,7 +578,8 @@ from_source() { execute make "${make_opts[@]}" "-j1" distclean # TODO 'dirclean' has a bug that triggers menuconfig execute make "${make_opts[@]}" "-j1" defconfig execute make "${make_opts[@]}" "-j1" download - ((DEBUG)) && make_opts+=("-j1") || make_opts+=("-j$(($(nproc)+1))") + # ((DEBUG)) && make_opts+=("-j1") || make_opts+=("-j$(($(nproc)+1))") + make_opts+=("-j$(($(nproc)+1))") # Make image if ! execute ionice -c 3 chrt --idle 0 nice -n19 make "${make_opts[@]}" world; then