Move readline configuration into the readline package
[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 -include $(FPTOOLS_TOP)/libraries/readline/config.mk
442 ifeq "$(READLINE_BUILD_PACKAGE)" "yes"
443 SRC_HC_OPTS += -package readline -DUSE_READLINE
444 PKG_DEPENDS += readline
445 endif
446 endif # stage=1
447 endif # not windows
448
449 else
450
451 # No interpreter, so exclude Template Haskell modules
452 EXCLUDED_SRCS += deSugar/DsMeta.hs typecheck/TcSplice.lhs hsSyn/Convert.lhs
453
454 endif # bootstrapped with interpreter
455
456 # -----------------------------------------------
457 # mkdependC stuff
458 #
459 # Big Fudge to get around inherent problem that Makefile setup
460 # has got with 'mkdependC'.
461
462 SRC_MKDEPENDC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
463
464 # XXX not really correct, hschooks.c actually gets include files like
465 # RtsFlags.c from the installed GHC, but we can't tell mkdependC about that.
466 SRC_MKDEPENDC_OPTS += -I$(GHC_INCLUDE_DIR)
467
468 # -----------------------------------------------------------------------------
469 #               Haskell compilations
470
471 SRC_HC_OPTS += \
472   -cpp -fglasgow-exts -fno-generics -Rghc-timing \
473   -I. -IcodeGen -InativeGen -Iparser
474
475 # Omitted:      -I$(GHC_INCLUDE_DIR)
476 # We should have -I$(GHC_INCLUDE_DIR) in SRC_HC_OPTS, 
477 # to avoid the use of an explicit path in GHC source files
478 #       (include "../includes/config.h"
479 # But alas GHC 4.08 (and others for all I know) uses this very
480 # same include path when compiling the .hc files it generates.
481 # Disaster!  Then the hc file sees the GHC 5.02 (or whatever)
482 # include files.   For the moment we've reverted to using
483 # an explicit path in the .hs sources
484 #
485 # For the benefit of <5.00 compilers, do include GHC_INCLUDE_DIR
486 # when generating dependencies. (=> it gets passed onto mkdependHS,
487 # which needs it).
488 SRC_MKDEPENDHS_OPTS += -I$(GHC_INCLUDE_DIR)
489
490 # We need System.Posix (or Posix when ghc < 6.2)
491 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
492 ifeq "$(bootstrapped)" "YES"
493 SRC_HC_OPTS += -package Win32
494 PKG_DEPENDS += Win32
495 endif
496 else
497 ifeq "$(bootstrapped) $(ghc_ge_601)" "NO NO"
498 SRC_HC_OPTS += -package posix
499 else
500 SRC_HC_OPTS += -package unix
501 PKG_DEPENDS += unix
502 endif
503 endif
504
505 # We use the Cabal package in stages 2/3 only; in stage 1 we're using
506 # the libcompat library which provides the Cabal modules.
507 ifneq "$(stage)" "1"
508 SRC_HC_OPTS += -package Cabal
509 PKG_DEPENDS += Cabal
510 endif
511
512 ifeq "$(ghc_ge_603)" "YES"
513 # Ignore lang, to avoid potential clash with the Generics module if
514 # lang happens to be a dependency of some exposed package in the local
515 # GHC installation (eg. wxHaskell did this around 6.4).
516 SRC_HC_OPTS += -ignore-package lang
517 endif
518
519 SRC_CC_OPTS += -Iparser -I. -O
520 SRC_HC_OPTS += -recomp $(GhcHcOpts) $(GhcStage$(stage)HcOpts)
521 SRC_HC_OPTS += -H16M
522
523 ifeq "$(BootingFromHc)" "YES"
524 SRC_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
525 endif
526
527 #       Special flags for particular modules
528 #       The standard suffix rule for compiling a Haskell file
529 #       adds these flags to the command line
530
531 # There used to be a -no-recomp flag on PrimOp, but why?
532 # It's an expensive module to recompile!
533 prelude/PrimOp_HC_OPTS          = -H80m
534
535
536 main/ParsePkgConf_HC_OPTS       += -fno-warn-incomplete-patterns
537 parser/Parser_HC_OPTS           += -fno-warn-incomplete-patterns
538
539 ifeq "$(ghc_ge_603)" "NO"
540 # Use -fvia-C since the NCG can't handle the narrow16Int# (and intToInt16#?)
541 # primops on all platforms.
542 parser/Parser_HC_OPTS           += -fvia-C
543 # because the NCG can't handle the 64-bit math in here
544 prelude/PrelRules_HC_OPTS       += -fvia-C
545 # ByteCodeItbls uses primops that the NCG doesn't support.
546 ghci/ByteCodeItbls_HC_OPTS      += -fvia-C
547 ghci/ByteCodeLink_HC_OPTS       += -fvia-C -monly-3-regs
548 endif
549
550 # Careful optimisation of the parser: we don't want to throw everything
551 # at it, because that takes too long and doesn't buy much, but we do want
552 # to inline certain key external functions, so we instruct GHC not to
553 # throw away inlinings as it would normally do in -Onot mode:
554 parser/Parser_HC_OPTS           += -Onot -fno-ignore-interface-pragmas
555
556 ifeq "$(HOSTPLATFORM)" "hppa1.1-hp-hpux9"
557 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
558 endif
559
560 utils/Digraph_HC_OPTS           = -fglasgow-exts 
561
562 basicTypes/SrcLoc_HC_OPTS       = -funbox-strict-fields
563
564 ifeq "$(bootstrapped)" "YES"
565 utils/Binary_HC_OPTS            = -funbox-strict-fields
566 endif
567
568 # We always optimise some low-level modules, otherwise performance of
569 # a non-optimised compiler is severely affected.
570 main/BinIface_HC_OPTS           += -O
571 utils/Binary_HC_OPTS            += -O
572 utils/FastMutInt_HC_OPTS        += -O
573 utils/Encoding_HC_OPTS          += -O
574 utils/StringBuffer_HC_OPTS      += -O
575 utils/FastString_HC_OPTS        += -O
576
577 # ---- Profiling ----
578 #simplCore/Simplify_HC_OPTS = -auto-all
579 #simplCore/SimplEnv_HC_OPTS = -auto-all
580 #simplCore/SimplUtils_HC_OPTS = -auto-all
581
582 # CSE interacts badly with top-level IORefs (reportedly in DriverState and
583 # DriverMkDepend), causing some of them to be commoned up.  We have a fix for
584 # this in 5.00+, but earlier versions of the compiler will need CSE turned off.
585 # To be on the safe side, we disable CSE in *all* modules with top-level IORefs.
586 ghci/InteractiveUI_HC_OPTS      = -fno-cse
587 main/CmdLineOpts_HC_OPTS        = -fno-cse
588 main/DriverMkDepend_HC_OPTS     = -fno-cse
589 main/DriverPipeline_HC_OPTS     = -fno-cse
590 main/Finder_HC_OPTS             = -fno-cse
591 main/SysTools_HC_OPTS           = -fno-cse
592 main/StaticFlags_HC_OPTS        = -fno-cse
593
594 # The #include is vital for the via-C route, else the C
595 # compiler doesn't realise that the stcall foreign imports are indeed
596 # stdcall, and doesn't generate the Foo@8 name for them
597 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
598 main/SysTools_HC_OPTS           += '-\#include <windows.h>' '-\#include <process.h>'
599 endif
600
601 parser/Lexer_HC_OPTS += -funbox-strict-fields
602
603 # ghc_strlen percolates through so many modules that it is easier to get its
604 # prototype via a global option instead of a myriad of per-file OPTIONS
605 SRC_HC_OPTS += '-\#include "hschooks.h"'
606
607 # ----------------------------------------------------------------------------
608 #               Generate supporting stuff for prelude/PrimOp.lhs 
609 #               from prelude/primops.txt
610
611 PRIMOP_BITS=primop-data-decl.hs-incl \
612             primop-tag.hs-incl  \
613             primop-list.hs-incl  \
614             primop-has-side-effects.hs-incl  \
615             primop-out-of-line.hs-incl  \
616             primop-commutable.hs-incl  \
617             primop-needs-wrapper.hs-incl  \
618             primop-can-fail.hs-incl  \
619             primop-strictness.hs-incl  \
620             primop-primop-info.hs-incl
621
622 CLEAN_FILES += prelude/primops.txt
623 CLEAN_FILES += $(PRIMOP_BITS)
624
625 SRC_CPP_OPTS += -I$(GHC_INCLUDE_DIR)
626 SRC_CPP_OPTS += ${GhcCppOpts}
627
628 ifneq "$(BootingFromHc)" "YES"
629 prelude/PrimOp.lhs $(odir)/prelude/PrimOp.o: $(PRIMOP_BITS)
630 endif
631
632 ifneq "$(BootingFromHc)" "YES"
633 depend :: $(PRIMOP_BITS)
634 endif
635
636 primop-data-decl.hs-incl: prelude/primops.txt
637         $(GENPRIMOP) --data-decl          < $< > $@
638 primop-tag.hs-incl: prelude/primops.txt
639         $(GENPRIMOP) --primop-tag         < $< > $@
640 primop-list.hs-incl: prelude/primops.txt
641         $(GENPRIMOP) --primop-list        < $< > $@
642 primop-has-side-effects.hs-incl: prelude/primops.txt
643         $(GENPRIMOP) --has-side-effects   < $< > $@
644 primop-out-of-line.hs-incl: prelude/primops.txt
645         $(GENPRIMOP) --out-of-line        < $< > $@
646 primop-commutable.hs-incl: prelude/primops.txt
647         $(GENPRIMOP) --commutable         < $< > $@
648 primop-needs-wrapper.hs-incl: prelude/primops.txt
649         $(GENPRIMOP) --needs-wrapper      < $< > $@
650 primop-can-fail.hs-incl: prelude/primops.txt
651         $(GENPRIMOP) --can-fail           < $< > $@
652 primop-strictness.hs-incl: prelude/primops.txt
653         $(GENPRIMOP) --strictness         < $< > $@
654 primop-primop-info.hs-incl: prelude/primops.txt
655         $(GENPRIMOP) --primop-primop-info < $< > $@
656
657 # Usages aren't used any more; but the generator 
658 # can still generate them if we want them back
659 primop-usage.hs-incl: prelude/primops.txt
660         $(GENPRIMOP) --usage              < $< > $@
661
662
663 #-----------------------------------------------------------------------------
664 #               Linking
665
666 # Include libghccompat in stage1 only.  In stage2 onwards, all these
667 # libraries will be available from the main libraries.
668
669 ifeq "$(stage)" "1"
670 include $(GHC_COMPAT_DIR)/compat.mk
671 endif
672
673 SRC_LD_OPTS += -no-link-chk
674
675 # -----------------------------------------------------------------------------
676 # create ghc-inplace, a convenient way to run ghc from the build tree...
677
678 all :: $(odir)/ghc-inplace ghc-inplace
679
680 $(odir)/ghc-inplace : $(HS_PROG)
681         @$(RM) $@
682         echo '#!/bin/sh' >>$@
683         echo exec $(GHC_COMPILER_DIR_ABS)/$(HS_PROG) '-B$(subst \,\\,$(FPTOOLS_TOP_ABS_PLATFORM))' '"$$@"' >>$@
684         chmod 755 $@
685
686 ghc-inplace : stage1/ghc-inplace
687         $(LN_S) -f $< $@
688
689 ifeq "$(stage)" "1"
690 CLEAN_FILES += ghc-inplace
691 endif
692
693 CLEAN_FILES += $(odir)/ghc-inplace
694
695 #-----------------------------------------------------------------------------
696 #               install
697
698 # We don't want ghc treated as an ordinary executable,
699 # but put it together with the libraries.
700 # Also don't want any interface files installed
701
702 DESTDIR = $(INSTALL_LIBRARY_DIR_GHC)
703
704 ifneq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
705 INSTALL_LIBEXECS += $(HS_PROG)
706 else
707 INSTALL_PROGS += $(HS_PROG)
708 endif
709
710 # ----------------------------------------------------------------------------
711 # profiling.
712
713 # rename/RnBinds_HC_OPTS += -auto-all
714 # rename/RnEnv_HC_OPTS += -auto-all
715 # rename/RnExpr_HC_OPTS += -auto-all
716 # rename/RnHiFiles_HC_OPTS += -auto-all
717 # rename/RnHsSyn_HC_OPTS += -auto-all
718 # rename/Rename_HC_OPTS += -auto-all
719 # rename/RnIfaces_HC_OPTS += -auto-all
720 # rename/RnNames_HC_OPTS += -auto-all
721 # rename/RnSource_HC_OPTS += -auto-all
722 # rename/RnTypes_HC_OPTS += -auto-all
723
724 # typecheck/Inst_HC_OPTS += -auto-all
725 # typecheck/TcBinds_HC_OPTS += -auto-all
726 # typecheck/TcClassDcl_HC_OPTS += -auto-all
727 # typecheck/TcDefaults_HC_OPTS += -auto-all
728 # typecheck/TcDeriv_HC_OPTS += -auto-all
729 # typecheck/TcEnv_HC_OPTS += -auto-all
730 # typecheck/TcExpr_HC_OPTS += -auto-all
731 # typecheck/TcForeign_HC_OPTS += -auto-all
732 # typecheck/TcGenDeriv_HC_OPTS += -auto-all
733 # typecheck/TcHsSyn_HC_OPTS += -auto-all
734 # typecheck/TcIfaceSig_HC_OPTS += -auto-all
735 # typecheck/TcInstDcls_HC_OPTS += -auto-all
736 # typecheck/TcMatches_HC_OPTS += -auto-all
737 # typecheck/TcMonoType_HC_OPTS += -auto-all
738 # typecheck/TcMType_HC_OPTS += -auto-all
739 # typecheck/TcPat_HC_OPTS += -auto-all
740 # typecheck/TcRnDriver_HC_OPTS += -auto-all
741 # #typecheck/TcRnMonad_HC_OPTS += -auto-all
742 # #typecheck/TcRnTypes_HC_OPTS += -auto-all
743 # typecheck/TcRules_HC_OPTS += -auto-all
744 # typecheck/TcSimplify_HC_OPTS += -auto-all
745 # typecheck/TcSplice_HC_OPTS += -auto-all
746 # typecheck/TcTyClsDecls_HC_OPTS += -auto-all
747 # typecheck/TcTyDecls_HC_OPTS += -auto-all
748 # typecheck/TcType_HC_OPTS += -auto-all
749 # typecheck/TcUnify_HC_OPTS += -auto-all
750
751 coreSyn/CorePrep_HC_OPTS += -auto-all
752 # parser/Parser_HC_OPTS += -fasm
753
754 #-----------------------------------------------------------------------------
755 # Building the GHC package
756
757 # The GHC package is made from the stage 2 build.  Fortunately the
758 # package build system framework more or less does the right thing for
759 # us here.
760
761 ifeq "$(stage)" "2"
762 PACKAGE = ghc
763 HIERARCHICAL_LIB = NO
764 VERSION = $(ProjectVersion)
765 PKG_DEPENDS += base haskell98
766 PACKAGE_CPP_OPTS += -DPKG_DEPENDS='$(PKG_DEPENDS)'
767
768 # Omit Main from the library, the client will want to plug their own Main in
769 LIBOBJS = $(filter-out $(odir)/main/Main.o $(odir)/parser/hschooks.o, $(OBJS))
770
771 # disable splitting: it won't really help with GHC, and the specialised
772 # build system for compiler/ isn't set up to handle it.
773 SplitObjs = NO
774
775 # the package build system likes to set WAYS=$(GhcLibWays), but we don't 
776 # really want to build the whole of GHC multiple ways... if you do,
777 # set GhcCompilerWays instead.
778 GhcLibWays = $(GhcCompilerWays)
779
780 # override $(GhcLibHcOpts): we want GhcStage2HcOpts to take precedence
781 GhcLibHcOpts =
782
783 # override default definition of HS_IFACES so we can add $(odir)
784 HS_IFACES   = $(addsuffix .$(way_)hi,$(basename $(HS_OBJS)))
785
786 # Haddock can't handle recursive modules currently, so we disable it for now.
787 NO_HADDOCK_DOCS = YES
788 endif
789
790 #-----------------------------------------------------------------------------
791 #               clean
792
793 MAINTAINER_CLEAN_FILES += parser/Parser.info main/ParsePkgConf.info
794
795 #-----------------------------------------------------------------------------
796 #               Include target-rule boilerplate
797
798 # Don't use the default MKDEPENDHS stuff... we'll do our own, below
799 MKDEPENDHS_SRCS =
800 MKDEPENDC_SRCS =
801
802 # Make doesn't work this out for itself, it seems
803 parser/Parser.y : parser/Parser.y.pp
804 EXTRA_SRCS += parser/Parser.y
805
806
807 #-----------------------------------------------------------------------------
808 #               Source files for tags file generation
809 #
810 # We want to excluded derived sources, because they won't be in the source
811 # tree, which is where we are going to move the TAGS file to.a
812
813 TAGS_HS_SRCS = parser/Parser.y.pp $(filter-out $(DERIVED_SRCS) main/Config.hs parser/Parser.y, $(sort $(SRCS)))
814
815
816 include $(TOP)/mk/target.mk
817
818 # -----------------------------------------------------------------------------
819 # Dependencies
820
821 MKDEPENDHS_HC_OPTS = $(patsubst -i$(odir)/%, -i%, $(HC_OPTS))
822
823 MKDEPENDHS=$(HC)
824
825 # Must do this *after* including target.mk, because $(HS_SRCS) isn't set yet.
826 depend :: $(STAGE_PLATFORM_H) $(HS_SRCS) $(C_SRCS)
827         touch .depend-BASE
828 ifneq "$(BootingFromHc)" "YES"
829         $(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)
830 endif
831         $(MKDEPENDC) -f .depend-BASE $(MKDEPENDC_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(CC_OPTS) -- $(C_SRCS) 
832         $(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)
833 # The binmode stuff tells perl not to add stupid ^M's to the output
834 #
835 # The /lib/compat replacement is to workaround a bug in the
836 # -optdep--exclude-module flag in GHC 6.4.  It is not required for any
837 # other version of GHC, but doesn't do any harm.
838
839 -include .depend-$(stage)