================ @@ -43,6 +43,12 @@ // RUN: %clang -fsanitize=fuzzer --target=i386-unknown-linux -stdlib=libc++ -static-libstdc++ %s -### 2>&1 | FileCheck --check-prefixes=CHECK-LIBCXX-STATIC %s // CHECK-LIBCXX-STATIC: "-Bstatic" "-lc++" +// Check that we add required sanitizer dependencies when dynamically linking +// the sanitizer runtime (e.g. libFuzzer uses ceilf in libm). ---------------- bjosv wrote:
> libFuzzer is always linked statically isn't it? Yes, it seems to require static linking. I've think I have seen some reasoning why in the code, but don't remember where. I added tests for both `-static-libsan` and without `-shared-libsan` as you proposed to get better coverage. https://github.com/llvm/llvm-project/pull/164842 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
