[project @ 2004-10-12 16:33:00 by sof]
[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         if [ -f gmp/config.status ]; then \
229            cd gmp && CC=$(WhatGccIsCalled) ./config.status; \
230         else \
231            cd gmp && CC=$(WhatGccIsCalled) ./configure --enable-shared=no \
232                         --host=`echo $(HOSTPLATFORM) | sed 's/i[567]86/i486/g'`; \
233         fi
234
235 # Slight cheatage here to pass host as target, but x-compilation isn't supported by ghc.
236
237 ifeq "$(way)" ""
238 all :: gmp/libgmp.a
239
240 ifeq "$(DLLized)" "YES"
241 all :: $(DLL_PEN)/gmp.dll
242
243 $(DLL_PEN)/gmp.dll:
244         $(MAKE) -C gmp gmp.dll
245         $(MV) gmp/gmp.dll $(DLL_PEN)
246 endif
247 endif
248
249 install :: gmp/libgmp.a
250
251 ifeq "$(way)" ""
252 clean distclean maintainer-clean ::
253         -$(MAKE) -C gmp MAKEFLAGS= $@
254
255 INSTALL_LIBS += gmp/libgmp.a
256 endif
257 endif
258
259 gmp/libgmp.a ::
260         $(MAKE) -C gmp MAKEFLAGS=
261         @$(CP) gmp/.libs/libgmp.a gmp
262         @$(RANLIB) gmp/libgmp.a
263 endif
264
265 CLEAN_FILES += gmp/libgmp.a
266
267 #-----------------------------------------------------------------------------
268 #
269 # Building the GUM SysMan
270 #
271
272 ifeq "$(way)" "mp"
273 all :: parallel/SysMan
274
275 ifdef solaris2_TARGET_OS
276 __socket_libs = -lsocket -lnsl
277 else
278 __socket_libs =
279 endif
280
281 parallel/SysMan : parallel/SysMan.mp_o parallel/LLComms.mp_o RtsUtils.mp_o RtsFlags.mp_o
282         $(RM) $@
283         gcc -o $@ parallel/SysMan.mp_o parallel/LLComms.mp_o -L$$PVM_ROOT/lib/$$PVM_ARCH -lgpvm3 -lpvm3 $(__socket_libs)
284
285 CLEAN_FILES  += parallel/SysMan.mp_o parallel/SysMan
286 INSTALL_LIBEXECS += parallel/SysMan
287 endif
288
289 #-----------------------------------------------------------------------------
290 # Compiling the cmm files
291
292 # ToDo: should we really include Rts.h here?  Required for GNU_ATTRIBUTE().
293 SRC_HC_OPTS += \
294   -I. \
295   -\#include Prelude.h \
296   -\#include Rts.h \
297   -\#include RtsFlags.h \
298   -\#include RtsUtils.h \
299   -\#include StgRun.h \
300   -\#include Schedule.h \
301   -\#include Printer.h \
302   -\#include Sanity.h \
303   -\#include Storage.h \
304   -\#include SchedAPI.h \
305   -\#include Timer.h \
306   -\#include Itimer.h \
307   -\#include ProfHeap.h \
308   -\#include LdvProfile.h \
309   -\#include Profiling.h \
310   -\#include Apply.h
311
312 ifeq "$(Windows)" "YES"
313 PrimOps_HC_OPTS += -\#include '<windows.h>' -\#include win32/AsyncIO.h
314 endif
315
316 # Cmm must be compiled via-C for now, because the NCG can't handle loops
317 SRC_HC_OPTS += -fvia-C
318
319 # We *want* type-checking of hand-written cmm.
320 SRC_HC_OPTS += -dcmm-lint 
321
322 # .cmm files depend on all the .h files, to a first approximation.
323 %.$(way_)o : %.cmm $(H_FILES)
324         $(HC_PRE_OPTS)
325         $(HC) $(HC_OPTS) -c $< -o $@
326         $(HC_POST_OPTS)
327
328 %.$(way_)hc : %.cmm $(H_FILES)
329         $(HC_PRE_OPTS)
330         $(HC) $(HC_OPTS) -C $< -o $@
331         $(HC_POST_OPTS)
332
333 %.$(way_)s : %.cmm $(H_FILES)
334         $(HC_PRE_OPTS)
335         $(HC) $(HC_OPTS) -S $< -o $@
336         $(HC_POST_OPTS)
337
338 #-----------------------------------------------------------------------------
339 #
340 # Files to install
341 #
342 # Just libHSrts is installed uniformly across ways
343 #
344 INSTALL_LIBS += $(LIBRARY)
345 ifeq "$(DLLized)" "YES"
346 INSTALL_PROGS += $(DLL_NAME) gmp/gmp.dll
347 INSTALL_LIBS += $(patsubst %.a,%_imp.a,$(LIBARY))
348 INSTALL_LIBS += gmp/libgmp_imp.a Main.dll_o
349 endif
350
351 include $(TOP)/mk/target.mk