Skip to content

Commit

Permalink
libc: add additional scudo cmake command line options (llvm#312)
Browse files Browse the repository at this point in the history
I just rekicked the cmake cache on the buildbots, which are now failing
the
libc-scudo-integration-test ninja target with linker errors regarding
undefined
reference to gwp_asan related symbols.
  • Loading branch information
nickdesaulniers authored Nov 19, 2024
1 parent a2ed09b commit 6691395
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions zorg/buildbot/builders/annotated/libc-linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@ def main(argv):

if fullbuild and not args.asan and not lint_build and not riscv_build:
cmake_args.append('-DLLVM_LIBC_INCLUDE_SCUDO=ON')
cmake_args.append('-DCOMPILER_RT_BUILD_SCUDO_STANDALONE_WITH_LLVM_LIBC=ON')
cmake_args.append('-DCOMPILER_RT_BUILD_GWP_ASAN=OFF')
cmake_args.append('-DCOMPILER_RT_SCUDO_STANDALONE_BUILD_SHARED=OFF')
cmake_args.append('-DLIBC_INCLUDE_BENCHMARKS=ON')

if fullbuild:
Expand Down

0 comments on commit 6691395

Please sign in to comment.