add -fsimpleopt-before-flatten
[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 'cMKDLL                :: String'                             >> $@
138         @echo 'cMKDLL                = "$(BLD_DLL)"'                        >> $@
139         @echo 'cLdIsGNULd            :: String'                             >> $@
140         @echo 'cLdIsGNULd            = "$(LdIsGNULd)"'                      >> $@
141         @echo 'cLdHasBuildId         :: String'                             >> $@
142         @echo 'cLdHasBuildId         = "$(LdHasBuildId)"'                   >> $@
143         @echo 'cLD_X                 :: String'                             >> $@
144         @echo 'cLD_X                 = "$(LD_X)"'                           >> $@
145         @echo 'cGHC_DRIVER_DIR       :: String'                             >> $@
146         @echo 'cGHC_DRIVER_DIR       = "$(GHC_DRIVER_DIR)"'                 >> $@
147         @echo 'cGHC_TOUCHY_PGM       :: String'                             >> $@
148         @echo 'cGHC_TOUCHY_PGM       = "$(GHC_TOUCHY_PGM)"'                 >> $@
149         @echo 'cGHC_TOUCHY_DIR       :: String'                             >> $@
150         @echo 'cGHC_TOUCHY_DIR       = "$(GHC_TOUCHY_DIR)"'                 >> $@
151         @echo 'cGHC_UNLIT_PGM        :: String'                             >> $@
152         @echo 'cGHC_UNLIT_PGM        = "$(GHC_UNLIT_PGM)"'                  >> $@
153         @echo 'cGHC_UNLIT_DIR        :: String'                             >> $@
154         @echo 'cGHC_UNLIT_DIR        = "$(GHC_UNLIT_DIR)"'                  >> $@
155         @echo 'cGHC_SPLIT_PGM        :: String'                             >> $@
156         @echo 'cGHC_SPLIT_PGM        = "$(GHC_SPLIT_PGM)"'                  >> $@
157         @echo 'cGHC_SPLIT_DIR        :: String'                             >> $@
158         @echo 'cGHC_SPLIT_DIR        = "$(GHC_SPLIT_DIR)"'                  >> $@
159         @echo 'cGHC_SYSMAN_PGM       :: String'                             >> $@
160         @echo 'cGHC_SYSMAN_PGM       = "$(GHC_SYSMAN)"'                     >> $@
161         @echo 'cGHC_SYSMAN_DIR       :: String'                             >> $@
162         @echo 'cGHC_SYSMAN_DIR       = "$(GHC_SYSMAN_DIR)"'                 >> $@
163         @echo 'cDEFAULT_TMPDIR       :: String'                             >> $@
164         @echo 'cDEFAULT_TMPDIR       = "$(DEFAULT_TMPDIR)"'                 >> $@
165         @echo 'cRelocatableBuild     :: Bool'                               >> $@
166 ifeq "$(RelocatableBuild)" "YES"
167         @echo 'cRelocatableBuild     = True'                                >> $@
168 else
169         @echo 'cRelocatableBuild     = False'                               >> $@
170 endif
171         @echo 'cLibFFI               :: Bool'                               >> $@
172 ifeq "$(UseLibFFIForAdjustors)" "YES"
173         @echo 'cLibFFI               = True'                                >> $@
174 else
175         @echo 'cLibFFI               = False'                               >> $@
176 endif
177         @echo done.
178
179 # XXX 2010-08-19: This is a legacy clean. Remove later.
180 $(eval $(call clean-target,compiler,config_hs,compiler/main/Config.hs))
181
182 # -----------------------------------------------------------------------------
183 # Create platform includes
184
185 # Here we generate a little header file containing CPP symbols that GHC
186 # uses to determine which platform it is building on/for.  The platforms
187 # can differ between stage1 and stage2 if we're cross-compiling, so we
188 # need one of these header files per stage.
189
190 PLATFORM_H = ghc_boot_platform.h
191
192 compiler/stage1/$(PLATFORM_H) : mk/config.mk mk/project.mk | $$(dir $$@)/.
193         "$(RM)" $(RM_OPTS) $@
194         @echo "Creating $@..."
195         @echo "#ifndef __PLATFORM_H__"                           >> $@
196         @echo "#define __PLATFORM_H__"                           >> $@
197         @echo                                                    >> $@
198         @echo "#define BuildPlatform_NAME  \"$(BUILDPLATFORM)\"" >> $@
199         @echo "#define HostPlatform_NAME   \"$(BUILDPLATFORM)\"" >> $@
200         @echo "#define TargetPlatform_NAME \"$(HOSTPLATFORM)\""  >> $@
201         @echo                                                    >> $@
202         @echo "#define $(BuildPlatform_CPP)_BUILD 1"             >> $@
203         @echo "#define $(BuildPlatform_CPP)_HOST 1"              >> $@
204         @echo "#define $(HostPlatform_CPP)_TARGET 1"             >> $@
205         @echo                                                    >> $@
206         @echo "#define $(BuildArch_CPP)_BUILD_ARCH 1"            >> $@
207         @echo "#define $(BuildArch_CPP)_HOST_ARCH 1"             >> $@
208         @echo "#define $(HostArch_CPP)_TARGET_ARCH 1"            >> $@
209         @echo "#define BUILD_ARCH \"$(BuildArch_CPP)\""          >> $@
210         @echo "#define HOST_ARCH \"$(BuildArch_CPP)\""           >> $@
211         @echo "#define TARGET_ARCH \"$(HostArch_CPP)\""          >> $@
212         @echo                                                    >> $@
213         @echo "#define $(BuildOS_CPP)_BUILD_OS 1"                >> $@
214         @echo "#define $(BuildOS_CPP)_HOST_OS 1"                 >> $@
215         @echo "#define $(HostOS_CPP)_TARGET_OS 1"                >> $@
216         @echo "#define BUILD_OS \"$(BuildOS_CPP)\""              >> $@
217         @echo "#define HOST_OS \"$(BuildOS_CPP)\""               >> $@
218         @echo "#define TARGET_OS \"$(HostOS_CPP)\""              >> $@
219 ifeq "$(HostOS_CPP)" "irix"
220         @echo "#ifndef $(IRIX_MAJOR)_TARGET_OS"                  >> $@
221         @echo "#define $(IRIX_MAJOR)_TARGET_OS 1"                >> $@
222         @echo "#endif"                                           >> $@
223 endif
224         @echo                                                    >> $@
225         @echo "#define $(BuildVendor_CPP)_BUILD_VENDOR 1"        >> $@
226         @echo "#define $(BuildVendor_CPP)_HOST_VENDOR 1"         >> $@
227         @echo "#define $(HostVendor_CPP)_TARGET_VENDOR 1"        >> $@
228         @echo "#define BUILD_VENDOR \"$(BuildVendor_CPP)\""      >> $@
229         @echo "#define HOST_VENDOR \"$(BuildVendor_CPP)\""       >> $@
230         @echo "#define TARGET_VENDOR \"$(HostVendor_CPP)\""      >> $@
231         @echo                                                    >> $@
232         @echo "#endif /* __PLATFORM_H__ */"                      >> $@
233         @echo "Done."
234
235 # For stage2 and above, the BUILD platform is the HOST of stage1, and
236 # the HOST platform is the TARGET of stage1.  The TARGET remains the same
237 # (stage1 is the cross-compiler, not stage2).
238 compiler/stage2/$(PLATFORM_H) : mk/config.mk mk/project.mk | $$(dir $$@)/.
239         "$(RM)" $(RM_OPTS) $@
240         @echo "Creating $@..."
241         @echo "#ifndef __PLATFORM_H__"                            >> $@
242         @echo "#define __PLATFORM_H__"                            >> $@
243         @echo                                                     >> $@
244         @echo "#define BuildPlatform_NAME  \"$(BUILDPLATFORM)\""  >> $@
245         @echo "#define HostPlatform_NAME   \"$(HOSTPLATFORM)\""   >> $@
246         @echo "#define TargetPlatform_NAME \"$(TARGETPLATFORM)\"" >> $@
247         @echo                                                     >> $@
248         @echo "#define $(BuildPlatform_CPP)_BUILD 1"              >> $@
249         @echo "#define $(HostPlatform_CPP)_HOST 1"                >> $@
250         @echo "#define $(TargetPlatform_CPP)_TARGET 1"            >> $@
251         @echo                                                     >> $@
252         @echo "#define $(BuildArch_CPP)_BUILD_ARCH 1"             >> $@
253         @echo "#define $(HostArch_CPP)_HOST_ARCH 1"               >> $@
254         @echo "#define $(TargetArch_CPP)_TARGET_ARCH 1"           >> $@
255         @echo "#define BUILD_ARCH \"$(HostArch_CPP)\""            >> $@
256         @echo "#define HOST_ARCH \"$(HostArch_CPP)\""             >> $@
257         @echo "#define TARGET_ARCH \"$(TargetArch_CPP)\""         >> $@
258         @echo                                                     >> $@
259         @echo "#define $(HostOS_CPP)_BUILD_OS 1"                  >> $@
260         @echo "#define $(HostOS_CPP)_HOST_OS 1"                   >> $@
261         @echo "#define $(TargetOS_CPP)_TARGET_OS 1"               >> $@
262         @echo "#define BUILD_OS \"$(HostOS_CPP)\""                >> $@
263         @echo "#define HOST_OS \"$(HostOS_CPP)\""                 >> $@
264         @echo "#define TARGET_OS \"$(TargetOS_CPP)\""             >> $@
265 ifeq "$(TargetOS_CPP)" "irix"
266         @echo "#ifndef $(IRIX_MAJOR)_TARGET_OS"                   >> $@
267         @echo "#define $(IRIX_MAJOR)_TARGET_OS 1"                 >> $@
268         @echo "#endif"                                            >> $@
269 endif
270         @echo                                                     >> $@
271         @echo "#define $(BuildVendor_CPP)_BUILD_VENDOR 1"         >> $@
272         @echo "#define $(HostVendor_CPP)_HOST_VENDOR 1"           >> $@
273         @echo "#define $(TargetVendor_CPP)_TARGET_VENDOR  1"      >> $@
274         @echo "#define BUILD_VENDOR \"$(BuildVendor_CPP)\""       >> $@
275         @echo "#define HOST_VENDOR \"$(HostVendor_CPP)\""         >> $@
276         @echo "#define TARGET_VENDOR \"$(TargetVendor_CPP)\""     >> $@
277         @echo                                                     >> $@
278         @echo "#endif /* __PLATFORM_H__ */"                       >> $@
279         @echo "Done."
280
281 compiler/stage3/$(PLATFORM_H) : compiler/stage2/$(PLATFORM_H)
282         "$(CP)" $< $@
283
284 # ----------------------------------------------------------------------------
285 #               Generate supporting stuff for prelude/PrimOp.lhs 
286 #               from prelude/primops.txt
287
288 # XXX: these should go in stage1/stage2/stage3
289 PRIMOP_BITS = compiler/primop-data-decl.hs-incl        \
290               compiler/primop-tag.hs-incl              \
291               compiler/primop-list.hs-incl             \
292               compiler/primop-has-side-effects.hs-incl \
293               compiler/primop-out-of-line.hs-incl      \
294               compiler/primop-commutable.hs-incl       \
295               compiler/primop-needs-wrapper.hs-incl    \
296               compiler/primop-can-fail.hs-incl         \
297               compiler/primop-strictness.hs-incl       \
298               compiler/primop-primop-info.hs-incl
299
300 compiler_CPP_OPTS += -I$(GHC_INCLUDE_DIR)
301 compiler_CPP_OPTS += ${GhcCppOpts}
302
303 $(PRIMOPS_TXT) compiler/parser/Parser.y: %: %.pp compiler/stage1/$(PLATFORM_H)
304         $(CPP) $(RAWCPP_FLAGS) -P $(compiler_CPP_OPTS) -x c $< | grep -v '^#pragma GCC' > $@
305
306 $(eval $(call clean-target,compiler,primop, $(PRIMOPS_TXT) compiler/parser/Parser.y $(PRIMOP_BITS)))
307
308 ifneq "$(BootingFromHc)" "YES"
309 compiler/primop-data-decl.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
310         "$(GENPRIMOP_INPLACE)" --data-decl          < $< > $@
311 compiler/primop-tag.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
312         "$(GENPRIMOP_INPLACE)" --primop-tag         < $< > $@
313 compiler/primop-list.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
314         "$(GENPRIMOP_INPLACE)" --primop-list        < $< > $@
315 compiler/primop-has-side-effects.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
316         "$(GENPRIMOP_INPLACE)" --has-side-effects   < $< > $@
317 compiler/primop-out-of-line.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
318         "$(GENPRIMOP_INPLACE)" --out-of-line        < $< > $@
319 compiler/primop-commutable.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
320         "$(GENPRIMOP_INPLACE)" --commutable         < $< > $@
321 compiler/primop-needs-wrapper.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
322         "$(GENPRIMOP_INPLACE)" --needs-wrapper      < $< > $@
323 compiler/primop-can-fail.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
324         "$(GENPRIMOP_INPLACE)" --can-fail           < $< > $@
325 compiler/primop-strictness.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
326         "$(GENPRIMOP_INPLACE)" --strictness         < $< > $@
327 compiler/primop-primop-info.hs-incl: $(PRIMOPS_TXT) $(GENPRIMOP_INPLACE)
328         "$(GENPRIMOP_INPLACE)" --primop-primop-info < $< > $@
329
330 # Usages aren't used any more; but the generator 
331 # can still generate them if we want them back
332 compiler/primop-usage.hs-incl: $(PRIMOPS_TXT)
333         "$(GENPRIMOP_INPLACE)" --usage              < $< > $@
334 endif
335
336 # -----------------------------------------------------------------------------
337 # Configuration
338
339 compiler_stage1_CONFIGURE_OPTS += --flags=stage1
340 compiler_stage2_CONFIGURE_OPTS += --flags=stage2
341 compiler_stage3_CONFIGURE_OPTS += --flags=stage3
342
343 ifeq "$(GhcWithNativeCodeGen)" "YES"
344 compiler_stage1_CONFIGURE_OPTS += --flags=ncg
345 compiler_stage2_CONFIGURE_OPTS += --flags=ncg
346 endif
347
348 ifeq "$(GhcWithInterpreter)" "YES"
349 compiler_stage2_CONFIGURE_OPTS += --flags=ghci
350
351 ifeq "$(BuildSharedLibs)" "YES"
352 compiler_stage2_CONFIGURE_OPTS += --enable-shared
353 # If we are going to use dynamic libraries instead of .o files for ghci,
354 # we will need to always retain CAFs in the compiler.
355 # ghci/keepCAFsForGHCi contains a GNU C __attribute__((constructor))
356 # function which sets the keepCAFs flag for the RTS before any Haskell
357 # code is run.
358 compiler_stage2_CONFIGURE_OPTS += --flags=dynlibs
359 endif
360
361 ifeq "$(GhcEnableTablesNextToCode) $(GhcUnregisterised)" "YES NO"
362 # Should GHCI be building info tables in the TABLES_NEXT_TO_CODE style
363 # or not?
364 # XXX This should logically be a CPP option, but there doesn't seem to
365 # be a flag for that
366 compiler_stage2_CONFIGURE_OPTS += --ghc-option=-DGHCI_TABLES_NEXT_TO_CODE
367 endif
368
369 # Should the debugger commands be enabled?
370 ifeq "$(GhciWithDebugger)" "YES"
371 compiler_stage2_CONFIGURE_OPTS += --ghc-option=-DDEBUGGER
372 endif
373
374 endif
375
376 ifeq "$(GhcWithNativeCodeGen)" "NO"
377 # XXX This should logically be a CPP option, but there doesn't seem to
378 # be a flag for that
379 compiler_CONFIGURE_OPTS += --ghc-option=-DOMIT_NATIVE_CODEGEN
380 endif
381
382 ifeq "$(TargetOS_CPP)" "openbsd"
383 compiler_CONFIGURE_OPTS += --ld-options=-E
384 endif
385
386 ifeq "$(GhcUnregisterised)" "NO"
387 else
388 compiler_CONFIGURE_OPTS += --ghc-option=-DNO_REGS
389 endif
390
391 # If we're profiling GHC then we want lots of SCCs, so -auto-all
392 # We also don't want to waste time building the non-profiling library.
393 # Unfortunately this means that we have to tell ghc-pkg --force as it
394 # gets upset when libHSghc-6.9.a doesn't exist.
395 ifeq "$(GhcProfiled)" "YES"
396 compiler_stage2_CONFIGURE_OPTS += --ghc-option=-auto-all
397 # We seem to still build the vanilla libraries even if we say
398 # --disable-library-vanilla, but installation then fails, as Cabal
399 # doesn't copy the vanilla .hi files, but ghc-pkg complains about
400 # their absence when we register the package. So for now, we just
401 # leave the vanilla libraries enabled.
402 # compiler_stage2_CONFIGURE_OPTS += --disable-library-vanilla
403 compiler_stage2_CONFIGURE_OPTS += --ghc-pkg-option=--force
404 endif
405
406 compiler_stage3_CONFIGURE_OPTS := $(compiler_stage2_CONFIGURE_OPTS)
407
408 compiler_stage1_CONFIGURE_OPTS += --ghc-option=-DSTAGE=1
409 compiler_stage2_CONFIGURE_OPTS += --ghc-option=-DSTAGE=2
410 compiler_stage3_CONFIGURE_OPTS += --ghc-option=-DSTAGE=3
411 compiler_stage2_HADDOCK_OPTS += --optghc=-DSTAGE=2
412
413 compiler/stage1/package-data.mk : compiler/ghc.mk
414 compiler/stage2/package-data.mk : compiler/ghc.mk
415 compiler/stage3/package-data.mk : compiler/ghc.mk
416
417 # -----------------------------------------------------------------------------
418 # And build the package
419
420 compiler_PACKAGE = ghc
421
422 # Note [fiddle-stage1-version]
423 # The version of the GHC package changes every day, since the
424 # patchlevel is the current date.  We don't want to force
425 # recompilation of the entire compiler when this happens, so for stage
426 # 1 we omit the patchlevel from the version number.  For stage 2 we
427 # have to include the patchlevel since this is the package we install,
428 # however.
429 #
430 # Note: we also have to tweak the version number of the package itself
431 # when it gets registered; see Note [munge-stage1-package-config]
432 # below.
433 # The ProjectPatchLevel > 20000000 iff it's a date. If it's e.g. 6.12.1
434 # then we don't want to remove it
435 ifneq "$(CLEANING)" "YES"
436 ifeq "$(shell [ $(ProjectPatchLevel) -gt 20000000 ] && echo YES)" "YES"
437 compiler_stage1_VERSION_MUNGED = YES
438 endif
439 endif
440
441 ifeq "$(compiler_stage1_VERSION_MUNGED)" "YES"
442 define compiler_PACKAGE_MAGIC
443 compiler_stage1_VERSION = $(subst .$(ProjectPatchLevel),,$(ProjectVersion))
444 endef
445
446 # Don't register the non-munged package
447 compiler_stage1_REGISTER_PACKAGE = NO
448
449 endif
450
451 # haddocking only happens for stage2
452 compiler_stage1_DO_HADDOCK = NO
453 compiler_stage3_DO_HADDOCK = NO
454
455 # Don't do splitting for the GHC package, it takes too long and
456 # there's not much benefit.
457 compiler_stage1_SplitObjs = NO
458 compiler_stage2_SplitObjs = NO
459 compiler_stage3_SplitObjs = NO
460
461 # if stage is set to something other than "1" or "", disable stage 1
462 ifneq "$(filter-out 1,$(stage))" ""
463 compiler_stage1_NOT_NEEDED = YES
464 endif
465 # if stage is set to something other than "2" or "", disable stage 2
466 ifneq "$(filter-out 2,$(stage))" ""
467 compiler_stage2_NOT_NEEDED = YES
468 endif
469 # stage 3 has to be requested explicitly with stage=3
470 ifneq "$(stage)" "3"
471 compiler_stage3_NOT_NEEDED = YES
472 endif
473 $(eval $(call build-package,compiler,stage1,0))
474 $(eval $(call build-package,compiler,stage2,1))
475 $(eval $(call build-package,compiler,stage3,2))
476
477 # after build-package, because that adds --enable-library-for-ghci
478 # to compiler_stage*_CONFIGURE_OPTS:
479 # We don't build the GHCi library for the ghc package. We can load it
480 # the .a file instead, and as object splitting isn't on for the ghc
481 # package this isn't much slower.However, not building the package saves
482 # a significant chunk of disk space.
483 compiler_stage1_CONFIGURE_OPTS += --disable-library-for-ghci
484 compiler_stage2_CONFIGURE_OPTS += --disable-library-for-ghci
485 compiler_stage3_CONFIGURE_OPTS += --disable-library-for-ghci
486
487 # after build-package, because that sets compiler_stage1_HC_OPTS:
488 compiler_stage1_HC_OPTS += $(GhcStage1HcOpts)
489 compiler_stage2_HC_OPTS += $(GhcStage2HcOpts)
490 compiler_stage3_HC_OPTS += $(GhcStage3HcOpts)
491
492 ifeq "$(GhcStage1DefaultNewCodegen)" "YES"
493 compiler_stage1_HC_OPTS += -DGHC_DEFAULT_NEW_CODEGEN
494 endif
495
496 ifeq "$(GhcStage2DefaultNewCodegen)" "YES"
497 compiler_stage2_HC_OPTS += -DGHC_DEFAULT_NEW_CODEGEN
498 endif
499
500 ifeq "$(GhcStage3DefaultNewCodegen)" "YES"
501 compiler_stage3_HC_OPTS += -DGHC_DEFAULT_NEW_CODEGEN
502 endif
503
504 ifneq "$(BINDIST)" "YES"
505
506 compiler_stage2_TAGS_HC_OPTS = -package ghc
507 $(eval $(call tags-package,compiler,stage2))
508
509 $(compiler_stage1_depfile_haskell) : compiler/stage1/$(PLATFORM_H)
510 $(compiler_stage2_depfile_haskell) : compiler/stage2/$(PLATFORM_H)
511 $(compiler_stage3_depfile_haskell) : compiler/stage3/$(PLATFORM_H)
512
513 $(compiler_stage1_depfile_haskell) : $(includes_H_CONFIG) $(includes_H_PLATFORM) $(includes_GHCCONSTANTS) $(includes_DERIVEDCONSTANTS) $(PRIMOP_BITS)
514 $(compiler_stage2_depfile_haskell) : $(includes_H_CONFIG) $(includes_H_PLATFORM) $(includes_GHCCONSTANTS) $(includes_DERIVEDCONSTANTS) $(PRIMOP_BITS)
515 $(compiler_stage3_depfile_haskell) : $(includes_H_CONFIG) $(includes_H_PLATFORM) $(includes_GHCCONSTANTS) $(includes_DERIVEDCONSTANTS) $(PRIMOP_BITS)
516
517 # Every Constants.o object file depends on includes/GHCConstants.h:
518 $(eval $(call compiler-hs-dependency,Constants,$(includes_GHCCONSTANTS) includes/HaskellConstants.hs))
519
520 # Every PrimOp.o object file depends on $(PRIMOP_BITS):
521 $(eval $(call compiler-hs-dependency,PrimOp,$(PRIMOP_BITS)))
522
523 # GHC itself doesn't know about the above dependencies, so we have to
524 # switch off the recompilation checker for those modules:
525 compiler/prelude/PrimOp_HC_OPTS  += -fforce-recomp
526 compiler/main/Constants_HC_OPTS  += -fforce-recomp
527
528 # Workaround for #4003 in GHC 6.12.2.  It didn't happen in 6.12.1, and
529 # will be fixed in 6.12.3.  Unfortunately we don't have a way to do
530 # this for just stage1 in the build system.
531 ifeq "$(GhcVersion)" "6.12.2"
532 compiler/hsSyn/HsLit_HC_OPTS     += -fomit-interface-pragmas
533 endif
534
535 # Note [munge-stage1-package-config]
536 # Strip the date/patchlevel from the version of stage1.  See Note
537 # [fiddle-stage1-version] above.
538 ifeq "$(compiler_stage1_VERSION_MUNGED)" "YES"
539 compiler/stage1/inplace-pkg-config-munged: compiler/stage1/inplace-pkg-config
540         sed -e 's/^\(version: .*\)\.$(ProjectPatchLevel)$$/\1/' \
541             -e 's/^\(id: .*\)\.$(ProjectPatchLevel)$$/\1/' \
542             -e 's/^\(hs-libraries: HSghc-.*\)\.$(ProjectPatchLevel)$$/\1/' \
543           < $< > $@
544         "$(compiler_stage1_GHC_PKG)" update --force $(compiler_stage1_GHC_PKG_OPTS) $@
545
546 # We need to make sure the munged config is in the database before we
547 # try to configure ghc-bin
548 ghc/stage1/package-data.mk : compiler/stage1/inplace-pkg-config-munged
549 endif
550
551 endif
552