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> LLVM_BIN_PATH=<path> \ | 5 # make LLVM_SRC_PATH=<path> LLVM_BIN_PATH=<path> \ |
6 # LIBCXX_INSTALL_PATH=<path> CLANG_PATH=<path> ... | 6 # LIBCXX_INSTALL_PATH=<path> CLANG_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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 IceGlobalInits.cpp \ | 111 IceGlobalInits.cpp \ |
112 IceInst.cpp \ | 112 IceInst.cpp \ |
113 IceInstX8632.cpp \ | 113 IceInstX8632.cpp \ |
114 IceIntrinsics.cpp \ | 114 IceIntrinsics.cpp \ |
115 IceLiveness.cpp \ | 115 IceLiveness.cpp \ |
116 IceOperand.cpp \ | 116 IceOperand.cpp \ |
117 IceRegAlloc.cpp \ | 117 IceRegAlloc.cpp \ |
118 IceRNG.cpp \ | 118 IceRNG.cpp \ |
119 IceTargetLowering.cpp \ | 119 IceTargetLowering.cpp \ |
120 IceTargetLoweringX8632.cpp \ | 120 IceTargetLoweringX8632.cpp \ |
| 121 IceThreading.cpp \ |
121 IceTimerTree.cpp \ | 122 IceTimerTree.cpp \ |
122 IceTranslator.cpp \ | 123 IceTranslator.cpp \ |
123 IceTypes.cpp \ | 124 IceTypes.cpp \ |
124 llvm2ice.cpp \ | 125 llvm2ice.cpp \ |
125 PNaClTranslator.cpp | 126 PNaClTranslator.cpp |
126 | 127 |
127 ifndef MINIMAL | 128 ifndef MINIMAL |
128 SRCS += IceConverter.cpp \ | 129 SRCS += IceConverter.cpp \ |
129 IceTypeConverter.cpp | 130 IceTypeConverter.cpp |
130 endif | 131 endif |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 git diff -U0 `git merge-base HEAD master` | \ | 212 git diff -U0 `git merge-base HEAD master` | \ |
212 PATH=$(LLVM_BIN_PATH):$(PATH) \ | 213 PATH=$(LLVM_BIN_PATH):$(PATH) \ |
213 $(LLVM_SRC_PATH)/../clang/tools/clang-format/clang-format-diff.py \ | 214 $(LLVM_SRC_PATH)/../clang/tools/clang-format/clang-format-diff.py \ |
214 -p1 -style=LLVM -i | 215 -p1 -style=LLVM -i |
215 | 216 |
216 clean: | 217 clean: |
217 rm -rf llvm2ice *.o $(OBJDIR) | 218 rm -rf llvm2ice *.o $(OBJDIR) |
218 | 219 |
219 clean-all: clean | 220 clean-all: clean |
220 rm -rf build/ | 221 rm -rf build/ |
OLD | NEW |