| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 IceInst.cpp \ | 192 IceInst.cpp \ |
| 193 IceInstARM32.cpp \ | 193 IceInstARM32.cpp \ |
| 194 IceInstX8632.cpp \ | 194 IceInstX8632.cpp \ |
| 195 IceIntrinsics.cpp \ | 195 IceIntrinsics.cpp \ |
| 196 IceLiveness.cpp \ | 196 IceLiveness.cpp \ |
| 197 IceOperand.cpp \ | 197 IceOperand.cpp \ |
| 198 IceRegAlloc.cpp \ | 198 IceRegAlloc.cpp \ |
| 199 IceRNG.cpp \ | 199 IceRNG.cpp \ |
| 200 IceTargetLowering.cpp \ | 200 IceTargetLowering.cpp \ |
| 201 IceTargetLoweringARM32.cpp \ | 201 IceTargetLoweringARM32.cpp \ |
| 202 IceTargetLoweringMIPS32.cpp \ |
| 202 IceTargetLoweringX8632.cpp \ | 203 IceTargetLoweringX8632.cpp \ |
| 203 IceTargetLoweringMIPS32.cpp \ | |
| 204 IceThreading.cpp \ | 204 IceThreading.cpp \ |
| 205 IceTimerTree.cpp \ | 205 IceTimerTree.cpp \ |
| 206 IceTranslator.cpp \ | 206 IceTranslator.cpp \ |
| 207 IceTypes.cpp \ | 207 IceTypes.cpp \ |
| 208 main.cpp \ | 208 main.cpp \ |
| 209 PNaClTranslator.cpp | 209 PNaClTranslator.cpp |
| 210 | 210 |
| 211 ifndef MINIMAL | 211 ifndef MINIMAL |
| 212 SRCS += IceConverter.cpp \ | 212 SRCS += IceConverter.cpp \ |
| 213 IceTypeConverter.cpp | 213 IceTypeConverter.cpp |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 bloat: make_symlink | 353 bloat: make_symlink |
| 354 nm -C -S -l pnacl-sz | \ | 354 nm -C -S -l pnacl-sz | \ |
| 355 bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json | 355 bloat/bloat.py --nm-output=/dev/stdin syms > build/pnacl-sz.bloat.json |
| 356 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html | 356 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html |
| 357 | 357 |
| 358 clean: | 358 clean: |
| 359 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 359 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
| 360 | 360 |
| 361 clean-all: clean | 361 clean-all: clean |
| 362 rm -rf build/ | 362 rm -rf build/ |
| OLD | NEW |