forked from compsl/compsl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.mk
212 lines (181 loc) · 6.14 KB
/
setup.mk
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
# this file sets up variables further, based on the values from config.mak
-include config.mak
ifeq ($(TARGET_OS),SunOS)
LDFLAGS= -G -Wl,-h,lib$(SHORTLIB).so
else
# This works for linux, dunno about others
LDFLAGS= -shared -Wl,-soname,lib$(SHORTLIB).so
endif
CFLAGS += -ftabstop=4 -Wall -Wbad-function-cast -Wcast-align -Wwrite-strings
CFLAGS += -Wnonnull -Wno-attributes
#CFLAGS += -Wunreachable-code
override CPUFLAGS =
ifeq ($(TARGET_MMX),yes)
override CPUFLAGS +=-mmmx
endif
ifeq ($(TARGET_SSE2),yes)
override CPUFLAGS +=-msse2 -mfpmath=sse,387
else
ifeq ($(TARGET_SSE),yes)
override CPUFLAGS +=-msse -mfpmath=sse,387
endif
endif
APPSTATMSG=
DEFFLAGS=
APPSTATMSG += Compiler Debug messages are
ifeq ($(DEBUG_COMP),yes)
DEFFLAGS +=-DDEBUG_COMP
APPSTATMSG += ON\\n
else
APPSTATMSG += OFF\\n
endif
APPSTATMSG += Interpreter execution tracing is
ifeq ($(TRACE_INTERP),yes)
DEFFLAGS += -D_COMPSL_TRACE
APPSTATMSG += ON\\n
else
APPSTATMSG += OFF\\n
endif
#cause the optimizer to output code dumps as it runs each stage
APPSTATMSG += Tracing bytecode optimizer is
ifeq ($(TRACE_OPTIM),yes)
DEFFLAGS += -DCOMPSL_TRACE_OPTIM
APPSTATMSG += ON\\n
else
APPSTATMSG += OFF\\n
endif
# make the compiler output the line number it's currently compiling
# to stdout
APPSTATMSG += Tracing compile is
ifeq ($(TRACE_COMPILE),yes)
DEFFLAGS += -DCOMPSL_TRACE_COMPILE
APPSTATMSG += ON\\n
else
APPSTATMSG += OFF\\n
endif
APPSTATMSG += Compile time bytecode stack bounds checking is
ifeq ($(STACK_CHECK),yes)
DEFFLAGS += -DCOMP_STACKCHECK
APPSTATMSG += ON\\n
else
APPSTATMSG += OFF\\n
endif
APPSTATMSG += Mudflap pointer debuging is
ifeq ($(MUDFLAP_ENABLE),yes)
MUDFLAP_FLAGS += -fmudflap
PLATLIBS += -lmudflap
APPSTATMSG += ON\\n
else
APPSTATMSG += OFF\\n
endif
ifdef DEBUG
# -fmudflap is some pointer debuging stuff
# -fno-builtins since we can't set breakpoints on calls to builtin functions
# -fstack-protector checks for stack overruns
CFLAGS += -ggdb3 -fno-builtin -fstack-protector
else
CFLAGS += -fbuiltin
DEFFLAGS += -DNDEBUG
endif
ifeq ($(OPTIMIZE),FULL)
# don't use O3 since we really probably don't need it and we don't
# know if it really procuces better code for us
OPTFLAGS += -O2 -fmerge-all-constants -fmodulo-sched -fgcse-after-reload
#these are what -O3 turns on
#-finline-functions -funswitch-loops -fgcse-after-reload
#OPTFLAGS += -funroll-loops -fsee -fipa-pta
#OPTFLAGS += -fsched-spec-load -maccumulate-outgoing-args
OPTFLAGS += -minline-all-stringops
OPTFLAGS += -fno-stack-limit
#OPTFLAGS +=-fdata-sections -ffunction-sections
# TODO: make sure none of these breaks the library for linking....
OPTFLAGS += -fstrict-aliasing -Wstrict-aliasing=2
#OPTFLAGS += -fgcse-sm -fgcse-las
#OPTFLAGS += -ftree-vectorize -ftree-loop-linear -ftree-loop-im -fivopts -ftree-loop-ivcanon
#according to gentoo wiki tracer may not work...
#OPTFLAGS += -ftracer -fsched2-use-traces
#OPTFLAGS += -fsplit-ivs-in-unroller -fvariable-expansion-in-unroller
OPTFLAGS += -freorder-blocks-and-partition
#OPTFLAGS += -fprefetch-loop-arrays
OPTFLAGS += -fbranch-target-load-optimize
#OPTFLAGS += -fbranch-target-load-optimize2
#OPTFLAGS += -floop-optimize2 -fmove-all-movables
###################################################
# potentially bad optimizations
###################################################
# from gcc manual
# This option is experimental, as not all machine descriptions used by GCC
# model the CPU closely enough to avoid unreliable results from the algorithm.
#OPTFLAGS += -fsched2-use-superblocks
#can we use this?
#-fmerge-all-constants Attempt to merge identical constants and identical variables.
# This option implies -fmerge-constants. In addition to -fmerge-constants this considers
# e.g. even constant initialized arrays or initialized constant variables with integral or
# floating point types. Languages like C or C++ require each non-automatic variable to have
# distinct location, so using this option will result in non-conforming behavior.
else
OPTFLAGS += -O$(OPTIMIZE)
endif
MATH_FLAGS =-fsingle-precision-constant -fno-math-errno
MATH_FLAGS += -fno-trapping-math -ffast-math
APPSTATMSG += IEEE compliant floating point is
ifeq ($(IEEE_FLOATS),yes)
APPSTATMSG += ON\\n
else
MATH_FLAGS += -ffinite-math-only -mno-ieee-fp -funsafe-math-optimizations
APPSTATMSG += OFF\\n
endif
# for shared library
ifneq ($(TARGET_WIN32),yes)
CFLAGS += -fvisibility=hidden -fpic
else
DEFFLAGS += -DWINDOWS
endif
DEFFLAGS +=-D_GNU_SOURCE -DBUILDING_COMPSL
#PP_FLAGS = -I $(abspath src/include)
PP_FLAGS = -I "$(shell pwd)/src/include"
ALL_CFLAGS = -std=gnu99 $(CPUFLAGS) $(OPTFLAGS) $(MATH_FLAGS) $(CFLAGS) $(DEFFLAGS)
override ALL_CFLAGS := $(shell CC=$(CC) ./gcc-optioncheck $(ALL_CFLAGS)) $(PP_FLAGS) $(MUDFLAP_FLAGS)
STATMSG = Compiling with $(CC) version $(shell $(CC) -dumpversion)
STATMSG += targeting $(TARGET_CPU) on $(TARGET_OS) for
ifdef DEBUG
STATMSG += Debugging\\n
else
STATMSG += Release\\n
endif
ifeq ($(OPTIMIZE),0)
STATMSG += Optimization is OFF\\n
else
STATMSG += Optimization is ON at $(OPTIMIZE)\\n
endif
ifeq ($(CPUGUESS),yes)
STATMSG += Guessed CPUTYPE of $(GUESSED_CPU)\\n
STATMSG += Adding CPU flags $(CPUFLAGS)\\n
else
STATMSG += Compiling for $(TARGET_CPU) with $(CPUFLAGS)\\n
endif
ifdef PLATLIBS
STATMSG += Platform specifice librarys to link $(patsubst -l%,lib%,$(PLATLIBS))\\n
endif
STATMSG += $(APPSTATMSG)
STATMSG += \\nTools\\n
STATMSG +=BISON = $(BISON)\\n
STATMSG +=FLEX = $(FLEX)\\n
STATMSG +=LIBTOOL = $(LIBTOOL)\\n
STATMSG +=INSTALL = $(INSTALL)\\n
STATMSG +=INSTALL_PROGRAM = $(INSTALL_PROGRAM)\\n
STATMSG +=INSTALL_DATA = $(INSTALL_DATA)\\n
STATMSG +=LDCONFIG = $(LDCONFIG)\\n
STATMSG +=RANLIB = $(RANLIB)\\n
STATMSG +=DOXYGEN = $(DOXYGEN)\\n
STATMSG +=\\nDirectories\\n
STATMSG +=prefix = $(prefix)\\n
STATMSG +=exec_prefix = $(prefix)\\n
STATMSG +=bindir = $(bindir)\\n
STATMSG +=datadir = $(datadir)\\n
STATMSG +=sysconfdir = $(sysconfdir)\\n
STATMSG +=includedir = $(includedir)\\n
STATMSG +=docdir = $(docdir)\\n
STATMSG +=libdir = $(libdir)\\n
STATMSG +=mandir = $(mandir)\\n
STATMSG +=\\n