Skip to content

Commit 6691395

Browse files
libc: add additional scudo cmake command line options (#312)
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.
1 parent a2ed09b commit 6691395

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

zorg/buildbot/builders/annotated/libc-linux.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,9 @@ def main(argv):
9393

9494
if fullbuild and not args.asan and not lint_build and not riscv_build:
9595
cmake_args.append('-DLLVM_LIBC_INCLUDE_SCUDO=ON')
96+
cmake_args.append('-DCOMPILER_RT_BUILD_SCUDO_STANDALONE_WITH_LLVM_LIBC=ON')
97+
cmake_args.append('-DCOMPILER_RT_BUILD_GWP_ASAN=OFF')
98+
cmake_args.append('-DCOMPILER_RT_SCUDO_STANDALONE_BUILD_SHARED=OFF')
9699
cmake_args.append('-DLIBC_INCLUDE_BENCHMARKS=ON')
97100

98101
if fullbuild:

0 commit comments

Comments
 (0)