| 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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 else | 313 else |
| 314 check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime | 314 check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime |
| 315 # Do all native/sse2 tests, but only test_vector_ops for native/sse4.1. | 315 # Do all native/sse2 tests, but only test_vector_ops for native/sse4.1. |
| 316 # For (slow) sandboxed tests, limit to Om1/sse4.1. | 316 # For (slow) sandboxed tests, limit to Om1/sse4.1. |
| 317 ./pydir/crosstest_generator.py -v --lit \ | 317 ./pydir/crosstest_generator.py -v --lit \ |
| 318 --toolchain-root $(TOOLCHAIN_ROOT) \ | 318 --toolchain-root $(TOOLCHAIN_ROOT) \ |
| 319 -i x8632,native,sse2 -i x8632,native,sse4.1,test_vector_ops \ | 319 -i x8632,native,sse2 -i x8632,native,sse4.1,test_vector_ops \ |
| 320 -i x8632,sandbox,sse4.1,Om1 \ | 320 -i x8632,sandbox,sse4.1,Om1 \ |
| 321 -i arm32,native,neon,simple_loop \ | 321 -i arm32,native,neon,simple_loop \ |
| 322 -i arm32,native,neon,mem_intrin \ | 322 -i arm32,native,neon,mem_intrin \ |
| 323 -i arm32,native,neon,test_bitmanip \ |
| 323 -i arm32,native,neon,test_stacksave \ | 324 -i arm32,native,neon,test_stacksave \ |
| 324 -i arm32,native,neon,test_strengthreduce | 325 -i arm32,native,neon,test_strengthreduce |
| 325 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ | 326 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ |
| 326 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output | 327 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output |
| 327 endif | 328 endif |
| 328 | 329 |
| 329 check-unit: $(OBJDIR)/run_unittests | 330 check-unit: $(OBJDIR)/run_unittests |
| 330 $(OBJDIR)/run_unittests | 331 $(OBJDIR)/run_unittests |
| 331 | 332 |
| 332 check: check-lit check-unit check-xtest | 333 check: check-lit check-unit check-xtest |
| (...skipping 19 matching lines...) Expand all Loading... |
| 352 | 353 |
| 353 docs: | 354 docs: |
| 354 doxygen Doxyfile | 355 doxygen Doxyfile |
| 355 @echo See file://`pwd`/docs/html/index.html | 356 @echo See file://`pwd`/docs/html/index.html |
| 356 | 357 |
| 357 clean: | 358 clean: |
| 358 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 359 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
| 359 | 360 |
| 360 clean-all: clean | 361 clean-all: clean |
| 361 rm -rf build/ docs/ | 362 rm -rf build/ docs/ |
| OLD | NEW |