| 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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 ./pydir/crosstest_generator.py -v --lit \ | 397 ./pydir/crosstest_generator.py -v --lit \ |
| 398 --toolchain-root $(TOOLCHAIN_ROOT) \ | 398 --toolchain-root $(TOOLCHAIN_ROOT) \ |
| 399 -i x8632,native,sse2 \ | 399 -i x8632,native,sse2 \ |
| 400 -i x8632,native,sse4.1,test_vector_ops \ | 400 -i x8632,native,sse4.1,test_vector_ops \ |
| 401 -i x8632,sandbox,sse4.1,Om1 \ | 401 -i x8632,sandbox,sse4.1,Om1 \ |
| 402 -e x8664,native,sse2 \ | 402 -e x8664,native,sse2 \ |
| 403 -e x8664,native,sse4.1,test_vector_ops \ | 403 -e x8664,native,sse4.1,test_vector_ops \ |
| 404 -e x8664,native,sse2,test_global \ | 404 -e x8664,native,sse2,test_global \ |
| 405 -i arm32,native,neon \ | 405 -i arm32,native,neon \ |
| 406 -e arm32,native,neon,test_vector_ops \ | 406 -e arm32,native,neon,test_vector_ops \ |
| 407 -e arm32,native,neon,test_select \ | 407 -e arm32,native,neon,test_select |
| 408 -i arm32,sandbox,neon \ | |
| 409 -e arm32,sandbox,neon,test_vector_ops \ | |
| 410 -e arm32,sandbox,neon,test_select | |
| 411 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ | 408 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ |
| 412 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output | 409 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output |
| 413 endif | 410 endif |
| 414 | 411 |
| 415 check-unit: $(OBJDIR)/run_unittests | 412 check-unit: $(OBJDIR)/run_unittests |
| 416 $(OBJDIR)/run_unittests | 413 $(OBJDIR)/run_unittests |
| 417 | 414 |
| 418 # List the spec2k components in roughly reverse order of runtime, to help with | 415 # List the spec2k components in roughly reverse order of runtime, to help with |
| 419 # parallel execution speed. | 416 # parallel execution speed. |
| 420 ALLSPEC := 253.perlbmk 177.mesa 188.ammp 256.bzip2 164.gzip 179.art 183.equake \ | 417 ALLSPEC := 253.perlbmk 177.mesa 188.ammp 256.bzip2 164.gzip 179.art 183.equake \ |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 | 498 |
| 502 docs: | 499 docs: |
| 503 doxygen Doxyfile | 500 doxygen Doxyfile |
| 504 @echo See file://`pwd`/docs/html/index.html | 501 @echo See file://`pwd`/docs/html/index.html |
| 505 | 502 |
| 506 clean: | 503 clean: |
| 507 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 504 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
| 508 | 505 |
| 509 clean-all: clean | 506 clean-all: clean |
| 510 rm -rf build/ docs/ | 507 rm -rf build/ docs/ |
| OLD | NEW |