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

Side by Side Diff: Makefile.standalone

Issue 1136793002: Handle ARM "ret void" and function alignment with proper padding. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: note moved to cpp Created 5 years, 7 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-pnacl-sz.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> 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 IceCfgNode.cpp \ 170 IceCfgNode.cpp \
171 IceClFlags.cpp \ 171 IceClFlags.cpp \
172 IceCompiler.cpp \ 172 IceCompiler.cpp \
173 IceCompileServer.cpp \ 173 IceCompileServer.cpp \
174 IceELFObjectWriter.cpp \ 174 IceELFObjectWriter.cpp \
175 IceELFSection.cpp \ 175 IceELFSection.cpp \
176 IceFixups.cpp \ 176 IceFixups.cpp \
177 IceGlobalContext.cpp \ 177 IceGlobalContext.cpp \
178 IceGlobalInits.cpp \ 178 IceGlobalInits.cpp \
179 IceInst.cpp \ 179 IceInst.cpp \
180 IceInstARM32.cpp \
180 IceInstX8632.cpp \ 181 IceInstX8632.cpp \
181 IceIntrinsics.cpp \ 182 IceIntrinsics.cpp \
182 IceLiveness.cpp \ 183 IceLiveness.cpp \
183 IceOperand.cpp \ 184 IceOperand.cpp \
184 IceRegAlloc.cpp \ 185 IceRegAlloc.cpp \
185 IceRNG.cpp \ 186 IceRNG.cpp \
186 IceTargetLowering.cpp \ 187 IceTargetLowering.cpp \
187 IceTargetLoweringARM32.cpp \ 188 IceTargetLoweringARM32.cpp \
188 IceTargetLoweringX8632.cpp \ 189 IceTargetLoweringX8632.cpp \
189 IceThreading.cpp \ 190 IceThreading.cpp \
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 bloat: make_symlink 327 bloat: make_symlink
327 nm -C -S -l pnacl-sz | \ 328 nm -C -S -l pnacl-sz | \
328 bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json 329 bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json
329 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html 330 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html
330 331
331 clean: 332 clean:
332 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json 333 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json
333 334
334 clean-all: clean 335 clean-all: clean
335 rm -rf build/ 336 rm -rf build/
OLDNEW
« no previous file with comments | « no previous file | pydir/run-pnacl-sz.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698