We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc54261 commit b95bcc9Copy full SHA for b95bcc9
Makefile
@@ -183,7 +183,7 @@ endef
183
# Handle CPUS and THREADS
184
CPUS_DETECT_SCRIPT := ./mk/detect-cpu-count.sh
185
CPUS := $(shell if [ -x $(CPUS_DETECT_SCRIPT) ]; then $(CPUS_DETECT_SCRIPT); else echo 2; fi)
186
-THREADS ?= $(shell echo $$(( 2 * $(CPUS) + 1 )))
+THREADS ?= $(shell echo $$(( $(CPUS) + 1 )))
187
188
# Files that will be generated by config.status from their .in counterparts
189
# FIXME: This is stupid. Why do we patch versions across multiple libraries? Idiotic.
0 commit comments