Rejig TABLES_NEXT_TO_CODE: the -unreg flag was broken by earlier changes
[ghc-hetmet.git] / rts / Makefile
1 #-----------------------------------------------------------------------------
2 #
3 #  This is the Makefile for the runtime-system stuff.
4 #  This stuff is written in C (and cannot be written in Haskell).
5 #
6 #  .c  files are vanilla C,
7 #  .hc files are "Haskellized-C", compiled using the C compiler and
8 #      (possibly) the assembly-mangler.  The GHC driver script
9 #      knows how to compile this stuff.
10 #
11 #  Other sorta independent, compile-once subdirs are:
12 #       gmp             -- GNU multi-precision library (for Integer)
13
14 #-----------------------------------------------------------------------------
15 # Preamble
16
17 TOP=..
18
19 # Set UseGhcForCc: this causes the fptools build system to use a different
20 # set of suffix rules for compiling C code, using $(HC) rather than $(CC)
21 # and prepending "-optc" to $(CC_OPTS).  NB. must be done before including
22 # boilerplate.mk below.
23 UseGhcForCc = YES
24
25 include $(TOP)/mk/boilerplate.mk
26
27 PACKAGE = rts
28
29 HC=$(GHC_INPLACE)
30
31 # -----------------------------------------------------------------------------
32 # RTS ways
33
34 WAYS=$(GhcLibWays) $(GhcRTSWays)
35
36 ifneq "$(findstring debug, $(way))" ""
37 GhcRtsHcOpts=
38 GhcRtsCcOpts=-g
39 endif
40
41 # -----------------------------------------------------------------------------
42
43 # Tells the build system not to add various Haskellish options to $(SRC_HC_OPTS)
44 NON_HS_PACKAGE = YES
45
46 # grab sources from these subdirectories
47 ALL_DIRS = hooks parallel
48
49 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
50 ALL_DIRS += win32
51 else
52 ALL_DIRS += posix
53 endif
54
55 ifneq "$(DLLized)" "YES"
56 EXCLUDED_SRCS += RtsDllMain.c
57 else
58 EXCLUDED_SRCS += Main.c
59 endif
60
61 # This file ends up being empty unless we're building for a powerpc
62 # or darwin system, and it is reported that Solaris ld chokes on it when
63 # building HSrts.o.
64 ifeq "$(findstring $(TargetArch_CPP), powerpc powerpc64)" ""
65 ifeq "$(findstring $(TargetOS_CPP), darwin)" ""
66 EXCLUDED_SRCS += AdjustorAsm.S
67 endif
68 endif
69
70 EXCLUDED_SRCS += parallel/SysMan.c
71
72 # The build system doesn't give us these
73 CMM_SRCS = $(filter-out AutoApply%.cmm, $(wildcard *.cmm)) $(EXTRA_CMM_SRCS)
74 CMM_OBJS = $(patsubst %.cmm,%.$(way_)o, $(CMM_SRCS))
75
76 CLEAN_FILES += $(CMM_OBJS)
77
78 # Override the default $(LIBOBJS) (defaults to $(HS_OBJS))
79 LIBOBJS = $(C_OBJS) $(CMM_OBJS)
80
81 SplitObjs=NO
82
83 H_FILES = $(wildcard ../includes/*.h) $(wildcard *.h)
84
85 #-----------------------------------------------------------------------------
86 # Flags for compiling RTS .c and .hc files
87
88 # gcc provides lots of useful warnings if you ask it.
89 # This is a pretty good list to start with - use a # to comment out
90 # any you don't like.
91 WARNING_OPTS += -Wall 
92 WARNING_OPTS += -W
93 WARNING_OPTS += -Wstrict-prototypes 
94 WARNING_OPTS += -Wmissing-prototypes 
95 WARNING_OPTS += -Wmissing-declarations
96 WARNING_OPTS += -Winline
97 WARNING_OPTS += -Waggregate-return
98 #WARNING_OPTS += -Wpointer-arith
99 WARNING_OPTS += -Wbad-function-cast
100 #WARNING_OPTS += -Wcast-align
101 #WARNING_OPTS += -Wnested-externs
102 #WARNING_OPTS += -Wshadow
103 #WARNING_OPTS += -Wcast-qual
104 #WARNING_OPTS += -Wno-unused 
105 #WARNING_OPTS += -Wredundant-decls 
106 #WARNING_OPTS += -Wconversion
107
108 STANDARD_OPTS += -I../includes -I. -Iparallel
109 # COMPILING_RTS is only used when building Win32 DLL support.
110 STANDARD_OPTS += -DCOMPILING_RTS
111
112 # HC_OPTS is included in both .c and .cmm compilations, whereas CC_OPTS is
113 # only included in .c compilations.  HC_OPTS included the WAY_* opts, which
114 # must be included in both types of compilations.
115
116 SRC_CC_OPTS += $(WARNING_OPTS)
117 SRC_CC_OPTS += $(STANDARD_OPTS)
118
119 SRC_CC_OPTS += $(GhcRtsCcOpts)
120 SRC_HC_OPTS += $(GhcRtsHcOpts)
121
122 ifneq "$(GhcWithSMP)" "YES"
123 SRC_CC_OPTS += -DNOSMP
124 SRC_HC_OPTS += -optc-DNOSMP
125 endif
126
127 ifneq "$(DLLized)" "YES"
128 SRC_HC_OPTS += -static
129 endif
130 # SRC_HC_OPTS += -fPIC
131
132 RtsMessages_CC_OPTS += -DProjectVersion=\"$(ProjectVersion)\"
133
134 ifeq "$(way)" "mp"
135 SRC_HC_OPTS += -I$$PVM_ROOT/include
136 endif
137
138 # If -DDEBUG is in effect, adjust package conf accordingly..
139 ifneq "$(strip $(filter -optc-DDEBUG,$(GhcRtsHcOpts)))" ""
140 PACKAGE_CPP_OPTS += -DDEBUG
141 endif
142
143 ifeq "$(HaveLibMingwEx)" "YES"
144 PACKAGE_CPP_OPTS += -DHAVE_LIBMINGWEX
145 endif
146
147 ifeq "$(DotnetSupport)" "YES"
148
149
150 # Would like to just use SUBDIRS here, but need to
151 # descend into dotnet/ earlier than that.
152 #
153 all ::
154         $(MAKE) -C dotnet all
155
156 # But use SUBDIRS for other recursive targets.
157 SUBDIRS += dotnet
158
159 LIBOBJS += dotnet/Invoke.o
160 endif
161
162 # Suppress uninitialized variable warnings for GC.c
163 GC_CC_OPTS      += -Wno-uninitialized
164
165 #-----------------------------------------------------------------------------
166 # Include the Front panel code?
167
168 # we need GTK+ for the front panel
169 ifneq "$(GTK_CONFIG)" ""
170 ifeq "$(GhcRtsWithFrontPanel)" "YES"
171 SRC_HC_OPTS             += `$(GTK_CONFIG) --cflags` -optc-DRTS_GTK_FRONTPANEL
172 VisCallbacks_CC_OPTS    += -Wno-unused
173 SRC_MKDEPENDC_OPTS      += `$(GTK_CONFIG) --cflags`
174 else # GhcRtsWithFrontPanel
175 EXCLUDED_SRCS           += $(wildcard Vis*.c)
176 endif
177 else # GTK_CONFIG
178 EXCLUDED_SRCS           += $(wildcard Vis*.c)
179 endif
180
181 #-----------------------------------------------------------------------------
182 # make depend setup
183
184 SRC_MKDEPENDC_OPTS += -I. -I../includes
185
186 # Hack: we define every way-related option here, so that we get (hopefully)
187 # a superset of the dependencies.  To do this properly, we should generate
188 # a different set of dependencies for each way.  Further hack: PROFILING and
189 # TICKY_TICKY can't be used together, so we omit TICKY_TICKY for now.
190 SRC_MKDEPENDC_OPTS += -DPROFILING -DTHREADED_RTS -DDEBUG
191
192 # -----------------------------------------------------------------------------
193 # The auto-generated apply code
194
195 # We want a slightly different version for the unregisterised way, so we make
196 # AutoApply on a per-way basis (eg. AutoApply_p.cmm).
197
198 AUTO_APPLY_CMM = AutoApply$(_way).cmm
199
200 ifneq "$(BootingFromHc)" "YES"
201 $(AUTO_APPLY_CMM): $(GHC_GENAPPLY)
202         @$(RM) $@
203         $(GENAPPLY) $(if $(filter $(way), u debug_u), -u) >$@
204 endif
205
206 EXTRA_CMM_SRCS += $(AUTO_APPLY_CMM)
207
208 CLEAN_FILES += $(AUTO_APPLY_CMM)
209
210 # -----------------------------------------------------------------------------
211 #
212 #  Building DLLs is only supported on mingw32 at the moment.
213 #
214 ifeq "$(DLLized)" "YES"
215 SRC_BLD_DLL_OPTS += -lHS_imp_stub -lgmp_imp
216
217 # It's not included in the DLL, but we need to compile it up separately.
218 all :: Main.dll_o
219
220 # Need an import library containing the symbols the RTS uses from the Prelude.
221 # So, to avoid bootstrapping trouble, we build one containing just the syms
222 # we need. Weirdly named to avoid clashing later on when compiling the contents
223 # of ghc/lib/..
224 #
225 # Note: if you do change the name of the Prelude DLL, the "--dllname <nm>.dll"
226 # below will need to be updated as well.
227
228 $(DLL_PEN)/HSrts$(_way).dll :: libHS_imp_stub.a
229
230 libHS_imp_stub.a :
231         dlltool --output-lib libHS_imp_stub.a --def HSprel.def --dllname HSstd.dll
232
233 endif
234
235 # -----------------------------------------------------------------------------
236 # Compile GMP only if we don't have it already
237 #
238 # We use GMP's own configuration stuff, because it's all rather hairy
239 # and not worth re-implementing in our Makefile framework.
240
241 ifneq "$(HaveLibGmp)" "YES"
242 ifneq "$(HaveFrameworkGMP)" "YES"
243 boot ::
244         if [ -f gmp/config.status ]; then \
245            cd gmp && CC=$(WhatGccIsCalled) ./config.status; \
246         else \
247            cd gmp && CC=$(WhatGccIsCalled) ./configure --enable-shared=no \
248                         --host=`echo $(HOSTPLATFORM) | sed 's/i[567]86/i486/g'`; \
249         fi
250
251 # Slight cheatage here to pass host as target, but x-compilation isn't supported by ghc.
252
253 ifeq "$(way)" ""
254 all :: gmp/libgmp.a
255
256 ifeq "$(DLLized)" "YES"
257 all :: $(DLL_PEN)/gmp.dll
258
259 $(DLL_PEN)/gmp.dll:
260         $(MAKE) -C gmp gmp.dll
261         $(MV) gmp/gmp.dll $(DLL_PEN)
262 endif
263 endif
264
265 install :: gmp/libgmp.a
266
267 ifeq "$(way)" ""
268 clean distclean maintainer-clean ::
269         -$(MAKE) -C gmp MAKEFLAGS= $@
270
271 INSTALL_LIBS += gmp/libgmp.a
272 endif
273 endif
274
275 gmp/libgmp.a ::
276         $(MAKE) -C gmp MAKEFLAGS=
277         @$(CP) gmp/.libs/libgmp.a gmp
278         @$(RANLIB) gmp/libgmp.a
279 endif
280
281 CLEAN_FILES += gmp/libgmp.a
282
283 #-----------------------------------------------------------------------------
284 #
285 # Building the GUM SysMan
286 #
287
288 ifeq "$(way)" "mp"
289 all :: parallel/SysMan
290
291 ifdef solaris2_TARGET_OS
292 __socket_libs = -lsocket -lnsl
293 else
294 __socket_libs =
295 endif
296
297 parallel/SysMan : parallel/SysMan.mp_o parallel/LLComms.mp_o RtsUtils.mp_o RtsFlags.mp_o
298         $(RM) $@
299         gcc -o $@ parallel/SysMan.mp_o parallel/LLComms.mp_o -L$$PVM_ROOT/lib/$$PVM_ARCH -lgpvm3 -lpvm3 $(__socket_libs)
300
301 CLEAN_FILES  += parallel/SysMan.mp_o parallel/SysMan
302 INSTALL_LIBEXECS += parallel/SysMan
303 endif
304
305 #-----------------------------------------------------------------------------
306 # Compiling the cmm files
307
308 # ToDo: should we really include Rts.h here?  Required for GNU_ATTRIBUTE().
309 SRC_HC_OPTS += -I. -\#include HCIncludes.h
310
311 ifeq "$(Windows)" "YES"
312 PrimOps_HC_OPTS += -\#include '<windows.h>' -\#include win32/AsyncIO.h
313 else
314 PrimOps_HC_OPTS += -\#include posix/Itimer.h
315 endif
316
317 # Otherwise the stack-smash handler gets triggered.
318 ifeq "$(TargetOS_CPP)" "openbsd"
319 SRC_HC_OPTS += -optc-fno-stack-protector
320 endif
321
322 # -O3 helps unroll some loops (especially in copy() with a constant argument).
323 GC_HC_OPTS += -optc-O3
324
325 # Without this, thread_obj will not be inlined (at least on x86 with GCC 4.1.0)
326 GCCompact_HC_OPTS += -optc-finline-limit=2500
327
328 # -fno-strict-aliasing is required for the runtime, because we often
329 # use a variety of types to represent closure pointers (StgPtr,
330 # StgClosure, StgMVar, etc.), and without -fno-strict-aliasing gcc is
331 # allowed to assume that these pointers do not alias.  eg. without
332 # this flag we get problems in GC.c:copy() with gcc 3.4.3, the
333 # upd_evacee() assigments get moved before the object copy.
334 SRC_CC_OPTS += -fno-strict-aliasing
335
336 # Cmm must be compiled via-C for now, because the NCG can't handle loops
337 SRC_HC_OPTS += -fvia-C
338
339 # We *want* type-checking of hand-written cmm.
340 SRC_HC_OPTS += -dcmm-lint 
341
342 ifneq "$(BootingFromHc)" "YES"
343 # .cmm files depend on all the .h files, to a first approximation.
344 %.$(way_)o : %.cmm $(H_FILES)
345         $(HC_PRE_OPTS)
346         $(HC) $(HC_OPTS) -c $< -o $@
347         $(HC_POST_OPTS)
348
349 %.$(way_)hc : %.cmm $(H_FILES)
350         $(HC) $(HC_OPTS) -C $< -o $@
351
352 %.$(way_)s : %.cmm $(H_FILES)
353         $(HC) $(HC_OPTS) -S $< -o $@
354 endif
355
356 #-----------------------------------------------------------------------------
357 #
358 # Files to install
359 #
360 # Just libHSrts is installed uniformly across ways
361 #
362 INSTALL_LIBS += $(LIBRARY)
363 ifeq "$(DLLized)" "YES"
364 INSTALL_PROGS += $(DLL_NAME) gmp/gmp.dll
365 INSTALL_LIBS += $(patsubst %.a,%_imp.a,$(LIBARY))
366 INSTALL_LIBS += gmp/libgmp_imp.a Main.dll_o
367 endif
368
369 include $(TOP)/mk/target.mk