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

Side by Side Diff: Makefile.standalone

Issue 1665263003: Subzero. ARM32. Nonsfi. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses comments. 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 | crosstest/test_cast_to_u1.ll » ('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 429 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 $(FORCEASM_FLAG) \ 440 $(FORCEASM_FLAG) \
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,nonsfi \
451 -e arm32,neon,test_vector_ops \ 450 -e arm32,neon,test_vector_ops \
452 -e arm32,neon,test_select 451 -e arm32,neon,test_select
453 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ 452 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \
454 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv $(CHECK_XTEST_TESTS) 453 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv $(CHECK_XTEST_TESTS)
455 endif 454 endif
456 455
457 check-unit: $(OBJDIR)/run_unittests 456 check-unit: $(OBJDIR)/run_unittests
458 $(OBJDIR)/run_unittests 457 $(OBJDIR)/run_unittests
459 458
460 # List the spec2k components in roughly reverse order of runtime, to help with 459 # List the spec2k components in roughly reverse order of runtime, to help with
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
569 @cat Makefile.standalone-help/check-lit.txt 568 @cat Makefile.standalone-help/check-lit.txt
570 569
571 help-check-xtest: 570 help-check-xtest:
572 @cat Makefile.standalone-help/check-xtest.txt 571 @cat Makefile.standalone-help/check-xtest.txt
573 572
574 clean: 573 clean:
575 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json 574 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json
576 575
577 clean-all: clean 576 clean-all: clean
578 rm -rf build/ crosstest/Output/ 577 rm -rf build/ crosstest/Output/
OLDNEW
« no previous file with comments | « no previous file | crosstest/test_cast_to_u1.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698