| 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 # compile, in the hope of improving parallel build time. | 235 # compile, in the hope of improving parallel build time. |
| 236 SRCS = \ | 236 SRCS = \ |
| 237 IceAssemblerARM32.cpp \ | 237 IceAssemblerARM32.cpp \ |
| 238 IceInstARM32.cpp \ | 238 IceInstARM32.cpp \ |
| 239 IceInstMIPS32.cpp \ | 239 IceInstMIPS32.cpp \ |
| 240 IceInstX8632.cpp \ | 240 IceInstX8632.cpp \ |
| 241 IceInstX8664.cpp \ | 241 IceInstX8664.cpp \ |
| 242 IceTargetLowering.cpp \ | 242 IceTargetLowering.cpp \ |
| 243 IceTargetLoweringARM32.cpp \ | 243 IceTargetLoweringARM32.cpp \ |
| 244 IceTargetLoweringMIPS32.cpp \ | 244 IceTargetLoweringMIPS32.cpp \ |
| 245 IceTargetLoweringX86.cpp \ |
| 245 IceTargetLoweringX8632.cpp \ | 246 IceTargetLoweringX8632.cpp \ |
| 246 IceTargetLoweringX8664.cpp \ | 247 IceTargetLoweringX8664.cpp \ |
| 247 IceAssembler.cpp \ | 248 IceAssembler.cpp \ |
| 248 IceBrowserCompileServer.cpp \ | 249 IceBrowserCompileServer.cpp \ |
| 249 IceCfg.cpp \ | 250 IceCfg.cpp \ |
| 250 IceCfgNode.cpp \ | 251 IceCfgNode.cpp \ |
| 251 IceClFlags.cpp \ | 252 IceClFlags.cpp \ |
| 252 IceCompiler.cpp \ | 253 IceCompiler.cpp \ |
| 253 IceCompileServer.cpp \ | 254 IceCompileServer.cpp \ |
| 254 IceELFObjectWriter.cpp \ | 255 IceELFObjectWriter.cpp \ |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 550 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html | 551 @echo See Subzero size breakdown in bloat/pnacl-sz.bloat.html |
| 551 | 552 |
| 552 docs: | 553 docs: |
| 553 make -C docs -f Makefile.standalone | 554 make -C docs -f Makefile.standalone |
| 554 | 555 |
| 555 clean: | 556 clean: |
| 556 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 557 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
| 557 | 558 |
| 558 clean-all: clean | 559 clean-all: clean |
| 559 rm -rf build/ crosstest/Output/ | 560 rm -rf build/ crosstest/Output/ |
| OLD | NEW |