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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 IceCompileServer.cpp \ | 176 IceCompileServer.cpp \ |
177 IceELFObjectWriter.cpp \ | 177 IceELFObjectWriter.cpp \ |
178 IceELFSection.cpp \ | 178 IceELFSection.cpp \ |
179 IceFixups.cpp \ | 179 IceFixups.cpp \ |
180 IceGlobalContext.cpp \ | 180 IceGlobalContext.cpp \ |
181 IceGlobalInits.cpp \ | 181 IceGlobalInits.cpp \ |
182 IceInst.cpp \ | 182 IceInst.cpp \ |
183 IceInstARM32.cpp \ | 183 IceInstARM32.cpp \ |
184 IceInstMIPS32.cpp \ | 184 IceInstMIPS32.cpp \ |
185 IceInstX8632.cpp \ | 185 IceInstX8632.cpp \ |
| 186 IceInstX8664.cpp \ |
186 IceIntrinsics.cpp \ | 187 IceIntrinsics.cpp \ |
187 IceLiveness.cpp \ | 188 IceLiveness.cpp \ |
188 IceOperand.cpp \ | 189 IceOperand.cpp \ |
189 IceRegAlloc.cpp \ | 190 IceRegAlloc.cpp \ |
190 IceRNG.cpp \ | 191 IceRNG.cpp \ |
191 IceSwitchLowering.cpp \ | 192 IceSwitchLowering.cpp \ |
192 IceTargetLowering.cpp \ | 193 IceTargetLowering.cpp \ |
193 IceTargetLoweringARM32.cpp \ | 194 IceTargetLoweringARM32.cpp \ |
194 IceTargetLoweringMIPS32.cpp \ | 195 IceTargetLoweringMIPS32.cpp \ |
195 IceTargetLoweringX8632.cpp \ | 196 IceTargetLoweringX8632.cpp \ |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 | 373 |
373 docs: | 374 docs: |
374 doxygen Doxyfile | 375 doxygen Doxyfile |
375 @echo See file://`pwd`/docs/html/index.html | 376 @echo See file://`pwd`/docs/html/index.html |
376 | 377 |
377 clean: | 378 clean: |
378 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 379 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
379 | 380 |
380 clean-all: clean | 381 clean-all: clean |
381 rm -rf build/ docs/ | 382 rm -rf build/ docs/ |
OLD | NEW |