[PATCH] D44532: Add option to disable linking of libcxx into fuzzer

Petr Hosek via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 15 16:40:33 PDT 2018


phosek added a comment.

Can you elaborate on the further issues with cross-compiling libcxx without a libcxxabi you mentioned in your commit message? I'd like to improve the build to handle all cases.



================
Comment at: CMakeLists.txt:41
 mark_as_advanced(COMPILER_RT_BUILD_XRAY_NO_PREINIT)
+option(FUZZER_LINK_LIBCXX "Link a copy of libcxx into libfuzzer" ON)
+mark_as_advanced(FUZZER_LINK_LIBCXX)
----------------
This should be probably called `COMPILER_RT_FUZZER_LINK_LIBCXX` for consistency with other options.


Repository:
  rCRT Compiler Runtime

https://reviews.llvm.org/D44532





More information about the llvm-commits mailing list