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

Side by Side Diff: Makefile.standalone

Issue 2177033002: Subzero: Local variable splitting. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review changes, mostly renaming. Created 4 years, 4 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.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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 IceMemory.cpp \ 319 IceMemory.cpp \
320 IceOperand.cpp \ 320 IceOperand.cpp \
321 IceRangeSpec.cpp \ 321 IceRangeSpec.cpp \
322 IceRegAlloc.cpp \ 322 IceRegAlloc.cpp \
323 IceRNG.cpp \ 323 IceRNG.cpp \
324 IceSwitchLowering.cpp \ 324 IceSwitchLowering.cpp \
325 IceThreading.cpp \ 325 IceThreading.cpp \
326 IceTimerTree.cpp \ 326 IceTimerTree.cpp \
327 IceTranslator.cpp \ 327 IceTranslator.cpp \
328 IceTypes.cpp \ 328 IceTypes.cpp \
329 IceVariableSplitting.cpp \
329 LinuxMallocProfiling.cpp \ 330 LinuxMallocProfiling.cpp \
330 main.cpp \ 331 main.cpp \
331 PNaClTranslator.cpp 332 PNaClTranslator.cpp
332 333
333 ifndef MINIMAL 334 ifndef MINIMAL
334 SRCS += \ 335 SRCS += \
335 IceASanInstrumentation.cpp \ 336 IceASanInstrumentation.cpp \
336 IceConverter.cpp \ 337 IceConverter.cpp \
337 IceInstrumentation.cpp \ 338 IceInstrumentation.cpp \
338 IceTypeConverter.cpp 339 IceTypeConverter.cpp
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
788 789
789 help-check-xtest: 790 help-check-xtest:
790 @cat Makefile.standalone-help/check-xtest.txt 791 @cat Makefile.standalone-help/check-xtest.txt
791 792
792 clean: 793 clean:
793 rm -rf pnacl-sz *.o $(foreach nexe,$(NEXES),$(notdir $(nexe))) \ 794 rm -rf pnacl-sz *.o $(foreach nexe,$(NEXES),$(notdir $(nexe))) \
794 $(OBJDIR) $(SB_OBJDIR) $(SBB_OBJDIR) build/*.bloat.json 795 $(OBJDIR) $(SB_OBJDIR) $(SBB_OBJDIR) build/*.bloat.json
795 796
796 clean-all: clean 797 clean-all: clean
797 rm -rf build/ crosstest/Output/ 798 rm -rf build/ crosstest/Output/
OLDNEW
« no previous file with comments | « no previous file | src/IceCfg.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698