2a014b9f2ed623ed651211c2c98476c44ac885ad
[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 = NO
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 # We use Text.Regex which is in regex-compat with GHC 6.6+
519 ifeq "$(bootstrapped)" "YES"
520 SRC_HC_OPTS += -package regex-compat
521 PKG_DEPENDS += regex-compat
522 else
523 ifeq "$(ghc_ge_605)" "YES"
524 SRC_HC_OPTS += -package regex-compat
525 endif
526 endif
527
528 ifeq "$(ghc_ge_603)" "YES"
529 # Ignore lang, to avoid potential clash with the Generics module if
530 # lang happens to be a dependency of some exposed package in the local
531 # GHC installation (eg. wxHaskell did this around 6.4).
532 SRC_HC_OPTS += -ignore-package lang
533 endif
534
535 SRC_CC_OPTS += -Iparser -I. -O
536 SRC_HC_OPTS += -recomp $(GhcHcOpts) $(GhcStage$(stage)HcOpts)
537 SRC_HC_OPTS += -H16M
538
539 ifeq "$(BootingFromHc)" "YES"
540 SRC_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
541 endif
542
543 #       Special flags for particular modules
544 #       The standard suffix rule for compiling a Haskell file
545 #       adds these flags to the command line
546
547 # There used to be a -no-recomp flag on PrimOp, but why?
548 # It's an expensive module to recompile!
549 prelude/PrimOp_HC_OPTS          = -H80m
550
551
552 main/ParsePkgConf_HC_OPTS       += -fno-warn-incomplete-patterns
553 parser/Parser_HC_OPTS           += -fno-warn-incomplete-patterns
554
555 ifeq "$(ghc_ge_603)" "NO"
556 # Use -fvia-C since the NCG can't handle the narrow16Int# (and intToInt16#?)
557 # primops on all platforms.
558 parser/Parser_HC_OPTS           += -fvia-C
559 # because the NCG can't handle the 64-bit math in here
560 prelude/PrelRules_HC_OPTS       += -fvia-C
561 # ByteCodeItbls uses primops that the NCG doesn't support.
562 ghci/ByteCodeItbls_HC_OPTS      += -fvia-C
563 ghci/ByteCodeLink_HC_OPTS       += -fvia-C -monly-3-regs
564 endif
565
566 # Careful optimisation of the parser: we don't want to throw everything
567 # at it, because that takes too long and doesn't buy much, but we do want
568 # to inline certain key external functions, so we instruct GHC not to
569 # throw away inlinings as it would normally do in -Onot mode:
570 parser/Parser_HC_OPTS           += -Onot -fno-ignore-interface-pragmas
571
572 ifeq "$(HOSTPLATFORM)" "hppa1.1-hp-hpux9"
573 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
574 endif
575
576 utils/Digraph_HC_OPTS           = -fglasgow-exts 
577
578 basicTypes/SrcLoc_HC_OPTS       = -funbox-strict-fields
579
580 # We always optimise some low-level modules, otherwise performance of
581 # a non-optimised compiler is severely affected.
582 main/BinIface_HC_OPTS           += -O
583 utils/Binary_HC_OPTS            += -O -funbox-strict-fields
584 utils/FastMutInt_HC_OPTS        += -O
585 utils/Encoding_HC_OPTS          += -O
586 utils/StringBuffer_HC_OPTS      += -O -funbox-strict-fields
587 utils/FastString_HC_OPTS        += -O -funbox-strict-fields
588
589 # ---- Profiling ----
590 #simplCore/Simplify_HC_OPTS = -auto-all
591 #simplCore/SimplEnv_HC_OPTS = -auto-all
592 #simplCore/SimplUtils_HC_OPTS = -auto-all
593
594 # CSE interacts badly with top-level IORefs (reportedly in DriverState and
595 # DriverMkDepend), causing some of them to be commoned up.  We have a fix for
596 # this in 5.00+, but earlier versions of the compiler will need CSE turned off.
597 # To be on the safe side, we disable CSE in *all* modules with top-level IORefs.
598 ghci/InteractiveUI_HC_OPTS      = -fno-cse
599 main/CmdLineOpts_HC_OPTS        = -fno-cse
600 main/DriverMkDepend_HC_OPTS     = -fno-cse
601 main/DriverPipeline_HC_OPTS     = -fno-cse
602 main/Finder_HC_OPTS             = -fno-cse
603 main/SysTools_HC_OPTS           = -fno-cse
604 main/StaticFlags_HC_OPTS        = -fno-cse
605
606 # The #include is vital for the via-C route, else the C
607 # compiler doesn't realise that the stcall foreign imports are indeed
608 # stdcall, and doesn't generate the Foo@8 name for them
609 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
610 main/SysTools_HC_OPTS           += '-\#include <windows.h>' '-\#include <process.h>'
611 endif
612
613 parser/Lexer_HC_OPTS += -funbox-strict-fields
614
615 # ghc_strlen percolates through so many modules that it is easier to get its
616 # prototype via a global option instead of a myriad of per-file OPTIONS
617 SRC_HC_OPTS += '-\#include "cutils.h"'
618
619 # ----------------------------------------------------------------------------
620 #               Generate supporting stuff for prelude/PrimOp.lhs 
621 #               from prelude/primops.txt
622
623 PRIMOP_BITS=primop-data-decl.hs-incl \
624             primop-tag.hs-incl  \
625             primop-list.hs-incl  \
626             primop-has-side-effects.hs-incl  \
627             primop-out-of-line.hs-incl  \
628             primop-commutable.hs-incl  \
629             primop-needs-wrapper.hs-incl  \
630             primop-can-fail.hs-incl  \
631             primop-strictness.hs-incl  \
632             primop-primop-info.hs-incl
633
634 CLEAN_FILES += prelude/primops.txt
635 CLEAN_FILES += $(PRIMOP_BITS)
636
637 SRC_CPP_OPTS += -I$(GHC_INCLUDE_DIR)
638 SRC_CPP_OPTS += ${GhcCppOpts}
639
640 ifneq "$(BootingFromHc)" "YES"
641 prelude/PrimOp.lhs $(odir)/prelude/PrimOp.o: $(PRIMOP_BITS)
642 endif
643
644 ifneq "$(BootingFromHc)" "YES"
645 depend :: $(PRIMOP_BITS)
646 endif
647
648 # This is an ugly hack: we need stage1/$(PLATFORM_H) built before we
649 # preprocess primops.txt.pp, but we don't want to just add that
650 # dependency because we don't want $(PLATFORM_H) built during normal
651 # operations, because we don't have have dependencies from the .hs
652 # sources on it, and we don't want those dependencies because that
653 # would cause everything to be rebuilt every time the Makefile
654 # changed.  So here we add the required dependency only when making
655 # boot or depend:
656 ifneq "$(findstring boot, $(MAKECMDGOALS))$(findstring depend, $(MAKECMDGOALS))" ""
657 prelude/primops.txt.pp : stage1/$(PLATFORM_H)
658 endif
659
660 primop-data-decl.hs-incl: prelude/primops.txt
661         $(GENPRIMOP) --data-decl          < $< > $@
662 primop-tag.hs-incl: prelude/primops.txt
663         $(GENPRIMOP) --primop-tag         < $< > $@
664 primop-list.hs-incl: prelude/primops.txt
665         $(GENPRIMOP) --primop-list        < $< > $@
666 primop-has-side-effects.hs-incl: prelude/primops.txt
667         $(GENPRIMOP) --has-side-effects   < $< > $@
668 primop-out-of-line.hs-incl: prelude/primops.txt
669         $(GENPRIMOP) --out-of-line        < $< > $@
670 primop-commutable.hs-incl: prelude/primops.txt
671         $(GENPRIMOP) --commutable         < $< > $@
672 primop-needs-wrapper.hs-incl: prelude/primops.txt
673         $(GENPRIMOP) --needs-wrapper      < $< > $@
674 primop-can-fail.hs-incl: prelude/primops.txt
675         $(GENPRIMOP) --can-fail           < $< > $@
676 primop-strictness.hs-incl: prelude/primops.txt
677         $(GENPRIMOP) --strictness         < $< > $@
678 primop-primop-info.hs-incl: prelude/primops.txt
679         $(GENPRIMOP) --primop-primop-info < $< > $@
680
681 # Usages aren't used any more; but the generator 
682 # can still generate them if we want them back
683 primop-usage.hs-incl: prelude/primops.txt
684         $(GENPRIMOP) --usage              < $< > $@
685
686
687 #-----------------------------------------------------------------------------
688 #               Linking
689
690 # Include libghccompat in stage1 only.  In stage2 onwards, all these
691 # libraries will be available from the main libraries.
692
693 ifeq "$(stage)" "1"
694 include $(GHC_COMPAT_DIR)/compat.mk
695 endif
696
697 SRC_LD_OPTS += -no-link-chk
698
699 # -----------------------------------------------------------------------------
700 # create ghc-inplace, a convenient way to run ghc from the build tree...
701
702 all :: $(odir)/ghc-inplace ghc-inplace
703
704 $(odir)/ghc-inplace : $(GHC_PROG)
705         @$(RM) $@
706         echo '#!/bin/sh' >>$@
707         echo exec $(GHC_COMPILER_DIR_ABS)/$(GHC_PROG) '-B$(subst \,\\,$(FPTOOLS_TOP_ABS_PLATFORM))' '"$$@"' >>$@
708         chmod 755 $@
709
710 ghc-inplace : stage1/ghc-inplace
711         $(LN_S) -f $< $@
712
713 ifeq "$(stage)" "1"
714 CLEAN_FILES += ghc-inplace
715 endif
716
717 CLEAN_FILES += $(odir)/ghc-inplace
718
719 #-----------------------------------------------------------------------------
720 #               install
721
722 # We don't want ghc treated as an ordinary executable,
723 # but put it together with the libraries.
724 # Also don't want any interface files installed
725
726 DESTDIR = $(INSTALL_LIBRARY_DIR_GHC)
727
728 ifneq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
729 INSTALL_LIBEXECS += $(GHC_PROG)
730 else
731 INSTALL_PROGS += $(GHC_PROG)
732 endif
733
734 # ----------------------------------------------------------------------------
735 # profiling.
736
737 # rename/RnBinds_HC_OPTS += -auto-all
738 # rename/RnEnv_HC_OPTS += -auto-all
739 # rename/RnExpr_HC_OPTS += -auto-all
740 # rename/RnHiFiles_HC_OPTS += -auto-all
741 # rename/RnHsSyn_HC_OPTS += -auto-all
742 # rename/Rename_HC_OPTS += -auto-all
743 # rename/RnIfaces_HC_OPTS += -auto-all
744 # rename/RnNames_HC_OPTS += -auto-all
745 # rename/RnSource_HC_OPTS += -auto-all
746 # rename/RnTypes_HC_OPTS += -auto-all
747
748 # typecheck/Inst_HC_OPTS += -auto-all
749 # typecheck/TcBinds_HC_OPTS += -auto-all
750 # typecheck/TcClassDcl_HC_OPTS += -auto-all
751 # typecheck/TcDefaults_HC_OPTS += -auto-all
752 # typecheck/TcDeriv_HC_OPTS += -auto-all
753 # typecheck/TcEnv_HC_OPTS += -auto-all
754 # typecheck/TcExpr_HC_OPTS += -auto-all
755 # typecheck/TcForeign_HC_OPTS += -auto-all
756 # typecheck/TcGenDeriv_HC_OPTS += -auto-all
757 # typecheck/TcHsSyn_HC_OPTS += -auto-all
758 # typecheck/TcIfaceSig_HC_OPTS += -auto-all
759 # typecheck/TcInstDcls_HC_OPTS += -auto-all
760 # typecheck/TcMatches_HC_OPTS += -auto-all
761 # typecheck/TcMonoType_HC_OPTS += -auto-all
762 # typecheck/TcMType_HC_OPTS += -auto-all
763 # typecheck/TcPat_HC_OPTS += -auto-all
764 # typecheck/TcRnDriver_HC_OPTS += -auto-all
765 # #typecheck/TcRnMonad_HC_OPTS += -auto-all
766 # #typecheck/TcRnTypes_HC_OPTS += -auto-all
767 # typecheck/TcRules_HC_OPTS += -auto-all
768 # typecheck/TcSimplify_HC_OPTS += -auto-all
769 # typecheck/TcSplice_HC_OPTS += -auto-all
770 # typecheck/TcTyClsDecls_HC_OPTS += -auto-all
771 # typecheck/TcTyDecls_HC_OPTS += -auto-all
772 # typecheck/TcType_HC_OPTS += -auto-all
773 # typecheck/TcUnify_HC_OPTS += -auto-all
774
775 coreSyn/CorePrep_HC_OPTS += -auto-all
776 # parser/Parser_HC_OPTS += -fasm
777
778 #-----------------------------------------------------------------------------
779 # Building the GHC package
780
781 # The GHC package is made from the stage 2 build.  Fortunately the
782 # package build system framework more or less does the right thing for
783 # us here.
784
785 ifeq "$(stage)" "2"
786 PACKAGE = ghc
787 HIERARCHICAL_LIB = NO
788 VERSION = $(ProjectVersion)
789 PKG_DEPENDS += base haskell98
790 PACKAGE_CPP_OPTS += -DPKG_DEPENDS='$(PKG_DEPENDS)'
791
792 # Omit Main from the library, the client will want to plug their own Main in
793 LIBOBJS = $(filter-out $(odir)/main/Main.o $(odir)/parser/hschooks.o, $(OBJS))
794
795 # disable splitting: it won't really help with GHC, and the specialised
796 # build system for compiler/ isn't set up to handle it.
797 SplitObjs = NO
798
799 # the package build system likes to set WAYS=$(GhcLibWays), but we don't 
800 # really want to build the whole of GHC multiple ways... if you do,
801 # set GhcCompilerWays instead.
802 GhcLibWays = $(GhcCompilerWays)
803
804 # override $(GhcLibHcOpts): we want GhcStage2HcOpts to take precedence
805 GhcLibHcOpts =
806
807 # override default definition of HS_IFACES so we can add $(odir)
808 HS_IFACES   = $(addsuffix .$(way_)hi,$(basename $(HS_OBJS)))
809
810 # Haddock can't handle recursive modules currently, so we disable it for now.
811 NO_HADDOCK_DOCS = YES
812
813 # Don't build the GHC binary as normal, because we need to link it
814 # against the GHC package.  The GHC binary itself is built by
815 # compiling Main.o separately and linking it with -package ghc.  This is
816 # done using a separate Makefile:
817
818 all :: $(GHC_PROG)
819
820 $(GHC_PROG) : libHS$(PACKAGE)$(_way).a main/Main.hs
821         $(MAKE) -f Makefile.ghcbin $(MFLAGS) HS_PROG=$(GHC_PROG) $@
822
823 docs runtests $(BOOT_TARGET) TAGS clean distclean mostlyclean maintainer-clean $(INSTALL_TARGET) $(INSTALL_DOCS_TARGET) html chm HxS ps dvi txt::
824         $(MAKE) -f Makefile.ghcbin $(MFLAGS) $@
825 endif
826
827 #-----------------------------------------------------------------------------
828 #               clean
829
830 MAINTAINER_CLEAN_FILES += parser/Parser.info main/ParsePkgConf.info
831
832 #-----------------------------------------------------------------------------
833 #               Include target-rule boilerplate
834
835 # Don't use the default MKDEPENDHS stuff... we'll do our own, below
836 MKDEPENDHS_SRCS =
837 MKDEPENDC_SRCS =
838
839 # Make doesn't work this out for itself, it seems
840 parser/Parser.y : parser/Parser.y.pp
841 EXTRA_SRCS += parser/Parser.y
842
843
844 #-----------------------------------------------------------------------------
845 #               Source files for tags file generation
846 #
847 # We want to excluded derived sources, because they won't be in the source
848 # tree, which is where we are going to move the TAGS file to.a
849
850 TAGS_HS_SRCS = parser/Parser.y.pp $(filter-out $(DERIVED_SRCS) main/Config.hs parser/Parser.y, $(sort $(SRCS)))
851
852
853 include $(TOP)/mk/target.mk
854
855 # -----------------------------------------------------------------------------
856 # Dependencies
857
858 MKDEPENDHS_HC_OPTS = $(patsubst -i$(odir)/%, -i%, $(HC_OPTS))
859
860 MKDEPENDHS=$(HC)
861
862 # Must do this *after* including target.mk, because $(HS_SRCS) isn't set yet.
863 depend :: $(STAGE_PLATFORM_H) $(HS_SRCS) $(C_SRCS)
864         touch .depend-BASE
865 ifneq "$(BootingFromHc)" "YES"
866         $(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)
867 endif
868         $(MKDEPENDC) -f .depend-BASE $(MKDEPENDC_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(CC_OPTS) -- $(C_SRCS) 
869         $(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)
870 # The binmode stuff tells perl not to add stupid ^M's to the output
871 #
872 # The /lib/compat replacement is to workaround a bug in the
873 # -optdep--exclude-module flag in GHC 6.4.  It is not required for any
874 # other version of GHC, but doesn't do any harm.
875
876 -include .depend-$(stage)