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 d8cee98 commit 803d80cCopy full SHA for 803d80c
build-scripts/detect-environment
@@ -358,6 +358,10 @@ detect_tools()
358
export PATCH
359
}
360
361
+# This function appends the -j/--jobs option to the MAKEFLAGS environment
362
+# variable based on the number of cores. However, the variable is overwritten in
363
+# the "install-dependencies" script. I created a ticket fix this (see
364
+# ENT-13041).
365
detect_cores()
366
{
367
case "$OS_FAMILY" in
build-scripts/install-dependencies
@@ -8,6 +8,8 @@
8
PATH=$PATH:$BASEDIR/buildscripts/deps-packaging
9
10
# Not all dependencies support building in parallel.
11
+# TODO: Investigate if this is still the case or disable parallel jobs for only
12
+# the dependencies that not support it. (ENT-13041)
13
MAKEFLAGS=-j1
14
15
set -x
0 commit comments