Skip to content

Commit 94c2e46

Browse files
committed
Simplify build-script: LLVM_LIT_ARGS is already being added to cmake_options.
1 parent a7f2f1b commit 94c2e46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/build-script-impl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2527,8 +2527,8 @@ for host in "${ALL_HOSTS[@]}"; do
25272527

25282528
if [[ "${ENABLE_ASAN}" ]] ; then
25292529
# Limit the number of parallel tests.
2530-
cmake_options+=(
2531-
-DLLVM_LIT_ARGS="--threads=$(sysctl hw.physicalcpu | cut -d : -f 2)"
2530+
LLVM_LIT_ARGS+=(
2531+
"--threads=$(sysctl hw.physicalcpu | cut -d : -f 2)"
25322532
)
25332533
fi
25342534
fi

0 commit comments

Comments
 (0)