Change the way module initialisation is done (#3252, #4417)
[ghc-hetmet.git] / compiler / ghc.mk
1 # -----------------------------------------------------------------------------
2 #
3 # (c) 2009 The University of Glasgow
4 #
5 # This file is part of the GHC build system.
6 #
7 # To understand how the build system works and how to modify it, see
8 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
9 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
10 #
11 # -----------------------------------------------------------------------------
12
13 # -----------------------------------------------------------------------------
14 # For expressing extra dependencies on source files
15
16 define compiler-hs-dependency # args: $1 = module, $2 = dependency
17
18 $$(foreach stage,1 2 3,\
19  $$(foreach way,$$(compiler_stage$$(stage)_WAYS),\
20   compiler/stage$$(stage)/build/$1.$$($$(way)_osuf))) : $2
21
22 endef
23
24 # -----------------------------------------------------------------------------
25 # Create compiler configuration
26 #
27 # The 'echo' commands simply spit the values of various make variables
28 # into Config.hs, whence they can be compiled and used by GHC itself
29
30 compiler_CONFIG_HS = compiler/main/Config.hs
31
32 # This is just to avoid generating a warning when generating deps
33 # involving RtsFlags.h
34 compiler_stage1_MKDEPENDC_OPTS = -DMAKING_GHC_BUILD_SYSTEM_DEPENDENCIES
35 compiler_stage2_MKDEPENDC_OPTS = -DMAKING_GHC_BUILD_SYSTEM_DEPENDENCIES
36 compiler_stage3_MKDEPENDC_OPTS = -DMAKING_GHC_BUILD_SYSTEM_DEPENDENCIES
37
38 compiler_stage1_C_FILES_NODEPS = compiler/parser/cutils.c
39
40 ifneq "$(BINDIST)" "YES"
41 compiler/stage1/package-data.mk : compiler/stage1/build/Config.hs
42 compiler/stage2/package-data.mk : compiler/stage2/build/Config.hs
43 compiler/stage3/package-data.mk : compiler/stage3/build/Config.hs
44 endif
45
46 compiler/stage%/build/Config.hs : mk/config.mk mk/project.mk | $$(dir $$@)/.
47         "$(RM)" $(RM_OPTS) $@
48         @echo 'Creating $@ ... '
49         @echo '{-# LANGUAGE CPP #-}'                                        >> $@
50         @echo 'module Config where'                                         >> $@
51         @echo                                                               >> $@
52         @echo 'import Distribution.System'                                  >> $@
53         @echo                                                               >> $@
54         @echo '#include "ghc_boot_platform.h"'                              >> $@
55         @echo                                                               >> $@
56         @echo 'cBuildPlatformString :: String'                              >> $@
57         @echo 'cBuildPlatformString = BuildPlatform_NAME'                   >> $@
58         @echo 'cHostPlatformString :: String'                               >> $@
59         @echo 'cHostPlatformString = HostPlatform_NAME'                     >> $@
60         @echo 'cTargetPlatformString :: String'                             >> $@
61         @echo 'cTargetPlatformString = TargetPlatform_NAME'                 >> $@
62         @echo                                                               >> $@
63 # Sync this with checkArch in configure.ac
64         @echo 'cTargetArch :: Arch'                                         >> $@
65         @echo '#if i386_TARGET_ARCH'                                        >> $@
66         @echo 'cTargetArch = I386'                                          >> $@
67         @echo '#elif x86_64_TARGET_ARCH'                                    >> $@
68         @echo 'cTargetArch = X86_64'                                        >> $@
69         @echo '#elif powerpc_TARGET_ARCH'                                   >> $@
70         @echo 'cTargetArch = PPC'                                           >> $@
71         @echo '#elif powerpc64_TARGET_ARCH'                                 >> $@
72         @echo 'cTargetArch = PPC64'                                         >> $@
73         @echo '#elif sparc_TARGET_ARCH || sparc64_TARGET_ARCH'              >> $@
74         @echo 'cTargetArch = Sparc'                                         >> $@
75         @echo '#elif arm_TARGET_ARCH'                                       >> $@
76         @echo 'cTargetArch = Arm'                                           >> $@
77         @echo '#elif mips_TARGET_ARCH || mipseb_TARGET_ARCH || mipsel_TARGET_ARCH' >> $@
78         @echo 'cTargetArch = Mips'                                          >> $@
79         @echo '#elif 0'                                                     >> $@
80         @echo 'cTargetArch = SH'                                            >> $@
81         @echo '#elif ia64_TARGET_ARCH'                                      >> $@
82         @echo 'cTargetArch = IA64'                                          >> $@
83         @echo '#elif s390_TARGET_ARCH'                                      >> $@
84         @echo 'cTargetArch = S390'                                          >> $@
85         @echo '#elif alpha_TARGET_ARCH'                                     >> $@
86         @echo 'cTargetArch = Alpha'                                         >> $@
87         @echo '#elif hppa_TARGET_ARCH || hppa1_1_TARGET_ARCH'               >> $@
88         @echo 'cTargetArch = Hppa'                                          >> $@
89         @echo '#elif rs6000_TARGET_ARCH'                                    >> $@
90         @echo 'cTargetArch = Rs6000'                                        >> $@
91         @echo '#elif m68k_TARGET_ARCH'                                      >> $@
92         @echo 'cTargetArch = M68k'                                          >> $@
93         @echo '#elif vax_TARGET_ARCH'                                       >> $@
94         @echo 'cTargetArch = Vax'                                           >> $@
95         @echo '#else'                                                       >> $@
96         @echo '#error Unknown target arch'                                  >> $@
97         @echo '#endif'                                                      >> $@
98         @echo                                                               >> $@
99         @echo 'cProjectName          :: String'                             >> $@
100         @echo 'cProjectName          = "$(ProjectName)"'                    >> $@
101         @echo 'cProjectVersion       :: String'                             >> $@
102         @echo 'cProjectVersion       = "$(ProjectVersion)"'                 >> $@
103         @echo 'cProjectVersionInt    :: String'                             >> $@
104         @echo 'cProjectVersionInt    = "$(ProjectVersionInt)"'              >> $@
105         @echo 'cProjectPatchLevel    :: String'                             >> $@
106         @echo 'cProjectPatchLevel    = "$(ProjectPatchLevel)"'              >> $@
107         @echo 'cBooterVersion        :: String'                             >> $@
108         @echo 'cBooterVersion        = "$(GhcVersion)"'                     >> $@
109         @echo 'cStage                :: String'                             >> $@
110         @echo 'cStage                = show (STAGE :: Int)'                 >> $@
111         @echo 'cCcOpts               :: [String]'                           >> $@
112         @echo 'cCcOpts               = words "$(CONF_CC_OPTS_STAGE$*)"'     >> $@
113         @echo 'cGccLinkerOpts        :: [String]'                           >> $@
114         @echo 'cGccLinkerOpts        = words "$(CONF_GCC_LINKER_OPTS_STAGE$*)"' >> $@
115         @echo 'cLdLinkerOpts         :: [String]'                           >> $@
116         @echo 'cLdLinkerOpts         = words "$(CONF_LD_LINKER_OPTS_STAGE$*)"'  >> $@
117         @echo 'cIntegerLibrary       :: String'                             >> $@
118         @echo 'cIntegerLibrary       = "$(INTEGER_LIBRARY)"'                >> $@
119         @echo 'cSupportsSplitObjs    :: String'                             >> $@
120         @echo 'cSupportsSplitObjs    = "$(SupportsSplitObjs)"'              >> $@
121         @echo 'cGhcWithInterpreter   :: String'                             >> $@
122         @echo 'cGhcWithInterpreter   = "$(GhcWithInterpreter)"'             >> $@
123         @echo 'cGhcWithNativeCodeGen :: String'                             >> $@
124         @echo 'cGhcWithNativeCodeGen = "$(GhcWithNativeCodeGen)"'           >> $@
125         @echo 'cGhcWithSMP           :: String'                             >> $@
126         @echo 'cGhcWithSMP           = "$(GhcWithSMP)"'                     >> $@
127         @echo 'cGhcRTSWays           :: String'                             >> $@
128         @echo 'cGhcRTSWays           = "$(GhcRTSWays)"'                     >> $@
129         @echo 'cGhcUnregisterised    :: String'                             >> $@
130         @echo 'cGhcUnregisterised    = "$(GhcUnregisterised)"'              >> $@
131         @echo 'cGhcEnableTablesNextToCode :: String'                        >> $@
132         @echo 'cGhcEnableTablesNextToCode = "$(GhcEnableTablesNextToCode)"' >> $@
133         @echo 'cLeadingUnderscore    :: String'                             >> $@
134         @echo 'cLeadingUnderscore    = "$(LeadingUnderscore)"'              >> $@
135         @echo 'cRAWCPP_FLAGS         :: String'                             >> $@
136         @echo 'cRAWCPP_FLAGS         = "$(RAWCPP_FLAGS)"'                   >> $@
137         @echo 'cGCC                  :: String'                             >> $@
138         @echo 'cGCC                  = "$(WhatGccIsCalled)"'                >> $@
139         @echo 'cMKDLL                :: String'                             >> $@
140         @echo 'cMKDLL                = "$(BLD_DLL)"'                        >> $@
141         @echo 'cLdIsGNULd            :: String'                             >> $@
142         @echo 'cLdIsGNULd            = "$(LdIsGNULd)"'                      >> $@
143         @echo 'cLdHasBuildId         :: String'                             >> $@
144         @echo 'cLdHasBuildId         = "$(LdHasBuildId)"'                   >> $@
145         @echo 'cLD_X                 :: String'                             >> $@
146         @echo 'cLD_X                 = "$(LD_X)"'                           >> $@
147         @echo 'cGHC_DRIVER_DIR       :: String'                             >> $@
148         @echo 'cGHC_DRIVER_DIR       = "$(GHC_DRIVER_DIR)"'                 >> $@
149         @echo 'cGHC_TOUCHY_PGM       :: String'                             >> $@
150         @echo 'cGHC_TOUCHY_PGM       = "$(GHC_TOUCHY_PGM)"'                 >> $@
151         @echo 'cGHC_TOUCHY_DIR       :: String'                             >> $@
152         @echo 'cGHC_TOUCHY_DIR       = "$(GHC_TOUCHY_DIR)"'                 >> $@
153         @echo 'cGHC_UNLIT_PGM        :: String'                             >> $@
154         @echo 'cGHC_UNLIT_PGM        = "$(GHC_UNLIT_PGM)"'                  >> $@
155         @echo 'cGHC_UNLIT_DIR        :: String'                             >> $@
156         @echo 'cGHC_UNLIT_DIR        = "$(GHC_UNLIT_DIR)"'                  >> $@
157         @echo 'cGHC_SPLIT_PGM        :: String'                             >> $@
158         @echo 'cGHC_SPLIT_PGM        = "$(GHC_SPLIT_PGM)"'                  >> $@
159         @echo 'cGHC_SPLIT_DIR        :: String'                             >> $@
160         @echo 'cGHC_SPLIT_DIR        = "$(GHC_SPLIT_DIR)"'                  >> $@
161         @echo 'cGHC_SYSMAN_PGM       :: String'                             >> $@
162         @echo 'cGHC_SYSMAN_PGM       = "$(GHC_SYSMAN)"'                     >> $@
163         @echo 'cGHC_SYSMAN_DIR       :: String'                             >> $@
164         @echo 'cGHC_SYSMAN_DIR       = "$(GHC_SYSMAN_DIR)"'                 >> $@
165         @echo 'cGHC_PERL             :: String'                             >> $@
166         @echo 'cGHC_PERL             = "$(GHC_PERL)"'                       >> $@
167         @echo 'cDEFAULT_TMPDIR       :: String'                             >> $@
168         @echo 'cDEFAULT_TMPDIR       = "$(DEFAULT_TMPDIR)"'                 >> $@
169         @echo 'cRelocatableBuild     :: Bool'                               >> $@
170 ifeq "$(RelocatableBuild)" "YES"
171         @echo 'cRelocatableBuild     = True'                                >> $@
172 else
173         @echo 'cRelocatableBuild     = False'                               >> $@
174 endif
175         @echo 'cLibFFI               :: Bool'                               >> $@
176 ifeq "$(UseLibFFIForAdjustors)" "YES"
177         @echo 'cLibFFI               = True'                                >> $@
178 else
179         @echo 'cLibFFI               = False'                               >> $@
180 endif
181         @echo done.
182
183 # XXX 2010-08-19: This is a legacy clean. Remove later.
184 $(eval $(call clean-target,compiler,config_hs,compiler/main/Config.hs))
185
186 # -----------------------------------------------------------------------------
187 # Create platform includes
188
189 # Here we generate a little header file containing CPP symbols that GHC
190 # uses to determine which platform it is building on/for.  The platforms
191 # can differ between stage1 and stage2 if we're cross-compiling, so we
192 # need one of these header files per stage.
193
194 PLATFORM_H = ghc_boot_platform.h
195
196 compiler/stage1/$(PLATFORM_H) : mk/config.mk mk/project.mk | $$(dir $$@)/.
197         "$(RM)" $(RM_OPTS) $@
198         @echo "Creating $@..."
199         @echo "#ifndef __PLATFORM_H__"                           >> $@
200         @echo "#define __PLATFORM_H__"                           >> $@
201         @echo                                                    >> $@
202         @echo "#define BuildPlatform_NAME  \"$(BUILDPLATFORM)\"" >> $@
203         @echo "#define HostPlatform_NAME   \"$(BUILDPLATFORM)\"" >> $@
204         @echo "#define TargetPlatform_NAME \"$(HOSTPLATFORM)\""  >> $@
205         @echo                                                    >> $@
206         @echo "#define $(BuildPlatform_CPP)_BUILD 1"             >> $@
207         @echo "#define $(BuildPlatform_CPP)_HOST 1"              >> $@
208         @echo "#define $(HostPlatform_CPP)_TARGET 1"             >> $@
209         @echo                                                    >> $@
210         @echo "#define $(BuildArch_CPP)_BUILD_ARCH 1"            >> $@
211         @echo "#define $(BuildArch_CPP)_HOST_ARCH 1"             >> $@
212         @echo "#define $(HostArch_CPP)_TARGET_ARCH 1"            >> $@
213         @echo "#define BUILD_ARCH \"$(BuildArch_CPP)\""          >> $@
214         @echo "#define HOST_ARCH \"$(BuildArch_CPP)\""           >> $@
215         @echo "#define TARGET_ARCH \"$(HostArch_CPP)\""          >> $@
216         @echo                                                    >> $@
217         @echo "#define $(BuildOS_CPP)_BUILD_OS 1"                >> $@
218         @echo "#define $(BuildOS_CPP)_HOST_OS 1"                 >> $@
219         @echo "#define $(HostOS_CPP)_TARGET_OS 1"                >> $@
220         @echo "#define BUILD_OS \"$(BuildOS_CPP)\""              >> $@
221         @echo "#define HOST_OS \"$(BuildOS_CPP)\""               >> $@
222         @echo "#define TARGET_OS \"$(HostOS_CPP)\""              >> $@
223 ifeq "$(HostOS_CPP)" "irix"
224         @echo "#ifndef $(IRIX_MAJOR)_TARGET_OS"                  >> $@
225         @echo "#define $(IRIX_MAJOR)_TARGET_OS 1"                >> $@
226         @echo "#endif"                                           >> $@
227 endif
228         @echo                                                    >> $@
229         @echo "#define $(BuildVendor_CPP)_BUILD_VENDOR 1"        >> $@
230         @echo "#define $(BuildVendor_CPP)_HOST_VENDOR 1"         >> $@
231         @echo "#define $(HostVendor_CPP)_TARGET_VENDOR 1"        >> $@
232         @echo "#define BUILD_VENDOR \"$(BuildVendor_CPP)\""      >> $@
233         @echo "#define HOST_VENDOR \"$(BuildVendor_CPP)\""       >> $@
234         @echo "#define TARGET_VENDOR \"$(HostVendor_CPP)\""      >> $@
235         @echo                                                    >> $@
236         @echo "#endif /* __PLATFORM_H__ */"                      >> $@
237         @echo "Done."
238
239 # For stage2 and above, the BUILD platform is the HOST of stage1, and
240 # the HOST platform is the TARGET of stage1.  The TARGET remains the same
241 # (stage1 is the cross-compiler, not stage2).
242 compiler/stage2/$(PLATFORM_H) : mk/config.mk mk/project.mk | $$(dir $$@)/.
243         "$(RM)" $(RM_OPTS) $@
244         @echo "Creating $@..."
245         @echo "#ifndef __PLATFORM_H__"                            >> $@
246         @echo "#define __PLATFORM_H__"                            >> $@
247         @echo                                                     >> $@
248         @echo "#define BuildPlatform_NAME  \"$(BUILDPLATFORM)\""  >> $@
249         @echo "#define HostPlatform_NAME   \"$(HOSTPLATFORM)\""   >> $@
250         @echo "#define TargetPlatform_NAME \"$(TARGETPLATFORM)\"" >> $@
251         @echo                                                     >> $@
252         @echo "#define $(BuildPlatform_CPP)_BUILD 1"              >> $@
253         @echo "#define $(HostPlatform_CPP)_HOST 1"                >> $@
254         @echo "#define $(TargetPlatform_CPP)_TARGET 1"            >> $@
255         @echo                                                     >> $@
256         @echo "#define $(BuildArch_CPP)_BUILD_ARCH 1"             >> $@
257         @echo "#define $(HostArch_CPP)_HOST_ARCH 1"               >> $@
258         @echo "#define $(TargetArch_CPP)_TARGET_ARCH 1"           >> $@
259         @echo "#define BUILD_ARCH \"$(HostArch_CPP)\""            >> $@
260         @echo "#define HOST_ARCH \"$(HostArch_CPP)\""             >> $@
261         @echo "#define TARGET_ARCH \"$(TargetArch_CPP)\""         >> $@
262         @echo                                                     >> $@
263         @echo "#define $(HostOS_CPP)_BUILD_OS 1"                  >> $@
264         @echo "#define $(HostOS_CPP)_HOST_OS 1"                   >> $@
265         @echo "#define $(TargetOS_CPP)_TARGET_OS 1"               >> $@
266         @echo "#define BUILD_OS \"$(HostOS_CPP)\""                >> $@
267         @echo "#define HOST_OS \"$(HostOS_CPP)\""                 >> $@
268         @echo "#define TARGET_OS \"$(TargetOS_CPP)\""             >> $@
269 ifeq "$(TargetOS_CPP)" "irix"
270         @echo "#ifndef $(IRIX_MAJOR)_TARGET_OS"                   >> $@
271         @echo "#define $(IRIX_MAJOR)_TARGET_OS 1"                 >> $@
272         @echo "#endif"                                            >> $@
273 endif
274         @echo                                                     >> $@
275         @echo "#define $(BuildVendor_CPP)_BUILD_VENDOR 1"         >> $@
276         @echo "#define $(HostVendor_CPP)_HOST_VENDOR 1"           >> $@
277         @echo "#define $(TargetVendor_CPP)_TARGET_VENDOR  1"      >> $@
278         @echo "#define BUILD_VENDOR \"$(BuildVendor_CPP)\""       >> $@
279         @echo "#define HOST_VENDOR \"$(HostVendor_CPP)\""         >> $@
280         @echo "#define TARGET_VENDOR \"$(TargetVendor_CPP)\""     >> $@
281         @echo                                                     >> $@
282         @echo "#endif /* __PLATFORM_H__ */"                       >> $@
283         @echo "Done."
284
285 compiler/stage3/$(PLATFORM_H) : compiler/stage2/$(PLATFORM_H)
286         "$(CP)" $< $@
287
288 # ----------------------------------------------------------------------------
289 #               Generate supporting stuff for prelude/PrimOp.lhs 
290 #               from prelude/primops.txt
291
292 # XXX: these should go in stage1/stage2/stage3
293 PRIMOP_BITS = compiler/primop-data-decl.hs-incl        \
294               compiler/primop-tag.hs-incl              \
295               compiler/primop-list.hs-incl             \
296               compiler/primop-has-side-effects.hs-incl \
297               compiler/primop-out-of-line.hs-incl      \
298               compiler/primop-commutable.hs-incl       \
299               compiler/primop-needs-wrapper.hs-incl    \
300               compiler/primop-can-fail.hs-incl         \
301               compiler/primop-strictness.hs-incl       \
302               compiler/primop-primop-info.hs-incl
303
304 compiler_CPP_OPTS += -I$(GHC_INCLUDE_DIR)
305 compiler_CPP_OPTS += ${GhcCppOpts}
306
307 $(PRIMOPS_TXT) compiler/parser/Parser.y: %: %.pp compiler/stage1/$(PLATFORM_H)
308         $(CPP) $(RAWCPP_FLAGS) -P $(compiler_CPP_OPTS) -x c $< | grep -v '^#pragma GCC' > $@
309
310 $(eval $(call clean-target,compiler,primop, $(PRIMOPS_TXT) compiler/parser/Parser.y $(PRIMOP_BITS)))
311
312 ifneq "$(BootingFromHc)" "YES"
313 compiler/primop-data-decl.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
314         "$(GENPRIMOP_INPLACE)" --data-decl          < $< > $@
315 compiler/primop-tag.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
316         "$(GENPRIMOP_INPLACE)" --primop-tag         < $< > $@
317 compiler/primop-list.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
318         "$(GENPRIMOP_INPLACE)" --primop-list        < $< > $@
319 compiler/primop-has-side-effects.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
320         "$(GENPRIMOP_INPLACE)" --has-side-effects   < $< > $@
321 compiler/primop-out-of-line.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
322         "$(GENPRIMOP_INPLACE)" --out-of-line        < $< > $@
323 compiler/primop-commutable.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
324         "$(GENPRIMOP_INPLACE)" --commutable         < $< > $@
325 compiler/primop-needs-wrapper.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
326         "$(GENPRIMOP_INPLACE)" --needs-wrapper      < $< > $@
327 compiler/primop-can-fail.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
328         "$(GENPRIMOP_INPLACE)" --can-fail           < $< > $@
329 compiler/primop-strictness.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
330         "$(GENPRIMOP_INPLACE)" --strictness         < $< > $@
331 compiler/primop-primop-info.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
332         "$(GENPRIMOP_INPLACE)" --primop-primop-info < $< > $@
333
334 # Usages aren't used any more; but the generator 
335 # can still generate them if we want them back
336 compiler/primop-usage.hs-incl: $(PRIMOPS_TXT)
337         "$(GENPRIMOP_INPLACE)" --usage              < $< > $@
338 endif
339
340 # -----------------------------------------------------------------------------
341 # Configuration
342
343 compiler_stage1_CONFIGURE_OPTS += --flags=stage1
344 compiler_stage2_CONFIGURE_OPTS += --flags=stage2
345 compiler_stage3_CONFIGURE_OPTS += --flags=stage3
346
347 ifeq "$(GhcWithNativeCodeGen)" "YES"
348 compiler_stage1_CONFIGURE_OPTS += --flags=ncg
349 compiler_stage2_CONFIGURE_OPTS += --flags=ncg
350 endif
351
352 ifeq "$(GhcWithInterpreter)" "YES"
353 compiler_stage2_CONFIGURE_OPTS += --flags=ghci
354
355 ifeq "$(BuildSharedLibs)" "YES"
356 compiler_stage2_CONFIGURE_OPTS += --enable-shared
357 # If we are going to use dynamic libraries instead of .o files for ghci,
358 # we will need to always retain CAFs in the compiler.
359 # ghci/keepCAFsForGHCi contains a GNU C __attribute__((constructor))
360 # function which sets the keepCAFs flag for the RTS before any Haskell
361 # code is run.
362 compiler_stage2_CONFIGURE_OPTS += --flags=dynlibs
363 endif
364
365 ifeq "$(GhcEnableTablesNextToCode) $(GhcUnregisterised)" "YES NO"
366 # Should GHCI be building info tables in the TABLES_NEXT_TO_CODE style
367 # or not?
368 # XXX This should logically be a CPP option, but there doesn't seem to
369 # be a flag for that
370 compiler_stage2_CONFIGURE_OPTS += --ghc-option=-DGHCI_TABLES_NEXT_TO_CODE
371 endif
372
373 # Should the debugger commands be enabled?
374 ifeq "$(GhciWithDebugger)" "YES"
375 compiler_stage2_CONFIGURE_OPTS += --ghc-option=-DDEBUGGER
376 endif
377
378 endif
379
380 ifeq "$(GhcWithNativeCodeGen)" "NO"
381 # XXX This should logically be a CPP option, but there doesn't seem to
382 # be a flag for that
383 compiler_CONFIGURE_OPTS += --ghc-option=-DOMIT_NATIVE_CODEGEN
384 endif
385
386 ifeq "$(TargetOS_CPP)" "openbsd"
387 compiler_CONFIGURE_OPTS += --ld-options=-E
388 endif
389
390 ifeq "$(GhcUnregisterised)" "NO"
391 else
392 compiler_CONFIGURE_OPTS += --ghc-option=-DNO_REGS
393 endif
394
395 # If we're profiling GHC then we want lots of SCCs, so -auto-all
396 # We also don't want to waste time building the non-profiling library.
397 # Unfortunately this means that we have to tell ghc-pkg --force as it
398 # gets upset when libHSghc-6.9.a doesn't exist.
399 ifeq "$(GhcProfiled)" "YES"
400 compiler_stage2_CONFIGURE_OPTS += --ghc-option=-auto-all
401 # We seem to still build the vanilla libraries even if we say
402 # --disable-library-vanilla, but installation then fails, as Cabal
403 # doesn't copy the vanilla .hi files, but ghc-pkg complains about
404 # their absence when we register the package. So for now, we just
405 # leave the vanilla libraries enabled.
406 # compiler_stage2_CONFIGURE_OPTS += --disable-library-vanilla
407 compiler_stage2_CONFIGURE_OPTS += --ghc-pkg-option=--force
408 endif
409
410 compiler_stage3_CONFIGURE_OPTS := $(compiler_stage2_CONFIGURE_OPTS)
411
412 compiler_stage1_CONFIGURE_OPTS += --ghc-option=-DSTAGE=1
413 compiler_stage2_CONFIGURE_OPTS += --ghc-option=-DSTAGE=2
414 compiler_stage3_CONFIGURE_OPTS += --ghc-option=-DSTAGE=3
415 compiler_stage2_HADDOCK_OPTS += --optghc=-DSTAGE=2
416
417 compiler/stage1/package-data.mk : compiler/ghc.mk
418 compiler/stage2/package-data.mk : compiler/ghc.mk
419 compiler/stage3/package-data.mk : compiler/ghc.mk
420
421 # -----------------------------------------------------------------------------
422 # And build the package
423
424 compiler_PACKAGE = ghc
425
426 # Note [fiddle-stage1-version]
427 # The version of the GHC package changes every day, since the
428 # patchlevel is the current date.  We don't want to force
429 # recompilation of the entire compiler when this happens, so for stage
430 # 1 we omit the patchlevel from the version number.  For stage 2 we
431 # have to include the patchlevel since this is the package we install,
432 # however.
433 #
434 # Note: we also have to tweak the version number of the package itself
435 # when it gets registered; see Note [munge-stage1-package-config]
436 # below.
437 # The ProjectPatchLevel > 20000000 iff it's a date. If it's e.g. 6.12.1
438 # then we don't want to remove it
439 ifneq "$(CLEANING)" "YES"
440 ifeq "$(shell [ $(ProjectPatchLevel) -gt 20000000 ] && echo YES)" "YES"
441 compiler_stage1_VERSION_MUNGED = YES
442 endif
443 endif
444
445 ifeq "$(compiler_stage1_VERSION_MUNGED)" "YES"
446 define compiler_PACKAGE_MAGIC
447 compiler_stage1_VERSION = $(subst .$(ProjectPatchLevel),,$(ProjectVersion))
448 endef
449
450 # Don't register the non-munged package
451 compiler_stage1_REGISTER_PACKAGE = NO
452
453 endif
454
455 # haddocking only happens for stage2
456 compiler_stage1_DO_HADDOCK = NO
457 compiler_stage3_DO_HADDOCK = NO
458
459 # Don't do splitting for the GHC package, it takes too long and
460 # there's not much benefit.
461 compiler_stage1_SplitObjs = NO
462 compiler_stage2_SplitObjs = NO
463 compiler_stage3_SplitObjs = NO
464
465 # if stage is set to something other than "1" or "", disable stage 1
466 ifneq "$(filter-out 1,$(stage))" ""
467 compiler_stage1_NOT_NEEDED = YES
468 endif
469 # if stage is set to something other than "2" or "", disable stage 2
470 ifneq "$(filter-out 2,$(stage))" ""
471 compiler_stage2_NOT_NEEDED = YES
472 endif
473 # stage 3 has to be requested explicitly with stage=3
474 ifneq "$(stage)" "3"
475 compiler_stage3_NOT_NEEDED = YES
476 endif
477 $(eval $(call build-package,compiler,stage1,0))
478 $(eval $(call build-package,compiler,stage2,1))
479 $(eval $(call build-package,compiler,stage3,2))
480
481 # after build-package, because that adds --enable-library-for-ghci
482 # to compiler_stage*_CONFIGURE_OPTS:
483 # We don't build the GHCi library for the ghc package. We can load it
484 # the .a file instead, and as object splitting isn't on for the ghc
485 # package this isn't much slower.However, not building the package saves
486 # a significant chunk of disk space.
487 compiler_stage1_CONFIGURE_OPTS += --disable-library-for-ghci
488 compiler_stage2_CONFIGURE_OPTS += --disable-library-for-ghci
489 compiler_stage3_CONFIGURE_OPTS += --disable-library-for-ghci
490
491 # after build-package, because that sets compiler_stage1_HC_OPTS:
492 compiler_stage1_HC_OPTS += $(GhcStage1HcOpts)
493 compiler_stage2_HC_OPTS += $(GhcStage2HcOpts)
494 compiler_stage3_HC_OPTS += $(GhcStage3HcOpts)
495
496 ifeq "$(GhcStage1DefaultNewCodegen)" "YES"
497 compiler_stage1_HC_OPTS += -DGHC_DEFAULT_NEW_CODEGEN
498 endif
499
500 ifeq "$(GhcStage2DefaultNewCodegen)" "YES"
501 compiler_stage2_HC_OPTS += -DGHC_DEFAULT_NEW_CODEGEN
502 endif
503
504 ifeq "$(GhcStage3DefaultNewCodegen)" "YES"
505 compiler_stage3_HC_OPTS += -DGHC_DEFAULT_NEW_CODEGEN
506 endif
507
508 ifneq "$(BINDIST)" "YES"
509
510 compiler_stage2_TAGS_HC_OPTS = -package ghc
511 $(eval $(call tags-package,compiler,stage2))
512
513 $(compiler_stage1_depfile_haskell) : compiler/stage1/$(PLATFORM_H)
514 $(compiler_stage2_depfile_haskell) : compiler/stage2/$(PLATFORM_H)
515 $(compiler_stage3_depfile_haskell) : compiler/stage3/$(PLATFORM_H)
516
517 $(compiler_stage1_depfile_haskell) : $(includes_H_CONFIG) $(includes_H_PLATFORM) $(includes_GHCCONSTANTS) $(includes_DERIVEDCONSTANTS) $(PRIMOP_BITS)
518 $(compiler_stage2_depfile_haskell) : $(includes_H_CONFIG) $(includes_H_PLATFORM) $(includes_GHCCONSTANTS) $(includes_DERIVEDCONSTANTS) $(PRIMOP_BITS)
519 $(compiler_stage3_depfile_haskell) : $(includes_H_CONFIG) $(includes_H_PLATFORM) $(includes_GHCCONSTANTS) $(includes_DERIVEDCONSTANTS) $(PRIMOP_BITS)
520
521 # Every Constants.o object file depends on includes/GHCConstants.h:
522 $(eval $(call compiler-hs-dependency,Constants,$(includes_GHCCONSTANTS) includes/HaskellConstants.hs))
523
524 # Every PrimOp.o object file depends on $(PRIMOP_BITS):
525 $(eval $(call compiler-hs-dependency,PrimOp,$(PRIMOP_BITS)))
526
527 # GHC itself doesn't know about the above dependencies, so we have to
528 # switch off the recompilation checker for those modules:
529 compiler/prelude/PrimOp_HC_OPTS  += -fforce-recomp
530 compiler/main/Constants_HC_OPTS  += -fforce-recomp
531
532 # Workaround for #4003 in GHC 6.12.2.  It didn't happen in 6.12.1, and
533 # will be fixed in 6.12.3.  Unfortunately we don't have a way to do
534 # this for just stage1 in the build system.
535 ifeq "$(GhcVersion)" "6.12.2"
536 compiler/hsSyn/HsLit_HC_OPTS     += -fomit-interface-pragmas
537 endif
538
539 # Note [munge-stage1-package-config]
540 # Strip the date/patchlevel from the version of stage1.  See Note
541 # [fiddle-stage1-version] above.
542 ifeq "$(compiler_stage1_VERSION_MUNGED)" "YES"
543 compiler/stage1/inplace-pkg-config-munged: compiler/stage1/inplace-pkg-config
544         sed -e 's/^\(version: .*\)\.$(ProjectPatchLevel)$$/\1/' \
545             -e 's/^\(id: .*\)\.$(ProjectPatchLevel)$$/\1/' \
546             -e 's/^\(hs-libraries: HSghc-.*\)\.$(ProjectPatchLevel)$$/\1/' \
547           < $< > $@
548         "$(compiler_stage1_GHC_PKG)" update --force $(compiler_stage1_GHC_PKG_OPTS) $@
549
550 # We need to make sure the munged config is in the database before we
551 # try to configure ghc-bin
552 ghc/stage1/package-data.mk : compiler/stage1/inplace-pkg-config-munged
553 endif
554
555 endif
556