Skip to content

Commit b95bcc9

Browse files
author
GHC GitLab CI
committed
Remove wrong 2x cpu + 1 setting. We should not overprovision taht aggressively.
1 parent cc54261 commit b95bcc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ endef
183183
# Handle CPUS and THREADS
184184
CPUS_DETECT_SCRIPT := ./mk/detect-cpu-count.sh
185185
CPUS := $(shell if [ -x $(CPUS_DETECT_SCRIPT) ]; then $(CPUS_DETECT_SCRIPT); else echo 2; fi)
186-
THREADS ?= $(shell echo $$(( 2 * $(CPUS) + 1 )))
186+
THREADS ?= $(shell echo $$(( $(CPUS) + 1 )))
187187

188188
# Files that will be generated by config.status from their .in counterparts
189189
# FIXME: This is stupid. Why do we patch versions across multiple libraries? Idiotic.

0 commit comments

Comments
 (0)