aboutsummaryrefslogtreecommitdiff
path: root/libcxx/utils
diff options
context:
space:
mode:
authorEric <eric@efcs.ca>2024-03-25 17:34:43 -0400
committerGitHub <noreply@github.com>2024-03-25 17:34:43 -0400
commit1880e41a4cd0bdd5abec955134ddd49d2b016f89 (patch)
tree75a8683a0dd349dfa99f2509a8fd9eef9ca5483e /libcxx/utils
parentd19d8e05b35221e62db76ba798995f5bc870620b (diff)
downloadllvm-1880e41a4cd0bdd5abec955134ddd49d2b016f89.zip
llvm-1880e41a4cd0bdd5abec955134ddd49d2b016f89.tar.gz
llvm-1880e41a4cd0bdd5abec955134ddd49d2b016f89.tar.bz2
Fix the OSS fuzz build. (#86562)
The OSS fuzz build has been broken for a while because of changes to the cmake configuration. This patch fixes the issues by defaulting to libunwind as the default runtime
Diffstat (limited to 'libcxx/utils')
-rwxr-xr-xlibcxx/utils/ci/oss-fuzz.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/utils/ci/oss-fuzz.sh b/libcxx/utils/ci/oss-fuzz.sh
index d5e7fce..e572340 100755
--- a/libcxx/utils/ci/oss-fuzz.sh
+++ b/libcxx/utils/ci/oss-fuzz.sh
@@ -14,7 +14,7 @@ MONOREPO_ROOT=${PWD}
mkdir ${BUILD}
cmake -S ${MONOREPO_ROOT}/runtimes -B ${BUILD} \
- -DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi" \
+ -DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi;libunwind" \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX="${INSTALL}"
cmake --build ${BUILD} --target install-cxx-headers