diff options
| -rwxr-xr-x | .ci/monolithic-linux.sh | 2 | ||||
| -rwxr-xr-x | .ci/monolithic-windows.sh | 2 | ||||
| -rw-r--r-- | llvm/utils/TableGen/llvm-tblgen.cpp | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/.ci/monolithic-linux.sh b/.ci/monolithic-linux.sh index ca590630bd94..4a8418d7baa8 100755 --- a/.ci/monolithic-linux.sh +++ b/.ci/monolithic-linux.sh @@ -65,7 +65,7 @@ cmake -S "${MONOREPO_ROOT}"/llvm -B "${BUILD_DIR}" \ start-group "ninja" # Targets are not escaped as they are passed as separate arguments. -ninja -C "${BUILD_DIR}" ${targets} |& tee ninja.log +ninja -C "${BUILD_DIR}" -k 0 ${targets} |& tee ninja.log cp ${BUILD_DIR}/.ninja_log ninja.ninja_log if [[ "${runtime_targets}" != "" ]]; then diff --git a/.ci/monolithic-windows.sh b/.ci/monolithic-windows.sh index 51f97cf894a4..7b926b87f362 100755 --- a/.ci/monolithic-windows.sh +++ b/.ci/monolithic-windows.sh @@ -52,7 +52,7 @@ cmake -S "${MONOREPO_ROOT}"/llvm -B "${BUILD_DIR}" \ start-group "ninja" # Targets are not escaped as they are passed as separate arguments. -ninja -C "${BUILD_DIR}" ${targets} |& tee ninja.log +ninja -C "${BUILD_DIR}" -k 0 ${targets} |& tee ninja.log cp ${BUILD_DIR}/.ninja_log ninja.ninja_log if [[ "${runtimes_targets}" != "" ]]; then diff --git a/llvm/utils/TableGen/llvm-tblgen.cpp b/llvm/utils/TableGen/llvm-tblgen.cpp index cb1a1f44d456..a38382472a99 100644 --- a/llvm/utils/TableGen/llvm-tblgen.cpp +++ b/llvm/utils/TableGen/llvm-tblgen.cpp @@ -12,8 +12,6 @@ #include "Basic/TableGen.h" -#error compilation failure - /// Command line parameters are shared between llvm-tblgen and llvm-min-tblgen. /// The indirection to tblgen_main exists to ensure that the static variables /// for the llvm::cl:: mechanism are linked into both executables. |
