summarylogtreecommitdiffstats
path: root/0003-avbin-faster-build.patch
diff options
context:
space:
mode:
Diffstat (limited to '0003-avbin-faster-build.patch')
-rw-r--r--0003-avbin-faster-build.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/0003-avbin-faster-build.patch b/0003-avbin-faster-build.patch
new file mode 100644
index 000000000000..dec34fda6014
--- /dev/null
+++ b/0003-avbin-faster-build.patch
@@ -0,0 +1,21 @@
+diff -Naurp a/build.sh b/build.sh
+--- a/build.sh 2019-04-28 20:38:04.000000000 +0000
++++ b/build.sh 2019-04-28 20:40:47.942736577 +0000
+@@ -146,7 +146,7 @@ die_usage() {
+ echo
+ echo "Options"
+ echo " --clean Don't build, just clean up all generated files and directories."
+- echo " --fast Use 'make -j4' when compiling"
++ echo " --fast Use 'make -j<threads+1>' when compiling"
+ echo " --help Display this help text."
+ echo " --rebuild Don't reconfigure, just run make again."
+ echo
+@@ -164,7 +164,7 @@ die_usage() {
+ for arg in $* ; do
+ case $arg in
+ "--fast")
+- FAST="-j4" ;;
++ FAST="-j$(($(nproc)+1))" ;;
+ "--help")
+ die_usage ;;
+ "--rebuild")