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

Side by Side Diff: Makefile.standalone

Issue 1499983002: Subzero. ARM32. Implements sandboxing. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: 80-col Created 5 years 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 | pydir/crosstest.py » ('j') | pydir/crosstest_generator.py » ('J')
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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 ./pydir/crosstest_generator.py -v --lit \ 397 ./pydir/crosstest_generator.py -v --lit \
398 --toolchain-root $(TOOLCHAIN_ROOT) \ 398 --toolchain-root $(TOOLCHAIN_ROOT) \
399 -i x8632,native,sse2 \ 399 -i x8632,native,sse2 \
400 -i x8632,native,sse4.1,test_vector_ops \ 400 -i x8632,native,sse4.1,test_vector_ops \
401 -i x8632,sandbox,sse4.1,Om1 \ 401 -i x8632,sandbox,sse4.1,Om1 \
402 -e x8664,native,sse2 \ 402 -e x8664,native,sse2 \
403 -e x8664,native,sse4.1,test_vector_ops \ 403 -e x8664,native,sse4.1,test_vector_ops \
404 -e x8664,native,sse2,test_global \ 404 -e x8664,native,sse2,test_global \
405 -i arm32,native,neon \ 405 -i arm32,native,neon \
406 -e arm32,native,neon,test_vector_ops \ 406 -e arm32,native,neon,test_vector_ops \
407 -e arm32,native,neon,test_select 407 -e arm32,native,neon,test_select \
408 -i arm32,sandbox,neon \
Jim Stichnoth 2015/12/04 22:51:54 Instead of adding near-copies of the previous 3 li
John 2015/12/05 16:20:11 Done.
409 -e arm32,sandbox,neon,test_vector_ops \
410 -e arm32,sandbox,neon,test_select
408 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ 411 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \
409 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output 412 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output
410 endif 413 endif
411 414
412 check-unit: $(OBJDIR)/run_unittests 415 check-unit: $(OBJDIR)/run_unittests
413 $(OBJDIR)/run_unittests 416 $(OBJDIR)/run_unittests
414 417
415 # List the spec2k components in roughly reverse order of runtime, to help with 418 # List the spec2k components in roughly reverse order of runtime, to help with
416 # parallel execution speed. 419 # parallel execution speed.
417 ALLSPEC := 253.perlbmk 177.mesa 188.ammp 256.bzip2 164.gzip 179.art 183.equake \ 420 ALLSPEC := 253.perlbmk 177.mesa 188.ammp 256.bzip2 164.gzip 179.art 183.equake \
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 501
499 docs: 502 docs:
500 doxygen Doxyfile 503 doxygen Doxyfile
501 @echo See file://`pwd`/docs/html/index.html 504 @echo See file://`pwd`/docs/html/index.html
502 505
503 clean: 506 clean:
504 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json 507 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json
505 508
506 clean-all: clean 509 clean-all: clean
507 rm -rf build/ docs/ 510 rm -rf build/ docs/
OLDNEW
« no previous file with comments | « no previous file | pydir/crosstest.py » ('j') | pydir/crosstest_generator.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698