db1c31e069067b23a91647758d8fc36d5f6c9fdf
[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 #-----------------------------------------------------------------------------
12 # Preamble
13
14 TOP=..
15
16 # Set UseGhcForCc: this causes the fptools build system to use a different
17 # set of suffix rules for compiling C code, using $(HC) rather than $(CC)
18 # and prepending "-optc" to $(CC_OPTS).  NB. must be done before including
19 # boilerplate.mk below.
20 UseGhcForCc = YES
21
22 include $(TOP)/mk/boilerplate.mk
23
24 PACKAGE = rts
25
26 HC=$(GHC_INPLACE)
27
28
29 # Setting _way here is a nasty hack to make sure we get libHSrts*.a etc
30 # rather than just libHSrts.a when we are making and installing
31 # bindists.
32 ifeq "$(DOING_BIN_DIST)" "YES"
33 _way = *
34 endif
35
36 # -----------------------------------------------------------------------------
37 # RTS ways
38
39 WAYS=$(GhcLibWays) $(GhcRTSWays)
40
41 ifneq "$(findstring debug, $(way))" ""
42 GhcRtsHcOpts=
43 GhcRtsCcOpts=-g -O0
44 endif
45
46 ifeq "$(BeConservative)" "YES"
47 GhcRtsCcOpts += -DBE_CONSERVATIVE
48 endif
49
50 # -----------------------------------------------------------------------------
51
52 # There's nothing for Haddock here...
53 override HADDOCK_DOCS = NO
54
55 # -----------------------------------------------------------------------------
56
57 # Tells the build system not to add various Haskellish options to $(SRC_HC_OPTS)
58 NON_HS_PACKAGE = YES
59
60 # grab sources from these subdirectories
61 ALL_DIRS = hooks parallel sm
62
63 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
64 ALL_DIRS += win32
65 else
66 ALL_DIRS += posix
67 endif
68
69 ifneq "$(findstring dyn, $(way))" ""
70 DYNAMIC_RTS=YES
71 else
72 DYNAMIC_RTS=NO
73 endif
74
75 ifeq "$(DYNAMIC_RTS) $(HOSTPLATFORM)" "YES i386-unknown-mingw32"
76 EXCLUDED_SRCS += Main.c
77 # It's not included in the DLL, but we need to compile it up separately.
78
79 all :: Main.$(way_)o
80 INSTALL_LIBS += Main.$(way_)o
81 else
82 EXCLUDED_SRCS += RtsDllMain.c
83 endif
84
85 # This file ends up being empty unless we're building for a powerpc
86 # or darwin system, and it is reported that Solaris ld chokes on it when
87 # building HSrts.o.
88 ifeq "$(findstring $(TargetArch_CPP), powerpc powerpc64)" ""
89 ifeq "$(findstring $(TargetOS_CPP), darwin)" ""
90 EXCLUDED_SRCS += AdjustorAsm.S
91 endif
92 endif
93
94 EXCLUDED_SRCS += parallel/SysMan.c
95
96 EXCLUDED_SRCS += dyn-wrapper.c
97
98 # compile generatic patchable dyn-wrapper
99
100 DYNWRAPPER_SRC = dyn-wrapper.c
101 DYNWRAPPER_PROG = dyn-wrapper$(exeext)
102 $(DYNWRAPPER_PROG): $(DYNWRAPPER_SRC)
103         $(HC) -cpp -optc-include -optcdyn-wrapper-patchable-behaviour.h $(INPLACE_EXTRA_FLAGS) $< -o $@
104
105 # The build system doesn't give us these
106 CMM_SRCS = $(filter-out AutoApply%.cmm, $(wildcard *.cmm)) $(EXTRA_CMM_SRCS)
107 CMM_OBJS = $(patsubst %.cmm,%.$(way_)o, $(CMM_SRCS))
108
109 CLEAN_FILES += $(CMM_OBJS)
110
111 # Override the default $(LIBOBJS) (defaults to $(HS_OBJS))
112 LIBOBJS = $(C_OBJS) $(CMM_OBJS)
113
114 SplitObjs=NO
115
116 H_FILES = $(wildcard ../includes/*.h) $(wildcard *.h)
117
118 #-----------------------------------------------------------------------------
119 # Flags for compiling RTS .c and .hc files
120
121 # gcc provides lots of useful warnings if you ask it.
122 # This is a pretty good list to start with - use a # to comment out
123 # any you don't like.
124 WARNING_OPTS += -Wall
125 WARNING_OPTS += -W
126 WARNING_OPTS += -Wstrict-prototypes 
127 WARNING_OPTS += -Wmissing-prototypes 
128 WARNING_OPTS += -Wmissing-declarations
129 WARNING_OPTS += -Winline
130 WARNING_OPTS += -Waggregate-return
131 #WARNING_OPTS += -Wpointer-arith
132 #WARNING_OPTS += -Wbad-function-cast
133 #WARNING_OPTS += -Wcast-align
134 #WARNING_OPTS += -Wnested-externs
135 #WARNING_OPTS += -Wshadow
136 #WARNING_OPTS += -Wcast-qual
137 #WARNING_OPTS += -Wno-unused 
138 #WARNING_OPTS += -Wredundant-decls 
139 #WARNING_OPTS += -Wconversion
140
141 STANDARD_OPTS += -I../includes -I. -Iparallel -Ism
142 # COMPILING_RTS is only used when building Win32 DLL support.
143 STANDARD_OPTS += -DCOMPILING_RTS
144
145 # HC_OPTS is included in both .c and .cmm compilations, whereas CC_OPTS is
146 # only included in .c compilations.  HC_OPTS included the WAY_* opts, which
147 # must be included in both types of compilations.
148
149 SRC_CC_OPTS += $(WARNING_OPTS)
150 SRC_CC_OPTS += $(STANDARD_OPTS)
151
152 SRC_CC_OPTS += $(GhcRtsCcOpts)
153 SRC_HC_OPTS += $(GhcRtsHcOpts) $(STANDARD_OPTS) -package-name rts
154
155 ifneq "$(GhcWithSMP)" "YES"
156 SRC_CC_OPTS += -DNOSMP
157 SRC_HC_OPTS += -optc-DNOSMP
158 endif
159
160 ifeq "$(UseLibFFI)" "YES"
161 SRC_CC_OPTS += -DUSE_LIBFFI
162 PACKAGE_CPP_OPTS += -DUSE_LIBFFI
163 endif
164
165 ifneq "$(DYNAMIC_RTS)" "YES"
166 SRC_HC_OPTS += -static
167 else
168 LIB_LD_OPTS += -ignore-package base -ignore-package rts
169 ifeq "$(DYNAMIC_RTS) $(HOSTPLATFORM)" "YES i386-unknown-mingw32"
170 LIB_DEPS=buildbase
171 .PHONY: buildbase
172
173 BASE_DIST_LIB=$(TOP)/libraries/base/dist/build
174
175 # The following must be a one liner otherwise its evaluation won't be delayed until base/rts packages are properly registered
176 LIB_LD_OPTS = -L$(shell $(GHC_PKG_INPLACE) field base library-dirs | sed -e 's/library-dirs: //') -l$(shell $(GHC_PKG_INPLACE) field base hs-libraries | sed -e 's/hs-libraries: //')-ghc$(ProjectVersion)$(soext) $(foreach lib,$(shell $(GHC_PKG_INPLACE) field rts extra-libraries | sed -e s/extra-libraries://),"-l$(lib)") $(foreach libdir,$(shell $(GHC_PKG_INPLACE) field rts library-dirs | sed -e s/library-dirs://),"-L$(libdir)")
177 endif
178 endif
179
180 # XXX DQ is now the same on all platforms, so get rid of it
181 DQ = \"
182
183 # If Main.c is built with optimisation then the SEH exception stuff on
184 # Windows gets confused.
185 # This has to be in HC rather than CC opts, as otherwise there's a
186 # -optc-O2 that comes after it.
187 Main_HC_OPTS += -optc-O0
188
189 RtsMessages_CC_OPTS += -DProjectVersion=$(DQ)$(ProjectVersion)$(DQ)
190 RtsUtils_CC_OPTS += -DProjectVersion=$(DQ)$(ProjectVersion)$(DQ)
191 RtsUtils_CC_OPTS += -DRtsWay=$(DQ)rts$(_way)$(DQ)
192 RtsUtils_CC_OPTS += -DHostPlatform=$(DQ)$(HOSTPLATFORM)$(DQ)
193 RtsUtils_CC_OPTS += -DBuildPlatform=$(DQ)$(BUILDPLATFORM)$(DQ)
194 RtsUtils_CC_OPTS += -DTargetPlatform=$(DQ)$(TARGETPLATFORM)$(DQ)
195 RtsUtils_CC_OPTS += -DGhcUnregisterised=$(DQ)$(GhcUnregisterised)$(DQ)
196 RtsUtils_CC_OPTS += -DGhcEnableTablesNextToCode=$(DQ)$(GhcEnableTablesNextToCode)$(DQ)
197
198 StgCRun_CC_OPTS += -w
199 Typeable_CC_OPTS += -w
200 RetainerProfile_CC_OPTS += -w
201 sm/Compact_CC_OPTS += -w
202 # On Windows:
203 win32/ConsoleHandler_CC_OPTS += -w
204 win32/ThrIOManager_CC_OPTS += -w
205 win32/Ticker_CC_OPTS += -w
206 Threads_CC_OPTS += -w
207 Capability_CC_OPTS += -w
208 Schedule_CC_OPTS += -w
209 # The above warning supression flags are a temporary kludge.
210 # While working on this module you are encouraged to remove it and fix
211 # any warnings in the module. See
212 #     http://hackage.haskell.org/trac/ghc/wiki/WorkingConventions#Warnings
213 # for details
214
215 ifeq "$(way)" "mp"
216 SRC_HC_OPTS += -I$$PVM_ROOT/include
217 endif
218
219 # If -DDEBUG is in effect, adjust package conf accordingly..
220 ifneq "$(strip $(filter -optc-DDEBUG,$(GhcRtsHcOpts)))" ""
221 PACKAGE_CPP_OPTS += -DDEBUG
222 endif
223
224 ifeq "$(HaveLibMingwEx)" "YES"
225 PACKAGE_CPP_OPTS += -DHAVE_LIBMINGWEX
226 endif
227
228 ifeq "$(GhciWithDebugger)" "YES"
229 STANDARD_OPTS += -DDEBUGGER
230 endif
231
232 ifeq "$(DotnetSupport)" "YES"
233
234
235 # Would like to just use SUBDIRS here, but need to
236 # descend into dotnet/ earlier than that.
237 #
238 all ::
239         $(MAKE) -C dotnet all
240
241 # But use SUBDIRS for other recursive targets.
242 SUBDIRS += dotnet
243
244 LIBOBJS += dotnet/Invoke.o
245 endif
246
247 # Suppress uninitialized variable warnings for GC.c
248 GC_CC_OPTS      += -Wno-uninitialized
249
250 #-----------------------------------------------------------------------------
251 # Include the Front panel code?
252
253 # we need GTK+ for the front panel
254 ifneq "$(GTK_CONFIG)" ""
255 ifeq "$(GhcRtsWithFrontPanel)" "YES"
256 SRC_HC_OPTS             += `$(GTK_CONFIG) --cflags` -optc-DRTS_GTK_FRONTPANEL
257 VisCallbacks_CC_OPTS    += -Wno-unused
258 SRC_MKDEPENDC_OPTS      += `$(GTK_CONFIG) --cflags`
259 else # GhcRtsWithFrontPanel
260 EXCLUDED_SRCS           += $(wildcard Vis*.c)
261 endif
262 else # GTK_CONFIG
263 EXCLUDED_SRCS           += $(wildcard Vis*.c)
264 endif
265
266 #-----------------------------------------------------------------------------
267 # Add PAPI library if needed
268
269 ifeq "$(GhcRtsWithPapi)" "YES"
270 SRC_HC_OPTS             += -optc-DUSE_PAPI
271 PACKAGE_CPP_OPTS        += -DUSE_PAPI
272 endif
273
274 #-----------------------------------------------------------------------------
275 # make depend setup
276
277 SRC_MKDEPENDC_OPTS += -I. -I../includes
278
279 # Hack: we define every way-related option here, so that we get (hopefully)
280 # a superset of the dependencies.  To do this properly, we should generate
281 # a different set of dependencies for each way.  Further hack: PROFILING and
282 # TICKY_TICKY can't be used together, so we omit TICKY_TICKY for now.
283 SRC_MKDEPENDC_OPTS += -DPROFILING -DTHREADED_RTS -DDEBUG
284
285 # -----------------------------------------------------------------------------
286 # The auto-generated apply code
287
288 # We want a slightly different version for the unregisterised way, so we make
289 # AutoApply on a per-way basis (eg. AutoApply_p.cmm).
290
291 ifneq "$(DOING_BIN_DIST)" "YES"
292
293 AUTO_APPLY_CMM = AutoApply$(_way).cmm
294
295 ifneq "$(BootingFromHc)" "YES"
296 $(AUTO_APPLY_CMM): $(GHC_GENAPPLY)
297         @$(RM) $@
298         $(GENAPPLY) $(if $(filter $(way), u debug_u), -u) >$@
299 endif
300
301 EXTRA_CMM_SRCS += $(AUTO_APPLY_CMM)
302
303 CLEAN_FILES += $(AUTO_APPLY_CMM)
304
305 endif
306
307 # -----------------------------------------------------------------------------
308 # Compile GMP only if we don't have it already
309 #
310 # We use GMP's own configuration stuff, because it's all rather hairy
311 # and not worth re-implementing in our Makefile framework.
312
313 CLEAN_FILES += gmp/libgmp.a
314
315 # Need to get the GMP vars in through CPP to package.conf.in, and put
316 # quotes around each element.
317
318 empty =
319 space = $(empty) $(empty)
320 comma = ,
321 PACKAGE_CPP_OPTS += -DGMP_INCLUDE_DIRS='$(subst $(space),$(comma),$(patsubst %,"%",$(strip $(GMP_INCLUDE_DIRS))))'
322 PACKAGE_CPP_OPTS += -DGMP_LIB_DIRS='$(subst $(space),$(comma),$(patsubst %,"%",$(strip $(GMP_LIB_DIRS))))'
323
324 ifneq "$(GMP_INCLUDE_DIRS)" ""
325 SRC_HC_OPTS += -I$(GMP_INCLUDE_DIRS)
326 SRC_CC_OPTS += -I$(GMP_INCLUDE_DIRS)
327 SRC_HSC2HS_OPTS += -I$(GMP_INCLUDE_DIRS)
328 endif
329 ifneq "$(GMP_LIB_DIRS)" ""
330 SRC_LD_OPTS += -L$(GMP_LIB_DIRS)
331 endif
332
333 SRC_CC_OPTS += -I../gmp/gmpbuild
334 SRC_HC_OPTS += -I../gmp/gmpbuild
335 SRC_HSC2HS_OPTS += -I../gmp/gmpbuild
336 SRC_LD_OPTS += -L../gmp/gmpbuild
337
338 #-----------------------------------------------------------------------------
339 #
340 # Building the GUM SysMan
341 #
342
343 ifeq "$(way)" "mp"
344 all :: parallel/SysMan
345
346 ifdef solaris2_TARGET_OS
347 __socket_libs = -lsocket -lnsl
348 else
349 __socket_libs =
350 endif
351
352 parallel/SysMan : parallel/SysMan.mp_o parallel/LLComms.mp_o RtsUtils.mp_o RtsFlags.mp_o
353         $(RM) $@
354         gcc -o $@ parallel/SysMan.mp_o parallel/LLComms.mp_o -L$$PVM_ROOT/lib/$$PVM_ARCH -lgpvm3 -lpvm3 $(__socket_libs)
355
356 CLEAN_FILES  += parallel/SysMan.mp_o parallel/SysMan
357 INSTALL_LIBEXECS += parallel/SysMan
358 endif
359
360 #-----------------------------------------------------------------------------
361 # Compiling the cmm files
362
363 # ToDo: should we really include Rts.h here?  Required for GNU_ATTRIBUTE().
364 SRC_HC_OPTS += -I. -\#include HCIncludes.h
365
366 ifeq "$(Windows)" "YES"
367 PrimOps_HC_OPTS += -\#include '<windows.h>' -\#include win32/AsyncIO.h
368 else
369 PrimOps_HC_OPTS += -\#include posix/Itimer.h
370 endif
371
372 # Otherwise the stack-smash handler gets triggered.
373 ifeq "$(TargetOS_CPP)" "openbsd"
374 SRC_HC_OPTS += -optc-fno-stack-protector
375 endif
376
377 # -O3 helps unroll some loops (especially in copy() with a constant argument).
378 sm/Evac_HC_OPTS += -optc-funroll-loops
379
380 # Without this, thread_obj will not be inlined (at least on x86 with GCC 4.1.0)
381 sm/Compact_HC_OPTS += -optc-finline-limit=2500
382
383 # -fno-strict-aliasing is required for the runtime, because we often
384 # use a variety of types to represent closure pointers (StgPtr,
385 # StgClosure, StgMVar, etc.), and without -fno-strict-aliasing gcc is
386 # allowed to assume that these pointers do not alias.  eg. without
387 # this flag we get problems in GC.c:copy() with gcc 3.4.3, the
388 # upd_evacee() assigments get moved before the object copy.
389 SRC_CC_OPTS += -fno-strict-aliasing
390
391 # We *want* type-checking of hand-written cmm.
392 SRC_HC_OPTS += -dcmm-lint 
393
394 ifneq "$(BootingFromHc)" "YES"
395 # .cmm files depend on all the .h files, to a first approximation.
396 %.$(way_)o : %.cmm $(H_FILES)
397         $(HC_PRE_OPTS)
398         $(HC) $(HC_OPTS) -c $< -o $@
399         $(HC_POST_OPTS)
400
401 %.$(way_)hc : %.cmm $(H_FILES)
402         $(HC) $(HC_OPTS) -C $< -o $@
403
404 %.$(way_)s : %.cmm $(H_FILES)
405         $(HC) $(HC_OPTS) -S $< -o $@
406 endif
407
408 #-----------------------------------------------------------------------------
409 #
410 # Files to install
411 #
412 # Just libHSrts is installed uniformly across ways
413 #
414
415 include $(TOP)/mk/target.mk
416
417 ifeq "$(DYNAMIC_RTS) $(HOSTPLATFORM)" "YES i386-unknown-mingw32"
418 # $(LIBRARY).a is not the static library libHSrts.a but
419 # libHSrts.dll.a, the import library for dynamic linking required for
420 # linking the dynamic version of base
421 buildbase: $(LIBRARY).a
422         $(MAKE) way="" -C ../libraries/ make.library.base
423 endif
424
425 #-----------------------------------------------------------------------------
426 #
427 # binary-dist
428
429 binary-dist:
430         $(INSTALL_DIR)                         $(BIN_DIST_DIR)/rts
431         $(INSTALL_DIR)                         $(BIN_DIST_DIR)/rts/gmp
432         $(INSTALL_DATA)    Makefile            $(BIN_DIST_DIR)/rts/
433         $(INSTALL_DATA)    package.conf.in     $(BIN_DIST_DIR)/rts/
434 ifneq "$(INSTALL_LIBS)" ""
435         $(INSTALL_DATA)    $(INSTALL_LIBS)     $(BIN_DIST_DIR)/rts/
436 endif
437 ifneq "$(INSTALL_LIBEXECS)" ""
438         $(INSTALL_PROGRAM) $(INSTALL_LIBEXECS) $(BIN_DIST_DIR)/rts/
439 endif