94a9c85404aed283cdbad5895729e2d2497cf638
[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 HS_PROG=$(odir)/ghc$(_way)-$(ProjectVersion)
187 else
188 HS_PROG=$(odir)/ghc$(_way)
189 endif
190 else
191 HS_PROG=$(odir)/ghc-$(ProjectVersion)
192 endif
193
194 # -----------------------------------------------------------------------------
195 # Create compiler configuration
196 #
197 # The 'echo' commands simply spit the values of various make variables
198 # into Config.hs, whence they can be compiled and used by GHC itself
199
200 CONFIG_HS       = main/Config.hs
201 boot :: $(CONFIG_HS)
202
203 $(CONFIG_HS) : $(FPTOOLS_TOP)/mk/config.mk Makefile
204         @$(RM) -f $(CONFIG_HS)
205         @echo "Creating $(CONFIG_HS) ... "
206         @echo "module Config where" >>$(CONFIG_HS)
207         @echo "cProjectName          = \"$(ProjectName)\"" >> $(CONFIG_HS)
208         @echo "cProjectVersion       = \"$(ProjectVersion)\"" >> $(CONFIG_HS)
209         @echo "cProjectVersionInt    = \"$(ProjectVersionInt)\"" >> $(CONFIG_HS)
210         @echo "cProjectPatchLevel    = \"$(ProjectPatchLevel)\"" >> $(CONFIG_HS)
211         @echo "cBooterVersion        = \"$(GhcVersion)\"" >> $(CONFIG_HS)
212         @echo "cHscIfaceFileVersion  = \"$(HscIfaceFileVersion)\"" >> $(CONFIG_HS)
213         @echo "cGhcWithNativeCodeGen = \"$(GhcWithNativeCodeGen)\"" >> $(CONFIG_HS)
214         @echo "cGhcUnregisterised    = \"$(GhcUnregisterised)\"" >> $(CONFIG_HS)
215         @echo "cLeadingUnderscore    = \"$(LeadingUnderscore)\"" >> $(CONFIG_HS)
216         @echo "cRAWCPP_FLAGS         = \"$(RAWCPP_FLAGS)\"" >> $(CONFIG_HS)
217         @echo "cGCC                  = \"$(WhatGccIsCalled)\"" >> $(CONFIG_HS)
218         @echo "cMKDLL                = \"$(BLD_DLL)\"" >> $(CONFIG_HS)
219         @echo "cLdIsGNULd            = \"$(LdIsGNULd)\"" >> $(CONFIG_HS)
220         @echo "cLD_X                 = \"$(LD_X)\"" >> $(CONFIG_HS)
221         @echo "cPROJECT_DIR          = \"$(PROJECT_DIR)\"" >> $(CONFIG_HS)
222         @echo "cGHC_DRIVER_DIR_REL   = \"$(GHC_DRIVER_DIR_REL)\"" >> $(CONFIG_HS)
223         @echo "cGHC_TOUCHY_PGM       = \"$(GHC_TOUCHY_PGM)\"" >> $(CONFIG_HS)
224         @echo "cGHC_TOUCHY_DIR_REL   = \"$(GHC_TOUCHY_DIR_REL)\"" >> $(CONFIG_HS)
225         @echo "cGHC_UNLIT_PGM        = \"$(GHC_UNLIT_PGM)\"" >> $(CONFIG_HS)
226         @echo "cGHC_UNLIT_DIR_REL    = \"$(GHC_UNLIT_DIR_REL)\"" >> $(CONFIG_HS)
227         @echo "cGHC_MANGLER_PGM      = \"$(GHC_MANGLER_PGM)\"" >> $(CONFIG_HS)
228         @echo "cGHC_MANGLER_DIR_REL  = \"$(GHC_MANGLER_DIR_REL)\"" >> $(CONFIG_HS)
229         @echo "cGHC_SPLIT_PGM        = \"$(GHC_SPLIT_PGM)\"" >> $(CONFIG_HS)
230         @echo "cGHC_SPLIT_DIR_REL    = \"$(GHC_SPLIT_DIR_REL)\"" >> $(CONFIG_HS)
231         @echo "cGHC_SYSMAN_PGM       = \"$(GHC_SYSMAN)\"" >> $(CONFIG_HS)
232         @echo "cGHC_SYSMAN_DIR_REL   = \"$(GHC_SYSMAN_DIR)\"" >> $(CONFIG_HS)
233         @echo "cGHC_CP               = \"$(GHC_CP)\"" >> $(CONFIG_HS)
234         @echo "cGHC_PERL             = \"$(GHC_PERL)\"" >> $(CONFIG_HS)
235 ifeq ($(GhcWithIlx),YES)
236         @echo "cILX2IL               = \"$(ILX2IL)\"" >> $(CONFIG_HS)
237         @echo "cILASM                = \"$(ILASM)\"" >> $(CONFIG_HS)
238 endif
239         @echo "cEnableWin32DLLs      = \"$(EnableWin32DLLs)\"" >> $(CONFIG_HS)
240         @echo "cCONTEXT_DIFF         = \"$(CONTEXT_DIFF)\"" >> $(CONFIG_HS)
241         @echo "cUSER_WAY_NAMES       = \"$(USER_WAY_NAMES)\"" >> $(CONFIG_HS)
242         @echo "cUSER_WAY_OPTS        = \"$(USER_WAY_OPTS)\"" >> $(CONFIG_HS)
243         @echo "cDEFAULT_TMPDIR       = \"$(DEFAULT_TMPDIR)\"" >> $(CONFIG_HS)
244         @echo done.
245
246 CLEAN_FILES += $(CONFIG_HS)
247
248 # -----------------------------------------------------------------------------
249 # Create platform includes
250
251 # Here we generate a little header file containing CPP symbols that GHC
252 # uses to determine which platform it is building on/for.  The platforms
253 # can differ between stage1 and stage2 if we're cross-compiling, so we
254 # need one of these header files per stage.
255
256 PLATFORM_H = ghc_boot_platform.h
257
258 stage1/$(PLATFORM_H) : stage_dirs $(FPTOOLS_TOP)/mk/config.mk Makefile
259         @echo "Creating $@..."
260         @$(RM) $@
261         @echo "#ifndef __PLATFORM_H__"  >$@
262         @echo "#define __PLATFORM_H__" >>$@
263         @echo >> $@
264         @echo "#define BuildPlatform_NAME  \"$(BUILDPLATFORM)\"" >> $@
265         @echo "#define HostPlatform_NAME   \"$(HOSTPLATFORM)\"" >> $@
266         @echo "#define TargetPlatform_NAME \"$(TARGETPLATFORM)\"" >> $@
267         @echo >> $@
268         @echo "#define $(BuildPlatform_CPP)_BUILD       1" >> $@
269         @echo "#define $(HostPlatform_CPP)_HOST         1" >> $@
270         @echo "#define $(TargetPlatform_CPP)_TARGET     1" >> $@
271         @echo >> $@
272         @echo "#define $(BuildArch_CPP)_BUILD_ARCH      1" >> $@
273         @echo "#define $(HostArch_CPP)_HOST_ARCH        1" >> $@
274         @echo "#define $(TargetArch_CPP)_TARGET_ARCH    1" >> $@
275         @echo "#define BUILD_ARCH \"$(BuildArch_CPP)\"" >> $@
276         @echo "#define HOST_ARCH \"$(HostArch_CPP)\"" >> $@
277         @echo "#define TARGET_ARCH \"$(TargetArch_CPP)\"" >> $@
278         @echo >> $@
279         @echo "#define $(BuildOS_CPP)_BUILD_OS          1" >> $@
280         @echo "#define $(HostOS_CPP)_HOST_OS            1" >> $@
281         @echo "#define $(TargetOS_CPP)_TARGET_OS        1" >> $@  
282         @echo "#define BUILD_OS \"$(BuildOS_CPP)\"" >> $@
283         @echo "#define HOST_OS \"$(HostOS_CPP)\"" >> $@
284         @echo "#define TARGET_OS \"$(TargetOS_CPP)\"" >> $@
285 ifeq "$(HostOS_CPP)" "irix"
286         @echo "#ifndef $(IRIX_MAJOR)_TARGET_OS           " >> $@  
287         @echo "#define $(IRIX_MAJOR)_TARGET_OS          1" >> $@  
288         @echo "#endif                                    " >> $@  
289 endif
290         @echo >> $@
291         @echo "#define $(BuildVendor_CPP)_BUILD_VENDOR  1" >> $@
292         @echo "#define $(HostVendor_CPP)_HOST_VENDOR    1" >> $@
293         @echo "#define $(TargetVendor_CPP)_TARGET_VENDOR  1" >> $@
294         @echo "#define BUILD_VENDOR \"$(BuildVendor_CPP)\"" >> $@
295         @echo "#define HOST_VENDOR \"$(HostVendor_CPP)\"" >> $@
296         @echo "#define TARGET_VENDOR \"$(TargetVendor_CPP)\"" >> $@
297         @echo >> $@
298         @echo "#endif /* __PLATFORM_H__ */"          >> $@
299         @echo "Done."
300
301 # For stage2 and above, the BUILD platform is the HOST of stage1, and
302 # the HOST platform is the TARGET of stage1.  The TARGET remains the same
303 # (stage1 is the cross-compiler, not stage2).
304 stage2/$(PLATFORM_H) : stage_dirs $(FPTOOLS_TOP)/mk/config.mk Makefile
305         @echo "Creating $@..."
306         @$(RM) $@
307         @echo "#ifndef __PLATFORM_H__"  >$@
308         @echo "#define __PLATFORM_H__" >>$@
309         @echo >> $@
310         @echo "#define BuildPlatform_NAME  \"$(HOSTPLATFORM)\"" >> $@
311         @echo "#define HostPlatform_NAME   \"$(TARGETPLATFORM)\"" >> $@
312         @echo "#define TargetPlatform_NAME \"$(TARGETPLATFORM)\"" >> $@
313         @echo >> $@
314         @echo "#define $(HostPlatform_CPP)_BUILD        1" >> $@
315         @echo "#define $(TargetPlatform_CPP)_HOST               1" >> $@
316         @echo "#define $(TargetPlatform_CPP)_TARGET     1" >> $@
317         @echo >> $@
318         @echo "#define $(HostArch_CPP)_BUILD_ARCH       1" >> $@
319         @echo "#define $(TargetArch_CPP)_HOST_ARCH      1" >> $@
320         @echo "#define $(TargetArch_CPP)_TARGET_ARCH    1" >> $@
321         @echo "#define BUILD_ARCH \"$(HostArch_CPP)\"" >> $@
322         @echo "#define HOST_ARCH \"$(TargetArch_CPP)\"" >> $@
323         @echo "#define TARGET_ARCH \"$(TargetArch_CPP)\"" >> $@
324         @echo >> $@
325         @echo "#define $(HostOS_CPP)_BUILD_OS           1" >> $@
326         @echo "#define $(TargetOS_CPP)_HOST_OS          1" >> $@
327         @echo "#define $(TargetOS_CPP)_TARGET_OS        1" >> $@  
328         @echo "#define BUILD_OS \"$(HostOS_CPP)\"" >> $@
329         @echo "#define HOST_OS \"$(TargetOS_CPP)\"" >> $@
330         @echo "#define TARGET_OS \"$(TargetOS_CPP)\"" >> $@
331 ifeq "$(HostOS_CPP)" "irix"
332         @echo "#ifndef $(IRIX_MAJOR)_TARGET_OS           " >> $@  
333         @echo "#define $(IRIX_MAJOR)_TARGET_OS          1" >> $@  
334         @echo "#endif                                    " >> $@  
335 endif
336         @echo >> $@
337         @echo "#define $(HostVendor_CPP)_BUILD_VENDOR   1" >> $@
338         @echo "#define $(TargetVendor_CPP)_HOST_VENDOR  1" >> $@
339         @echo "#define $(TargetVendor_CPP)_TARGET_VENDOR  1" >> $@
340         @echo "#define BUILD_VENDOR \"$(HostVendor_CPP)\"" >> $@
341         @echo "#define HOST_VENDOR \"$(TargetVendor_CPP)\"" >> $@
342         @echo "#define TARGET_VENDOR \"$(TargetVendor_CPP)\"" >> $@
343         @echo >> $@
344         @echo "#endif /* __PLATFORM_H__ */"          >> $@
345         @echo "Done."
346
347 stage3/$(PLATFORM_H) : stage_dirs stage2/$(PLATFORM_H)
348         $(CP) stage2/$(PLATFORM_H) stage3/$(PLATFORM_H)
349
350 STAGE_PLATFORM_H = stage$(stage)/$(PLATFORM_H)
351
352 boot :: $(STAGE_PLATFORM_H)
353
354 SRC_HC_OPTS += -Istage$(stage)
355
356 # -----------------------------------------------------------------------------
357 # Set SRCS etc.
358 #
359 # First figure out ALL_DIRS, the source sub-directories
360
361 ALL_DIRS = \
362   utils basicTypes types hsSyn prelude rename typecheck deSugar coreSyn \
363   specialise simplCore stranal stgSyn simplStg codeGen main \
364   profiling parser cprAnalysis ndpFlatten iface cmm
365
366 # Make sure we include Config.hs even if it doesn't exist yet...
367 ALL_SRCS += $(CONFIG_HS)
368
369 # HsGeneric.hs is not used just now
370 EXCLUDED_SRCS += hsSyn/HsGeneric.hs
371
372 ifeq ($(GhcWithNativeCodeGen),YES)
373 ALL_DIRS += nativeGen
374 else
375 SRC_HC_OPTS += -DOMIT_NATIVE_CODEGEN
376 endif
377
378 ifeq ($(GhcWithIlx),YES)
379 ALL_DIRS += ilxGen
380 SRC_HC_OPTS += -DILX
381 endif
382
383 ifeq ($(GhcWithJavaGen),YES)
384 ALL_DIRS += javaGen
385 SRC_HC_OPTS += -DJAVA
386 endif
387
388 ifeq "$(BootingFromHc)" "YES"
389 # HC files are always from a self-booted compiler
390 bootstrapped = YES
391 else
392 ifneq "$(findstring $(stage), 2 3)" ""
393 bootstrapped = YES
394 else
395 bootstrapped = $(shell if (test $(GhcCanonVersion) -eq $(ProjectVersionInt) -a $(GhcPatchLevel) -eq $(ProjectPatchLevel)); then echo YES; else echo NO; fi)
396 endif
397 endif
398
399 # -----------------------------------------------------------------------------
400 # Building a compiler with interpreter support
401 #
402 # The interpreter, GHCi interface, and Template Haskell are only
403 # enabled when we are bootstrapping with the same version of GHC, and
404 # the interpreter is supported on this platform.
405
406 ifeq "$(GhcWithInterpreter) $(bootstrapped)" "YES YES"
407
408 # Yes, include the interepreter, readline, and Template Haskell extensions
409 SRC_HC_OPTS += -DGHCI -DBREAKPOINT -package template-haskell
410 PKG_DEPENDS += template-haskell
411
412 # Use threaded RTS with GHCi, so threads don't get blocked at the prompt.
413 SRC_HC_OPTS += -threaded
414
415 ALL_DIRS += ghci
416
417 # If we are going to use dynamic libraries instead of .o files for ghci,
418 # we will need to always retain CAFs in the compiler.
419 # ghci/keepCAFsForGHCi contains a GNU C __attribute__((constructor))
420 # function which sets the keepCAFs flag for the RTS before any Haskell
421 # code is run.
422 ifeq "$(GhcBuildDylibs)" "YES"
423 else
424 EXCLUDED_SRCS += ghci/keepCAFsForGHCi.c
425 endif
426
427 # Enable readline if either:
428 #   - we're building stage 1 and $(GhcHasReadline)="YES"
429 #   - we're building stage 2/3, and we have built the readline package
430 #
431 # But we don't enable readline on Windows, because readline is fairly
432 # broken there.
433 #
434 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
435 ifeq "$(stage)" "1"
436 ifeq "$(GhcHasReadline)" "YES"
437 SRC_HC_OPTS += -package readline -DUSE_READLINE
438 PKG_DEPENDS += readline
439 endif
440 else
441 ifeq "$(GhcLibsWithReadline)" "YES"
442 SRC_HC_OPTS += -package readline -DUSE_READLINE
443 PKG_DEPENDS += readline
444 endif
445 endif # stage=1
446 endif # not windows
447
448 else
449
450 # No interpreter, so exclude Template Haskell modules
451 EXCLUDED_SRCS += deSugar/DsMeta.hs typecheck/TcSplice.lhs hsSyn/Convert.lhs
452
453 endif # bootstrapped with interpreter
454
455 # -----------------------------------------------
456 # mkdependC stuff
457 #
458 # Big Fudge to get around inherent problem that Makefile setup
459 # has got with 'mkdependC'.
460
461 SRC_MKDEPENDC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
462
463 # XXX not really correct, hschooks.c actually gets include files like
464 # RtsFlags.c from the installed GHC, but we can't tell mkdependC about that.
465 SRC_MKDEPENDC_OPTS += -I$(GHC_INCLUDE_DIR)
466
467 # -----------------------------------------------------------------------------
468 #               Haskell compilations
469
470 SRC_HC_OPTS += \
471   -cpp -fglasgow-exts -fno-generics -Rghc-timing \
472   -I. -IcodeGen -InativeGen -Iparser
473
474 # Omitted:      -I$(GHC_INCLUDE_DIR)
475 # We should have -I$(GHC_INCLUDE_DIR) in SRC_HC_OPTS, 
476 # to avoid the use of an explicit path in GHC source files
477 #       (include "../includes/config.h"
478 # But alas GHC 4.08 (and others for all I know) uses this very
479 # same include path when compiling the .hc files it generates.
480 # Disaster!  Then the hc file sees the GHC 5.02 (or whatever)
481 # include files.   For the moment we've reverted to using
482 # an explicit path in the .hs sources
483 #
484 # For the benefit of <5.00 compilers, do include GHC_INCLUDE_DIR
485 # when generating dependencies. (=> it gets passed onto mkdependHS,
486 # which needs it).
487 SRC_MKDEPENDHS_OPTS += -I$(GHC_INCLUDE_DIR)
488
489 # We need System.Posix (or Posix when ghc < 6.2)
490 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
491 ifeq "$(bootstrapped)" "YES"
492 SRC_HC_OPTS += -package Win32
493 PKG_DEPENDS += Win32
494 endif
495 else
496 ifeq "$(bootstrapped) $(ghc_ge_601)" "NO NO"
497 SRC_HC_OPTS += -package posix
498 else
499 SRC_HC_OPTS += -package unix
500 PKG_DEPENDS += unix
501 endif
502 endif
503
504 # We use the Cabal package in stages 2/3 only; in stage 1 we're using
505 # the libcompat library which provides the Cabal modules.
506 ifneq "$(stage)" "1"
507 SRC_HC_OPTS += -package Cabal
508 PKG_DEPENDS += Cabal
509 endif
510
511 ifeq "$(ghc_ge_603)" "YES"
512 # Ignore lang, to avoid potential clash with the Generics module if
513 # lang happens to be a dependency of some exposed package in the local
514 # GHC installation (eg. wxHaskell did this around 6.4).
515 SRC_HC_OPTS += -ignore-package lang
516 endif
517
518 SRC_CC_OPTS += -Iparser -I. -O
519 SRC_HC_OPTS += -recomp $(GhcHcOpts) $(GhcStage$(stage)HcOpts)
520 SRC_HC_OPTS += -H16M
521
522 ifeq "$(BootingFromHc)" "YES"
523 SRC_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
524 endif
525
526 #       Special flags for particular modules
527 #       The standard suffix rule for compiling a Haskell file
528 #       adds these flags to the command line
529
530 # There used to be a -no-recomp flag on PrimOp, but why?
531 # It's an expensive module to recompile!
532 prelude/PrimOp_HC_OPTS          = -H80m
533
534
535 main/ParsePkgConf_HC_OPTS       += -fno-warn-incomplete-patterns
536 parser/Parser_HC_OPTS           += -fno-warn-incomplete-patterns
537
538 ifeq "$(ghc_ge_603)" "NO"
539 # Use -fvia-C since the NCG can't handle the narrow16Int# (and intToInt16#?)
540 # primops on all platforms.
541 parser/Parser_HC_OPTS           += -fvia-C
542 # because the NCG can't handle the 64-bit math in here
543 prelude/PrelRules_HC_OPTS       += -fvia-C
544 # ByteCodeItbls uses primops that the NCG doesn't support.
545 ghci/ByteCodeItbls_HC_OPTS      += -fvia-C
546 ghci/ByteCodeLink_HC_OPTS       += -fvia-C -monly-3-regs
547 endif
548
549 # Careful optimisation of the parser: we don't want to throw everything
550 # at it, because that takes too long and doesn't buy much, but we do want
551 # to inline certain key external functions, so we instruct GHC not to
552 # throw away inlinings as it would normally do in -Onot mode:
553 parser/Parser_HC_OPTS           += -Onot -fno-ignore-interface-pragmas
554
555 ifeq "$(HOSTPLATFORM)" "hppa1.1-hp-hpux9"
556 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
557 endif
558
559 utils/Digraph_HC_OPTS           = -fglasgow-exts 
560
561 basicTypes/SrcLoc_HC_OPTS       = -funbox-strict-fields
562
563 ifeq "$(bootstrapped)" "YES"
564 utils/Binary_HC_OPTS            = -funbox-strict-fields
565 endif
566
567 # We always optimise some low-level modules, otherwise performance of
568 # a non-optimised compiler is severely affected.
569 main/BinIface_HC_OPTS           += -O
570 utils/Binary_HC_OPTS            += -O
571 utils/FastMutInt_HC_OPTS        += -O
572 utils/Encoding_HC_OPTS          += -O
573 utils/StringBuffer_HC_OPTS      += -O
574 utils/FastString_HC_OPTS        += -O
575
576 # ---- Profiling ----
577 #simplCore/Simplify_HC_OPTS = -auto-all
578 #simplCore/SimplEnv_HC_OPTS = -auto-all
579 #simplCore/SimplUtils_HC_OPTS = -auto-all
580
581 # CSE interacts badly with top-level IORefs (reportedly in DriverState and
582 # DriverMkDepend), causing some of them to be commoned up.  We have a fix for
583 # this in 5.00+, but earlier versions of the compiler will need CSE turned off.
584 # To be on the safe side, we disable CSE in *all* modules with top-level IORefs.
585 ghci/InteractiveUI_HC_OPTS      = -fno-cse
586 main/CmdLineOpts_HC_OPTS        = -fno-cse
587 main/DriverMkDepend_HC_OPTS     = -fno-cse
588 main/DriverPipeline_HC_OPTS     = -fno-cse
589 main/Finder_HC_OPTS             = -fno-cse
590 main/SysTools_HC_OPTS           = -fno-cse
591 main/StaticFlags_HC_OPTS        = -fno-cse
592
593 # The #include is vital for the via-C route, else the C
594 # compiler doesn't realise that the stcall foreign imports are indeed
595 # stdcall, and doesn't generate the Foo@8 name for them
596 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
597 main/SysTools_HC_OPTS           += '-\#include <windows.h>' '-\#include <process.h>'
598 endif
599
600 parser/Lexer_HC_OPTS += -funbox-strict-fields
601
602 # ghc_strlen percolates through so many modules that it is easier to get its
603 # prototype via a global option instead of a myriad of per-file OPTIONS
604 SRC_HC_OPTS += '-\#include "hschooks.h"'
605
606 # ----------------------------------------------------------------------------
607 #               Generate supporting stuff for prelude/PrimOp.lhs 
608 #               from prelude/primops.txt
609
610 PRIMOP_BITS=primop-data-decl.hs-incl \
611             primop-tag.hs-incl  \
612             primop-list.hs-incl  \
613             primop-has-side-effects.hs-incl  \
614             primop-out-of-line.hs-incl  \
615             primop-commutable.hs-incl  \
616             primop-needs-wrapper.hs-incl  \
617             primop-can-fail.hs-incl  \
618             primop-strictness.hs-incl  \
619             primop-primop-info.hs-incl
620
621 CLEAN_FILES += prelude/primops.txt
622 CLEAN_FILES += $(PRIMOP_BITS)
623
624 SRC_CPP_OPTS += -I$(GHC_INCLUDE_DIR)
625 SRC_CPP_OPTS += ${GhcCppOpts}
626
627 ifneq "$(BootingFromHc)" "YES"
628 prelude/PrimOp.lhs $(odir)/prelude/PrimOp.o: $(PRIMOP_BITS)
629 endif
630
631 ifneq "$(BootingFromHc)" "YES"
632 depend :: $(PRIMOP_BITS)
633 endif
634
635 primop-data-decl.hs-incl: prelude/primops.txt
636         $(GENPRIMOP) --data-decl          < $< > $@
637 primop-tag.hs-incl: prelude/primops.txt
638         $(GENPRIMOP) --primop-tag         < $< > $@
639 primop-list.hs-incl: prelude/primops.txt
640         $(GENPRIMOP) --primop-list        < $< > $@
641 primop-has-side-effects.hs-incl: prelude/primops.txt
642         $(GENPRIMOP) --has-side-effects   < $< > $@
643 primop-out-of-line.hs-incl: prelude/primops.txt
644         $(GENPRIMOP) --out-of-line        < $< > $@
645 primop-commutable.hs-incl: prelude/primops.txt
646         $(GENPRIMOP) --commutable         < $< > $@
647 primop-needs-wrapper.hs-incl: prelude/primops.txt
648         $(GENPRIMOP) --needs-wrapper      < $< > $@
649 primop-can-fail.hs-incl: prelude/primops.txt
650         $(GENPRIMOP) --can-fail           < $< > $@
651 primop-strictness.hs-incl: prelude/primops.txt
652         $(GENPRIMOP) --strictness         < $< > $@
653 primop-primop-info.hs-incl: prelude/primops.txt
654         $(GENPRIMOP) --primop-primop-info < $< > $@
655
656 # Usages aren't used any more; but the generator 
657 # can still generate them if we want them back
658 primop-usage.hs-incl: prelude/primops.txt
659         $(GENPRIMOP) --usage              < $< > $@
660
661
662 #-----------------------------------------------------------------------------
663 #               Linking
664
665 # Include libghccompat in stage1 only.  In stage2 onwards, all these
666 # libraries will be available from the main libraries.
667
668 ifeq "$(stage)" "1"
669 include $(GHC_COMPAT_DIR)/compat.mk
670 endif
671
672 SRC_LD_OPTS += -no-link-chk
673
674 # -----------------------------------------------------------------------------
675 # create ghc-inplace, a convenient way to run ghc from the build tree...
676
677 all :: $(odir)/ghc-inplace ghc-inplace
678
679 $(odir)/ghc-inplace : $(HS_PROG)
680         @$(RM) $@
681         echo '#!/bin/sh' >>$@
682         echo exec $(GHC_COMPILER_DIR_ABS)/$(HS_PROG) '-B$(subst \,\\,$(FPTOOLS_TOP_ABS_PLATFORM))' '"$$@"' >>$@
683         chmod 755 $@
684
685 ghc-inplace : stage1/ghc-inplace
686         $(LN_S) -f $< $@
687
688 ifeq "$(stage)" "1"
689 CLEAN_FILES += ghc-inplace
690 endif
691
692 CLEAN_FILES += $(odir)/ghc-inplace
693
694 #-----------------------------------------------------------------------------
695 #               install
696
697 # We don't want ghc treated as an ordinary executable,
698 # but put it together with the libraries.
699 # Also don't want any interface files installed
700
701 DESTDIR = $(INSTALL_LIBRARY_DIR_GHC)
702
703 ifneq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
704 INSTALL_LIBEXECS += $(HS_PROG)
705 else
706 INSTALL_PROGS += $(HS_PROG)
707 endif
708
709 # ----------------------------------------------------------------------------
710 # profiling.
711
712 # rename/RnBinds_HC_OPTS += -auto-all
713 # rename/RnEnv_HC_OPTS += -auto-all
714 # rename/RnExpr_HC_OPTS += -auto-all
715 # rename/RnHiFiles_HC_OPTS += -auto-all
716 # rename/RnHsSyn_HC_OPTS += -auto-all
717 # rename/Rename_HC_OPTS += -auto-all
718 # rename/RnIfaces_HC_OPTS += -auto-all
719 # rename/RnNames_HC_OPTS += -auto-all
720 # rename/RnSource_HC_OPTS += -auto-all
721 # rename/RnTypes_HC_OPTS += -auto-all
722
723 # typecheck/Inst_HC_OPTS += -auto-all
724 # typecheck/TcBinds_HC_OPTS += -auto-all
725 # typecheck/TcClassDcl_HC_OPTS += -auto-all
726 # typecheck/TcDefaults_HC_OPTS += -auto-all
727 # typecheck/TcDeriv_HC_OPTS += -auto-all
728 # typecheck/TcEnv_HC_OPTS += -auto-all
729 # typecheck/TcExpr_HC_OPTS += -auto-all
730 # typecheck/TcForeign_HC_OPTS += -auto-all
731 # typecheck/TcGenDeriv_HC_OPTS += -auto-all
732 # typecheck/TcHsSyn_HC_OPTS += -auto-all
733 # typecheck/TcIfaceSig_HC_OPTS += -auto-all
734 # typecheck/TcInstDcls_HC_OPTS += -auto-all
735 # typecheck/TcMatches_HC_OPTS += -auto-all
736 # typecheck/TcMonoType_HC_OPTS += -auto-all
737 # typecheck/TcMType_HC_OPTS += -auto-all
738 # typecheck/TcPat_HC_OPTS += -auto-all
739 # typecheck/TcRnDriver_HC_OPTS += -auto-all
740 # #typecheck/TcRnMonad_HC_OPTS += -auto-all
741 # #typecheck/TcRnTypes_HC_OPTS += -auto-all
742 # typecheck/TcRules_HC_OPTS += -auto-all
743 # typecheck/TcSimplify_HC_OPTS += -auto-all
744 # typecheck/TcSplice_HC_OPTS += -auto-all
745 # typecheck/TcTyClsDecls_HC_OPTS += -auto-all
746 # typecheck/TcTyDecls_HC_OPTS += -auto-all
747 # typecheck/TcType_HC_OPTS += -auto-all
748 # typecheck/TcUnify_HC_OPTS += -auto-all
749
750 coreSyn/CorePrep_HC_OPTS += -auto-all
751 # parser/Parser_HC_OPTS += -fasm
752
753 #-----------------------------------------------------------------------------
754 # Building the GHC package
755
756 # The GHC package is made from the stage 2 build.  Fortunately the
757 # package build system framework more or less does the right thing for
758 # us here.
759
760 ifeq "$(stage)" "2"
761 PACKAGE = ghc
762 HIERARCHICAL_LIB = NO
763 VERSION = $(ProjectVersion)
764 PKG_DEPENDS += base haskell98
765 PACKAGE_CPP_OPTS += -DPKG_DEPENDS='$(PKG_DEPENDS)'
766
767 # Omit Main from the library, the client will want to plug their own Main in
768 LIBOBJS = $(filter-out $(odir)/main/Main.o $(odir)/parser/hschooks.o, $(OBJS))
769
770 # disable splitting: it won't really help with GHC, and the specialised
771 # build system for compiler/ isn't set up to handle it.
772 SplitObjs = NO
773
774 # the package build system likes to set WAYS=$(GhcLibWays), but we don't 
775 # really want to build the whole of GHC multiple ways... if you do,
776 # set GhcCompilerWays instead.
777 GhcLibWays = $(GhcCompilerWays)
778
779 # override $(GhcLibHcOpts): we want GhcStage2HcOpts to take precedence
780 GhcLibHcOpts =
781
782 # override default definition of HS_IFACES so we can add $(odir)
783 HS_IFACES   = $(addsuffix .$(way_)hi,$(basename $(HS_OBJS)))
784
785 # Haddock can't handle recursive modules currently, so we disable it for now.
786 NO_HADDOCK_DOCS = YES
787 endif
788
789 #-----------------------------------------------------------------------------
790 #               clean
791
792 MAINTAINER_CLEAN_FILES += parser/Parser.info main/ParsePkgConf.info
793
794 #-----------------------------------------------------------------------------
795 #               Include target-rule boilerplate
796
797 # Don't use the default MKDEPENDHS stuff... we'll do our own, below
798 MKDEPENDHS_SRCS =
799 MKDEPENDC_SRCS =
800
801 # Make doesn't work this out for itself, it seems
802 parser/Parser.y : parser/Parser.y.pp
803 EXTRA_SRCS += parser/Parser.y
804
805
806 #-----------------------------------------------------------------------------
807 #               Source files for tags file generation
808 #
809 # We want to excluded derived sources, because they won't be in the source
810 # tree, which is where we are going to move the TAGS file to.a
811
812 TAGS_HS_SRCS = parser/Parser.y.pp $(filter-out $(DERIVED_SRCS) main/Config.hs parser/Parser.y, $(sort $(SRCS)))
813
814
815 include $(TOP)/mk/target.mk
816
817 # -----------------------------------------------------------------------------
818 # Dependencies
819
820 MKDEPENDHS_HC_OPTS = $(patsubst -i$(odir)/%, -i%, $(HC_OPTS))
821
822 MKDEPENDHS=$(HC)
823
824 # Must do this *after* including target.mk, because $(HS_SRCS) isn't set yet.
825 depend :: $(STAGE_PLATFORM_H) $(HS_SRCS) $(C_SRCS)
826         touch .depend-BASE
827 ifneq "$(BootingFromHc)" "YES"
828         $(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)
829 endif
830         $(MKDEPENDC) -f .depend-BASE $(MKDEPENDC_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(CC_OPTS) -- $(C_SRCS) 
831         $(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)
832 # The binmode stuff tells perl not to add stupid ^M's to the output
833 #
834 # The /lib/compat replacement is to workaround a bug in the
835 # -optdep--exclude-module flag in GHC 6.4.  It is not required for any
836 # other version of GHC, but doesn't do any harm.
837
838 -include .depend-$(stage)