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

Side by Side Diff: Makefile.standalone

Issue 916653004: Subzero: Emit functions and global initializers in a separate thread. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Const change Created 5 years, 10 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 | pydir/run-llvm2ice.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> LLVM_BIN_PATH=<path> \ 5 # make LLVM_SRC_PATH=<path> LLVM_BIN_PATH=<path> \
6 # LIBCXX_INSTALL_PATH=<path> CLANG_PATH=<path> ... 6 # LIBCXX_INSTALL_PATH=<path> CLANG_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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 IceGlobalInits.cpp \ 111 IceGlobalInits.cpp \
112 IceInst.cpp \ 112 IceInst.cpp \
113 IceInstX8632.cpp \ 113 IceInstX8632.cpp \
114 IceIntrinsics.cpp \ 114 IceIntrinsics.cpp \
115 IceLiveness.cpp \ 115 IceLiveness.cpp \
116 IceOperand.cpp \ 116 IceOperand.cpp \
117 IceRegAlloc.cpp \ 117 IceRegAlloc.cpp \
118 IceRNG.cpp \ 118 IceRNG.cpp \
119 IceTargetLowering.cpp \ 119 IceTargetLowering.cpp \
120 IceTargetLoweringX8632.cpp \ 120 IceTargetLoweringX8632.cpp \
121 IceThreading.cpp \
121 IceTimerTree.cpp \ 122 IceTimerTree.cpp \
122 IceTranslator.cpp \ 123 IceTranslator.cpp \
123 IceTypes.cpp \ 124 IceTypes.cpp \
124 llvm2ice.cpp \ 125 llvm2ice.cpp \
125 PNaClTranslator.cpp 126 PNaClTranslator.cpp
126 127
127 ifndef MINIMAL 128 ifndef MINIMAL
128 SRCS += IceConverter.cpp \ 129 SRCS += IceConverter.cpp \
129 IceTypeConverter.cpp 130 IceTypeConverter.cpp
130 endif 131 endif
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 git diff -U0 `git merge-base HEAD master` | \ 212 git diff -U0 `git merge-base HEAD master` | \
212 PATH=$(LLVM_BIN_PATH):$(PATH) \ 213 PATH=$(LLVM_BIN_PATH):$(PATH) \
213 $(LLVM_SRC_PATH)/../clang/tools/clang-format/clang-format-diff.py \ 214 $(LLVM_SRC_PATH)/../clang/tools/clang-format/clang-format-diff.py \
214 -p1 -style=LLVM -i 215 -p1 -style=LLVM -i
215 216
216 clean: 217 clean:
217 rm -rf llvm2ice *.o $(OBJDIR) 218 rm -rf llvm2ice *.o $(OBJDIR)
218 219
219 clean-all: clean 220 clean-all: clean
220 rm -rf build/ 221 rm -rf build/
OLDNEW
« no previous file with comments | « no previous file | pydir/run-llvm2ice.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698