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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 IceClFlags.cpp \ | 182 IceClFlags.cpp \ |
183 IceCompiler.cpp \ | 183 IceCompiler.cpp \ |
184 IceCompileServer.cpp \ | 184 IceCompileServer.cpp \ |
185 IceELFObjectWriter.cpp \ | 185 IceELFObjectWriter.cpp \ |
186 IceELFSection.cpp \ | 186 IceELFSection.cpp \ |
187 IceFixups.cpp \ | 187 IceFixups.cpp \ |
188 IceGlobalContext.cpp \ | 188 IceGlobalContext.cpp \ |
189 IceGlobalInits.cpp \ | 189 IceGlobalInits.cpp \ |
190 IceInst.cpp \ | 190 IceInst.cpp \ |
191 IceInstARM32.cpp \ | 191 IceInstARM32.cpp \ |
| 192 IceInstMIPS32.cpp \ |
192 IceInstX8632.cpp \ | 193 IceInstX8632.cpp \ |
193 IceIntrinsics.cpp \ | 194 IceIntrinsics.cpp \ |
194 IceLiveness.cpp \ | 195 IceLiveness.cpp \ |
195 IceOperand.cpp \ | 196 IceOperand.cpp \ |
196 IceRegAlloc.cpp \ | 197 IceRegAlloc.cpp \ |
197 IceRNG.cpp \ | 198 IceRNG.cpp \ |
198 IceTargetLowering.cpp \ | 199 IceTargetLowering.cpp \ |
199 IceTargetLoweringARM32.cpp \ | 200 IceTargetLoweringARM32.cpp \ |
200 IceTargetLoweringMIPS32.cpp \ | 201 IceTargetLoweringMIPS32.cpp \ |
201 IceTargetLoweringX8632.cpp \ | 202 IceTargetLoweringX8632.cpp \ |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 | 358 |
358 docs: | 359 docs: |
359 doxygen Doxyfile | 360 doxygen Doxyfile |
360 @echo See file://`pwd`/docs/html/index.html | 361 @echo See file://`pwd`/docs/html/index.html |
361 | 362 |
362 clean: | 363 clean: |
363 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json | 364 rm -rf pnacl-sz *.o $(OBJDIR) $(SB_OBJDIR) build/pnacl-sz.bloat.json |
364 | 365 |
365 clean-all: clean | 366 clean-all: clean |
366 rm -rf build/ docs/ | 367 rm -rf build/ docs/ |
OLD | NEW |