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

Side by Side Diff: Makefile.standalone

Issue 1202533003: Extracts an TargetX86Base target which will be used as the common X86{32,64} implementation. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses comments. 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/IceAssemblerX8664.h » ('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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 IceInst.cpp \ 192 IceInst.cpp \
193 IceInstARM32.cpp \ 193 IceInstARM32.cpp \
194 IceInstX8632.cpp \ 194 IceInstX8632.cpp \
195 IceIntrinsics.cpp \ 195 IceIntrinsics.cpp \
196 IceLiveness.cpp \ 196 IceLiveness.cpp \
197 IceOperand.cpp \ 197 IceOperand.cpp \
198 IceRegAlloc.cpp \ 198 IceRegAlloc.cpp \
199 IceRNG.cpp \ 199 IceRNG.cpp \
200 IceTargetLowering.cpp \ 200 IceTargetLowering.cpp \
201 IceTargetLoweringARM32.cpp \ 201 IceTargetLoweringARM32.cpp \
202 IceTargetLoweringMIPS32.cpp \
202 IceTargetLoweringX8632.cpp \ 203 IceTargetLoweringX8632.cpp \
203 IceTargetLoweringMIPS32.cpp \
204 IceThreading.cpp \ 204 IceThreading.cpp \
205 IceTimerTree.cpp \ 205 IceTimerTree.cpp \
206 IceTranslator.cpp \ 206 IceTranslator.cpp \
207 IceTypes.cpp \ 207 IceTypes.cpp \
208 main.cpp \ 208 main.cpp \
209 PNaClTranslator.cpp 209 PNaClTranslator.cpp
210 210
211 ifndef MINIMAL 211 ifndef MINIMAL
212 SRCS += IceConverter.cpp \ 212 SRCS += IceConverter.cpp \
213 IceTypeConverter.cpp 213 IceTypeConverter.cpp
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 bloat: make_symlink 353 bloat: make_symlink
354 nm -C -S -l pnacl-sz | \ 354 nm -C -S -l pnacl-sz | \
355 bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json 355 bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json
356 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html 356 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html
357 357
358 clean: 358 clean:
359 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json 359 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json
360 360
361 clean-all: clean 361 clean-all: clean
362 rm -rf build/ 362 rm -rf build/
OLDNEW
« no previous file with comments | « no previous file | src/IceAssemblerX8664.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698