efc244dd5dae3d12368a2322af6b357d38a5287d
[ghc-hetmet.git] / ghc / 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 EXCLUDED_SRCS += Itimer.c Select.c Signals.c
52 endif
53
54 ifneq "$(DLLized)" "YES"
55 EXCLUDED_SRCS += RtsDllMain.c
56 else
57 EXCLUDED_SRCS += Main.c
58 endif
59
60 EXCLUDED_SRCS += parallel/SysMan.c
61
62 # The build system doesn't give us these
63 CMM_SRCS = $(filter-out AutoApply%.cmm, $(wildcard *.cmm)) $(EXTRA_CMM_SRCS)
64 CMM_OBJS = $(patsubst %.cmm,%.$(way_)o, $(CMM_SRCS))
65
66 CLEAN_FILES += $(CMM_OBJS)
67
68 # Override the default $(LIBOBJS) (defaults to $(HS_OBJS))
69 LIBOBJS = $(C_OBJS) $(CMM_OBJS)
70
71 SplitObjs=NO
72
73 H_FILES = $(wildcard ../includes/*.h) $(wildcard *.h)
74
75 #-----------------------------------------------------------------------------
76 # Flags for compiling RTS .c and .hc files
77
78 # gcc provides lots of useful warnings if you ask it.
79 # This is a pretty good list to start with - use a # to comment out
80 # any you don't like.
81 WARNING_OPTS += -Wall 
82 WARNING_OPTS += -W
83 WARNING_OPTS += -Wstrict-prototypes 
84 WARNING_OPTS += -Wmissing-prototypes 
85 WARNING_OPTS += -Wmissing-declarations
86 WARNING_OPTS += -Winline
87 WARNING_OPTS += -Waggregate-return
88 #WARNING_OPTS += -Wpointer-arith
89 WARNING_OPTS += -Wbad-function-cast
90 #WARNING_OPTS += -Wcast-align
91 #WARNING_OPTS += -Wnested-externs
92 #WARNING_OPTS += -Wshadow
93 #WARNING_OPTS += -Wcast-qual
94 #WARNING_OPTS += -Wno-unused 
95 #WARNING_OPTS += -Wredundant-decls 
96 #WARNING_OPTS += -Wconversion
97
98 STANDARD_OPTS += -I../includes -I. -Iparallel
99 # COMPILING_RTS is only used when building Win32 DLL support.
100 STANDARD_OPTS += -DCOMPILING_RTS
101
102 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
103 STANDARD_OPTS += -Iwin32
104 endif
105
106 # HC_OPTS is included in both .c and .cmm compilations, whereas CC_OPTS is
107 # only included in .c compilations.  HC_OPTS included the WAY_* opts, which
108 # must be included in both types of compilations.
109
110 SRC_CC_OPTS += $(WARNING_OPTS)
111 SRC_CC_OPTS += $(STANDARD_OPTS)
112
113 SRC_CC_OPTS += $(GhcRtsCcOpts)
114 SRC_HC_OPTS += $(GhcRtsHcOpts)
115
116 ifneq "$(DLLized)" "YES"
117 SRC_HC_OPTS += -static
118 endif
119 # SRC_HC_OPTS += -fPIC
120
121 ifeq "$(way)" "mp"
122 SRC_HC_OPTS += -I$$PVM_ROOT/include
123 endif
124
125 # If -DDEBUG is in effect, adjust package conf accordingly..
126 ifneq "$(strip $(filter -optc-DDEBUG,$(GhcRtsHcOpts)))" ""
127 PACKAGE_CPP_OPTS += -DDEBUG
128 endif
129
130 ifeq "$(HaveLibMingwEx)" "YES"
131 PACKAGE_CPP_OPTS += -DHAVE_LIBMINGWEX
132 endif
133
134 ifeq "$(DotnetSupport)" "YES"
135
136
137 # Would like to just use SUBDIRS here, but need to
138 # descend into dotnet/ earlier than that.
139 #
140 all ::
141         $(MAKE) -C dotnet all
142
143 # But use SUBDIRS for other recursive targets.
144 SUBDIRS += dotnet
145
146 LIBOBJS += dotnet/Invoke.o
147 endif
148
149 #-----------------------------------------------------------------------------
150 # Include the Front panel code?
151
152 # we need GTK+ for the front panel
153 ifneq "$(GTK_CONFIG)" ""
154 ifeq "$(GhcRtsWithFrontPanel)" "YES"
155 SRC_HC_OPTS             += `$(GTK_CONFIG) --cflags` -optc-DRTS_GTK_FRONTPANEL
156 VisCallbacks_CC_OPTS    += -Wno-unused
157 SRC_MKDEPENDC_OPTS      += `$(GTK_CONFIG) --cflags`
158 else # GhcRtsWithFrontPanel
159 EXCLUDED_SRCS           += $(wildcard Vis*.c)
160 endif
161 else # GTK_CONFIG
162 EXCLUDED_SRCS           += $(wildcard Vis*.c)
163 endif
164
165 #-----------------------------------------------------------------------------
166 # make depend setup
167
168 SRC_MKDEPENDC_OPTS += -I. -I../includes
169
170 # Hack: we define every way-related option here, so that we get (hopefully)
171 # a superset of the dependencies.  To do this properly, we should generate
172 # a different set of dependencies for each way.  Further hack: PROFILING and
173 # TICKY_TICKY can't be used together, so we omit TICKY_TICKY for now.
174 SRC_MKDEPENDC_OPTS += -DPROFILING -DTHREADED_RTS -DDEBUG
175
176 # -----------------------------------------------------------------------------
177 # The auto-generated apply code
178
179 # We want a slightly different version for the unregisterised way, so we make
180 # AutoApply on a per-way basis (eg. AutoApply_p.cmm).
181
182 AUTO_APPLY_CMM = AutoApply$(_way).cmm
183
184 ifneq "$(BootingFromHc)" "YES"
185 $(AUTO_APPLY_CMM): $(GHC_GENAPPLY)
186         @$(RM) $@
187         $(GHC_GENAPPLY) $(if $(filter u,$(way)), -u) >$@
188 endif
189
190 EXTRA_CMM_SRCS += $(AUTO_APPLY_CMM)
191
192 CLEAN_FILES += $(AUTO_APPLY_CMM)
193
194 # -----------------------------------------------------------------------------
195 #
196 #  Building DLLs is only supported on mingw32 at the moment.
197 #
198 ifeq "$(DLLized)" "YES"
199 SRC_BLD_DLL_OPTS += -lHS_imp_stub -lgmp_imp
200
201 # It's not included in the DLL, but we need to compile it up separately.
202 all :: Main.dll_o
203
204 # Need an import library containing the symbols the RTS uses from the Prelude.
205 # So, to avoid bootstrapping trouble, we build one containing just the syms
206 # we need. Weirdly named to avoid clashing later on when compiling the contents
207 # of ghc/lib/..
208 #
209 # Note: if you do change the name of the Prelude DLL, the "--dllname <nm>.dll"
210 # below will need to be updated as well.
211
212 $(DLL_PEN)/HSrts$(_way).dll :: libHS_imp_stub.a
213
214 libHS_imp_stub.a :
215         dlltool --output-lib libHS_imp_stub.a --def HSprel.def --dllname HSstd.dll
216
217 endif
218
219 # -----------------------------------------------------------------------------
220 # Compile GMP only if we don't have it already
221 #
222 # We use GMP's own configuration stuff, because it's all rather hairy
223 # and not worth re-implementing in our Makefile framework.
224
225 ifneq "$(HaveLibGmp)" "YES"
226 ifneq "$(HaveFrameworkHaskellSupport)" "YES"
227 boot ::
228         cd gmp && CC=$(WhatGccIsCalled) ./configure --enable-shared=no \
229                 --host=`echo $(HOSTPLATFORM) | sed 's/i[567]86/i486/g'`
230
231 # Slight cheatage here to pass host as target, but x-compilation isn't supported by ghc.
232
233 ifeq "$(way)" ""
234 all :: gmp/libgmp.a
235
236 ifeq "$(DLLized)" "YES"
237 all :: $(DLL_PEN)/gmp.dll
238
239 $(DLL_PEN)/gmp.dll:
240         $(MAKE) -C gmp gmp.dll
241         $(MV) gmp/gmp.dll $(DLL_PEN)
242 endif
243 endif
244
245 install :: gmp/libgmp.a
246
247 ifeq "$(way)" ""
248 clean distclean maintainer-clean ::
249         -$(MAKE) -C gmp MAKEFLAGS= $@
250
251 INSTALL_LIBS += gmp/libgmp.a
252 endif
253 endif
254
255 gmp/libgmp.a ::
256         $(MAKE) -C gmp MAKEFLAGS=
257         @$(CP) gmp/.libs/libgmp.a gmp
258         @$(RANLIB) gmp/libgmp.a
259 endif
260
261 CLEAN_FILES += gmp/libgmp.a
262
263 #-----------------------------------------------------------------------------
264 #
265 # Building the GUM SysMan
266 #
267
268 ifeq "$(way)" "mp"
269 all :: parallel/SysMan
270
271 ifdef solaris2_TARGET_OS
272 __socket_libs = -lsocket -lnsl
273 else
274 __socket_libs =
275 endif
276
277 parallel/SysMan : parallel/SysMan.mp_o parallel/LLComms.mp_o RtsUtils.mp_o RtsFlags.mp_o
278         $(RM) $@
279         gcc -o $@ parallel/SysMan.mp_o parallel/LLComms.mp_o -L$$PVM_ROOT/lib/$$PVM_ARCH -lgpvm3 -lpvm3 $(__socket_libs)
280
281 CLEAN_FILES  += parallel/SysMan.mp_o parallel/SysMan
282 INSTALL_LIBEXECS += parallel/SysMan
283 endif
284
285 #-----------------------------------------------------------------------------
286 # Compiling the cmm files
287
288 # ToDo: should we really include Rts.h here?  Required for GNU_ATTRIBUTE().
289 SRC_HC_OPTS += \
290   -I. \
291   -\#include Prelude.h \
292   -\#include Rts.h \
293   -\#include RtsFlags.h \
294   -\#include RtsUtils.h \
295   -\#include StgRun.h \
296   -\#include Schedule.h \
297   -\#include Printer.h \
298   -\#include Sanity.h \
299   -\#include Storage.h \
300   -\#include SchedAPI.h \
301   -\#include Timer.h \
302   -\#include Itimer.h \
303   -\#include ProfHeap.h \
304   -\#include LdvProfile.h \
305   -\#include Profiling.h \
306   -\#include Apply.h
307
308 ifeq "$(Windows)" "YES"
309 PrimOps_HC_OPTS += -\#include '<windows.h>' -\#include win32/AsyncIO.h
310 endif
311
312 # Cmm must be compiled via-C for now, because the NCG can't handle loops
313 SRC_HC_OPTS += -fvia-C
314
315 # We *want* type-checking of hand-written cmm.
316 SRC_HC_OPTS += -dcmm-lint 
317
318 # .cmm files depend on all the .h files, to a first approximation.
319 %.$(way_)o : %.cmm $(H_FILES)
320         $(HC_PRE_OPTS)
321         $(HC) $(HC_OPTS) -c $< -o $@
322         $(HC_POST_OPTS)
323
324 %.$(way_)hc : %.cmm $(H_FILES)
325         $(HC_PRE_OPTS)
326         $(HC) $(HC_OPTS) -C $< -o $@
327         $(HC_POST_OPTS)
328
329 %.$(way_)s : %.cmm $(H_FILES)
330         $(HC_PRE_OPTS)
331         $(HC) $(HC_OPTS) -S $< -o $@
332         $(HC_POST_OPTS)
333
334 #-----------------------------------------------------------------------------
335 #
336 # Files to install
337 #
338 # Just libHSrts is installed uniformly across ways
339 #
340 INSTALL_LIBS += $(LIBRARY)
341 ifeq "$(DLLized)" "YES"
342 INSTALL_PROGS += $(DLL_NAME) gmp/gmp.dll
343 INSTALL_LIBS += $(patsubst %.a,%_imp.a,$(LIBARY))
344 INSTALL_LIBS += gmp/libgmp_imp.a Main.dll_o
345 endif
346
347 include $(TOP)/mk/target.mk