Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1173)

Side by Side Diff: Makefile.standalone

Issue 1683243003: ARM32 Vector lowering - scalarize select (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Typo fix Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/IceTargetLowering.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 $(FORCEASM_XTEST_EXCLUDES) \ 441 $(FORCEASM_XTEST_EXCLUDES) \
442 -i x8632,native,sse2 \ 442 -i x8632,native,sse2 \
443 -i x8632,native,sse4.1,test_vector_ops \ 443 -i x8632,native,sse4.1,test_vector_ops \
444 -i x8632,sandbox,sse4.1,Om1 \ 444 -i x8632,sandbox,sse4.1,Om1 \
445 -i x8632,nonsfi,sse2,O2 \ 445 -i x8632,nonsfi,sse2,O2 \
446 -i x8664,native,sse2 \ 446 -i x8664,native,sse2 \
447 -i x8664,native,sse4.1,test_vector_ops \ 447 -i x8664,native,sse4.1,test_vector_ops \
448 -i x8664,sandbox,sse4.1,Om1 \ 448 -i x8664,sandbox,sse4.1,Om1 \
449 -i arm32,neon \ 449 -i arm32,neon \
450 -e arm32,neon,test_vector_ops \ 450 -e arm32,neon,test_vector_ops \
451 -e arm32,neon,test_select 451 -e arm32,nonsfi \
452 -e arm32,neon,test_vector_ops
452 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ 453 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \
453 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv $(CHECK_XTEST_TESTS) 454 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv $(CHECK_XTEST_TESTS)
454 endif 455 endif
455 456
456 check-unit: $(OBJDIR)/run_unittests 457 check-unit: $(OBJDIR)/run_unittests
457 $(OBJDIR)/run_unittests 458 $(OBJDIR)/run_unittests
458 459
459 # List the spec2k components in roughly reverse order of runtime, to help with 460 # List the spec2k components in roughly reverse order of runtime, to help with
460 # parallel execution speed. 461 # parallel execution speed.
461 ALLSPEC := 253.perlbmk 177.mesa 188.ammp 256.bzip2 164.gzip 179.art 183.equake \ 462 ALLSPEC := 253.perlbmk 177.mesa 188.ammp 256.bzip2 164.gzip 179.art 183.equake \
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 @cat Makefile.standalone-help/check-lit.txt 569 @cat Makefile.standalone-help/check-lit.txt
569 570
570 help-check-xtest: 571 help-check-xtest:
571 @cat Makefile.standalone-help/check-xtest.txt 572 @cat Makefile.standalone-help/check-xtest.txt
572 573
573 clean: 574 clean:
574 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json 575 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json
575 576
576 clean-all: clean 577 clean-all: clean
577 rm -rf build/ crosstest/Output/ 578 rm -rf build/ crosstest/Output/
OLDNEW
« no previous file with comments | « no previous file | src/IceTargetLowering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698