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

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: 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') | src/IceAssembler.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.standalone
diff --git a/Makefile.standalone b/Makefile.standalone
index c39b926194ce44754bf00b81434619e2562a4085..85fb91f7f6fc0180c12d912f6b0ca95a2ece97d0 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') | src/IceAssembler.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698