Generalise Package Support
[ghc-hetmet.git] / compiler / Makefile
1 # -----------------------------------------------------------------------------
2 # Main compiler Makefile
3
4 # Targets:
5 #
6 #       all     builds stage1 compiler
7 #
8 #       boot stage=N   generate build dirs and dependencies for stage N.
9 #                      NB. Must be done before 'make stageN'.
10 #                      NB. Cannot 'make boot stage=2' until stage1 has
11 #                          been built (similarly for stage3).
12 #
13 #       stage1  (or stage=1) builds stage1 compiler
14 #       stage2  (or stage=2) builds stage2 compiler
15 #       stage3  (or stage=3) builds stage3 compiler
16 #
17
18 TOP = ..
19
20 # Use GHC for compiling C bits (NB. must be before boilerplate include)
21 #
22 UseGhcForCc = YES
23
24 include $(TOP)/mk/boilerplate.mk
25
26 #-----------------------------------------------------------------------------
27 # Counting source code lines
28
29 USER_SRCS = $(filter-out $(DERIVED_SRCS),$(SRCS))
30 count :
31         ./count_lines $(USER_SRCS)
32
33 #-----------------------------------------------------------------------------
34 # Building ghc different ways (default is just `normal' sequential)
35
36 WAYS=$(GhcCompilerWays)
37
38 # -----------------------------------------------------------------------------
39 # Bootstrapping
40
41 # The stage1/stage2/stage3 business is quite delicate.  Here's how it works:
42
43 #  - the variable $(stage) holds the current stage number.  To build a 
44 #    particular stage, you say 'make stage=N' where N is 1, 2, or 3.
45 #    N defaults to 1.
46 #
47 #  - for stage N, object files and .hi files are placed inside 
48 #    the directory stageN, in subdirectories as per the sources.
49 #
50 #  - .hi-boot files are *linked* into the stageN tree, because in GHC 5.05+
51 #    the .hi-boot file must reside in the same place as the .hi file.
52 #
53 #  - we use explicit -o and -ohi options to direct the output from C & 
54 #    Haskell compilations.
55 #
56 #  - we generate a different .depend file for each build.  They need to be
57 #    different, because each stage might include different files: stage1
58 #    might not include GHCi, for example.  For each stage, a normal .depend
59 #    file is generated, and then post-processed to add the correct stageN/
60 #    prefix to each object and .hi filename.  The resulting .depend file
61 #    is named .depend-$(stage).  See the end of this Makefile for details.
62 #
63 #  - normal implicit rules don't work any more, because they're of the form
64 #
65 #        %.o : %.hs 
66 #
67 #    whereas we really need 
68 #
69 #        stageN/%.o : %.hs
70 #
71 #    so suffix.mk now defines the appropriate suffix rules when
72 #    $(odir) is set to a non-empty value.  Here we set $(odir) to
73 #    stage1, stage2, or stage3.
74 #
75 #  There are other plausible designs that might work, but each has different
76 #  problems:
77 #
78 #  - using -odir and -hidir: GHC <= 4.08 doesn't support -hidir, and
79 #    anyway -odir puts all the objects in one directory (strips off the
80 #    subdirectory part), which eventually forces us to use VPATH to find
81 #    the sources.  I have a really bad feeling about VPATH.
82 #
83 #  - invoke make in the stageN subdirectory.  This probably requires VPATH
84 #    too.
85 #
86 #  - create a link tree.  The problem with requiring link trees is that 
87 #    Windows doesn't support symbolic links.
88
89 ifeq "$(stage)" ""
90 stage=1
91 endif
92
93 .DUMMY: stage_dir
94 stage_dirs :
95         $(MKDIRHIER) stage$(stage)
96         for i in $(ALL_DIRS); do \
97             $(MKDIRHIER) stage$(stage)/$$i; \
98         done
99
100 ifeq "$(stage) $(ghc_ge_603)" "1 YES"
101 UsingHsBoot = YES
102 else
103 ifneq "$(findstring $(stage), 2 3)" ""
104 UsingHsBoot = YES
105 else
106 UsingHsBoot = NO
107 endif
108 endif
109
110 boot :: stage_dirs
111 # On Windows, we can't use symbolic links for the -hi-boot files
112 # because GHC itself is a Mingw program and does not understand
113 # symbolic links.  So we have to copy the files instead of link them.
114 # That means that if you modify a .hi-boot file in Windows, you
115 # have to to say 'make boot' again.
116 #
117 # PS: 'ln -s foo baz' takes 'foo' relative to the path to 'baz'
118 #     whereas 'cp foo baz' treats the two paths independently.
119 #     Hence the "../.." in the ln command line
120 ifeq "$(UsingHsBoot)" "NO"
121 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
122         for i in */*hi-boot*; do \
123             cp -u -f $$i stage$(stage)/$$i; \
124         done
125 else
126         for i in */*hi-boot*; do \
127             $(LN_S) -f ../../$$i stage$(stage)/$$i || true ; \
128         done
129 endif
130 endif
131
132 ifeq "$(stage)" "1"
133 HC=$(GHC)
134 endif
135
136 ifeq "$(stage)" "2"
137 HC=$(GHC_STAGE1)
138 endif
139
140 ifeq "$(stage)" "3"
141 HC=$(GHC_STAGE2)
142 endif
143
144 stage1 ::
145         $(MAKE) stage=1
146
147 stage2 ::
148         $(MAKE) stage=2
149
150 stage3 ::
151         $(MAKE) stage=3
152
153 odir=stage$(stage)
154
155 SRC_HC_OPTS += $(patsubst %, -i$(odir)/%, $(ALL_DIRS))
156
157 HS_OBJS = $(patsubst %, $(odir)/%, $(addsuffix .$(way_)o,$(basename $(HS_SRCS))))
158 C_OBJS = $(patsubst %, $(odir)/%, $(addsuffix .$(way_)o,$(basename $(C_SRCS))))
159
160 # Our standard cleaning rules don't know that we're doing our output
161 # into $(odir), so we have to augment CLEAN_FILES appropriateliy.
162
163 CLEAN_FILES += $(odir)/*/*.hi $(odir)/*/*.hi-boot $(odir)/*/*.o-boot
164
165 ifeq "$(UsingHsBoot)" "YES"
166 CLEAN_FILES += $(odir)/*/*.hi-boot $(odir)/*/*.o-boot
167 endif
168
169 ifeq "$(stage)" "1"
170 mostlyclean clean distclean maintainer-clean ::
171         $(MAKE) $@ stage=2
172         $(MAKE) $@ stage=3
173 endif
174
175 # -----------------------------------------------------------------------------
176 #               Set HS_PROG
177
178 # Note: there have been reports of people running up against the ARG_MAX limit
179 # when linking ghc with all its constituent object files. The likely source of 
180 # the problem is that the environment is a bit too big, so a workaround could
181 # be to do `env PATH=$(PATH) make ghc' to minimise the environment. (or the
182 # equivalent of `env' if it doesn't exist locally).
183 #
184 ifneq "$(way)" "dll"
185 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
186 GHC_PROG=$(odir)/ghc$(_way)-$(ProjectVersion)
187 else
188 GHC_PROG=$(odir)/ghc$(_way)
189 endif
190 else
191 GHC_PROG=$(odir)/ghc-$(ProjectVersion)
192 endif
193
194 ifneq "$(stage)" "2"
195 HS_PROG = $(GHC_PROG)
196 endif
197
198 # -----------------------------------------------------------------------------
199 # Create compiler configuration
200 #
201 # The 'echo' commands simply spit the values of various make variables
202 # into Config.hs, whence they can be compiled and used by GHC itself
203
204 CONFIG_HS       = main/Config.hs
205 boot :: $(CONFIG_HS)
206
207 $(CONFIG_HS) : $(FPTOOLS_TOP)/mk/config.mk Makefile
208         @$(RM) -f $(CONFIG_HS)
209         @echo "Creating $(CONFIG_HS) ... "
210         @echo "module Config where" >>$(CONFIG_HS)
211         @echo "cProjectName          = \"$(ProjectName)\"" >> $(CONFIG_HS)
212         @echo "cProjectVersion       = \"$(ProjectVersion)\"" >> $(CONFIG_HS)
213         @echo "cProjectVersionInt    = \"$(ProjectVersionInt)\"" >> $(CONFIG_HS)
214         @echo "cProjectPatchLevel    = \"$(ProjectPatchLevel)\"" >> $(CONFIG_HS)
215         @echo "cBooterVersion        = \"$(GhcVersion)\"" >> $(CONFIG_HS)
216         @echo "cHscIfaceFileVersion  = \"$(HscIfaceFileVersion)\"" >> $(CONFIG_HS)
217         @echo "cGhcWithNativeCodeGen = \"$(GhcWithNativeCodeGen)\"" >> $(CONFIG_HS)
218         @echo "cGhcUnregisterised    = \"$(GhcUnregisterised)\"" >> $(CONFIG_HS)
219         @echo "cLeadingUnderscore    = \"$(LeadingUnderscore)\"" >> $(CONFIG_HS)
220         @echo "cRAWCPP_FLAGS         = \"$(RAWCPP_FLAGS)\"" >> $(CONFIG_HS)
221         @echo "cGCC                  = \"$(WhatGccIsCalled)\"" >> $(CONFIG_HS)
222         @echo "cMKDLL                = \"$(BLD_DLL)\"" >> $(CONFIG_HS)
223         @echo "cLdIsGNULd            = \"$(LdIsGNULd)\"" >> $(CONFIG_HS)
224         @echo "cLD_X                 = \"$(LD_X)\"" >> $(CONFIG_HS)
225         @echo "cPROJECT_DIR          = \"$(PROJECT_DIR)\"" >> $(CONFIG_HS)
226         @echo "cGHC_DRIVER_DIR_REL   = \"$(GHC_DRIVER_DIR_REL)\"" >> $(CONFIG_HS)
227         @echo "cGHC_TOUCHY_PGM       = \"$(GHC_TOUCHY_PGM)\"" >> $(CONFIG_HS)
228         @echo "cGHC_TOUCHY_DIR_REL   = \"$(GHC_TOUCHY_DIR_REL)\"" >> $(CONFIG_HS)
229         @echo "cGHC_UNLIT_PGM        = \"$(GHC_UNLIT_PGM)\"" >> $(CONFIG_HS)
230         @echo "cGHC_UNLIT_DIR_REL    = \"$(GHC_UNLIT_DIR_REL)\"" >> $(CONFIG_HS)
231         @echo "cGHC_MANGLER_PGM      = \"$(GHC_MANGLER_PGM)\"" >> $(CONFIG_HS)
232         @echo "cGHC_MANGLER_DIR_REL  = \"$(GHC_MANGLER_DIR_REL)\"" >> $(CONFIG_HS)
233         @echo "cGHC_SPLIT_PGM        = \"$(GHC_SPLIT_PGM)\"" >> $(CONFIG_HS)
234         @echo "cGHC_SPLIT_DIR_REL    = \"$(GHC_SPLIT_DIR_REL)\"" >> $(CONFIG_HS)
235         @echo "cGHC_SYSMAN_PGM       = \"$(GHC_SYSMAN)\"" >> $(CONFIG_HS)
236         @echo "cGHC_SYSMAN_DIR_REL   = \"$(GHC_SYSMAN_DIR)\"" >> $(CONFIG_HS)
237         @echo "cGHC_CP               = \"$(GHC_CP)\"" >> $(CONFIG_HS)
238         @echo "cGHC_PERL             = \"$(GHC_PERL)\"" >> $(CONFIG_HS)
239 ifeq ($(GhcWithIlx),YES)
240         @echo "cILX2IL               = \"$(ILX2IL)\"" >> $(CONFIG_HS)
241         @echo "cILASM                = \"$(ILASM)\"" >> $(CONFIG_HS)
242 endif
243         @echo "cEnableWin32DLLs      = \"$(EnableWin32DLLs)\"" >> $(CONFIG_HS)
244         @echo "cCONTEXT_DIFF         = \"$(CONTEXT_DIFF)\"" >> $(CONFIG_HS)
245         @echo "cUSER_WAY_NAMES       = \"$(USER_WAY_NAMES)\"" >> $(CONFIG_HS)
246         @echo "cUSER_WAY_OPTS        = \"$(USER_WAY_OPTS)\"" >> $(CONFIG_HS)
247         @echo "cDEFAULT_TMPDIR       = \"$(DEFAULT_TMPDIR)\"" >> $(CONFIG_HS)
248         @echo done.
249
250 CLEAN_FILES += $(CONFIG_HS)
251
252 # -----------------------------------------------------------------------------
253 # Create platform includes
254
255 # Here we generate a little header file containing CPP symbols that GHC
256 # uses to determine which platform it is building on/for.  The platforms
257 # can differ between stage1 and stage2 if we're cross-compiling, so we
258 # need one of these header files per stage.
259
260 PLATFORM_H = ghc_boot_platform.h
261
262 stage1/$(PLATFORM_H) : stage_dirs $(FPTOOLS_TOP)/mk/config.mk Makefile
263         @echo "Creating $@..."
264         @$(RM) $@
265         @echo "#ifndef __PLATFORM_H__"  >$@
266         @echo "#define __PLATFORM_H__" >>$@
267         @echo >> $@
268         @echo "#define BuildPlatform_NAME  \"$(BUILDPLATFORM)\"" >> $@
269         @echo "#define HostPlatform_NAME   \"$(HOSTPLATFORM)\"" >> $@
270         @echo "#define TargetPlatform_NAME \"$(TARGETPLATFORM)\"" >> $@
271         @echo >> $@
272         @echo "#define $(BuildPlatform_CPP)_BUILD       1" >> $@
273         @echo "#define $(HostPlatform_CPP)_HOST         1" >> $@
274         @echo "#define $(TargetPlatform_CPP)_TARGET     1" >> $@
275         @echo >> $@
276         @echo "#define $(BuildArch_CPP)_BUILD_ARCH      1" >> $@
277         @echo "#define $(HostArch_CPP)_HOST_ARCH        1" >> $@
278         @echo "#define $(TargetArch_CPP)_TARGET_ARCH    1" >> $@
279         @echo "#define BUILD_ARCH \"$(BuildArch_CPP)\"" >> $@
280         @echo "#define HOST_ARCH \"$(HostArch_CPP)\"" >> $@
281         @echo "#define TARGET_ARCH \"$(TargetArch_CPP)\"" >> $@
282         @echo >> $@
283         @echo "#define $(BuildOS_CPP)_BUILD_OS          1" >> $@
284         @echo "#define $(HostOS_CPP)_HOST_OS            1" >> $@
285         @echo "#define $(TargetOS_CPP)_TARGET_OS        1" >> $@  
286         @echo "#define BUILD_OS \"$(BuildOS_CPP)\"" >> $@
287         @echo "#define HOST_OS \"$(HostOS_CPP)\"" >> $@
288         @echo "#define TARGET_OS \"$(TargetOS_CPP)\"" >> $@
289 ifeq "$(HostOS_CPP)" "irix"
290         @echo "#ifndef $(IRIX_MAJOR)_TARGET_OS           " >> $@  
291         @echo "#define $(IRIX_MAJOR)_TARGET_OS          1" >> $@  
292         @echo "#endif                                    " >> $@  
293 endif
294         @echo >> $@
295         @echo "#define $(BuildVendor_CPP)_BUILD_VENDOR  1" >> $@
296         @echo "#define $(HostVendor_CPP)_HOST_VENDOR    1" >> $@
297         @echo "#define $(TargetVendor_CPP)_TARGET_VENDOR  1" >> $@
298         @echo "#define BUILD_VENDOR \"$(BuildVendor_CPP)\"" >> $@
299         @echo "#define HOST_VENDOR \"$(HostVendor_CPP)\"" >> $@
300         @echo "#define TARGET_VENDOR \"$(TargetVendor_CPP)\"" >> $@
301         @echo >> $@
302         @echo "#endif /* __PLATFORM_H__ */"          >> $@
303         @echo "Done."
304
305 # For stage2 and above, the BUILD platform is the HOST of stage1, and
306 # the HOST platform is the TARGET of stage1.  The TARGET remains the same
307 # (stage1 is the cross-compiler, not stage2).
308 stage2/$(PLATFORM_H) : stage_dirs $(FPTOOLS_TOP)/mk/config.mk Makefile
309         @echo "Creating $@..."
310         @$(RM) $@
311         @echo "#ifndef __PLATFORM_H__"  >$@
312         @echo "#define __PLATFORM_H__" >>$@
313         @echo >> $@
314         @echo "#define BuildPlatform_NAME  \"$(HOSTPLATFORM)\"" >> $@
315         @echo "#define HostPlatform_NAME   \"$(TARGETPLATFORM)\"" >> $@
316         @echo "#define TargetPlatform_NAME \"$(TARGETPLATFORM)\"" >> $@
317         @echo >> $@
318         @echo "#define $(HostPlatform_CPP)_BUILD        1" >> $@
319         @echo "#define $(TargetPlatform_CPP)_HOST               1" >> $@
320         @echo "#define $(TargetPlatform_CPP)_TARGET     1" >> $@
321         @echo >> $@
322         @echo "#define $(HostArch_CPP)_BUILD_ARCH       1" >> $@
323         @echo "#define $(TargetArch_CPP)_HOST_ARCH      1" >> $@
324         @echo "#define $(TargetArch_CPP)_TARGET_ARCH    1" >> $@
325         @echo "#define BUILD_ARCH \"$(HostArch_CPP)\"" >> $@
326         @echo "#define HOST_ARCH \"$(TargetArch_CPP)\"" >> $@
327         @echo "#define TARGET_ARCH \"$(TargetArch_CPP)\"" >> $@
328         @echo >> $@
329         @echo "#define $(HostOS_CPP)_BUILD_OS           1" >> $@
330         @echo "#define $(TargetOS_CPP)_HOST_OS          1" >> $@
331         @echo "#define $(TargetOS_CPP)_TARGET_OS        1" >> $@  
332         @echo "#define BUILD_OS \"$(HostOS_CPP)\"" >> $@
333         @echo "#define HOST_OS \"$(TargetOS_CPP)\"" >> $@
334         @echo "#define TARGET_OS \"$(TargetOS_CPP)\"" >> $@
335 ifeq "$(HostOS_CPP)" "irix"
336         @echo "#ifndef $(IRIX_MAJOR)_TARGET_OS           " >> $@  
337         @echo "#define $(IRIX_MAJOR)_TARGET_OS          1" >> $@  
338         @echo "#endif                                    " >> $@  
339 endif
340         @echo >> $@
341         @echo "#define $(HostVendor_CPP)_BUILD_VENDOR   1" >> $@
342         @echo "#define $(TargetVendor_CPP)_HOST_VENDOR  1" >> $@
343         @echo "#define $(TargetVendor_CPP)_TARGET_VENDOR  1" >> $@
344         @echo "#define BUILD_VENDOR \"$(HostVendor_CPP)\"" >> $@
345         @echo "#define HOST_VENDOR \"$(TargetVendor_CPP)\"" >> $@
346         @echo "#define TARGET_VENDOR \"$(TargetVendor_CPP)\"" >> $@
347         @echo >> $@
348         @echo "#endif /* __PLATFORM_H__ */"          >> $@
349         @echo "Done."
350
351 stage3/$(PLATFORM_H) : stage_dirs stage2/$(PLATFORM_H)
352         $(CP) stage2/$(PLATFORM_H) stage3/$(PLATFORM_H)
353
354 STAGE_PLATFORM_H = stage$(stage)/$(PLATFORM_H)
355
356 boot :: $(STAGE_PLATFORM_H)
357
358 SRC_HC_OPTS += -Istage$(stage)
359
360 # -----------------------------------------------------------------------------
361 # Set SRCS etc.
362 #
363 # First figure out ALL_DIRS, the source sub-directories
364
365 ALL_DIRS = \
366   utils basicTypes types hsSyn prelude rename typecheck deSugar coreSyn \
367   specialise simplCore stranal stgSyn simplStg codeGen main \
368   profiling parser cprAnalysis ndpFlatten iface cmm
369
370 # Make sure we include Config.hs even if it doesn't exist yet...
371 ALL_SRCS += $(CONFIG_HS)
372
373 # HsGeneric.hs is not used just now
374 EXCLUDED_SRCS += hsSyn/HsGeneric.hs
375
376 ifeq ($(GhcWithNativeCodeGen),YES)
377 ALL_DIRS += nativeGen
378 else
379 SRC_HC_OPTS += -DOMIT_NATIVE_CODEGEN
380 endif
381
382 ifeq ($(GhcWithIlx),YES)
383 ALL_DIRS += ilxGen
384 SRC_HC_OPTS += -DILX
385 endif
386
387 ifeq ($(GhcWithJavaGen),YES)
388 ALL_DIRS += javaGen
389 SRC_HC_OPTS += -DJAVA
390 endif
391
392 ifeq "$(BootingFromHc)" "YES"
393 # HC files are always from a self-booted compiler
394 bootstrapped = YES
395 else
396 ifneq "$(findstring $(stage), 2 3)" ""
397 bootstrapped = YES
398 else
399 bootstrapped = $(shell if (test $(GhcCanonVersion) -eq $(ProjectVersionInt) -a $(GhcPatchLevel) -eq $(ProjectPatchLevel)); then echo YES; else echo NO; fi)
400 endif
401 endif
402
403 # -----------------------------------------------------------------------------
404 # Building a compiler with interpreter support
405 #
406 # The interpreter, GHCi interface, and Template Haskell are only
407 # enabled when we are bootstrapping with the same version of GHC, and
408 # the interpreter is supported on this platform.
409
410 ifeq "$(GhcWithInterpreter) $(bootstrapped)" "YES YES"
411
412 # Yes, include the interepreter, readline, and Template Haskell extensions
413 SRC_HC_OPTS += -DGHCI -DBREAKPOINT -package template-haskell
414 PKG_DEPENDS += template-haskell
415
416 # Use threaded RTS with GHCi, so threads don't get blocked at the prompt.
417 SRC_HC_OPTS += -threaded
418
419 ALL_DIRS += ghci
420
421 # If we are going to use dynamic libraries instead of .o files for ghci,
422 # we will need to always retain CAFs in the compiler.
423 # ghci/keepCAFsForGHCi contains a GNU C __attribute__((constructor))
424 # function which sets the keepCAFs flag for the RTS before any Haskell
425 # code is run.
426 ifeq "$(GhcBuildDylibs)" "YES"
427 else
428 EXCLUDED_SRCS += ghci/keepCAFsForGHCi.c
429 endif
430
431 # Enable readline if either:
432 #   - we're building stage 1 and $(GhcHasReadline)="YES"
433 #   - we're building stage 2/3, and we have built the readline package
434 #
435 # But we don't enable readline on Windows, because readline is fairly
436 # broken there.
437 #
438 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
439 ifeq "$(stage)" "1"
440 ifeq "$(GhcHasReadline)" "YES"
441 SRC_HC_OPTS += -package readline -DUSE_READLINE
442 PKG_DEPENDS += readline
443 endif
444 else
445 -include $(FPTOOLS_TOP)/libraries/readline/config.mk
446 # readline's config.mk sets PACKAGE, which we don't want here
447 PACKAGE=
448 ifeq "$(READLINE_BUILD_PACKAGE)" "yes"
449 SRC_HC_OPTS += -package readline -DUSE_READLINE
450 PKG_DEPENDS += readline
451 endif
452 endif # stage=1
453 endif # not windows
454
455 else
456
457 # No interpreter, so exclude Template Haskell modules
458 EXCLUDED_SRCS += deSugar/DsMeta.hs typecheck/TcSplice.lhs hsSyn/Convert.lhs
459
460 endif # bootstrapped with interpreter
461
462 # -----------------------------------------------
463 # mkdependC stuff
464 #
465 # Big Fudge to get around inherent problem that Makefile setup
466 # has got with 'mkdependC'.
467
468 SRC_MKDEPENDC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
469
470 # XXX not really correct, hschooks.c actually gets include files like
471 # RtsFlags.c from the installed GHC, but we can't tell mkdependC about that.
472 SRC_MKDEPENDC_OPTS += -I$(GHC_INCLUDE_DIR)
473
474 # -----------------------------------------------------------------------------
475 #               Haskell compilations
476
477 SRC_HC_OPTS += \
478   -cpp -fglasgow-exts -fno-generics -Rghc-timing \
479   -I. -IcodeGen -InativeGen -Iparser
480
481 # Omitted:      -I$(GHC_INCLUDE_DIR)
482 # We should have -I$(GHC_INCLUDE_DIR) in SRC_HC_OPTS, 
483 # to avoid the use of an explicit path in GHC source files
484 #       (include "../includes/config.h"
485 # But alas GHC 4.08 (and others for all I know) uses this very
486 # same include path when compiling the .hc files it generates.
487 # Disaster!  Then the hc file sees the GHC 5.02 (or whatever)
488 # include files.   For the moment we've reverted to using
489 # an explicit path in the .hs sources
490 #
491 # For the benefit of <5.00 compilers, do include GHC_INCLUDE_DIR
492 # when generating dependencies. (=> it gets passed onto mkdependHS,
493 # which needs it).
494 SRC_MKDEPENDHS_OPTS += -I$(GHC_INCLUDE_DIR)
495
496 # We need System.Posix (or Posix when ghc < 6.2)
497 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
498 ifeq "$(bootstrapped)" "YES"
499 SRC_HC_OPTS += -package Win32
500 PKG_DEPENDS += Win32
501 endif
502 else
503 ifeq "$(bootstrapped) $(ghc_ge_601)" "NO NO"
504 SRC_HC_OPTS += -package posix
505 else
506 SRC_HC_OPTS += -package unix
507 PKG_DEPENDS += unix
508 endif
509 endif
510
511 # We use the Cabal package in stages 2/3 only; in stage 1 we're using
512 # the libcompat library which provides the Cabal modules.
513 ifneq "$(stage)" "1"
514 SRC_HC_OPTS += -package Cabal
515 PKG_DEPENDS += Cabal
516 endif
517
518 ifeq "$(ghc_ge_603)" "YES"
519 # Ignore lang, to avoid potential clash with the Generics module if
520 # lang happens to be a dependency of some exposed package in the local
521 # GHC installation (eg. wxHaskell did this around 6.4).
522 SRC_HC_OPTS += -ignore-package lang
523 endif
524
525 SRC_CC_OPTS += -Iparser -I. -O
526 SRC_HC_OPTS += -recomp $(GhcHcOpts) $(GhcStage$(stage)HcOpts)
527 SRC_HC_OPTS += -H16M
528
529 ifeq "$(BootingFromHc)" "YES"
530 SRC_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
531 endif
532
533 #       Special flags for particular modules
534 #       The standard suffix rule for compiling a Haskell file
535 #       adds these flags to the command line
536
537 # There used to be a -no-recomp flag on PrimOp, but why?
538 # It's an expensive module to recompile!
539 prelude/PrimOp_HC_OPTS          = -H80m
540
541
542 main/ParsePkgConf_HC_OPTS       += -fno-warn-incomplete-patterns
543 parser/Parser_HC_OPTS           += -fno-warn-incomplete-patterns
544
545 ifeq "$(ghc_ge_603)" "NO"
546 # Use -fvia-C since the NCG can't handle the narrow16Int# (and intToInt16#?)
547 # primops on all platforms.
548 parser/Parser_HC_OPTS           += -fvia-C
549 # because the NCG can't handle the 64-bit math in here
550 prelude/PrelRules_HC_OPTS       += -fvia-C
551 # ByteCodeItbls uses primops that the NCG doesn't support.
552 ghci/ByteCodeItbls_HC_OPTS      += -fvia-C
553 ghci/ByteCodeLink_HC_OPTS       += -fvia-C -monly-3-regs
554 endif
555
556 # Careful optimisation of the parser: we don't want to throw everything
557 # at it, because that takes too long and doesn't buy much, but we do want
558 # to inline certain key external functions, so we instruct GHC not to
559 # throw away inlinings as it would normally do in -Onot mode:
560 parser/Parser_HC_OPTS           += -Onot -fno-ignore-interface-pragmas
561
562 ifeq "$(HOSTPLATFORM)" "hppa1.1-hp-hpux9"
563 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
564 endif
565
566 utils/Digraph_HC_OPTS           = -fglasgow-exts 
567
568 basicTypes/SrcLoc_HC_OPTS       = -funbox-strict-fields
569
570 ifeq "$(bootstrapped)" "YES"
571 utils/Binary_HC_OPTS            = -funbox-strict-fields
572 endif
573
574 # We always optimise some low-level modules, otherwise performance of
575 # a non-optimised compiler is severely affected.
576 main/BinIface_HC_OPTS           += -O
577 utils/Binary_HC_OPTS            += -O
578 utils/FastMutInt_HC_OPTS        += -O
579 utils/Encoding_HC_OPTS          += -O
580 utils/StringBuffer_HC_OPTS      += -O
581 utils/FastString_HC_OPTS        += -O
582
583 # ---- Profiling ----
584 #simplCore/Simplify_HC_OPTS = -auto-all
585 #simplCore/SimplEnv_HC_OPTS = -auto-all
586 #simplCore/SimplUtils_HC_OPTS = -auto-all
587
588 # CSE interacts badly with top-level IORefs (reportedly in DriverState and
589 # DriverMkDepend), causing some of them to be commoned up.  We have a fix for
590 # this in 5.00+, but earlier versions of the compiler will need CSE turned off.
591 # To be on the safe side, we disable CSE in *all* modules with top-level IORefs.
592 ghci/InteractiveUI_HC_OPTS      = -fno-cse
593 main/CmdLineOpts_HC_OPTS        = -fno-cse
594 main/DriverMkDepend_HC_OPTS     = -fno-cse
595 main/DriverPipeline_HC_OPTS     = -fno-cse
596 main/Finder_HC_OPTS             = -fno-cse
597 main/SysTools_HC_OPTS           = -fno-cse
598 main/StaticFlags_HC_OPTS        = -fno-cse
599
600 # The #include is vital for the via-C route, else the C
601 # compiler doesn't realise that the stcall foreign imports are indeed
602 # stdcall, and doesn't generate the Foo@8 name for them
603 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
604 main/SysTools_HC_OPTS           += '-\#include <windows.h>' '-\#include <process.h>'
605 endif
606
607 parser/Lexer_HC_OPTS += -funbox-strict-fields
608
609 # ghc_strlen percolates through so many modules that it is easier to get its
610 # prototype via a global option instead of a myriad of per-file OPTIONS
611 SRC_HC_OPTS += '-\#include "hschooks.h"'
612
613 # ----------------------------------------------------------------------------
614 #               Generate supporting stuff for prelude/PrimOp.lhs 
615 #               from prelude/primops.txt
616
617 PRIMOP_BITS=primop-data-decl.hs-incl \
618             primop-tag.hs-incl  \
619             primop-list.hs-incl  \
620             primop-has-side-effects.hs-incl  \
621             primop-out-of-line.hs-incl  \
622             primop-commutable.hs-incl  \
623             primop-needs-wrapper.hs-incl  \
624             primop-can-fail.hs-incl  \
625             primop-strictness.hs-incl  \
626             primop-primop-info.hs-incl
627
628 CLEAN_FILES += prelude/primops.txt
629 CLEAN_FILES += $(PRIMOP_BITS)
630
631 SRC_CPP_OPTS += -I$(GHC_INCLUDE_DIR)
632 SRC_CPP_OPTS += ${GhcCppOpts}
633
634 ifneq "$(BootingFromHc)" "YES"
635 prelude/PrimOp.lhs $(odir)/prelude/PrimOp.o: $(PRIMOP_BITS)
636 endif
637
638 ifneq "$(BootingFromHc)" "YES"
639 depend :: $(PRIMOP_BITS)
640 endif
641
642 primop-data-decl.hs-incl: prelude/primops.txt
643         $(GENPRIMOP) --data-decl          < $< > $@
644 primop-tag.hs-incl: prelude/primops.txt
645         $(GENPRIMOP) --primop-tag         < $< > $@
646 primop-list.hs-incl: prelude/primops.txt
647         $(GENPRIMOP) --primop-list        < $< > $@
648 primop-has-side-effects.hs-incl: prelude/primops.txt
649         $(GENPRIMOP) --has-side-effects   < $< > $@
650 primop-out-of-line.hs-incl: prelude/primops.txt
651         $(GENPRIMOP) --out-of-line        < $< > $@
652 primop-commutable.hs-incl: prelude/primops.txt
653         $(GENPRIMOP) --commutable         < $< > $@
654 primop-needs-wrapper.hs-incl: prelude/primops.txt
655         $(GENPRIMOP) --needs-wrapper      < $< > $@
656 primop-can-fail.hs-incl: prelude/primops.txt
657         $(GENPRIMOP) --can-fail           < $< > $@
658 primop-strictness.hs-incl: prelude/primops.txt
659         $(GENPRIMOP) --strictness         < $< > $@
660 primop-primop-info.hs-incl: prelude/primops.txt
661         $(GENPRIMOP) --primop-primop-info < $< > $@
662
663 # Usages aren't used any more; but the generator 
664 # can still generate them if we want them back
665 primop-usage.hs-incl: prelude/primops.txt
666         $(GENPRIMOP) --usage              < $< > $@
667
668
669 #-----------------------------------------------------------------------------
670 #               Linking
671
672 # Include libghccompat in stage1 only.  In stage2 onwards, all these
673 # libraries will be available from the main libraries.
674
675 ifeq "$(stage)" "1"
676 include $(GHC_COMPAT_DIR)/compat.mk
677 endif
678
679 SRC_LD_OPTS += -no-link-chk
680
681 # -----------------------------------------------------------------------------
682 # create ghc-inplace, a convenient way to run ghc from the build tree...
683
684 all :: $(odir)/ghc-inplace ghc-inplace
685
686 $(odir)/ghc-inplace : $(GHC_PROG)
687         @$(RM) $@
688         echo '#!/bin/sh' >>$@
689         echo exec $(GHC_COMPILER_DIR_ABS)/$(GHC_PROG) '-B$(subst \,\\,$(FPTOOLS_TOP_ABS_PLATFORM))' '"$$@"' >>$@
690         chmod 755 $@
691
692 ghc-inplace : stage1/ghc-inplace
693         $(LN_S) -f $< $@
694
695 ifeq "$(stage)" "1"
696 CLEAN_FILES += ghc-inplace
697 endif
698
699 CLEAN_FILES += $(odir)/ghc-inplace
700
701 #-----------------------------------------------------------------------------
702 #               install
703
704 # We don't want ghc treated as an ordinary executable,
705 # but put it together with the libraries.
706 # Also don't want any interface files installed
707
708 DESTDIR = $(INSTALL_LIBRARY_DIR_GHC)
709
710 ifneq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
711 INSTALL_LIBEXECS += $(GHC_PROG)
712 else
713 INSTALL_PROGS += $(GHC_PROG)
714 endif
715
716 # ----------------------------------------------------------------------------
717 # profiling.
718
719 # rename/RnBinds_HC_OPTS += -auto-all
720 # rename/RnEnv_HC_OPTS += -auto-all
721 # rename/RnExpr_HC_OPTS += -auto-all
722 # rename/RnHiFiles_HC_OPTS += -auto-all
723 # rename/RnHsSyn_HC_OPTS += -auto-all
724 # rename/Rename_HC_OPTS += -auto-all
725 # rename/RnIfaces_HC_OPTS += -auto-all
726 # rename/RnNames_HC_OPTS += -auto-all
727 # rename/RnSource_HC_OPTS += -auto-all
728 # rename/RnTypes_HC_OPTS += -auto-all
729
730 # typecheck/Inst_HC_OPTS += -auto-all
731 # typecheck/TcBinds_HC_OPTS += -auto-all
732 # typecheck/TcClassDcl_HC_OPTS += -auto-all
733 # typecheck/TcDefaults_HC_OPTS += -auto-all
734 # typecheck/TcDeriv_HC_OPTS += -auto-all
735 # typecheck/TcEnv_HC_OPTS += -auto-all
736 # typecheck/TcExpr_HC_OPTS += -auto-all
737 # typecheck/TcForeign_HC_OPTS += -auto-all
738 # typecheck/TcGenDeriv_HC_OPTS += -auto-all
739 # typecheck/TcHsSyn_HC_OPTS += -auto-all
740 # typecheck/TcIfaceSig_HC_OPTS += -auto-all
741 # typecheck/TcInstDcls_HC_OPTS += -auto-all
742 # typecheck/TcMatches_HC_OPTS += -auto-all
743 # typecheck/TcMonoType_HC_OPTS += -auto-all
744 # typecheck/TcMType_HC_OPTS += -auto-all
745 # typecheck/TcPat_HC_OPTS += -auto-all
746 # typecheck/TcRnDriver_HC_OPTS += -auto-all
747 # #typecheck/TcRnMonad_HC_OPTS += -auto-all
748 # #typecheck/TcRnTypes_HC_OPTS += -auto-all
749 # typecheck/TcRules_HC_OPTS += -auto-all
750 # typecheck/TcSimplify_HC_OPTS += -auto-all
751 # typecheck/TcSplice_HC_OPTS += -auto-all
752 # typecheck/TcTyClsDecls_HC_OPTS += -auto-all
753 # typecheck/TcTyDecls_HC_OPTS += -auto-all
754 # typecheck/TcType_HC_OPTS += -auto-all
755 # typecheck/TcUnify_HC_OPTS += -auto-all
756
757 coreSyn/CorePrep_HC_OPTS += -auto-all
758 # parser/Parser_HC_OPTS += -fasm
759
760 #-----------------------------------------------------------------------------
761 # Building the GHC package
762
763 # The GHC package is made from the stage 2 build.  Fortunately the
764 # package build system framework more or less does the right thing for
765 # us here.
766
767 ifeq "$(stage)" "2"
768 PACKAGE = ghc
769 HIERARCHICAL_LIB = NO
770 VERSION = $(ProjectVersion)
771 PKG_DEPENDS += base haskell98
772 PACKAGE_CPP_OPTS += -DPKG_DEPENDS='$(PKG_DEPENDS)'
773
774 # Omit Main from the library, the client will want to plug their own Main in
775 LIBOBJS = $(filter-out $(odir)/main/Main.o $(odir)/parser/hschooks.o, $(OBJS))
776
777 # disable splitting: it won't really help with GHC, and the specialised
778 # build system for compiler/ isn't set up to handle it.
779 SplitObjs = NO
780
781 # the package build system likes to set WAYS=$(GhcLibWays), but we don't 
782 # really want to build the whole of GHC multiple ways... if you do,
783 # set GhcCompilerWays instead.
784 GhcLibWays = $(GhcCompilerWays)
785
786 # override $(GhcLibHcOpts): we want GhcStage2HcOpts to take precedence
787 GhcLibHcOpts =
788
789 # override default definition of HS_IFACES so we can add $(odir)
790 HS_IFACES   = $(addsuffix .$(way_)hi,$(basename $(HS_OBJS)))
791
792 # Haddock can't handle recursive modules currently, so we disable it for now.
793 NO_HADDOCK_DOCS = YES
794
795 # Don't build the GHC binary as normal, because we need to link it
796 # against the GHC package.  The GHC binary itself is built by
797 # compiling Main.o separately and linking it with -package ghc.  This is
798 # done using a separate Makefile:
799
800 all :: $(GHC_PROG)
801
802 $(GHC_PROG) : libHS$(PACKAGE)$(_way).a main/Main.hs
803         $(MAKE) -f Makefile.ghcbin $(MFLAGS) HS_PROG=$(GHC_PROG) $@
804
805 docs runtests $(BOOT_TARGET) TAGS clean distclean mostlyclean maintainer-clean $(INSTALL_TARGET) $(INSTALL_DOCS_TARGET) html chm HxS ps dvi txt::
806         $(MAKE) -f Makefile.ghcbin $(MFLAGS) $@
807 endif
808
809 #-----------------------------------------------------------------------------
810 #               clean
811
812 MAINTAINER_CLEAN_FILES += parser/Parser.info main/ParsePkgConf.info
813
814 #-----------------------------------------------------------------------------
815 #               Include target-rule boilerplate
816
817 # Don't use the default MKDEPENDHS stuff... we'll do our own, below
818 MKDEPENDHS_SRCS =
819 MKDEPENDC_SRCS =
820
821 # Make doesn't work this out for itself, it seems
822 parser/Parser.y : parser/Parser.y.pp
823 EXTRA_SRCS += parser/Parser.y
824
825
826 #-----------------------------------------------------------------------------
827 #               Source files for tags file generation
828 #
829 # We want to excluded derived sources, because they won't be in the source
830 # tree, which is where we are going to move the TAGS file to.a
831
832 TAGS_HS_SRCS = parser/Parser.y.pp $(filter-out $(DERIVED_SRCS) main/Config.hs parser/Parser.y, $(sort $(SRCS)))
833
834
835 include $(TOP)/mk/target.mk
836
837 # -----------------------------------------------------------------------------
838 # Dependencies
839
840 MKDEPENDHS_HC_OPTS = $(patsubst -i$(odir)/%, -i%, $(HC_OPTS))
841
842 MKDEPENDHS=$(HC)
843
844 # Must do this *after* including target.mk, because $(HS_SRCS) isn't set yet.
845 depend :: $(STAGE_PLATFORM_H) $(HS_SRCS) $(C_SRCS)
846         touch .depend-BASE
847 ifneq "$(BootingFromHc)" "YES"
848         $(MKDEPENDHS) -M -optdep-f -optdep.depend-BASE $(foreach way,$(WAYS),-optdep-s -optdep$(way)) $(foreach obj,$(MKDEPENDHS_OBJ_SUFFICES),-osuf $(obj)) $(MKDEPENDHS_OPTS) $(filter-out -split-objs, $(MKDEPENDHS_HC_OPTS)) $(HS_SRCS)
849 endif
850         $(MKDEPENDC) -f .depend-BASE $(MKDEPENDC_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(CC_OPTS) -- $(C_SRCS) 
851         $(PERL) -pe 'binmode(stdin); binmode(stdout); s@^(\S*\.o)@stage$(stage)/$$1@g; s@(\S*\.hi)@stage$(stage)/$$1@g; s@^.*/compat.*$$@@g;' <.depend-BASE >.depend-$(stage)
852 # The binmode stuff tells perl not to add stupid ^M's to the output
853 #
854 # The /lib/compat replacement is to workaround a bug in the
855 # -optdep--exclude-module flag in GHC 6.4.  It is not required for any
856 # other version of GHC, but doesn't do any harm.
857
858 -include .depend-$(stage)