| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 IceInstARM32.cpp \ | 180 IceInstARM32.cpp \ |
| 181 IceInstX8632.cpp \ | 181 IceInstX8632.cpp \ |
| 182 IceIntrinsics.cpp \ | 182 IceIntrinsics.cpp \ |
| 183 IceLiveness.cpp \ | 183 IceLiveness.cpp \ |
| 184 IceOperand.cpp \ | 184 IceOperand.cpp \ |
| 185 IceRegAlloc.cpp \ | 185 IceRegAlloc.cpp \ |
| 186 IceRNG.cpp \ | 186 IceRNG.cpp \ |
| 187 IceTargetLowering.cpp \ | 187 IceTargetLowering.cpp \ |
| 188 IceTargetLoweringARM32.cpp \ | 188 IceTargetLoweringARM32.cpp \ |
| 189 IceTargetLoweringX8632.cpp \ | 189 IceTargetLoweringX8632.cpp \ |
| 190 IceTargetLoweringMIPS32.cpp \ |
| 190 IceThreading.cpp \ | 191 IceThreading.cpp \ |
| 191 IceTimerTree.cpp \ | 192 IceTimerTree.cpp \ |
| 192 IceTranslator.cpp \ | 193 IceTranslator.cpp \ |
| 193 IceTypes.cpp \ | 194 IceTypes.cpp \ |
| 194 main.cpp \ | 195 main.cpp \ |
| 195 PNaClTranslator.cpp | 196 PNaClTranslator.cpp |
| 196 | 197 |
| 197 ifndef MINIMAL | 198 ifndef MINIMAL |
| 198 SRCS += IceConverter.cpp \ | 199 SRCS += IceConverter.cpp \ |
| 199 IceTypeConverter.cpp | 200 IceTypeConverter.cpp |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 bloat: make_symlink | 328 bloat: make_symlink |
| 328 nm -C -S -l pnacl-sz | \ | 329 nm -C -S -l pnacl-sz | \ |
| 329 bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json | 330 bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json |
| 330 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html | 331 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html |
| 331 | 332 |
| 332 clean: | 333 clean: |
| 333 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 334 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
| 334 | 335 |
| 335 clean-all: clean | 336 clean-all: clean |
| 336 rm -rf build/ | 337 rm -rf build/ |
| OLD | NEW |