Fix and supress some warnings, and turn on -Werror when validating
[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 # If Main.c is built with optimisation then the SEH exception stuff on
160 # Windows gets confused.
161 # This has to be in HC rather than CC opts, as otherwise there's a
162 # -optc-O2 that comes after it.
163 Main_HC_OPTS += -optc-O0
164
165 RtsMessages_CC_OPTS += -DProjectVersion=$(DQ)$(ProjectVersion)$(DQ)
166 RtsUtils_CC_OPTS += -DProjectVersion=$(DQ)$(ProjectVersion)$(DQ)
167 RtsUtils_CC_OPTS += -DRtsWay=$(DQ)rts$(_way)$(DQ)
168 RtsUtils_CC_OPTS += -DHostPlatform=$(DQ)$(HOSTPLATFORM)$(DQ)
169 RtsUtils_CC_OPTS += -DBuildPlatform=$(DQ)$(BUILDPLATFORM)$(DQ)
170 RtsUtils_CC_OPTS += -DTargetPlatform=$(DQ)$(TARGETPLATFORM)$(DQ)
171 RtsUtils_CC_OPTS += -DGhcUnregisterised=$(DQ)$(GhcUnregisterised)$(DQ)
172 RtsUtils_CC_OPTS += -DGhcEnableTablesNextToCode=$(DQ)$(GhcEnableTablesNextToCode)$(DQ)
173
174 StgCRun_CC_OPTS += -w
175 Typeable_CC_OPTS += -w
176 RetainerProfile_CC_OPTS += -w
177 sm/Compact_CC_OPTS += -w
178 # The above warning supression flags are a temporary kludge.
179 # While working on this module you are encouraged to remove it and fix
180 # any warnings in the module. See
181 #     http://hackage.haskell.org/trac/ghc/wiki/WorkingConventions#Warnings
182 # for details
183
184 ifeq "$(way)" "mp"
185 SRC_HC_OPTS += -I$$PVM_ROOT/include
186 endif
187
188 # If -DDEBUG is in effect, adjust package conf accordingly..
189 ifneq "$(strip $(filter -optc-DDEBUG,$(GhcRtsHcOpts)))" ""
190 PACKAGE_CPP_OPTS += -DDEBUG
191 endif
192
193 ifeq "$(HaveLibMingwEx)" "YES"
194 PACKAGE_CPP_OPTS += -DHAVE_LIBMINGWEX
195 endif
196
197 ifeq "$(GhciWithDebugger)" "YES"
198 STANDARD_OPTS += -DDEBUGGER
199 endif
200
201 ifeq "$(DotnetSupport)" "YES"
202
203
204 # Would like to just use SUBDIRS here, but need to
205 # descend into dotnet/ earlier than that.
206 #
207 all ::
208         $(MAKE) -C dotnet all
209
210 # But use SUBDIRS for other recursive targets.
211 SUBDIRS += dotnet
212
213 LIBOBJS += dotnet/Invoke.o
214 endif
215
216 # Suppress uninitialized variable warnings for GC.c
217 GC_CC_OPTS      += -Wno-uninitialized
218
219 #-----------------------------------------------------------------------------
220 # Include the Front panel code?
221
222 # we need GTK+ for the front panel
223 ifneq "$(GTK_CONFIG)" ""
224 ifeq "$(GhcRtsWithFrontPanel)" "YES"
225 SRC_HC_OPTS             += `$(GTK_CONFIG) --cflags` -optc-DRTS_GTK_FRONTPANEL
226 VisCallbacks_CC_OPTS    += -Wno-unused
227 SRC_MKDEPENDC_OPTS      += `$(GTK_CONFIG) --cflags`
228 else # GhcRtsWithFrontPanel
229 EXCLUDED_SRCS           += $(wildcard Vis*.c)
230 endif
231 else # GTK_CONFIG
232 EXCLUDED_SRCS           += $(wildcard Vis*.c)
233 endif
234
235 #-----------------------------------------------------------------------------
236 # Add PAPI library if needed
237
238 ifeq "$(GhcRtsWithPapi)" "YES"
239 SRC_HC_OPTS             += -optc-DUSE_PAPI
240 PACKAGE_CPP_OPTS        += -DUSE_PAPI
241 endif
242
243 #-----------------------------------------------------------------------------
244 # make depend setup
245
246 SRC_MKDEPENDC_OPTS += -I. -I../includes
247
248 # Hack: we define every way-related option here, so that we get (hopefully)
249 # a superset of the dependencies.  To do this properly, we should generate
250 # a different set of dependencies for each way.  Further hack: PROFILING and
251 # TICKY_TICKY can't be used together, so we omit TICKY_TICKY for now.
252 SRC_MKDEPENDC_OPTS += -DPROFILING -DTHREADED_RTS -DDEBUG
253
254 # -----------------------------------------------------------------------------
255 # The auto-generated apply code
256
257 # We want a slightly different version for the unregisterised way, so we make
258 # AutoApply on a per-way basis (eg. AutoApply_p.cmm).
259
260 ifneq "$(DOING_BIN_DIST)" "YES"
261
262 AUTO_APPLY_CMM = AutoApply$(_way).cmm
263
264 ifneq "$(BootingFromHc)" "YES"
265 $(AUTO_APPLY_CMM): $(GHC_GENAPPLY)
266         @$(RM) $@
267         $(GENAPPLY) $(if $(filter $(way), u debug_u), -u) >$@
268 endif
269
270 EXTRA_CMM_SRCS += $(AUTO_APPLY_CMM)
271
272 CLEAN_FILES += $(AUTO_APPLY_CMM)
273
274 endif
275
276 # -----------------------------------------------------------------------------
277 # Compile GMP only if we don't have it already
278 #
279 # We use GMP's own configuration stuff, because it's all rather hairy
280 # and not worth re-implementing in our Makefile framework.
281
282 CLEAN_FILES += gmp/libgmp.a
283
284 # Need to get the GMP vars in through CPP to package.conf.in, and put
285 # quotes around each element.
286
287 empty =
288 space = $(empty) $(empty)
289 comma = ,
290 PACKAGE_CPP_OPTS += -DGMP_INCLUDE_DIRS='$(subst $(space),$(comma),$(patsubst %,"%",$(strip $(GMP_INCLUDE_DIRS))))'
291 PACKAGE_CPP_OPTS += -DGMP_LIB_DIRS='$(subst $(space),$(comma),$(patsubst %,"%",$(strip $(GMP_LIB_DIRS))))'
292
293 ifneq "$(GMP_INCLUDE_DIRS)" ""
294 SRC_HC_OPTS += -I$(GMP_INCLUDE_DIRS)
295 SRC_CC_OPTS += -I$(GMP_INCLUDE_DIRS)
296 SRC_HSC2HS_OPTS += -I$(GMP_INCLUDE_DIRS)
297 endif
298 ifneq "$(GMP_LIB_DIRS)" ""
299 SRC_LD_OPTS += -L$(GMP_LIB_DIRS)
300 endif
301
302 SRC_CC_OPTS += -I../gmp/gmpbuild
303 SRC_HC_OPTS += -I../gmp/gmpbuild
304 SRC_HSC2HS_OPTS += -I../gmp/gmpbuild
305 SRC_LD_OPTS += -L../gmp/gmpbuild
306
307 #-----------------------------------------------------------------------------
308 #
309 # Building the GUM SysMan
310 #
311
312 ifeq "$(way)" "mp"
313 all :: parallel/SysMan
314
315 ifdef solaris2_TARGET_OS
316 __socket_libs = -lsocket -lnsl
317 else
318 __socket_libs =
319 endif
320
321 parallel/SysMan : parallel/SysMan.mp_o parallel/LLComms.mp_o RtsUtils.mp_o RtsFlags.mp_o
322         $(RM) $@
323         gcc -o $@ parallel/SysMan.mp_o parallel/LLComms.mp_o -L$$PVM_ROOT/lib/$$PVM_ARCH -lgpvm3 -lpvm3 $(__socket_libs)
324
325 CLEAN_FILES  += parallel/SysMan.mp_o parallel/SysMan
326 INSTALL_LIBEXECS += parallel/SysMan
327 endif
328
329 #-----------------------------------------------------------------------------
330 # Compiling the cmm files
331
332 # ToDo: should we really include Rts.h here?  Required for GNU_ATTRIBUTE().
333 SRC_HC_OPTS += -I. -\#include HCIncludes.h
334
335 ifeq "$(Windows)" "YES"
336 PrimOps_HC_OPTS += -\#include '<windows.h>' -\#include win32/AsyncIO.h
337 else
338 PrimOps_HC_OPTS += -\#include posix/Itimer.h
339 endif
340
341 # Otherwise the stack-smash handler gets triggered.
342 ifeq "$(TargetOS_CPP)" "openbsd"
343 SRC_HC_OPTS += -optc-fno-stack-protector
344 endif
345
346 # -O3 helps unroll some loops (especially in copy() with a constant argument).
347 sm/Evac_HC_OPTS += -optc-funroll-loops
348
349 # Without this, thread_obj will not be inlined (at least on x86 with GCC 4.1.0)
350 sm/Compact_HC_OPTS += -optc-finline-limit=2500
351
352 # -fno-strict-aliasing is required for the runtime, because we often
353 # use a variety of types to represent closure pointers (StgPtr,
354 # StgClosure, StgMVar, etc.), and without -fno-strict-aliasing gcc is
355 # allowed to assume that these pointers do not alias.  eg. without
356 # this flag we get problems in GC.c:copy() with gcc 3.4.3, the
357 # upd_evacee() assigments get moved before the object copy.
358 SRC_CC_OPTS += -fno-strict-aliasing
359
360 # We *want* type-checking of hand-written cmm.
361 SRC_HC_OPTS += -dcmm-lint 
362
363 ifneq "$(BootingFromHc)" "YES"
364 # .cmm files depend on all the .h files, to a first approximation.
365 %.$(way_)o : %.cmm $(H_FILES)
366         $(HC_PRE_OPTS)
367         $(HC) $(HC_OPTS) -c $< -o $@
368         $(HC_POST_OPTS)
369
370 %.$(way_)hc : %.cmm $(H_FILES)
371         $(HC) $(HC_OPTS) -C $< -o $@
372
373 %.$(way_)s : %.cmm $(H_FILES)
374         $(HC) $(HC_OPTS) -S $< -o $@
375 endif
376
377 #-----------------------------------------------------------------------------
378 #
379 # Files to install
380 #
381 # Just libHSrts is installed uniformly across ways
382 #
383
384 include $(TOP)/mk/target.mk
385
386 ifeq "$(DYNAMIC_RTS) $(HOSTPLATFORM)" "YES i386-unknown-mingw32"
387 $(BASE_IMPORT_LIBRARY): $(LIBRARY).a
388         $(MAKE) -C ../libraries/ make.library.base
389 # just for the timestamps
390         touch $(BASE_IMPORT_LIBRARY)
391 endif
392
393 #-----------------------------------------------------------------------------
394 #
395 # binary-dist
396
397 binary-dist:
398         $(INSTALL_DIR)                         $(BIN_DIST_DIR)/rts
399         $(INSTALL_DIR)                         $(BIN_DIST_DIR)/rts/gmp
400         $(INSTALL_DATA)    Makefile            $(BIN_DIST_DIR)/rts/
401         $(INSTALL_DATA)    package.conf.in     $(BIN_DIST_DIR)/rts/
402 ifneq "$(INSTALL_LIBS)" ""
403         $(INSTALL_DATA)    $(INSTALL_LIBS)     $(BIN_DIST_DIR)/rts/
404 endif
405 ifneq "$(INSTALL_LIBEXECS)" ""
406         $(INSTALL_PROGRAM) $(INSTALL_LIBEXECS) $(BIN_DIST_DIR)/rts/
407 endif