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