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

Side by Side Diff: Makefile.standalone

Issue 1766233002: Subzero: Fix symbol name mangling. Make flags global. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review changes Created 4 years, 9 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/IceAssemblerARM32.cpp » ('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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 IceCompileServer.cpp \ 264 IceCompileServer.cpp \
265 IceELFObjectWriter.cpp \ 265 IceELFObjectWriter.cpp \
266 IceELFSection.cpp \ 266 IceELFSection.cpp \
267 IceFixups.cpp \ 267 IceFixups.cpp \
268 IceGlobalContext.cpp \ 268 IceGlobalContext.cpp \
269 IceGlobalInits.cpp \ 269 IceGlobalInits.cpp \
270 IceInst.cpp \ 270 IceInst.cpp \
271 IceIntrinsics.cpp \ 271 IceIntrinsics.cpp \
272 IceLiveness.cpp \ 272 IceLiveness.cpp \
273 IceLoopAnalyzer.cpp \ 273 IceLoopAnalyzer.cpp \
274 IceMangling.cpp \
274 IceMemory.cpp \ 275 IceMemory.cpp \
275 IceOperand.cpp \ 276 IceOperand.cpp \
276 IceRegAlloc.cpp \ 277 IceRegAlloc.cpp \
277 IceRNG.cpp \ 278 IceRNG.cpp \
278 IceSwitchLowering.cpp \ 279 IceSwitchLowering.cpp \
279 IceThreading.cpp \ 280 IceThreading.cpp \
280 IceTimerTree.cpp \ 281 IceTimerTree.cpp \
281 IceTranslator.cpp \ 282 IceTranslator.cpp \
282 IceTypes.cpp \ 283 IceTypes.cpp \
283 main.cpp \ 284 main.cpp \
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 +make -f Makefile.standalone \ 534 +make -f Makefile.standalone \
534 MINIMAL=1 check 535 MINIMAL=1 check
535 # Check that there are no g++ build errors or warnings. 536 # Check that there are no g++ build errors or warnings.
536 +make -f Makefile.standalone \ 537 +make -f Makefile.standalone \
537 GPLUSPLUS=1 compile_only 538 GPLUSPLUS=1 compile_only
538 # Check the x86 assembler unit tests. 539 # Check the x86 assembler unit tests.
539 +make -f Makefile.standalone \ 540 +make -f Makefile.standalone \
540 DEBUG=1 CHECK_X86_ASM=1 check-unit sb 541 DEBUG=1 CHECK_X86_ASM=1 check-unit sb
541 # Run lit tests, cross tests, unit tests, and spec2k/x86-32. 542 # Run lit tests, cross tests, unit tests, and spec2k/x86-32.
542 +make -f Makefile.standalone \ 543 +make -f Makefile.standalone \
543 check check-spec sb 544 check check-spec
544 # Run spec2k/x86-64. 545 # Run spec2k/x86-64.
545 +make -f Makefile.standalone \ 546 +make -f Makefile.standalone \
546 TARGET=x8664 check-spec 547 TARGET=x8664 check-spec
547 # Build spec2k under -Om1/x86-32, to check for liveness errors. 548 # Build spec2k under -Om1/x86-32, to check for liveness errors.
548 +make -f Makefile.standalone \ 549 +make -f Makefile.standalone \
549 SPECFLAGS='-Om1' SPECBUILDONLY=true check-spec 550 SPECFLAGS='-Om1' SPECBUILDONLY=true check-spec
550 # Build spec2k under -Om1/x86-64, to check for liveness errors. 551 # Build spec2k under -Om1/x86-64, to check for liveness errors.
551 +make -f Makefile.standalone \ 552 +make -f Makefile.standalone \
552 SPECFLAGS='-Om1' TARGET=x8664 SPECBUILDONLY=true check-spec 553 SPECFLAGS='-Om1' TARGET=x8664 SPECBUILDONLY=true check-spec
553 # Run spec2k for x86-32 without advanced phi lowering. 554 # Run spec2k for x86-32 without advanced phi lowering.
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 611
611 help-check-xtest: 612 help-check-xtest:
612 @cat Makefile.standalone-help/check-xtest.txt 613 @cat Makefile.standalone-help/check-xtest.txt
613 614
614 clean: 615 clean:
615 rm -rf pnacl-sz *.o $(foreach nexe,$(NEXES),$(notdir $(nexe))) \ 616 rm -rf pnacl-sz *.o $(foreach nexe,$(NEXES),$(notdir $(nexe))) \
616 $(OBJDIR) $(SB_OBJDIR) $(SBB_OBJDIR) build/*.bloat.json 617 $(OBJDIR) $(SB_OBJDIR) $(SBB_OBJDIR) build/*.bloat.json
617 618
618 clean-all: clean 619 clean-all: clean
619 rm -rf build/ crosstest/Output/ 620 rm -rf build/ crosstest/Output/
OLDNEW
« no previous file with comments | « no previous file | src/IceAssemblerARM32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698