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

Side by Side Diff: Makefile.standalone

Issue 678533005: Subzero: Add basic ELFObjectWriter (text section, symtab, strtab, headers) (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: stuff Created 6 years, 1 month 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') | src/IceCfg.cpp » ('J')
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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 -fno-exceptions $(OPTLEVEL) $(ASSERTIONS) $(CXX_DEFINES) -g \ 84 -fno-exceptions $(OPTLEVEL) $(ASSERTIONS) $(CXX_DEFINES) -g \
85 $(HOST_FLAGS) -Wno-error=unused-parameter \ 85 $(HOST_FLAGS) -Wno-error=unused-parameter \
86 -I$(LIBCXX_INSTALL_PATH)/include/c++/v1 86 -I$(LIBCXX_INSTALL_PATH)/include/c++/v1
87 LDFLAGS := $(HOST_FLAGS) -L$(LIBCXX_INSTALL_PATH)/lib 87 LDFLAGS := $(HOST_FLAGS) -L$(LIBCXX_INSTALL_PATH)/lib
88 88
89 SRCS = \ 89 SRCS = \
90 assembler.cpp \ 90 assembler.cpp \
91 assembler_ia32.cpp \ 91 assembler_ia32.cpp \
92 IceCfg.cpp \ 92 IceCfg.cpp \
93 IceCfgNode.cpp \ 93 IceCfgNode.cpp \
94 IceELFObjectWriter.cpp \
95 IceELFSection.cpp \
94 IceGlobalContext.cpp \ 96 IceGlobalContext.cpp \
95 IceGlobalInits.cpp \ 97 IceGlobalInits.cpp \
96 IceInst.cpp \ 98 IceInst.cpp \
97 IceInstX8632.cpp \ 99 IceInstX8632.cpp \
98 IceIntrinsics.cpp \ 100 IceIntrinsics.cpp \
99 IceLiveness.cpp \ 101 IceLiveness.cpp \
100 IceMemoryRegion.cpp \
101 IceOperand.cpp \ 102 IceOperand.cpp \
102 IceRegAlloc.cpp \ 103 IceRegAlloc.cpp \
103 IceRNG.cpp \ 104 IceRNG.cpp \
104 IceTargetLowering.cpp \ 105 IceTargetLowering.cpp \
105 IceTargetLoweringX8632.cpp \ 106 IceTargetLoweringX8632.cpp \
106 IceTimerTree.cpp \ 107 IceTimerTree.cpp \
107 IceTranslator.cpp \ 108 IceTranslator.cpp \
108 IceTypeConverter.cpp \ 109 IceTypeConverter.cpp \
109 IceTypes.cpp \ 110 IceTypes.cpp \
110 llvm2ice.cpp \ 111 llvm2ice.cpp \
111 PNaClTranslator.cpp 112 PNaClTranslator.cpp
112 113
113 ifndef MINIMAL 114 ifndef MINIMAL
114 SRCS += IceConverter.cpp 115 SRCS += IceConverter.cpp
115 endif 116 endif
116 117
117 OBJS=$(patsubst %.cpp, $(OBJDIR)/%.o, $(SRCS)) 118 OBJS=$(patsubst %.cpp, $(OBJDIR)/%.o, $(SRCS))
118 119
120 UNITTEST_SRCS = \
121 IceELFSectionTest.cpp
122
123 UNITTEST_OBJS = $(patsubst %.cpp, $(OBJDIR)/unittest/%.o, $(UNITTEST_SRCS))
124 UNITTEST_LIB_OBJS = $(filter-out $(OBJDIR)/llvm2ice.o,$(OBJS))
125
119 # Keep all the first target so it's the default. 126 # Keep all the first target so it's the default.
120 all: $(OBJDIR)/llvm2ice make_symlink 127 all: $(OBJDIR)/llvm2ice make_symlink
121 128
122 # Creates symbolic link so that testing is easier. Also runs 129 # Creates symbolic link so that testing is easier. Also runs
123 # llvm2ice to verify that the defines flags have valid values, 130 # llvm2ice to verify that the defines flags have valid values,
124 # as well as describe the corresponding build attributes. 131 # as well as describe the corresponding build attributes.
125 make_symlink: $(OBJDIR)/llvm2ice 132 make_symlink: $(OBJDIR)/llvm2ice
126 rm -rf llvm2ice 133 rm -rf llvm2ice
127 ln -s $(OBJDIR)/llvm2ice 134 ln -s $(OBJDIR)/llvm2ice
128 @echo "Build Attributes:" 135 @echo "Build Attributes:"
129 @$(OBJDIR)/llvm2ice --build-atts 136 @$(OBJDIR)/llvm2ice --build-atts
130 137
131 .PHONY: all make_symlink 138 .PHONY: all make_symlink
132 139
133 # TODO(kschimpf): Fix python scripts to directly get build attributes 140 # TODO(kschimpf): Fix python scripts to directly get build attributes
134 # rather than generating $(OBJDIR)/llvm2ice.build_atts. 141 # rather than generating $(OBJDIR)/llvm2ice.build_atts.
135 $(OBJDIR)/llvm2ice: $(OBJS) 142 $(OBJDIR)/llvm2ice: $(OBJS)
136 $(CXX) $(LDFLAGS) -o $@ $^ $(LLVM_LDFLAGS) -ldl \ 143 $(CXX) $(LDFLAGS) -o $@ $^ $(LLVM_LDFLAGS) -ldl \
137 -Wl,-rpath=$(abspath $(LIBCXX_INSTALL_PATH)/lib) 144 -Wl,-rpath=$(abspath $(LIBCXX_INSTALL_PATH)/lib)
138 145
139 # TODO: Be more precise than "*.h" here and elsewhere. 146 # TODO: Be more precise than "*.h" here and elsewhere.
140 $(OBJS): $(OBJDIR)/%.o: src/%.cpp src/*.h src/*.def 147 $(OBJS): $(OBJDIR)/%.o: src/%.cpp src/*.h src/*.def
141 $(CXX) -c $(CXXFLAGS) $< -o $@ 148 $(CXX) -c $(CXXFLAGS) $< -o $@
142 149
150 $(OBJDIR)/run_unittests: $(UNITTEST_OBJS) $(UNITTEST_LIB_OBJS)
151 $(CXX) $(LDFLAGS) -o $@ $^ $(LLVM_LDFLAGS) -lgtest -lgtest_main -ldl \
152 -Wl,-rpath=$(abspath $(LIBCXX_INSTALL_PATH)/lib)
153
154 $(UNITTEST_OBJS): $(OBJDIR)/unittest/%.o: unittest/%.cpp
155 $(CXX) -c $(CXXFLAGS) \
156 -Isrc/ \
157 -I$(LLVM_SRC_PATH)/utils/unittest/googletest/include \
158 -DGTEST_HAS_RTTI=0 -DGTEST_USE_OWN_TR1_TUPLE \
159 $< -o $@
160
143 $(OBJS): | $(OBJDIR) 161 $(OBJS): | $(OBJDIR)
144 162
163 $(UNITTEST_OBJS): | $(OBJDIR)/unittest
164
145 $(OBJDIR): 165 $(OBJDIR):
146 @mkdir -p $@ 166 @mkdir -p $@
147 167
168 $(OBJDIR)/unittest: $(OBJDIR)
169 @mkdir -p $@
170
148 check-lit: llvm2ice make_symlink 171 check-lit: llvm2ice make_symlink
149 LLVM_BIN_PATH=$(LLVM_BIN_PATH) \ 172 LLVM_BIN_PATH=$(LLVM_BIN_PATH) \
150 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv tests_lit 173 $(LLVM_SRC_PATH)/utils/lit/lit.py -sv tests_lit
151 174
175 check-unit: $(OBJDIR)/run_unittests
176 $(OBJDIR)/run_unittests
177
152 ifdef MINIMAL 178 ifdef MINIMAL
153 check: check-lit 179 check: check-lit check-unit
154 @echo "Crosstests ignored, minimal build" 180 @echo "Crosstests ignored, minimal build"
155 else 181 else
156 check: check-lit 182 check: check-lit check-unit
157 (cd crosstest; ./runtests.sh) 183 (cd crosstest; ./runtests.sh)
158 endif 184 endif
159 185
160 # TODO: Fix the use of wildcards. 186 # TODO: Fix the use of wildcards.
161 # Assumes clang-format is within $PATH. 187 # Assumes clang-format is within $PATH.
162 format: 188 format:
163 clang-format -style=LLVM -i src/*.h src/*.cpp 189 clang-format -style=LLVM -i src/*.h src/*.cpp
164 190
165 # Assumes clang-format-diff.py is within $PATH, and that the 191 # Assumes clang-format-diff.py is within $PATH, and that the
166 # clang-format it calls is also within $PATH. This may require adding 192 # clang-format it calls is also within $PATH. This may require adding
167 # a component to $PATH, or creating symlinks within some existing 193 # a component to $PATH, or creating symlinks within some existing
168 # $PATH component. Uses the one in /usr/lib/clang-format/ if it 194 # $PATH component. Uses the one in /usr/lib/clang-format/ if it
169 # exists. 195 # exists.
170 ifeq (,$(wildcard /usr/lib/clang-format/clang-format-diff.py)) 196 ifeq (,$(wildcard /usr/lib/clang-format/clang-format-diff.py))
171 CLANG_FORMAT_DIFF = clang-format-diff.py 197 CLANG_FORMAT_DIFF = clang-format-diff.py
172 else 198 else
173 CLANG_FORMAT_DIFF = /usr/lib/clang-format/clang-format-diff.py 199 CLANG_FORMAT_DIFF = /usr/lib/clang-format/clang-format-diff.py
174 endif 200 endif
175 format-diff: 201 format-diff:
176 git diff -U0 `git merge-base HEAD master` | \ 202 git diff -U0 `git merge-base HEAD master` | \
177 $(CLANG_FORMAT_DIFF) -p1 -style=LLVM -i 203 $(CLANG_FORMAT_DIFF) -p1 -style=LLVM -i
178 204
179 clean: 205 clean:
180 rm -rf llvm2ice *.o $(OBJDIR) 206 rm -rf llvm2ice *.o $(OBJDIR)
181 207
182 clean-all: clean 208 clean-all: clean
183 rm -rf build/ 209 rm -rf build/
OLDNEW
« no previous file with comments | « no previous file | src/IceCfg.cpp » ('j') | src/IceCfg.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698