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

Unified Diff: Makefile.standalone

Issue 1257283004: Iasm and obj lowering for advanced switch lowering. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Rebase Created 5 years, 5 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 | « no previous file | src/IceAssembler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.standalone
diff --git a/Makefile.standalone b/Makefile.standalone
index 746d216208d0b2a44bd29ab67c931e4cf2ddba99..233b707b7c230362d9459bc1b12d221ef7f7db68 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -102,6 +102,12 @@ ifdef TSAN
LD_EXTRA += -fsanitize=thread
endif
+ifdef ASAN
+ OBJDIR := $(OBJDIR)+ASan
+ CXX_EXTRA += -fsanitize=address
+ LD_EXTRA += -fsanitize=address
+endif
+
SB_OBJDIR := $(OBJDIR)+Sandboxed
$(info -----------------------------------------------)
« no previous file with comments | « no previous file | src/IceAssembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698