OLD | NEW |
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 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 --toolchain-root $(TOOLCHAIN_ROOT) \ | 439 --toolchain-root $(TOOLCHAIN_ROOT) \ |
440 $(FORCEASM_FLAG) \ | 440 $(FORCEASM_FLAG) \ |
441 $(FORCEASM_XTEST_EXCLUDES) \ | 441 $(FORCEASM_XTEST_EXCLUDES) \ |
442 -i x8632,native,sse2 \ | 442 -i x8632,native,sse2 \ |
443 -i x8632,native,sse4.1,test_vector_ops \ | 443 -i x8632,native,sse4.1,test_vector_ops \ |
444 -i x8632,sandbox,sse4.1,Om1 \ | 444 -i x8632,sandbox,sse4.1,Om1 \ |
445 -i x8632,nonsfi,sse2,O2 \ | 445 -i x8632,nonsfi,sse2,O2 \ |
446 -i x8664,native,sse2 \ | 446 -i x8664,native,sse2 \ |
447 -i x8664,native,sse4.1,test_vector_ops \ | 447 -i x8664,native,sse4.1,test_vector_ops \ |
448 -i x8664,sandbox,sse4.1,Om1 \ | 448 -i x8664,sandbox,sse4.1,Om1 \ |
449 -i arm32,neon \ | 449 -i arm32,neon |
450 -e arm32,neon,test_vector_ops \ | |
451 -e arm32,nonsfi \ | |
452 -e arm32,neon,test_vector_ops | |
453 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ | 450 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ |
454 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv $(CHECK_XTEST_TESTS) | 451 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv $(CHECK_XTEST_TESTS) |
455 endif | 452 endif |
456 | 453 |
457 check-unit: $(OBJDIR)/run_unittests | 454 check-unit: $(OBJDIR)/run_unittests |
458 $(OBJDIR)/run_unittests | 455 $(OBJDIR)/run_unittests |
459 | 456 |
460 # List the spec2k components in roughly reverse order of runtime, to help with | 457 # List the spec2k components in roughly reverse order of runtime, to help with |
461 # parallel execution speed. | 458 # parallel execution speed. |
462 ALLSPEC := 253.perlbmk 177.mesa 188.ammp 256.bzip2 164.gzip 179.art 183.equake \ | 459 ALLSPEC := 253.perlbmk 177.mesa 188.ammp 256.bzip2 164.gzip 179.art 183.equake \ |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 @cat Makefile.standalone-help/check-lit.txt | 566 @cat Makefile.standalone-help/check-lit.txt |
570 | 567 |
571 help-check-xtest: | 568 help-check-xtest: |
572 @cat Makefile.standalone-help/check-xtest.txt | 569 @cat Makefile.standalone-help/check-xtest.txt |
573 | 570 |
574 clean: | 571 clean: |
575 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 572 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
576 | 573 |
577 clean-all: clean | 574 clean-all: clean |
578 rm -rf build/ crosstest/Output/ | 575 rm -rf build/ crosstest/Output/ |
OLD | NEW |