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

Side by Side Diff: Makefile.standalone

Issue 1900543002: Subzero: Allow per-method controls. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: More cleanup Created 4 years, 8 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/IceCfg.h » ('j') | src/IceClFlags.def » ('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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 IceFixups.cpp \ 301 IceFixups.cpp \
302 IceGlobalContext.cpp \ 302 IceGlobalContext.cpp \
303 IceGlobalInits.cpp \ 303 IceGlobalInits.cpp \
304 IceInst.cpp \ 304 IceInst.cpp \
305 IceIntrinsics.cpp \ 305 IceIntrinsics.cpp \
306 IceLiveness.cpp \ 306 IceLiveness.cpp \
307 IceLoopAnalyzer.cpp \ 307 IceLoopAnalyzer.cpp \
308 IceMangling.cpp \ 308 IceMangling.cpp \
309 IceMemory.cpp \ 309 IceMemory.cpp \
310 IceOperand.cpp \ 310 IceOperand.cpp \
311 IceRangeSpec.cpp \
311 IceRegAlloc.cpp \ 312 IceRegAlloc.cpp \
312 IceRNG.cpp \ 313 IceRNG.cpp \
313 IceSwitchLowering.cpp \ 314 IceSwitchLowering.cpp \
314 IceThreading.cpp \ 315 IceThreading.cpp \
315 IceTimerTree.cpp \ 316 IceTimerTree.cpp \
316 IceTranslator.cpp \ 317 IceTranslator.cpp \
317 IceTypes.cpp \ 318 IceTypes.cpp \
318 LinuxMallocProfiling.cpp \ 319 LinuxMallocProfiling.cpp \
319 main.cpp \ 320 main.cpp \
320 PNaClTranslator.cpp 321 PNaClTranslator.cpp
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
770 771
771 help-check-xtest: 772 help-check-xtest:
772 @cat Makefile.standalone-help/check-xtest.txt 773 @cat Makefile.standalone-help/check-xtest.txt
773 774
774 clean: 775 clean:
775 rm -rf pnacl-sz *.o $(foreach nexe,$(NEXES),$(notdir $(nexe))) \ 776 rm -rf pnacl-sz *.o $(foreach nexe,$(NEXES),$(notdir $(nexe))) \
776 $(OBJDIR) $(SB_OBJDIR) $(SBB_OBJDIR) build/*.bloat.json 777 $(OBJDIR) $(SB_OBJDIR) $(SBB_OBJDIR) build/*.bloat.json
777 778
778 clean-all: clean 779 clean-all: clean
779 rm -rf build/ crosstest/Output/ 780 rm -rf build/ crosstest/Output/
OLDNEW
« no previous file with comments | « no previous file | src/IceCfg.h » ('j') | src/IceClFlags.def » ('J')

Powered by Google App Engine
This is Rietveld 408576698