| 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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 » -i arm32,native,neon,Om1,mem_intrin \ |
| 332 » -i arm32,native,neon,Om1,test_stacksave \ |
| 333 » -i arm32,native,neon,Om1,test_strengthreduce |
| 332 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ | 334 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ |
| 333 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output | 335 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output |
| 334 endif | 336 endif |
| 335 | 337 |
| 336 check-unit: $(OBJDIR)/run_unittests | 338 check-unit: $(OBJDIR)/run_unittests |
| 337 $(OBJDIR)/run_unittests | 339 $(OBJDIR)/run_unittests |
| 338 | 340 |
| 339 check: check-lit check-unit check-xtest | 341 check: check-lit check-unit check-xtest |
| 340 | 342 |
| 341 FORMAT_BLACKLIST = | 343 FORMAT_BLACKLIST = |
| (...skipping 17 matching lines...) Expand all Loading... |
| 359 | 361 |
| 360 docs: | 362 docs: |
| 361 doxygen Doxyfile | 363 doxygen Doxyfile |
| 362 @echo See file://`pwd`/docs/html/index.html | 364 @echo See file://`pwd`/docs/html/index.html |
| 363 | 365 |
| 364 clean: | 366 clean: |
| 365 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 367 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
| 366 | 368 |
| 367 clean-all: clean | 369 clean-all: clean |
| 368 rm -rf build/ docs/ | 370 rm -rf build/ docs/ |
| OLD | NEW |