| 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 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime | 398 check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime |
| 399 # Do all native/sse2 tests, but only test_vector_ops for native/sse4.1. | 399 # Do all native/sse2 tests, but only test_vector_ops for native/sse4.1. |
| 400 # For (slow) sandboxed tests, limit to Om1/sse4.1. | 400 # For (slow) sandboxed tests, limit to Om1/sse4.1. |
| 401 # TODO(jpp): implement x8664 sandbox, then enable xtests. | 401 # TODO(jpp): implement x8664 sandbox, then enable xtests. |
| 402 # TODO(jpp): reenable the x86-64 tests. | 402 # TODO(jpp): reenable the x86-64 tests. |
| 403 ./pydir/crosstest_generator.py -v --lit \ | 403 ./pydir/crosstest_generator.py -v --lit \ |
| 404 --toolchain-root $(TOOLCHAIN_ROOT) \ | 404 --toolchain-root $(TOOLCHAIN_ROOT) \ |
| 405 -i x8632,native,sse2 \ | 405 -i x8632,native,sse2 \ |
| 406 -i x8632,native,sse4.1,test_vector_ops \ | 406 -i x8632,native,sse4.1,test_vector_ops \ |
| 407 -i x8632,sandbox,sse4.1,Om1 \ | 407 -i x8632,sandbox,sse4.1,Om1 \ |
| 408 -i x8632,nonsfi,sse2,O2 -e x8632,nonsfi,test_select \ | 408 -i x8632,nonsfi,sse2,O2 \ |
| 409 -i x8664,native,sse2 \ | 409 -i x8664,native,sse2 \ |
| 410 -i x8664,native,sse4.1,test_vector_ops \ | 410 -i x8664,native,sse4.1,test_vector_ops \ |
| 411 -e x8664,sandbox,sse4.1,Om1 \ | 411 -e x8664,sandbox,sse4.1,Om1 \ |
| 412 -i arm32,neon \ | 412 -i arm32,neon \ |
| 413 -e arm32,nonsfi \ | 413 -e arm32,nonsfi \ |
| 414 -e arm32,neon,test_vector_ops \ | 414 -e arm32,neon,test_vector_ops \ |
| 415 -e arm32,neon,test_select | 415 -e arm32,neon,test_select |
| 416 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ | 416 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ |
| 417 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output | 417 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output |
| 418 endif | 418 endif |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 | 511 |
| 512 docs: | 512 docs: |
| 513 doxygen Doxyfile | 513 doxygen Doxyfile |
| 514 @echo See file://`pwd`/docs/html/index.html | 514 @echo See file://`pwd`/docs/html/index.html |
| 515 | 515 |
| 516 clean: | 516 clean: |
| 517 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 517 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
| 518 | 518 |
| 519 clean-all: clean | 519 clean-all: clean |
| 520 rm -rf build/ docs/ | 520 rm -rf build/ docs/ |
| OLD | NEW |