Skip to content

Commit 1880e41

Browse files
authored
Fix the OSS fuzz build. (llvm#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
1 parent d19d8e0 commit 1880e41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/utils/ci/oss-fuzz.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ MONOREPO_ROOT=${PWD}
1414

1515
mkdir ${BUILD}
1616
cmake -S ${MONOREPO_ROOT}/runtimes -B ${BUILD} \
17-
-DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi" \
17+
-DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi;libunwind" \
1818
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
1919
-DCMAKE_INSTALL_PREFIX="${INSTALL}"
2020
cmake --build ${BUILD} --target install-cxx-headers

0 commit comments

Comments
 (0)