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