-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
82 lines (66 loc) · 2.47 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# The following variables will likely need to be modified, depending on where
# and how you built LLVM & Clang. They can be overridden in a command-line
# invocation of make, like:
#
# make LLVM_SRC_PATH=<path> LLVM_BIN_PATH=<path> ...
#
# LLVM_SRC_PATH is the path to the root of the checked out source code. This
# directory should contain the configure script, the include/ and lib/
# directories of LLVM, Clang in tools/clang/, etc.
# Alternatively, if you're building vs. a binary download of LLVM, then
# LLVM_SRC_PATH can point to the main untarred directory.
LLVM_SRC_PATH ?= $$HOME/llvm/llvm_svn_rw
# LLVM_BIN_PATH is the directory where binaries are placed by the LLVM build
# process. It should contain the tools like opt, llc and clang. The default
# reflects a debug build with autotools (configure & make).
LLVM_BUILD_PATH ?= $$HOME/llvm/build/svn-make-debug
LLVM_BIN_PATH ?= $(LLVM_BUILD_PATH)/Debug+Asserts/bin
$(info -----------------------------------------------)
$(info Using LLVM_SRC_PATH = $(LLVM_SRC_PATH))
$(info Using LLVM_BIN_PATH = $(LLVM_BIN_PATH))
$(info -----------------------------------------------)
LLVM_CXXFLAGS := `$(LLVM_BIN_PATH)/llvm-config --cxxflags`
#LLVM_LDFLAGS := `$(LLVM_BIN_PATH)/llvm-config --ldflags --libs --system-libs`
LLVM_LDFLAGS := `$(LLVM_BIN_PATH)/llvm-config --ldflags --libs`
# It's recommended that CXX matches the compiler you used to build LLVM itself.
OPTLEVEL := -O0
CXX := g++
CXXFLAGS := -Wall -Wextra -Werror -pedantic -Wno-long-long -Wno-vla -fno-rtti -fno-exceptions \
$(OPTLEVEL) -g $(LLVM_CXXFLAGS)
LDFLAGS :=
SRCS= \
IceCfg.cpp \
IceCfgNode.cpp \
IceGlobalContext.cpp \
IceInst.cpp \
IceInstX8632.cpp \
IceLiveness.cpp \
IceOperand.cpp \
IceRegAlloc.cpp \
IceRegManager.cpp \
IceTargetLowering.cpp \
IceTargetLoweringX8632.cpp \
IceTypes.cpp \
llvm2ice.cpp
OBJS=$(patsubst %.cpp, build/%.o, $(SRCS))
# Keep all the first target so it's the default.
all: llvm2ice
.PHONY: all
llvm2ice: $(OBJS)
$(CXX) $(LDFLAGS) -o $@ $^ $(LLVM_LDFLAGS) -ldl -lcurses
# TODO: Be more precise than "*.h" here and elsewhere.
$(OBJS): build/%.o: src/%.cpp src/*.h src/*.def
$(CXX) -c $(CXXFLAGS) $< -o $@
$(OBJS): | build
build:
@mkdir -p $@
check: llvm2ice
LLVM_BIN_PATH=$(LLVM_BIN_PATH) \
$(LLVM_SRC_PATH)/utils/lit/lit.py -sv tests_lit
(cd crosstest; ./runtests.sh)
# TODO: Fix the use of wildcards.
format:
$(LLVM_BIN_PATH)/clang-format -style=LLVM -i \
src/Ice*.h src/Ice*.cpp src/llvm2ice.cpp
clean:
rm -rf llvm2ice *.o build/