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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « Makefile.standalone ('k') | src/IceCompileServer.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Targets: 1 Targets:
2 2
3 check-lit - run the lit tests 3 check-lit - run the lit tests
4 check-xtest - run the cross tests 4 check-xtest - run the cross tests
5 5
6 For more detailed help: 6 Additional 'make' command options:
7 MINIMAL=1
8 Create a minimal build, as small and fast as possible
9 DEBUG=1
10 Compile with -O0 instead of -O2
11 NODUMP=1
12 Disable textual dump/emission support and other verbose options
13 NOASSERT=1
14 Disable assert() calls, via -DNDEBUG
15 UBSAN=1
16 Enable UBSan support, i.e. -fsanitize=undefined
17 UBSAN_TRAP=1
18 Enable UBSan support, trapping on errors
19 TSAN=1
20 Enable TSan support, i.e. -fsanitize=thread
21 ASAN=1
22 Enable ASan support, i.e. -fsanitize=address
23 MSAN=1
24 Enable MSan support, i.e. -fsanitize=memory
25 SZTARGET=<target>
26 Restrict support to a single processor target,
27 where <target> is one of {ARM32,MIPS32,X8632,X8664}
28 Most of these options can be combined, e.g.
29 make -f Makefile.standalone NOASSERT=1 NODUMP=1
7 30
8 make -f Makefile.standalone help-<target> , e.g: 31 For more detailed help on a 'make' target:
9 make -f Makefile.standalone help-check-lit 32
33 make -f Makefile.standalone help-<target> , e.g:
34 make -f Makefile.standalone help-check-lit
OLDNEW
« 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