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

Side by Side Diff: Makefile.standalone

Issue 1169533003: First patch for Mips subzero compiler (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 6 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/IceClFlags.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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 IceInstARM32.cpp \ 180 IceInstARM32.cpp \
181 IceInstX8632.cpp \ 181 IceInstX8632.cpp \
182 IceIntrinsics.cpp \ 182 IceIntrinsics.cpp \
183 IceLiveness.cpp \ 183 IceLiveness.cpp \
184 IceOperand.cpp \ 184 IceOperand.cpp \
185 IceRegAlloc.cpp \ 185 IceRegAlloc.cpp \
186 IceRNG.cpp \ 186 IceRNG.cpp \
187 IceTargetLowering.cpp \ 187 IceTargetLowering.cpp \
188 IceTargetLoweringARM32.cpp \ 188 IceTargetLoweringARM32.cpp \
189 IceTargetLoweringX8632.cpp \ 189 IceTargetLoweringX8632.cpp \
190 IceTargetLoweringMIPS32.cpp \
190 IceThreading.cpp \ 191 IceThreading.cpp \
191 IceTimerTree.cpp \ 192 IceTimerTree.cpp \
192 IceTranslator.cpp \ 193 IceTranslator.cpp \
193 IceTypes.cpp \ 194 IceTypes.cpp \
194 main.cpp \ 195 main.cpp \
195 PNaClTranslator.cpp 196 PNaClTranslator.cpp
196 197
197 ifndef MINIMAL 198 ifndef MINIMAL
198 SRCS += IceConverter.cpp \ 199 SRCS += IceConverter.cpp \
199 IceTypeConverter.cpp 200 IceTypeConverter.cpp
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 bloat: make_symlink 328 bloat: make_symlink
328 nm -C -S -l pnacl-sz | \ 329 nm -C -S -l pnacl-sz | \
329 bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json 330 bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json
330 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html 331 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html
331 332
332 clean: 333 clean:
333 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json 334 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json
334 335
335 clean-all: clean 336 clean-all: clean
336 rm -rf build/ 337 rm -rf build/
OLDNEW
« no previous file with comments | « no previous file | src/IceClFlags.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698