[project @ 2001-06-25 17:28:30 by sof]
[ghc-hetmet.git] / ghc / compiler / Makefile
1 # -----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.163 2001/06/25 17:28:30 sof Exp $
3
4 TOP = ..
5 include $(TOP)/mk/boilerplate.mk
6
7 #-----------------------------------------------------------------------------
8 # Building ghc different ways (default is just `normal' sequential)
9 WAYS=$(GhcCompilerWays)
10
11 # -----------------------------------------------------------------------------
12 #               Set HS_PROG
13
14 # Note: there have been reports of people running up against the ARG_MAX limit
15 # when linking ghc with all its constituent object files. The likely source of 
16 # the problem is that the environment is a bit too big, so a workaround could
17 # be to do ` env PATH=$(PATH) make ghc 'to minimise the environment. (or the
18 # equivalent of `env' if it doesn't exist locally).
19 #
20 ifneq "$(way)" "dll"
21 HS_PROG=ghc$(_way)-$(ProjectVersion)
22 else
23 HS_PROG=ghc-$(ProjectVersion)
24 endif
25
26 # -----------------------------------------------------------------------------
27 # Create compiler configuration
28 #
29 # The 'echo' commands simply spit the values of various make variables
30 # into Config.hs, whence they can be compiled and used by GHC itself
31
32 CONFIG_HS       = main/Config.hs
33 boot :: $(CONFIG_HS)
34
35 $(CONFIG_HS) : $(FPTOOLS_TOP)/mk/config.mk Makefile
36         @$(RM) -f $(CONFIG_HS)
37         @echo -n "Creating $(CONFIG_HS) ... "
38         @echo "module Config where" >>$(CONFIG_HS)
39         @echo "cProjectName          = \"$(ProjectName)\"" >> $(CONFIG_HS)
40         @echo "cProjectVersion       = \"$(ProjectVersion)\"" >> $(CONFIG_HS)
41         @echo "cProjectVersionInt    = \"$(ProjectVersionInt)\"" >> $(CONFIG_HS)
42         @echo "cBooterVersion        = \"$(GhcVersion)\"" >> $(CONFIG_HS)
43         @echo "cHscIfaceFileVersion  = \"$(HscIfaceFileVersion)\"" >> $(CONFIG_HS)
44         @echo "cHOSTPLATFORM         = \"$(HOSTPLATFORM)\"" >> $(CONFIG_HS)
45         @echo "cTARGETPLATFORM       = \"$(TARGETPLATFORM)\"" >> $(CONFIG_HS)
46         @echo "cGhcWithNativeCodeGen = \"$(GhcWithNativeCodeGen)\"" >> $(CONFIG_HS)
47         @echo "cGhcUnregisterised    = \"$(GhcUnregisterised)\"" >> $(CONFIG_HS)
48         @echo "cLeadingUnderscore    = \"$(LeadingUnderscore)\"" >> $(CONFIG_HS)
49         @echo "cRAWCPP               = \"$(GHC_RAWCPP)\"" >> $(CONFIG_HS)
50         @echo "cGCC                  = \"$(WhatGccIsCalled)\"" >> $(CONFIG_HS)
51         @echo "cMKDLL                = \"$(BLD_DLL)\"" >> $(CONFIG_HS)
52         @echo "cGHC_DRIVER_DIR       = \"$(GHC_DRIVER_DIR)\"" >> $(CONFIG_HS)
53         @echo "cGHC_TOUCHY           = \"$(GHC_TOUCHY)\"" >> $(CONFIG_HS)
54         @echo "cGHC_TOUCHY_DIR       = \"$(GHC_TOUCHY_DIR)\"" >> $(CONFIG_HS)
55         @echo "cGHC_UNLIT            = \"$(GHC_UNLIT)\"" >> $(CONFIG_HS)
56         @echo "cGHC_UNLIT_DIR        = \"$(GHC_UNLIT_DIR)\"" >> $(CONFIG_HS)
57         @echo "cGHC_MANGLER          = \"$(GHC_MANGLER)\"" >> $(CONFIG_HS)
58         @echo "cGHC_MANGLER_DIR      = \"$(GHC_MANGLER_DIR)\"" >> $(CONFIG_HS)
59         @echo "cGHC_SPLIT            = \"$(GHC_SPLIT)\"" >> $(CONFIG_HS)
60         @echo "cGHC_SPLIT_DIR        = \"$(GHC_SPLIT_DIR)\"" >> $(CONFIG_HS)
61         @echo "cGHC_SYSMAN           = \"$(GHC_SYSMAN)\"" >> $(CONFIG_HS)
62         @echo "cGHC_SYSMAN_DIR       = \"$(GHC_SYSMAN_DIR)\"" >> $(CONFIG_HS)
63         @echo "cGHC_CP               = \"$(GHC_CP)\"" >> $(CONFIG_HS)
64         @echo "cGHC_PERL             = \"$(GHC_PERL)\"" >> $(CONFIG_HS)
65         @echo "cEnableWin32DLLs      = \"$(EnableWin32DLLs)\"" >> $(CONFIG_HS)
66         @echo "cCONTEXT_DIFF         = \"$(CONTEXT_DIFF)\"" >> $(CONFIG_HS)
67         @echo "cHaveLibGmp           = \"$(HaveLibGmp)\"" >> $(CONFIG_HS)
68         @echo "cUSER_WAY_NAMES       = \"$(USER_WAY_NAMES)\"" >> $(CONFIG_HS)
69         @echo "cUSER_WAY_OPTS        = \"$(USER_WAY_OPTS)\"" >> $(CONFIG_HS)
70         @echo "cDEFAULT_TMPDIR       = \"$(DEFAULT_TMPDIR)\"" >> $(CONFIG_HS)
71         @echo done.
72
73 CLEAN_FILES += $(CONFIG_HS)
74
75 # -----------------------------------------------------------------------------
76 #               Set SRCS, HCS, OBJS
77 #
78 # First figure out DIRS, the source sub-directories
79 # Then derive SRCS by looking in them
80 #
81
82 DIRS = \
83   utils basicTypes types hsSyn prelude rename typecheck deSugar coreSyn \
84   specialise simplCore stranal stgSyn simplStg codeGen absCSyn main \
85   profiling parser usageSP cprAnalysis javaGen compMan
86
87 ifeq ($(GhcWithNativeCodeGen),YES)
88 DIRS += nativeGen
89 else
90 SRC_HC_OPTS += -DOMIT_NATIVE_CODEGEN
91 endif
92
93 ifeq ($(GhcWithIlx),YES)
94 DIRS += ilxGen
95 SRC_HC_OPTS += -DILX
96 endif
97
98 #
99 # Canonicalize the GHC version number - assume it is has the form x.yy.[z].
100 #
101 # [First sed substitution gets rid of the '.' - second appends a '0' if the
102 #  'z' portion is missing]
103 #
104 CANON_HC_VERSION=$(shell echo "$(GhcVersion)" | sed -e 's/\.//g;s/^\(...\)$$/\10/g')
105
106 ifeq "$(BootingFromHc)" "YES"
107 # HC files are always from a self-booted compiler
108 ghc_411_at_least = YES
109 else
110 ghc_411_at_least=$(shell if (test $(CANON_HC_VERSION) -ge 4110); then echo YES; else echo NO; fi)
111 endif
112
113 # Only include GHCi if we're bootstrapping with at least version 411
114 ifeq "$(GhcWithInterpreter)" "YES"
115 ifeq "$(ghc_411_at_least)" "YES"
116 SRC_HC_OPTS += -DGHCI
117 DIRS += ghci
118 endif
119 endif
120
121 # Enable code that assumes a MSDOSish subshell. See mk/config.mk.in
122 # for explanatory comment as to what this does.
123 ifeq "$(MinimalUnixDeps)" "YES"
124 SRC_HC_OPTS += -DMINIMAL_UNIX_DEPS
125 ghc_501_at_least = $(shell if (test $(CANON_HC_VERSION) -gt 5000); then echo YES; else echo NO; fi)
126
127 ifneq "$(ghc_501_at_least)" "YES"
128 boot ::
129         $(CP) ../lib/std/cbits/system.c main
130 C_SRCS += main/system.c
131 SRC_CC_OPTS += -I$(GHC_LIB_DIR)/std/cbits
132 SRC_MKDEPENDC_OPTS += -I$(GHC_LIB_DIR)/std/cbits
133 HS_OBJS += main/system.o
134 endif
135 endif
136
137 HS_SRCS := $(foreach dir,$(DIRS),$(wildcard $(dir)/*.lhs) $(wildcard $(dir)/*.hs))
138 HS_SRCS := $(filter-out rename/ParseIface.hs parser/Parser.hs main/ParsePkgConf.hs $(CONFIG_HS), $(HS_SRCS))
139 HS_SRCS += $(CONFIG_HS)
140
141 ifneq "$(BootingFromHc)" "YES"
142 HS_SRCS += rename/ParseIface.hs parser/Parser.hs main/ParsePkgConf.hs
143 endif
144
145 HCS      = $(patsubst %.lhs, %.hc, $(patsubst %.hs, %.hc, $(HS_SRCS)))
146
147 ifeq "$(BootingFromHc)" "YES"
148 HCS     += rename/ParseIface.hc parser/Parser.hc main/ParsePkgConf.hc
149 endif
150
151 HS_OBJS = \
152   $(patsubst %.hc, %.o, $(HCS)) \
153   parser/hschooks.o
154
155 DESTDIR       = $(INSTALL_LIBRARY_DIR_GHC)
156
157 #
158 # Add misc .c helper code (used by the frontend.)
159 #
160 C_SRCS += parser/hschooks.c
161
162 #
163 # Big Fudge to get around inherent problem that Makefile setup
164 # has got with 'mkdependC'.
165
166 SRC_MKDEPENDC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt) -I$(GHC_INCLUDES)
167
168 # -----------------------------------------------------------------------------
169 #               Haskell compilations
170
171 #
172 # Compiler to use for building ghc, use the build tree
173 # driver when booting.
174 #
175 HC=$(GHC)
176
177 #
178 # Use GHC for compiling C bits
179 #
180 ifeq "$(BootingFromHc)" "YES"
181 SRC_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
182 else
183 CC = $(HC)
184 CC_OPTS := $(addprefix -optc, $(CC_OPTS))
185 endif
186
187 # magic from GNU make manual to convert a list of values
188 # into a colon-separated list
189 empty:=
190 space:= $(empty) $(empty)
191
192 SRC_HC_OPTS += \
193   -cpp -fglasgow-exts -Rghc-timing \
194   -I. -IcodeGen -InativeGen -Iparser \
195   -i$(subst $(space),:,$(DIRS)) 
196
197 # We should do this, to avoid the use of an explicit path
198 #       in GHC source files (include "../includes/config.h"
199 # But alas GHC 4.08 (and others for all I know) uses this very
200 # same include path when compiling the .hc files it generates.
201 # Disaster!  Then the hc file sees the GHC 5.02 (or whatever)
202 # include files.   For the moment we've reverted to using
203 # an explicit path in the .hs sources
204 #  -I$(GHC_INCLUDE_DIR) \
205
206 ifneq "$(mingw32_TARGET_OS)" "1"
207 SRC_HC_OPTS += -package concurrent -package posix -package text -package util
208 else
209 SRC_HC_OPTS += -package concurrent -package text -package util
210 endif
211
212 SRC_CC_OPTS += -Iparser -I. -I$(TOP)/includes -O
213 SRC_HC_OPTS += -recomp $(GhcHcOpts)
214 SRC_HC_OPTS += -H16m
215
216 #       Special flags for particular modules
217 #       The standard suffix rule for compiling a Haskell file
218 #       adds these flags to the command line
219
220 # not sure if this is required --SDM
221 main/Main_HC_OPTS               = -fvia-C
222
223 prelude/PrimOp_HC_OPTS          = -no-recomp -H80m
224
225 # because the NCG can't handle the 64-bit math in here
226 prelude/PrelRules_HC_OPTS       = -fvia-C
227
228 rename/ParseIface_HC_OPTS       += -Onot -H45m -fno-warn-incomplete-patterns
229 parser/Parser_HC_OPTS           += -Onot -fno-warn-incomplete-patterns
230 main/ParsePkgConf_HC_OPTS       += -fno-warn-incomplete-patterns
231
232 # The latest GHC version doesn't have a -K option yet, and it doesn't
233 # seem to be necessary anymore for the modules below.
234 ifeq "$(ghc_411_at_least)" "NO"
235 rename/ParseIface_HC_OPTS       += -K2m
236 parser/Parser_HC_OPTS           += -K2m
237 endif
238
239 ifeq "$(TARGETPLATFORM)" "hppa1.1-hp-hpux9"
240 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
241 endif
242
243 utils/StringBuffer_HC_OPTS      = -fvia-C -fno-prune-tydecls
244 utils/Digraph_HC_OPTS           = -fglasgow-exts 
245
246 # flags for PrimPacked:
247 #
248 # -monly-3-regs 
249 #       because it contains a 'ccall strlen', which gets inlined by
250 #       gcc, causing a lack of registers.
251 #
252 utils/PrimPacked_HC_OPTS        = -fvia-C -monly-3-regs
253
254 # ByteCodeItbls uses primops that the NCG doesn't support yet.
255 ghci/ByteCodeItbls_HC_OPTS      = -fvia-C
256 ghci/ByteCodeLink_HC_OPTS       = -fvia-C
257
258 # CSE interacts badly with top-level IORefs (reportedly in DriverState and
259 # DriverMkDepend), causing some of them to be commoned up.  We have a fix for
260 # this in 5.00+, but earlier versions of the compiler will need CSE turned off.
261 # To be on the safe side, we disable CSE in *all* modules with top-level IORefs.
262 compMan/CompManager_HC_OPTS     = -fno-cse
263 ghci/InteractiveUI_HC_OPTS      = -fno-cse
264 main/CmdLineOpts_HC_OPTS        = -fno-cse
265 main/DriverFlags_HC_OPTS        = -fno-cse
266 main/DriverMkDepend_HC_OPTS     = -fno-cse
267 main/DriverPipeline_HC_OPTS     = -fno-cse
268 main/DriverState_HC_OPTS        = -fno-cse
269 main/DriverUtil_HC_OPTS         = -fno-cse
270 main/Finder_HC_OPTS             = -fno-cse
271 main/SysTools_HC_OPTS           = -fno-cse
272
273 # ----------------------------------------------------------------------------
274 #               C compilations
275
276 SRC_C_OPTS     += -O -I. -IcodeGen
277
278
279 # ----------------------------------------------------------------------------
280 #               Generate supporting stuff for prelude/PrimOp.lhs 
281 #               from prelude/primops.txt
282
283 GENPOC=$(TOP)/utils/genprimopcode/genprimopcode
284
285 PRIMOP_BITS=primop-data-decl.hs-incl \
286             primop-tag.hs-incl  \
287             primop-list.hs-incl  \
288             primop-has-side-effects.hs-incl  \
289             primop-out-of-line.hs-incl  \
290             primop-commutable.hs-incl  \
291             primop-needs-wrapper.hs-incl  \
292             primop-can-fail.hs-incl  \
293             primop-strictness.hs-incl  \
294             primop-usage.hs-incl  \
295             primop-primop-info.hs-incl
296
297 ifneq "$(BootingFromHc)" "YES"
298 prelude/PrimOp.lhs prelude/PrimOp.o: $(PRIMOP_BITS)
299 endif
300
301 ifneq "$(BootingFromHc)" "YES"
302 depend :: $(PRIMOP_BITS)
303 endif
304
305 primop-data-decl.hs-incl: prelude/primops.txt
306         $(GENPOC) --data-decl          < $< > $@
307 primop-tag.hs-incl: prelude/primops.txt
308         $(GENPOC) --primop-tag         < $< > $@
309 primop-list.hs-incl: prelude/primops.txt
310         $(GENPOC) --primop-list        < $< > $@
311 primop-has-side-effects.hs-incl: prelude/primops.txt
312         $(GENPOC) --has-side-effects   < $< > $@
313 primop-out-of-line.hs-incl: prelude/primops.txt
314         $(GENPOC) --out-of-line        < $< > $@
315 primop-commutable.hs-incl: prelude/primops.txt
316         $(GENPOC) --commutable         < $< > $@
317 primop-needs-wrapper.hs-incl: prelude/primops.txt
318         $(GENPOC) --needs-wrapper      < $< > $@
319 primop-can-fail.hs-incl: prelude/primops.txt
320         $(GENPOC) --can-fail           < $< > $@
321 primop-strictness.hs-incl: prelude/primops.txt
322         $(GENPOC) --strictness         < $< > $@
323 primop-usage.hs-incl: prelude/primops.txt
324         $(GENPOC) --usage              < $< > $@
325 primop-primop-info.hs-incl: prelude/primops.txt
326         $(GENPOC) --primop-primop-info < $< > $@
327
328
329
330 # ----------------------------------------------------------------------------
331 #               Parsers/lexers
332
333 SRC_HAPPY_OPTS += +RTS -K2m -H16m -RTS  $(GHC_HAPPY_OPTS)
334
335 #-----------------------------------------------------------------------------
336 #               Linking
337
338 SRC_LD_OPTS += -no-link-chk 
339
340 # -----------------------------------------------------------------------------
341 # create ghc-inplace, a convenient way to run ghc from the build tree...
342
343 all :: ghc-inplace
344
345 ghc-inplace : $(HS_PROG)
346         @$(RM) $@
347         echo '#!/bin/sh' >>$@
348         echo exec $(FPTOOLS_TOP_ABS_UNIX)/ghc/compiler/$(HS_PROG) -B$(FPTOOLS_TOP_ABS)/ghc/compiler '"$$@"' >>$@
349         chmod 755 $@
350 ifeq "$(TARGETPLATFORM) and $(MinimalUnixDeps)" "i386-unknown-mingw32 and YES"
351         @$(RM) $@.bat
352         echo "@"$(subst /,\\,$(FPTOOLS_TOP_ABS)/ghc/compiler/$(HS_PROG)) "-B$(FPTOOLS_TOP_ABS)/ghc/compiler %*" >$@.bat
353         chmod 755 $@.bat
354 endif
355
356 CLEAN_FILES += ghc-inplace
357
358 #-----------------------------------------------------------------------------
359 #               install
360
361 # We don't want ghc treated as an ordinary executable,
362 # but put it together with the libraries.
363 # Also don't want any interface files intstalled
364
365 INSTALL_LIBEXECS += $(HS_PROG)
366
367 #-----------------------------------------------------------------------------
368 #               clean
369
370 CLEAN_FILES += $(wildcard */*.$(way_)o */*.$(way_)hi)
371 CLEAN_FILES += $(PRIMOP_BITS)
372
373 # Extra tidy, remove the .hc files (if you've got them).
374 MAINTAINER_CLEAN_FILES += $(wildcard */*.hc) \
375         parser/Parser.info rename/ParseIface.info main/ParsePkgConf.info \
376         parser/Parser.hs rename/ParseIface.hs main/ParsePkgConf.hs
377
378 #-----------------------------------------------------------------------------
379 #               Include target-rule boilerplate
380
381 include $(TOP)/mk/target.mk