folly
folly copied to clipboard
Fixing usage of FOLLY_SANITIZE_ADDRESS in folly/fibers and include experimental/exception_tracer in library
FOLLY_SANITIZE_ADDRESS
is used invalidly in these cases. This is causing ASAN build failures when using the library if the library is build without ASAN but the program using it is built with ASAN. Instead these should be calls to FOLLY_LIBRARY_SANITIZE_ADDRESS
.
@yfeldblum Is this PR ready to be merged? I encountered the same problem when depending on folly as a prebuilt library.
This is a bit tricky since builds fail with this PR based on things being inconsistently guarded.