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 f3fbea2 commit 98a845cCopy full SHA for 98a845c
.ci/monolithic-linux.sh
@@ -52,4 +52,5 @@ cmake -S ${MONOREPO_ROOT}/llvm -B ${BUILD_DIR} \
52
-D LLVM_CCACHE_BUILD=ON
53
54
echo "--- ninja"
55
-ninja -C ${BUILD_DIR} ${targets}
+# Targets are not escaped as they are passed as separate arguments.
56
+ninja -C "${BUILD_DIR}" ${targets}
.ci/monolithic-windows.sh
@@ -51,4 +51,5 @@ cmake -S ${MONOREPO_ROOT}/llvm -B ${BUILD_DIR} \
51
-D CMAKE_CXX_COMPILER_LAUNCHER=sccache
-ninja -C "${BUILD_DIR}" "${targets}"
0 commit comments