Skip to content

Commit 4ed65b9

Browse files
committed
Allow up to 8 parallel jobs in conda recipe.
1 parent 913cdbc commit 4ed65b9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

conda-recipe/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if [[ `uname` == Darwin ]]; then
1111
export DYLD_FALLBACK_LIBRARY_PATH="${PREFIX}/lib"
1212
fi
1313

14-
MYNCPU=$(( (CPU_COUNT > 4) ? 4 : CPU_COUNT ))
14+
MYNCPU=$(( (CPU_COUNT > 8) ? 8 : CPU_COUNT ))
1515

1616
# Build the library and unit test program.
1717
scons -j $MYNCPU lib alltests

0 commit comments

Comments
 (0)