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