OLD | NEW |
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 Loading... |
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 Loading... |
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/ |
OLD | NEW |