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

Side by Side Diff: Makefile.standalone

Issue 828873002: Subzero: Start writing out some relocation sections (text) (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: review fixes Created 5 years, 11 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> 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 -I$(LIBCXX_INSTALL_PATH)/include/c++/v1 88 -I$(LIBCXX_INSTALL_PATH)/include/c++/v1
89 LDFLAGS := $(HOST_FLAGS) -L$(LIBCXX_INSTALL_PATH)/lib -Wl,--gc-sections 89 LDFLAGS := $(HOST_FLAGS) -L$(LIBCXX_INSTALL_PATH)/lib -Wl,--gc-sections
90 90
91 SRCS = \ 91 SRCS = \
92 assembler.cpp \ 92 assembler.cpp \
93 assembler_ia32.cpp \ 93 assembler_ia32.cpp \
94 IceCfg.cpp \ 94 IceCfg.cpp \
95 IceCfgNode.cpp \ 95 IceCfgNode.cpp \
96 IceELFObjectWriter.cpp \ 96 IceELFObjectWriter.cpp \
97 IceELFSection.cpp \ 97 IceELFSection.cpp \
98 IceFixups.cpp \
98 IceGlobalContext.cpp \ 99 IceGlobalContext.cpp \
99 IceGlobalInits.cpp \ 100 IceGlobalInits.cpp \
100 IceInst.cpp \ 101 IceInst.cpp \
101 IceInstX8632.cpp \ 102 IceInstX8632.cpp \
102 IceIntrinsics.cpp \ 103 IceIntrinsics.cpp \
103 IceLiveness.cpp \ 104 IceLiveness.cpp \
104 IceOperand.cpp \ 105 IceOperand.cpp \
105 IceRegAlloc.cpp \ 106 IceRegAlloc.cpp \
106 IceRNG.cpp \ 107 IceRNG.cpp \
107 IceTargetLowering.cpp \ 108 IceTargetLowering.cpp \
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 endif 205 endif
205 format-diff: 206 format-diff:
206 git diff -U0 `git merge-base HEAD master` | \ 207 git diff -U0 `git merge-base HEAD master` | \
207 $(CLANG_FORMAT_DIFF) -p1 -style=LLVM -i 208 $(CLANG_FORMAT_DIFF) -p1 -style=LLVM -i
208 209
209 clean: 210 clean:
210 rm -rf llvm2ice *.o $(OBJDIR) 211 rm -rf llvm2ice *.o $(OBJDIR)
211 212
212 clean-all: clean 213 clean-all: clean
213 rm -rf build/ 214 rm -rf build/
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