[PATCH] D66494: [GWP-ASan] Build stack_trace_compressor_fuzzer.
Mitch Phillips via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 26 15:16:37 PDT 2019
hctim added a comment.
Update: there's a slight problem with the dependency chain that I encountered when whipping up a quick fix:
`stack_trace_compressor_fuzzer` requires:
- libFuzzer
- asan/ubsan/msan (to be useful)
`libFuzzer` needs `COMPILER_RT_HAS_SANITIZER_COMMON=True`
`COMPILER_RT_HAS_SANITIZER_COMMON` needs `LLVM_USE_SANITIZER=False`
... so basically the fuzz target requires sanitization, but providing sanitization would cancel the build of the parent gwp_asan target...
Let me have a think. If I can't hack together a solution soon I'll just comment out the target to unbreak you.
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D66494/new/
https://reviews.llvm.org/D66494
More information about the llvm-commits
mailing list