| 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> 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 # PNACL_BIN_PATH=<path> ... | 7 # PNACL_BIN_PATH=<path> ... |
| 8 # | 8 # |
| 9 | 9 |
| 10 # LLVM_SRC_PATH is the path to the root of the checked out source code. This | 10 # LLVM_SRC_PATH is the path to the root of the checked out source code. This |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 IceGlobalContext.cpp \ | 168 IceGlobalContext.cpp \ |
| 169 IceGlobalInits.cpp \ | 169 IceGlobalInits.cpp \ |
| 170 IceInst.cpp \ | 170 IceInst.cpp \ |
| 171 IceInstX8632.cpp \ | 171 IceInstX8632.cpp \ |
| 172 IceIntrinsics.cpp \ | 172 IceIntrinsics.cpp \ |
| 173 IceLiveness.cpp \ | 173 IceLiveness.cpp \ |
| 174 IceOperand.cpp \ | 174 IceOperand.cpp \ |
| 175 IceRegAlloc.cpp \ | 175 IceRegAlloc.cpp \ |
| 176 IceRNG.cpp \ | 176 IceRNG.cpp \ |
| 177 IceTargetLowering.cpp \ | 177 IceTargetLowering.cpp \ |
| 178 IceTargetLoweringARM32.cpp \ |
| 178 IceTargetLoweringX8632.cpp \ | 179 IceTargetLoweringX8632.cpp \ |
| 179 IceThreading.cpp \ | 180 IceThreading.cpp \ |
| 180 IceTimerTree.cpp \ | 181 IceTimerTree.cpp \ |
| 181 IceTranslator.cpp \ | 182 IceTranslator.cpp \ |
| 182 IceTypes.cpp \ | 183 IceTypes.cpp \ |
| 183 main.cpp \ | 184 main.cpp \ |
| 184 PNaClTranslator.cpp | 185 PNaClTranslator.cpp |
| 185 | 186 |
| 186 ifndef MINIMAL | 187 ifndef MINIMAL |
| 187 SRCS += IceConverter.cpp \ | 188 SRCS += IceConverter.cpp \ |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 bloat: make_symlink | 317 bloat: make_symlink |
| 317 nm -C -S -l pnacl-sz | \ | 318 nm -C -S -l pnacl-sz | \ |
| 318 bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json | 319 bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json |
| 319 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html | 320 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html |
| 320 | 321 |
| 321 clean: | 322 clean: |
| 322 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 323 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
| 323 | 324 |
| 324 clean-all: clean | 325 clean-all: clean |
| 325 rm -rf build/ | 326 rm -rf build/ |
| OLD | NEW |