| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 IceInstARM32.cpp \ |
| 181 IceInstMIPS32.cpp \ |
| 181 IceInstX8632.cpp \ | 182 IceInstX8632.cpp \ |
| 182 IceIntrinsics.cpp \ | 183 IceIntrinsics.cpp \ |
| 183 IceLiveness.cpp \ | 184 IceLiveness.cpp \ |
| 184 IceOperand.cpp \ | 185 IceOperand.cpp \ |
| 185 IceRegAlloc.cpp \ | 186 IceRegAlloc.cpp \ |
| 186 IceRNG.cpp \ | 187 IceRNG.cpp \ |
| 187 IceTargetLowering.cpp \ | 188 IceTargetLowering.cpp \ |
| 188 IceTargetLoweringARM32.cpp \ | 189 IceTargetLoweringARM32.cpp \ |
| 189 IceTargetLoweringX8632.cpp \ | 190 IceTargetLoweringX8632.cpp \ |
| 190 IceTargetLoweringMIPS32.cpp \ | 191 IceTargetLoweringMIPS32.cpp \ |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 bloat: make_symlink | 330 bloat: make_symlink |
| 330 nm -C -S -l pnacl-sz | \ | 331 nm -C -S -l pnacl-sz | \ |
| 331 bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json | 332 bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json |
| 332 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html | 333 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html |
| 333 | 334 |
| 334 clean: | 335 clean: |
| 335 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 336 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
| 336 | 337 |
| 337 clean-all: clean | 338 clean-all: clean |
| 338 rm -rf build/ | 339 rm -rf build/ |
| OLD | NEW |