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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 -Wno-error=unused-parameter -I$(LIBCXX_INSTALL_PATH)/include/c++/v1 | 66 -Wno-error=unused-parameter -I$(LIBCXX_INSTALL_PATH)/include/c++/v1 |
67 LDFLAGS := $(HOST_FLAGS) -L$(LIBCXX_INSTALL_PATH)/lib | 67 LDFLAGS := $(HOST_FLAGS) -L$(LIBCXX_INSTALL_PATH)/lib |
68 | 68 |
69 SRCS= \ | 69 SRCS= \ |
70 assembler.cpp \ | 70 assembler.cpp \ |
71 assembler_ia32.cpp \ | 71 assembler_ia32.cpp \ |
72 IceCfg.cpp \ | 72 IceCfg.cpp \ |
73 IceCfgNode.cpp \ | 73 IceCfgNode.cpp \ |
74 IceConverter.cpp \ | 74 IceConverter.cpp \ |
75 IceGlobalContext.cpp \ | 75 IceGlobalContext.cpp \ |
| 76 IceGlobalInits.cpp \ |
76 IceInst.cpp \ | 77 IceInst.cpp \ |
77 IceInstX8632.cpp \ | 78 IceInstX8632.cpp \ |
78 IceIntrinsics.cpp \ | 79 IceIntrinsics.cpp \ |
79 IceLiveness.cpp \ | 80 IceLiveness.cpp \ |
80 IceMemoryRegion.cpp \ | 81 IceMemoryRegion.cpp \ |
81 IceOperand.cpp \ | 82 IceOperand.cpp \ |
82 IceRegAlloc.cpp \ | 83 IceRegAlloc.cpp \ |
83 IceRNG.cpp \ | 84 IceRNG.cpp \ |
84 IceTargetLowering.cpp \ | 85 IceTargetLowering.cpp \ |
85 IceTargetLoweringX8632.cpp \ | 86 IceTargetLoweringX8632.cpp \ |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 CLANG_FORMAT_DIFF = clang-format-diff.py | 136 CLANG_FORMAT_DIFF = clang-format-diff.py |
136 else | 137 else |
137 CLANG_FORMAT_DIFF = /usr/lib/clang-format/clang-format-diff.py | 138 CLANG_FORMAT_DIFF = /usr/lib/clang-format/clang-format-diff.py |
138 endif | 139 endif |
139 format-diff: | 140 format-diff: |
140 git diff -U0 `git merge-base HEAD master` | \ | 141 git diff -U0 `git merge-base HEAD master` | \ |
141 $(CLANG_FORMAT_DIFF) -p1 -style=LLVM -i | 142 $(CLANG_FORMAT_DIFF) -p1 -style=LLVM -i |
142 | 143 |
143 clean: | 144 clean: |
144 rm -rf llvm2ice *.o build/ | 145 rm -rf llvm2ice *.o build/ |
OLD | NEW |