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