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

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: Addresses comments. 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') | 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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 # TODO(jpp): implement x8664 sandbox, then enable xtests. 395 # TODO(jpp): implement x8664 sandbox, then enable xtests.
396 # TODO(jpp): reenable the x86-64 tests. 396 # TODO(jpp): reenable the x86-64 tests.
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,neon \
406 -e arm32,native,neon,test_vector_ops \ 406 -e arm32,neon,test_vector_ops \
407 -e arm32,native,neon,test_select 407 -e arm32,neon,test_select
408 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \ 408 PNACL_BIN_PATH=$(PNACL_BIN_PATH) \
409 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output 409 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output
410 endif 410 endif
411 411
412 check-unit: $(OBJDIR)/run_unittests 412 check-unit: $(OBJDIR)/run_unittests
413 $(OBJDIR)/run_unittests 413 $(OBJDIR)/run_unittests
414 414
415 # List the spec2k components in roughly reverse order of runtime, to help with 415 # List the spec2k components in roughly reverse order of runtime, to help with
416 # parallel execution speed. 416 # parallel execution speed.
417 ALLSPEC := 253.perlbmk 177.mesa 188.ammp 256.bzip2 164.gzip 179.art 183.equake \ 417 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 498
499 docs: 499 docs:
500 doxygen Doxyfile 500 doxygen Doxyfile
501 @echo See file://`pwd`/docs/html/index.html 501 @echo See file://`pwd`/docs/html/index.html
502 502
503 clean: 503 clean:
504 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json 504 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json
505 505
506 clean-all: clean 506 clean-all: clean
507 rm -rf build/ docs/ 507 rm -rf build/ docs/
OLDNEW
« no previous file with comments | « no previous file | pydir/crosstest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698