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

Side by Side Diff: Makefile.standalone

Issue 1614453002: Subzero. X8664. Fix broken call sequence. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fixes target typo. Created 4 years, 11 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 | « no previous file | src/IceTargetLoweringX86BaseImpl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # The following variables will likely need to be modified, depending on where 1 # The following variables will likely need to be modified, depending on where
2 # and how you built LLVM & Clang. They can be overridden in a command-line 2 # and how you built LLVM & Clang. They can be overridden in a command-line
3 # invocation of make, like: 3 # invocation of make, like:
4 # 4 #
5 # make LLVM_SRC_PATH=<path> LIBCXX_INSTALL_PATH=<path> CLANG_PATH=<path> \ 5 # make LLVM_SRC_PATH=<path> LIBCXX_INSTALL_PATH=<path> CLANG_PATH=<path> \
6 # PNACL_BIN_PATH=<path> ... 6 # PNACL_BIN_PATH=<path> ...
7 # 7 #
8 8
9 # LLVM_SRC_PATH is the path to the root of the checked out source code. This 9 # LLVM_SRC_PATH is the path to the root of the checked out source code. This
10 # directory should contain the configure script, the include/ and lib/ 10 # directory should contain the configure script, the include/ and lib/
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 MINIMAL=1 check 490 MINIMAL=1 check
491 # Check that there are no g++ build errors or warnings. 491 # Check that there are no g++ build errors or warnings.
492 +make -f Makefile.standalone \ 492 +make -f Makefile.standalone \
493 GPLUSPLUS=1 compile_only 493 GPLUSPLUS=1 compile_only
494 # Check the x86 assembler unit tests. 494 # Check the x86 assembler unit tests.
495 +make -f Makefile.standalone \ 495 +make -f Makefile.standalone \
496 DEBUG=1 CHECK_X86_ASM=1 check-unit 496 DEBUG=1 CHECK_X86_ASM=1 check-unit
497 # Run lit tests, cross tests, unit tests, and spec2k/x86-32. 497 # Run lit tests, cross tests, unit tests, and spec2k/x86-32.
498 +make -f Makefile.standalone \ 498 +make -f Makefile.standalone \
499 check check-spec 499 check check-spec
500 # Run spec2k/x86-64.
501 +make -f Makefile.standalone \
502 TARGET=x8664 check-spec
500 # Build spec2k under -Om1/x86-32, to check for liveness errors. 503 # Build spec2k under -Om1/x86-32, to check for liveness errors.
501 +make -f Makefile.standalone \ 504 +make -f Makefile.standalone \
502 SPECFLAGS='-Om1' SPECBUILDONLY=true check-spec 505 SPECFLAGS='-Om1' SPECBUILDONLY=true check-spec
506 # Build spec2k under -Om1/x86-64, to check for liveness errors.
507 +make -f Makefile.standalone \
508 SPECFLAGS='-Om1' TARGET=x8664 SPECBUILDONLY=true check-spec
503 # Run spec2k for x86-32 without advanced phi lowering. 509 # Run spec2k for x86-32 without advanced phi lowering.
504 +make -f Makefile.standalone \ 510 +make -f Makefile.standalone \
505 SPECFLAGS='--sz=--phi-edge-split=0' check-spec 511 SPECFLAGS='--sz=--phi-edge-split=0' check-spec
512 # Run spec2k for x86-64 without advanced phi lowering.
513 +make -f Makefile.standalone \
514 SPECFLAGS='--sz=--phi-edge-split=0' TARGET=x8664 check-spec
506 # Run cross tests and lit tests to validate filetype=asm output. 515 # Run cross tests and lit tests to validate filetype=asm output.
507 +make -f Makefile.standalone \ 516 +make -f Makefile.standalone \
508 FORCEASM=1 check-xtest check-lit 517 FORCEASM=1 check-xtest check-lit
509 # Build spec2k for arm32. 518 # Build spec2k for arm32.
510 +make -f Makefile.standalone \ 519 +make -f Makefile.standalone \
511 TARGET=arm32 SPECBUILDONLY=true check-spec 520 TARGET=arm32 SPECBUILDONLY=true check-spec
512 # Build spec2k under -Om1/arm32. 521 # Build spec2k under -Om1/arm32.
513 +make -f Makefile.standalone \ 522 +make -f Makefile.standalone \
514 TARGET=arm32 SPECFLAGS='-Om1' SPECBUILDONLY=true check-spec 523 TARGET=arm32 SPECFLAGS='-Om1' SPECBUILDONLY=true check-spec
515 # Run a few spec2k tests for arm32 using qemu. Keep the list sorted in 524 # Run a few spec2k tests for arm32 using qemu. Keep the list sorted in
(...skipping 25 matching lines...) Expand all
541 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html 550 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html
542 551
543 docs: 552 docs:
544 make -C docs -f Makefile.standalone 553 make -C docs -f Makefile.standalone
545 554
546 clean: 555 clean:
547 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json 556 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json
548 557
549 clean-all: clean 558 clean-all: clean
550 rm -rf build/ crosstest/Output/ 559 rm -rf build/ crosstest/Output/
OLDNEW
« no previous file with comments | « no previous file | src/IceTargetLoweringX86BaseImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698