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