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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 -I$(LIBCXX_INSTALL_PATH)/include/c++/v1 | 88 -I$(LIBCXX_INSTALL_PATH)/include/c++/v1 |
89 LDFLAGS := $(HOST_FLAGS) -L$(LIBCXX_INSTALL_PATH)/lib -Wl,--gc-sections | 89 LDFLAGS := $(HOST_FLAGS) -L$(LIBCXX_INSTALL_PATH)/lib -Wl,--gc-sections |
90 | 90 |
91 SRCS = \ | 91 SRCS = \ |
92 assembler.cpp \ | 92 assembler.cpp \ |
93 assembler_ia32.cpp \ | 93 assembler_ia32.cpp \ |
94 IceCfg.cpp \ | 94 IceCfg.cpp \ |
95 IceCfgNode.cpp \ | 95 IceCfgNode.cpp \ |
96 IceELFObjectWriter.cpp \ | 96 IceELFObjectWriter.cpp \ |
97 IceELFSection.cpp \ | 97 IceELFSection.cpp \ |
| 98 IceFixups.cpp \ |
98 IceGlobalContext.cpp \ | 99 IceGlobalContext.cpp \ |
99 IceGlobalInits.cpp \ | 100 IceGlobalInits.cpp \ |
100 IceInst.cpp \ | 101 IceInst.cpp \ |
101 IceInstX8632.cpp \ | 102 IceInstX8632.cpp \ |
102 IceIntrinsics.cpp \ | 103 IceIntrinsics.cpp \ |
103 IceLiveness.cpp \ | 104 IceLiveness.cpp \ |
104 IceOperand.cpp \ | 105 IceOperand.cpp \ |
105 IceRegAlloc.cpp \ | 106 IceRegAlloc.cpp \ |
106 IceRNG.cpp \ | 107 IceRNG.cpp \ |
107 IceTargetLowering.cpp \ | 108 IceTargetLowering.cpp \ |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 endif | 205 endif |
205 format-diff: | 206 format-diff: |
206 git diff -U0 `git merge-base HEAD master` | \ | 207 git diff -U0 `git merge-base HEAD master` | \ |
207 $(CLANG_FORMAT_DIFF) -p1 -style=LLVM -i | 208 $(CLANG_FORMAT_DIFF) -p1 -style=LLVM -i |
208 | 209 |
209 clean: | 210 clean: |
210 rm -rf llvm2ice *.o $(OBJDIR) | 211 rm -rf llvm2ice *.o $(OBJDIR) |
211 | 212 |
212 clean-all: clean | 213 clean-all: clean |
213 rm -rf build/ | 214 rm -rf build/ |
OLD | NEW |