Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Unified Diff: build/config/sanitizers/sanitizers.gni

Issue 2916363003: Disable custom libcxx on mac fuzzer builds (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/sanitizers/sanitizers.gni
diff --git a/build/config/sanitizers/sanitizers.gni b/build/config/sanitizers/sanitizers.gni
index 17f4d9633f0e141f84c0dfe130de02982e79dead..829bc435b568a9128cbf49a67ec28f02fc17569b 100644
--- a/build/config/sanitizers/sanitizers.gni
+++ b/build/config/sanitizers/sanitizers.gni
@@ -139,7 +139,7 @@ declare_args() {
# This is intended to be used for instrumented builds.
use_custom_libcxx =
(is_asan && is_linux && !is_chromeos) || is_tsan || is_msan || is_ubsan ||
- is_ubsan_security || use_libfuzzer || use_afl
+ is_ubsan_security || (use_libfuzzer && !is_mac) || use_afl
Tom Anderson 2017/06/02 20:27:40 Should this entire thing be wrapped in "is_linux &
Nico 2017/06/02 20:38:35 I think we use it on android too.
# Enable -fsanitize-coverage.
use_sanitizer_coverage =
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698