| 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 # | 6 # |
| 7 | 7 |
| 8 # LLVM_SRC_PATH is the path to the root of the checked out source code. This | 8 # LLVM_SRC_PATH is the path to the root of the checked out source code. This |
| 9 # directory should contain the configure script, the include/ and lib/ | 9 # directory should contain the configure script, the include/ and lib/ |
| 10 # directories of LLVM, Clang in tools/clang/, etc. | 10 # directories of LLVM, Clang in tools/clang/, etc. |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 IceCfg.cpp \ | 50 IceCfg.cpp \ |
| 51 IceCfgNode.cpp \ | 51 IceCfgNode.cpp \ |
| 52 IceConverter.cpp \ | 52 IceConverter.cpp \ |
| 53 IceGlobalContext.cpp \ | 53 IceGlobalContext.cpp \ |
| 54 IceInst.cpp \ | 54 IceInst.cpp \ |
| 55 IceInstX8632.cpp \ | 55 IceInstX8632.cpp \ |
| 56 IceIntrinsics.cpp \ | 56 IceIntrinsics.cpp \ |
| 57 IceLiveness.cpp \ | 57 IceLiveness.cpp \ |
| 58 IceOperand.cpp \ | 58 IceOperand.cpp \ |
| 59 IceRegAlloc.cpp \ | 59 IceRegAlloc.cpp \ |
| 60 IceRNG.cpp \ | 60 » IceRNG.cpp \ |
| 61 IceTargetLowering.cpp \ | 61 IceTargetLowering.cpp \ |
| 62 IceTargetLoweringX8632.cpp \ | 62 IceTargetLoweringX8632.cpp \ |
| 63 IceTranslator.cpp \ | 63 IceTranslator.cpp \ |
| 64 IceTypeConverter.cpp \ | 64 IceTypeConverter.cpp \ |
| 65 IceTypes.cpp \ | 65 IceTypes.cpp \ |
| 66 assembler.cpp \ |
| 67 assembler_ia32.cpp \ |
| 66 llvm2ice.cpp \ | 68 llvm2ice.cpp \ |
| 67 PNaClTranslator.cpp | 69 PNaClTranslator.cpp |
| 68 | 70 |
| 69 OBJS=$(patsubst %.cpp, build/%.o, $(SRCS)) | 71 OBJS=$(patsubst %.cpp, build/%.o, $(SRCS)) |
| 70 | 72 |
| 71 # Keep all the first target so it's the default. | 73 # Keep all the first target so it's the default. |
| 72 all: llvm2ice | 74 all: llvm2ice |
| 73 | 75 |
| 74 .PHONY: all | 76 .PHONY: all |
| 75 | 77 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 106 CLANG_FORMAT_DIFF = clang-format-diff.py | 108 CLANG_FORMAT_DIFF = clang-format-diff.py |
| 107 else | 109 else |
| 108 CLANG_FORMAT_DIFF = /usr/lib/clang-format/clang-format-diff.py | 110 CLANG_FORMAT_DIFF = /usr/lib/clang-format/clang-format-diff.py |
| 109 endif | 111 endif |
| 110 format-diff: | 112 format-diff: |
| 111 git diff -U0 `git merge-base HEAD master` | \ | 113 git diff -U0 `git merge-base HEAD master` | \ |
| 112 $(CLANG_FORMAT_DIFF) -p1 -style=LLVM -i | 114 $(CLANG_FORMAT_DIFF) -p1 -style=LLVM -i |
| 113 | 115 |
| 114 clean: | 116 clean: |
| 115 rm -rf llvm2ice *.o build/ | 117 rm -rf llvm2ice *.o build/ |
| OLD | NEW |