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

Unified Diff: Makefile.standalone-help/help.txt

Issue 1787143002: Subzero: Allow Makefile.standalone to build for a single target. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fixed macro Created 4 years, 9 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 | « Makefile.standalone ('k') | src/IceCompileServer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.standalone-help/help.txt
diff --git a/Makefile.standalone-help/help.txt b/Makefile.standalone-help/help.txt
index 4bf2f3a8f665752be5c9b6aa5ad72f20d90b2dcf..d005fc749eb82ae35db6240625018b643178da59 100644
--- a/Makefile.standalone-help/help.txt
+++ b/Makefile.standalone-help/help.txt
@@ -3,7 +3,32 @@ Targets:
check-lit - run the lit tests
check-xtest - run the cross tests
- For more detailed help:
+Additional 'make' command options:
+ MINIMAL=1
+ Create a minimal build, as small and fast as possible
+ DEBUG=1
+ Compile with -O0 instead of -O2
+ NODUMP=1
+ Disable textual dump/emission support and other verbose options
+ NOASSERT=1
+ Disable assert() calls, via -DNDEBUG
+ UBSAN=1
+ Enable UBSan support, i.e. -fsanitize=undefined
+ UBSAN_TRAP=1
+ Enable UBSan support, trapping on errors
+ TSAN=1
+ Enable TSan support, i.e. -fsanitize=thread
+ ASAN=1
+ Enable ASan support, i.e. -fsanitize=address
+ MSAN=1
+ Enable MSan support, i.e. -fsanitize=memory
+ SZTARGET=<target>
+ Restrict support to a single processor target,
+ where <target> is one of {ARM32,MIPS32,X8632,X8664}
+Most of these options can be combined, e.g.
+ make -f Makefile.standalone NOASSERT=1 NODUMP=1
- make -f Makefile.standalone help-<target> , e.g:
- make -f Makefile.standalone help-check-lit
+For more detailed help on a 'make' target:
+
+ make -f Makefile.standalone help-<target> , e.g:
+ make -f Makefile.standalone help-check-lit
« no previous file with comments | « Makefile.standalone ('k') | src/IceCompileServer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698