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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 IceCompileServer.cpp \ | 185 IceCompileServer.cpp \ |
186 IceELFObjectWriter.cpp \ | 186 IceELFObjectWriter.cpp \ |
187 IceELFSection.cpp \ | 187 IceELFSection.cpp \ |
188 IceFixups.cpp \ | 188 IceFixups.cpp \ |
189 IceGlobalContext.cpp \ | 189 IceGlobalContext.cpp \ |
190 IceGlobalInits.cpp \ | 190 IceGlobalInits.cpp \ |
191 IceInst.cpp \ | 191 IceInst.cpp \ |
192 IceInstARM32.cpp \ | 192 IceInstARM32.cpp \ |
193 IceInstMIPS32.cpp \ | 193 IceInstMIPS32.cpp \ |
194 IceInstX8632.cpp \ | 194 IceInstX8632.cpp \ |
| 195 IceInstX8664.cpp \ |
195 IceIntrinsics.cpp \ | 196 IceIntrinsics.cpp \ |
196 IceLiveness.cpp \ | 197 IceLiveness.cpp \ |
197 IceOperand.cpp \ | 198 IceOperand.cpp \ |
198 IceRegAlloc.cpp \ | 199 IceRegAlloc.cpp \ |
199 IceRNG.cpp \ | 200 IceRNG.cpp \ |
200 IceSwitchLowering.cpp \ | 201 IceSwitchLowering.cpp \ |
201 IceTargetLowering.cpp \ | 202 IceTargetLowering.cpp \ |
202 IceTargetLoweringARM32.cpp \ | 203 IceTargetLoweringARM32.cpp \ |
203 IceTargetLoweringMIPS32.cpp \ | 204 IceTargetLoweringMIPS32.cpp \ |
204 IceTargetLoweringX8632.cpp \ | 205 IceTargetLoweringX8632.cpp \ |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 | 387 |
387 docs: | 388 docs: |
388 doxygen Doxyfile | 389 doxygen Doxyfile |
389 @echo See file://`pwd`/docs/html/index.html | 390 @echo See file://`pwd`/docs/html/index.html |
390 | 391 |
391 clean: | 392 clean: |
392 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 393 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
393 | 394 |
394 clean-all: clean | 395 clean-all: clean |
395 rm -rf build/ docs/ | 396 rm -rf build/ docs/ |
OLD | NEW |