[project @ 2005-03-15 15:11:41 by krasimir]
[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 into $(odir), so
161 # we have to augment CLEAN_FILES appropriateliy.
162
163 CLEAN_FILES += $(odir)/*/*.hi
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 "$(BuildPackageGHC)" "YES"
185 ifneq "$(way)" "dll"
186 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
187 HS_PROG=$(odir)/ghc$(_way)-$(ProjectVersion)
188 else
189 HS_PROG=$(odir)/ghc$(_way)
190 endif
191 else
192 HS_PROG=$(odir)/ghc-$(ProjectVersion)
193 endif
194 endif
195
196 # -----------------------------------------------------------------------------
197 # Create compiler configuration
198 #
199 # The 'echo' commands simply spit the values of various make variables
200 # into Config.hs, whence they can be compiled and used by GHC itself
201
202 CONFIG_HS       = main/Config.hs
203 boot :: $(CONFIG_HS)
204
205 $(CONFIG_HS) : $(FPTOOLS_TOP)/mk/config.mk Makefile
206         @$(RM) -f $(CONFIG_HS)
207         @echo "Creating $(CONFIG_HS) ... "
208         @echo "module Config where" >>$(CONFIG_HS)
209         @echo "cProjectName          = \"$(ProjectName)\"" >> $(CONFIG_HS)
210         @echo "cProjectVersion       = \"$(ProjectVersion)\"" >> $(CONFIG_HS)
211         @echo "cProjectVersionInt    = \"$(ProjectVersionInt)\"" >> $(CONFIG_HS)
212         @echo "cProjectPatchLevel    = \"$(ProjectPatchLevel)\"" >> $(CONFIG_HS)
213         @echo "cBooterVersion        = \"$(GhcVersion)\"" >> $(CONFIG_HS)
214         @echo "cHscIfaceFileVersion  = \"$(HscIfaceFileVersion)\"" >> $(CONFIG_HS)
215         @echo "cGhcWithNativeCodeGen = \"$(GhcWithNativeCodeGen)\"" >> $(CONFIG_HS)
216         @echo "cGhcUnregisterised    = \"$(GhcUnregisterised)\"" >> $(CONFIG_HS)
217         @echo "cLeadingUnderscore    = \"$(LeadingUnderscore)\"" >> $(CONFIG_HS)
218         @echo "cRAWCPP_FLAGS         = \"$(RAWCPP_FLAGS)\"" >> $(CONFIG_HS)
219         @echo "cGCC                  = \"$(WhatGccIsCalled)\"" >> $(CONFIG_HS)
220         @echo "cMKDLL                = \"$(BLD_DLL)\"" >> $(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_TYPE  $(BuildPlatform_CPP)" >> $@
265         @echo "#define HostPlatform_TYPE   $(HostPlatform_CPP)" >> $@
266         @echo "#define TargetPlatform_TYPE $(TargetPlatform_CPP)" >> $@
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_TYPE  $(HostPlatform_CPP)" >> $@
311         @echo "#define HostPlatform_TYPE   $(TargetPlatform_CPP)" >> $@
312         @echo "#define TargetPlatform_TYPE $(TargetPlatform_CPP)" >> $@
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 compMan 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 # main/GHC.hs is not ready yet
373 EXCLUDED_SRCS += main/GHC.hs
374
375 ifeq ($(GhcWithNativeCodeGen),YES)
376 ALL_DIRS += nativeGen
377 else
378 SRC_HC_OPTS += -DOMIT_NATIVE_CODEGEN
379 endif
380
381 ifeq ($(GhcWithIlx),YES)
382 ALL_DIRS += ilxGen
383 SRC_HC_OPTS += -DILX
384 endif
385
386 ifeq ($(GhcWithJavaGen),YES)
387 ALL_DIRS += javaGen
388 SRC_HC_OPTS += -DJAVA
389 endif
390
391 ifeq "$(BootingFromHc)" "YES"
392 # HC files are always from a self-booted compiler
393 bootstrapped = YES
394 else
395 ifneq "$(findstring $(stage), 2 3)" ""
396 bootstrapped = YES
397 else
398 bootstrapped = $(shell if (test $(GhcCanonVersion) -ge $(ProjectVersionInt) -a $(GhcPatchLevel) -ge $(ProjectPatchLevel)); then echo YES; else echo NO; fi)
399 endif
400 endif
401
402 # -----------------------------------------------------------------------------
403 # Building a compiler with interpreter support
404 #
405 # The interpreter, GHCi interface, and Template Haskell are only
406 # enabled when we are bootstrapping with the same version of GHC, and
407 # the interpreter is supported on this platform.
408
409 ifeq "$(GhcWithInterpreter) $(bootstrapped)" "YES YES"
410
411 # Yes, include the interepreter, readline, and Template Haskell extensions
412 SRC_HC_OPTS += -DGHCI -package template-haskell
413
414 ALL_DIRS += ghci
415
416 # Enable readline if either:
417 #   - we're building stage 1 and $(GhcHasReadline)="YES"
418 #   - we're building stage 2/3, and we have built the readline package
419 #
420 # But we don't enable readline on Windows, because readline is fairly
421 # broken there.
422 #
423 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
424 ifeq "$(stage)" "1"
425 ifeq "$(GhcHasReadline)" "YES"
426 SRC_HC_OPTS += -package readline -DUSE_READLINE
427 endif
428 else
429 ifeq "$(GhcLibsWithReadline)" "YES"
430 SRC_HC_OPTS += -package readline -DUSE_READLINE
431 endif
432 endif # stage=1
433 endif # not windows
434
435 else
436
437 # No interpreter, so exclude Template Haskell modules
438 EXCLUDED_SRCS += deSugar/DsMeta.hs typecheck/TcSplice.lhs hsSyn/Convert.lhs
439
440 endif # bootstrapped with interpreter
441
442 # -----------------------------------------------
443 # mkdependC stuff
444 #
445 # Big Fudge to get around inherent problem that Makefile setup
446 # has got with 'mkdependC'.
447
448 SRC_MKDEPENDC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
449
450 # XXX not really correct, hschooks.c actually gets include files like
451 # RtsFlags.c from the installed GHC, but we can't tell mkdependC about that.
452 SRC_MKDEPENDC_OPTS += -I$(GHC_INCLUDE_DIR)
453
454 # -----------------------------------------------------------------------------
455 #               Haskell compilations
456
457 SRC_HC_OPTS += \
458   -cpp -fglasgow-exts -fno-generics -Rghc-timing \
459   -I. -IcodeGen -InativeGen -Iparser
460
461 # Omitted:      -I$(GHC_INCLUDE_DIR)
462 # We should have -I$(GHC_INCLUDE_DIR) in SRC_HC_OPTS, 
463 # to avoid the use of an explicit path in GHC source files
464 #       (include "../includes/config.h"
465 # But alas GHC 4.08 (and others for all I know) uses this very
466 # same include path when compiling the .hc files it generates.
467 # Disaster!  Then the hc file sees the GHC 5.02 (or whatever)
468 # include files.   For the moment we've reverted to using
469 # an explicit path in the .hs sources
470 #
471 # For the benefit of <5.00 compilers, do include GHC_INCLUDE_DIR
472 # when generating dependencies. (=> it gets passed onto mkdependHS,
473 # which needs it).
474 SRC_MKDEPENDHS_OPTS += -I$(GHC_INCLUDE_DIR)
475
476 # We need System.Posix (or Posix when ghc < 6.2)
477 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
478 ifeq "$(bootstrapped) $(ghc_ge_601)" "NO NO"
479 SRC_HC_OPTS += -package posix
480 else
481 SRC_HC_OPTS += -package unix
482 endif
483 endif
484
485 ifneq "$(findstring YES, $(bootstrapped) $(ghc_ge_603))" ""
486 SRC_HC_OPTS += -package Cabal
487 endif
488
489 SRC_CC_OPTS += -Iparser -I. -O
490 SRC_HC_OPTS += -recomp $(GhcHcOpts) $(GhcStage$(stage)HcOpts)
491 SRC_HC_OPTS += -H16M
492
493 ifeq "$(BootingFromHc)" "YES"
494 SRC_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
495 endif
496
497 #       Special flags for particular modules
498 #       The standard suffix rule for compiling a Haskell file
499 #       adds these flags to the command line
500
501 # There used to be a -no-recomp flag on PrimOp, but why?
502 # It's an expensive module to recompile!
503 prelude/PrimOp_HC_OPTS          = -H80m
504
505 # because the NCG can't handle the 64-bit math in here
506 prelude/PrelRules_HC_OPTS       = -fvia-C
507
508 main/ParsePkgConf_HC_OPTS       += -fno-warn-incomplete-patterns
509 # Use -fvia-C since the NCG can't handle the narrow16Int# (and intToInt16#?)
510 # primops on all platforms.
511 parser/Parser_HC_OPTS           += -fno-warn-incomplete-patterns -fvia-C
512
513 # Careful optimisation of the parser: we don't want to throw everything
514 # at it, because that takes too long and doesn't buy much, but we do want
515 # to inline certain key external functions, so we instruct GHC not to
516 # throw away inlinings as it would normally do in -Onot mode:
517 parser/Parser_HC_OPTS           += -Onot -fno-ignore-interface-pragmas
518
519 ifeq "$(HOSTPLATFORM)" "hppa1.1-hp-hpux9"
520 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
521 endif
522
523 utils/Digraph_HC_OPTS           = -fglasgow-exts 
524
525 basicTypes/SrcLoc_HC_OPTS       = -funbox-strict-fields
526
527 ifeq "$(bootstrapped)" "YES"
528 utils/Binary_HC_OPTS            = -funbox-strict-fields
529 endif
530
531 # ByteCodeItbls uses primops that the NCG doesn't support yet.
532 ghci/ByteCodeItbls_HC_OPTS      += -fvia-C
533 ghci/ByteCodeLink_HC_OPTS       += -fvia-C -monly-3-regs
534
535 # BinIface and Binary take ages to both compile and run if you don's use -O
536 main/BinIface_HC_OPTS           += -O
537 utils/Binary_HC_OPTS            += -O
538 utils/FastMutInt_HC_OPTS        += -O
539
540
541 # ---- Profiling ----
542 #simplCore/Simplify_HC_OPTS = -auto-all
543 #simplCore/SimplEnv_HC_OPTS = -auto-all
544 #simplCore/SimplUtils_HC_OPTS = -auto-all
545
546 # CSE interacts badly with top-level IORefs (reportedly in DriverState and
547 # DriverMkDepend), causing some of them to be commoned up.  We have a fix for
548 # this in 5.00+, but earlier versions of the compiler will need CSE turned off.
549 # To be on the safe side, we disable CSE in *all* modules with top-level IORefs.
550 compMan/CompManager_HC_OPTS     = -fno-cse
551 ghci/InteractiveUI_HC_OPTS      = -fno-cse
552 main/CmdLineOpts_HC_OPTS        = -fno-cse
553 main/DriverFlags_HC_OPTS        = -fno-cse
554 main/DriverMkDepend_HC_OPTS     = -fno-cse
555 main/DriverPipeline_HC_OPTS     = -fno-cse
556 main/DriverState_HC_OPTS        = -fno-cse
557 main/DriverUtil_HC_OPTS         = -fno-cse
558 main/Finder_HC_OPTS             = -fno-cse
559 main/SysTools_HC_OPTS           = -fno-cse
560
561 # The #include is vital for the via-C route, else the C
562 # compiler doesn't realise that the stcall foreign imports are indeed
563 # stdcall, and doesn't generate the Foo@8 name for them
564 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
565 main/SysTools_HC_OPTS           += '-\#include <windows.h>' '-\#include <process.h>'
566 endif
567
568 parser/Lexer_HC_OPTS += -funbox-strict-fields
569
570 # ghc_strlen percolates through so many modules that it is easier to get its
571 # prototype via a global option instead of a myriad of per-file OPTIONS
572 SRC_HC_OPTS += '-\#include "hschooks.h"'
573
574 # ----------------------------------------------------------------------------
575 #               Generate supporting stuff for prelude/PrimOp.lhs 
576 #               from prelude/primops.txt
577
578 GENPOC=$(TOP)/utils/genprimopcode/genprimopcode
579
580 PRIMOP_BITS=primop-data-decl.hs-incl \
581             primop-tag.hs-incl  \
582             primop-list.hs-incl  \
583             primop-has-side-effects.hs-incl  \
584             primop-out-of-line.hs-incl  \
585             primop-commutable.hs-incl  \
586             primop-needs-wrapper.hs-incl  \
587             primop-can-fail.hs-incl  \
588             primop-strictness.hs-incl  \
589             primop-primop-info.hs-incl
590
591 CLEAN_FILES += prelude/primops.txt
592 CLEAN_FILES += $(PRIMOP_BITS)
593
594 SRC_CPP_OPTS += -I$(GHC_INCLUDE_DIR)
595 SRC_CPP_OPTS += ${GhcCppOpts}
596
597 ifneq "$(BootingFromHc)" "YES"
598 prelude/PrimOp.lhs $(odir)/prelude/PrimOp.o: $(PRIMOP_BITS)
599 endif
600
601 ifneq "$(BootingFromHc)" "YES"
602 depend :: $(PRIMOP_BITS)
603 endif
604
605 primop-data-decl.hs-incl: prelude/primops.txt
606         $(GENPOC) --data-decl          < $< > $@
607 primop-tag.hs-incl: prelude/primops.txt
608         $(GENPOC) --primop-tag         < $< > $@
609 primop-list.hs-incl: prelude/primops.txt
610         $(GENPOC) --primop-list        < $< > $@
611 primop-has-side-effects.hs-incl: prelude/primops.txt
612         $(GENPOC) --has-side-effects   < $< > $@
613 primop-out-of-line.hs-incl: prelude/primops.txt
614         $(GENPOC) --out-of-line        < $< > $@
615 primop-commutable.hs-incl: prelude/primops.txt
616         $(GENPOC) --commutable         < $< > $@
617 primop-needs-wrapper.hs-incl: prelude/primops.txt
618         $(GENPOC) --needs-wrapper      < $< > $@
619 primop-can-fail.hs-incl: prelude/primops.txt
620         $(GENPOC) --can-fail           < $< > $@
621 primop-strictness.hs-incl: prelude/primops.txt
622         $(GENPOC) --strictness         < $< > $@
623 primop-primop-info.hs-incl: prelude/primops.txt
624         $(GENPOC) --primop-primop-info < $< > $@
625
626 # Usages aren't used any more; but the generator 
627 # can still generate them if we want them back
628 primop-usage.hs-incl: prelude/primops.txt
629         $(GENPOC) --usage              < $< > $@
630
631
632 #-----------------------------------------------------------------------------
633 #               Linking
634
635 # Include libghccompat in stage1 only.  In stage2 onwards, all these
636 # libraries will be available from the main libraries.
637 ifeq "$(stage)" "1"
638 SRC_HC_OPTS += -i$(GHC_LIB_COMPAT_DIR)
639 SRC_LD_OPTS += -L$(GHC_LIB_COMPAT_DIR) -lghccompat
640
641 ifeq "$(Windows)" "YES"
642 # not very nice, but required for -lghccompat on Windows
643 SRC_LD_OPTS += -lshell32
644 endif
645
646 # This is horrible.  We ought to be able to omit the entire directory
647 # from mkDependHS.
648 SRC_MKDEPENDHS_OPTS += \
649         -optdep--exclude-module=Compat.RawSystem \
650         -optdep--exclude-module=Compat.Directory \
651         -optdep--exclude-module=Distribution.Compat.ReadP \
652         -optdep--exclude-module=Distribution.Extension \
653         -optdep--exclude-module=Distribution.GetOpt \
654         -optdep--exclude-module=Distribution.InstalledPackageInfo \
655         -optdep--exclude-module=Distribution.License \
656         -optdep--exclude-module=Distribution.Package \
657         -optdep--exclude-module=Distribution.ParseUtils \
658         -optdep--exclude-module=Distribution.Setup \
659         -optdep--exclude-module=Distribution.Version \
660         -optdep--exclude-module=System.Directory.Internals
661 endif
662
663 SRC_LD_OPTS += -no-link-chk
664
665 # -----------------------------------------------------------------------------
666 # create ghc-inplace, a convenient way to run ghc from the build tree...
667
668 all :: $(odir)/ghc-inplace ghc-inplace
669
670 $(odir)/ghc-inplace : $(HS_PROG)
671         @$(RM) $@
672         echo '#!/bin/sh' >>$@
673         echo exec $(FPTOOLS_TOP_ABS)/ghc/compiler/$(HS_PROG) '-B$(subst \,\\,$(FPTOOLS_TOP_ABS_PLATFORM))' '"$$@"' >>$@
674         chmod 755 $@
675
676 ghc-inplace : stage1/ghc-inplace
677         $(LN_S) -f $< $@
678
679 CLEAN_FILES += $(odir)/ghc-inplace ghc-inplace
680
681 #-----------------------------------------------------------------------------
682 #               install
683
684 # We don't want ghc treated as an ordinary executable,
685 # but put it together with the libraries.
686 # Also don't want any interface files installed
687
688 DESTDIR = $(INSTALL_LIBRARY_DIR_GHC)
689
690 ifneq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
691 INSTALL_LIBEXECS += $(HS_PROG)
692 else
693 INSTALL_PROGS += $(HS_PROG)
694 endif
695
696 # ----------------------------------------------------------------------------
697 # profiling.
698
699 # rename/RnBinds_HC_OPTS += -auto-all
700 # rename/RnEnv_HC_OPTS += -auto-all
701 # rename/RnExpr_HC_OPTS += -auto-all
702 # rename/RnHiFiles_HC_OPTS += -auto-all
703 # rename/RnHsSyn_HC_OPTS += -auto-all
704 # rename/Rename_HC_OPTS += -auto-all
705 # rename/RnIfaces_HC_OPTS += -auto-all
706 # rename/RnNames_HC_OPTS += -auto-all
707 # rename/RnSource_HC_OPTS += -auto-all
708 # rename/RnTypes_HC_OPTS += -auto-all
709
710 # typecheck/Inst_HC_OPTS += -auto-all
711 # typecheck/TcBinds_HC_OPTS += -auto-all
712 # typecheck/TcClassDcl_HC_OPTS += -auto-all
713 # typecheck/TcDefaults_HC_OPTS += -auto-all
714 # typecheck/TcDeriv_HC_OPTS += -auto-all
715 # typecheck/TcEnv_HC_OPTS += -auto-all
716 # typecheck/TcExpr_HC_OPTS += -auto-all
717 # typecheck/TcForeign_HC_OPTS += -auto-all
718 # typecheck/TcGenDeriv_HC_OPTS += -auto-all
719 # typecheck/TcHsSyn_HC_OPTS += -auto-all
720 # typecheck/TcIfaceSig_HC_OPTS += -auto-all
721 # typecheck/TcInstDcls_HC_OPTS += -auto-all
722 # typecheck/TcMatches_HC_OPTS += -auto-all
723 # typecheck/TcMonoType_HC_OPTS += -auto-all
724 # typecheck/TcMType_HC_OPTS += -auto-all
725 # typecheck/TcPat_HC_OPTS += -auto-all
726 # typecheck/TcRnDriver_HC_OPTS += -auto-all
727 # #typecheck/TcRnMonad_HC_OPTS += -auto-all
728 # #typecheck/TcRnTypes_HC_OPTS += -auto-all
729 # typecheck/TcRules_HC_OPTS += -auto-all
730 # typecheck/TcSimplify_HC_OPTS += -auto-all
731 # typecheck/TcSplice_HC_OPTS += -auto-all
732 # typecheck/TcTyClsDecls_HC_OPTS += -auto-all
733 # typecheck/TcTyDecls_HC_OPTS += -auto-all
734 # typecheck/TcType_HC_OPTS += -auto-all
735 # typecheck/TcUnify_HC_OPTS += -auto-all
736
737 coreSyn/CorePrep_HC_OPTS += -auto-all
738
739 #-----------------------------------------------------------------------------
740 # Building GHC package
741
742 ifeq "$(BuildPackageGHC)" "YES"
743
744 PACKAGE = ghc
745 VERSION = 6.4
746 STANDALONE_PACKAGE = YES
747 PACKAGE_DEPS =
748
749 endif
750
751 #-----------------------------------------------------------------------------
752 #               clean
753
754 MAINTAINER_CLEAN_FILES += parser/Parser.info main/ParsePkgConf.info
755
756 #-----------------------------------------------------------------------------
757 #               Include target-rule boilerplate
758
759 # Don't use the default MKDEPENDHS stuff... we'll do our own, below
760 MKDEPENDHS_SRCS =
761 MKDEPENDC_SRCS =
762
763 # Make doesn't work this out for itself, it seems
764 parser/Parser.y : parser/Parser.y.pp
765 EXTRA_SRCS += parser/Parser.y
766
767
768 #-----------------------------------------------------------------------------
769 #               Source files for tags file generation
770 #
771 # We want to excluded derived sources, because they won't be in the source
772 # tree, which is where we are going to move the TAGS file to.a
773
774 TAGS_HS_SRCS = parser/Parser.y.pp $(filter-out $(DERIVED_SRCS) main/Config.hs parser/Parser.y, $(sort $(SRCS)))
775
776
777 include $(TOP)/mk/target.mk
778
779 # -----------------------------------------------------------------------------
780 # Dependencies
781
782 MKDEPENDHS_HC_OPTS = $(patsubst -i$(odir)/%, -i%, $(HC_OPTS))
783
784 MKDEPENDHS=$(HC)
785
786 # Must do this *after* including target.mk, because $(HS_SRCS) isn't set yet.
787 depend :: $(STAGE_PLATFORM_H) $(HS_SRCS) $(C_SRCS)
788         touch .depend-BASE
789 ifneq "$(BootingFromHc)" "YES"
790         $(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)
791 endif
792         $(MKDEPENDC) -f .depend-BASE $(MKDEPENDC_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(CC_OPTS) -- $(C_SRCS) 
793         $(PERL) -pe 'binmode(stdin); binmode(stdout); s@^(\S*\.o)@stage$(stage)/$$1@g; s@(\S*\.hi)@stage$(stage)/$$1@g' <.depend-BASE >.depend-$(stage)
794 # The binmode stuff tells perl not to add stupid ^M's to the output
795
796 -include .depend-$(stage)