| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime | 320 check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime |
| 321 @echo "Crosstests disabled, minimal build" | 321 @echo "Crosstests disabled, minimal build" |
| 322 else | 322 else |
| 323 check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime | 323 check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime |
| 324 # Do all native/sse2 tests, but only test_vector_ops for native/sse4.1. | 324 # Do all native/sse2 tests, but only test_vector_ops for native/sse4.1. |
| 325 # For (slow) sandboxed tests, limit to Om1/sse4.1. | 325 # For (slow) sandboxed tests, limit to Om1/sse4.1. |
| 326 ./pydir/crosstest_generator.py -v --lit \ | 326 ./pydir/crosstest_generator.py -v --lit \ |
| 327 --toolchain-root $(TOOLCHAIN_ROOT) \ | 327 --toolchain-root $(TOOLCHAIN_ROOT) \ |
| 328 -i x8632,native,sse2 -i x8632,native,sse4.1,test_vector_ops \ | 328 -i x8632,native,sse2 -i x8632,native,sse4.1,test_vector_ops \ |
| 329 -i x8632,sandbox,sse4.1,Om1 \ | 329 -i x8632,sandbox,sse4.1,Om1 \ |
| 330 » -i arm32,native,neon,Om1,simple_loop | 330 » -i arm32,native,neon,Om1,simple_loop \ |
| 331 » -i arm32,native,neon,Om1,test_stacksave |
| 331 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ | 332 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ |
| 332 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output | 333 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output |
| 333 endif | 334 endif |
| 334 | 335 |
| 335 check-unit: $(OBJDIR)/run_unittests | 336 check-unit: $(OBJDIR)/run_unittests |
| 336 $(OBJDIR)/run_unittests | 337 $(OBJDIR)/run_unittests |
| 337 | 338 |
| 338 check: check-lit check-unit check-xtest | 339 check: check-lit check-unit check-xtest |
| 339 | 340 |
| 340 FORMAT_BLACKLIST = | 341 FORMAT_BLACKLIST = |
| (...skipping 17 matching lines...) Expand all Loading... |
| 358 | 359 |
| 359 docs: | 360 docs: |
| 360 doxygen Doxyfile | 361 doxygen Doxyfile |
| 361 @echo See file://`pwd`/docs/html/index.html | 362 @echo See file://`pwd`/docs/html/index.html |
| 362 | 363 |
| 363 clean: | 364 clean: |
| 364 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 365 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
| 365 | 366 |
| 366 clean-all: clean | 367 clean-all: clean |
| 367 rm -rf build/ docs/ | 368 rm -rf build/ docs/ |
| OLD | NEW |