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