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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 IceInstX8632.cpp \ | 101 IceInstX8632.cpp \ |
102 IceIntrinsics.cpp \ | 102 IceIntrinsics.cpp \ |
103 IceLiveness.cpp \ | 103 IceLiveness.cpp \ |
104 IceOperand.cpp \ | 104 IceOperand.cpp \ |
105 IceRegAlloc.cpp \ | 105 IceRegAlloc.cpp \ |
106 IceRNG.cpp \ | 106 IceRNG.cpp \ |
107 IceTargetLowering.cpp \ | 107 IceTargetLowering.cpp \ |
108 IceTargetLoweringX8632.cpp \ | 108 IceTargetLoweringX8632.cpp \ |
109 IceTimerTree.cpp \ | 109 IceTimerTree.cpp \ |
110 IceTranslator.cpp \ | 110 IceTranslator.cpp \ |
111 IceTypeConverter.cpp \ | |
112 IceTypes.cpp \ | 111 IceTypes.cpp \ |
113 llvm2ice.cpp \ | 112 llvm2ice.cpp \ |
114 PNaClTranslator.cpp | 113 PNaClTranslator.cpp |
115 | 114 |
116 ifndef MINIMAL | 115 ifndef MINIMAL |
117 SRCS += IceConverter.cpp | 116 SRCS += IceConverter.cpp \ |
| 117 » IceTypeConverter.cpp |
118 endif | 118 endif |
119 | 119 |
120 OBJS=$(patsubst %.cpp, $(OBJDIR)/%.o, $(SRCS)) | 120 OBJS=$(patsubst %.cpp, $(OBJDIR)/%.o, $(SRCS)) |
121 | 121 |
122 UNITTEST_SRCS = \ | 122 UNITTEST_SRCS = \ |
123 IceELFSectionTest.cpp | 123 IceELFSectionTest.cpp |
124 | 124 |
125 UNITTEST_OBJS = $(patsubst %.cpp, $(OBJDIR)/unittest/%.o, $(UNITTEST_SRCS)) | 125 UNITTEST_OBJS = $(patsubst %.cpp, $(OBJDIR)/unittest/%.o, $(UNITTEST_SRCS)) |
126 UNITTEST_LIB_OBJS = $(filter-out $(OBJDIR)/llvm2ice.o,$(OBJS)) | 126 UNITTEST_LIB_OBJS = $(filter-out $(OBJDIR)/llvm2ice.o,$(OBJS)) |
127 | 127 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 endif | 202 endif |
203 format-diff: | 203 format-diff: |
204 git diff -U0 `git merge-base HEAD master` | \ | 204 git diff -U0 `git merge-base HEAD master` | \ |
205 $(CLANG_FORMAT_DIFF) -p1 -style=LLVM -i | 205 $(CLANG_FORMAT_DIFF) -p1 -style=LLVM -i |
206 | 206 |
207 clean: | 207 clean: |
208 rm -rf llvm2ice *.o $(OBJDIR) | 208 rm -rf llvm2ice *.o $(OBJDIR) |
209 | 209 |
210 clean-all: clean | 210 clean-all: clean |
211 rm -rf build/ | 211 rm -rf build/ |
OLD | NEW |