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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 # TODO(jpp): reenable the x86-64 tests. | 376 # TODO(jpp): reenable the x86-64 tests. |
377 ./pydir/crosstest_generator.py -v --lit \ | 377 ./pydir/crosstest_generator.py -v --lit \ |
378 --toolchain-root $(TOOLCHAIN_ROOT) \ | 378 --toolchain-root $(TOOLCHAIN_ROOT) \ |
379 -i x8632,native,sse2 \ | 379 -i x8632,native,sse2 \ |
380 -i x8632,native,sse4.1,test_vector_ops \ | 380 -i x8632,native,sse4.1,test_vector_ops \ |
381 -i x8632,sandbox,sse4.1,Om1 \ | 381 -i x8632,sandbox,sse4.1,Om1 \ |
382 -e x8664,native,sse2 \ | 382 -e x8664,native,sse2 \ |
383 -e x8664,native,sse4.1,test_vector_ops \ | 383 -e x8664,native,sse4.1,test_vector_ops \ |
384 -e x8664,native,sse2,test_global \ | 384 -e x8664,native,sse2,test_global \ |
385 -i arm32,native,neon \ | 385 -i arm32,native,neon \ |
386 -e arm32,native,neon,test_sync_atomic \ | |
387 -e arm32,native,neon,test_vector_ops \ | 386 -e arm32,native,neon,test_vector_ops \ |
388 -e arm32,native,neon,test_select | 387 -e arm32,native,neon,test_select |
389 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ | 388 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ |
390 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output | 389 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output |
391 endif | 390 endif |
392 | 391 |
393 check-unit: $(OBJDIR)/run_unittests | 392 check-unit: $(OBJDIR)/run_unittests |
394 $(OBJDIR)/run_unittests | 393 $(OBJDIR)/run_unittests |
395 | 394 |
396 check: check-lit check-unit check-xtest | 395 check: check-lit check-unit check-xtest |
(...skipping 19 matching lines...) Expand all Loading... |
416 | 415 |
417 docs: | 416 docs: |
418 doxygen Doxyfile | 417 doxygen Doxyfile |
419 @echo See file://`pwd`/docs/html/index.html | 418 @echo See file://`pwd`/docs/html/index.html |
420 | 419 |
421 clean: | 420 clean: |
422 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 421 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
423 | 422 |
424 clean-all: clean | 423 clean-all: clean |
425 rm -rf build/ docs/ | 424 rm -rf build/ docs/ |
OLD | NEW |