blob: f1ea2dc0e6c56068dff1d0f16444115275ab8a6f (
plain)
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
PROJECTNAME=minicc
CXX=clang++-10
#CXX=g++-9
#CXXFLAGS=-O2 -DNDEBUG
CXXFLAGS=-O0 -g -D_DEBUG
# -fprofile-instr-generate -fcoverage-mapping
# gcc:--coverage
CXXFLAGS+= -Wall -I.
ifeq ($(CXX),clang++-10)
# broken with lld-8:
# ld.lld-8: error: undefined symbol: boost::re_detail_106700::cpp_regex_traits_implementation<char>::transform(char const*, char const*) const
CXXFLAGS+=-std=c++20 -stdlib=libc++
else
CXXFLAGS+=-std=c++2a
endif
CXXTESTFLAGS=-Igoogletest/include -Igooglemock/include/ -Igoogletest -Igooglemock
LIBS=\
-lboost_context \
-lboost_coroutine \
-lboost_program_options \
-lboost_system \
-lboost_thread \
-lboost_filesystem \
-lboost_regex \
-lpthread
ifeq ($(CXX),clang++-10)
LIBS+= \
-fuse-ld=lld-10 \
-lc++ \
-lc++abi
#-lc++fs
#-lstdc++ \
#-lstdc++fs
else
LIBS+= \
-lstdc++
#-lstdc++fs
endif
PROGSRC=\
asm/assembler.cpp \
asm/chunk.cpp \
asm/intel64/add.cpp \
asm/intel64/dec.cpp \
asm/intel64/div.cpp \
asm/intel64/idiv.cpp \
asm/intel64/inc.cpp \
asm/intel64/imul.cpp \
asm/intel64/int.cpp \
asm/intel64/jmp.cpp \
asm/intel64/mov.cpp \
asm/intel64/mul.cpp \
asm/intel64/pop.cpp \
asm/intel64/push.cpp \
asm/intel64/sub.cpp \
asm/intel64/trivials.cpp \
asm/intel64/xor.cpp \
asm/intel64/codes.cpp \
asm/intel64/encode.cpp \
asm/operators.cpp \
asm/segment.cpp \
bnf.cpp \
cpp.cpp \
cppbnf.cpp \
coff.cpp \
debug.cpp \
elf.cpp \
flowgraph/data.cpp \
flowgraph/graph.cpp \
flowgraph/node.cpp \
flowgraph/scope.cpp \
flowgraph/storage.cpp \
file.cpp \
grammer.cpp \
lexer.cpp \
minicc.cpp \
programopts.cpp
TESTSRC=\
tests/test-cpp.cpp \
tests/test-cppbnf.cpp \
tests/test-elf.cpp \
tests/test-flowgraph.cpp \
tests/test-grammer.cpp \
tests/test-lexer.cpp \
tests/test-minicc.cpp \
tests/test-asm.cpp \
googlemock/src/gmock-all.cpp \
googletest/src/gtest-all.cpp \
$(PROGSRC)
SRC=$(PROGSRC) mcc.cpp
all: mcc unittest systemtest
# Tests on C++ level
unittest: test-$(PROJECTNAME)
./test-$(PROJECTNAME) # --gtest_filter='CppTest.compile_2_times'
# Testing mcc executable and compiled elf programs
systemtest: mcc
./mcc systemtest/mcc-execute.tests/test-return-1.cpp
./mcc systemtest/mcc-execute.tests/test-addition.cpp
runtest --srcdir systemtest --tool mcc # --all
# testsuite ----------------------------------------------
test-$(PROJECTNAME): $(TESTSRC:.cpp=.o)
$(CXX) $(CXXFLAGS) $^ $(LIBS) -o $@
mcc: $(SRC:.cpp=.o)
$(CXX) $(CXXFLAGS) $^ $(LIBS) -o $@
dep:
-rm -f $(TESTSRC:.cpp=.d) mcc.d
$(MAKE) $(TESTSRC:.cpp=.d) mcc.d
%.d: %.cpp
$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -MM -MP -MF $@ -MT $(*D)/$(*F).o -c $<
%.o: %.cpp %.d
$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@
googletest/src/%.o: googletest/src/%.cc
$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@
# dependencies
ADD_DEP=Makefile
# misc ---------------------------------------------------
clean:
-rm -f test-$(PROJECTNAME) mcc tempfile.txt
-find . -name '*.o' -o -name '*.d' -o -name '*.gcno' -o -name '*.gcda' | xargs rm -f
-rm -f systemtest/mcc-execute.tests/test-return-1
-rm -f systemtest/mcc-execute.tests/test-addition
-rm -f *.log *.sum
zip: clean
-rm -f ../$(PROJECTNAME).zip
zip -r ../$(PROJECTNAME).zip *
ls -l ../$(PROJECTNAME).zip
.PHONY: clean all zip dep systemtest unittest
-include $(wildcard $(SRC:.cpp=.d))
|