[project @ 2001-08-08 13:21:04 by qrczak]
[ghc-hetmet.git] / ghc / compiler / Makefile
1 # -----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.183 2001/08/08 13:21:04 qrczak 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_FLAGS         = \"$(RAWCPP_FLAGS)\"" >> $(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] or 
100 # x.yy[.date] where date = yyyymmdd
101 #
102 # [First sed substitution gets rid of the '.', second gets rid of the date portion,
103 #  third appends a '0' if the z portion is missing]
104 #
105 CANON_HC_VERSION=$(shell echo "$(GhcVersion)" | sed -e 's/\.//g;s/^\(...\)........$$/\1/g;s/^\(...\)$$/\10/g')
106
107 # 20010625
108
109 ifeq "$(BootingFromHc)" "YES"
110 # HC files are always from a self-booted compiler
111 bootstrapped = YES
112 compiling_with_4xx=NO
113 else
114 bootstrapped = $(shell if (test $(CANON_HC_VERSION) -ge $(ProjectVersionInt)0); then echo YES; else echo NO; fi)
115 compiling_with_4xx = $(shell if (test $(CANON_HC_VERSION) -lt 5000); then echo YES; else echo NO; fi)
116 ghc_502_at_least = $(shell if (test $(CANON_HC_VERSION) -ge 5020); then echo YES; else echo NO; fi)
117 endif
118
119 # Only include GHCi if we're bootstrapping with at least version 411
120 ifeq "$(GhcWithInterpreter)" "YES"
121 ifeq "$(bootstrapped)" "YES"
122 SRC_HC_OPTS += -DGHCI
123 DIRS += ghci
124 endif
125 endif
126
127 # Enable code that assumes a MSDOSish subshell. See mk/config.mk.in
128 # for explanatory comment as to what this does.
129 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
130 ghc_501_at_least = $(shell if (test $(CANON_HC_VERSION) -ge 5010); then echo YES; else echo NO; fi)
131
132 # -----------------------------------------------
133 # GHCi calls the C procedure 'rawSystem'; but alas GHC 4.08 
134 # does not have this.  Everything is fine if you are compiling
135 # GHC with GHC 5.02 or better, but lacking that we have the following
136 # hack: 
137 #       copy rawSystem.c from hslibs/lang/cbits
138 #       and SystemExts.lhs from hslibs/lang
139 #       into main/ (where they'll be compiled and linked with the compiler)
140
141 ifneq "$(ghc_502_at_least)" "YES"
142 C_SRCS += main/rawSystem.c
143 HS_SRCS += main/SystemExts.lhs
144 SRC_CC_OPTS += -I$(GHC_LIB_DIR)/std/cbits
145 SRC_MKDEPENDC_OPTS += -I$(GHC_LIB_DIR)/std/cbits
146 HS_OBJS += main/rawSystem.o
147 main/rawSystem.c : $(FPTOOLS_TOP)/hslibs/lang/cbits/rawSystem.c
148         $(CP) $< main
149 main/SystemExts.lhs: $(FPTOOLS_TOP)/hslibs/lang/SystemExts.lhs
150         $(CP) $< main
151 endif
152 endif
153 #               End of system hack
154 # -----------------------------------------------
155
156 HS_SRCS := $(foreach dir,$(DIRS),$(wildcard $(dir)/*.lhs) $(wildcard $(dir)/*.hs))
157 HS_SRCS := $(filter-out rename/ParseIface.hs parser/Parser.hs main/ParsePkgConf.hs $(CONFIG_HS), $(HS_SRCS))
158 HS_SRCS += $(CONFIG_HS)
159
160 ifneq "$(BootingFromHc)" "YES"
161 HS_SRCS += rename/ParseIface.hs parser/Parser.hs main/ParsePkgConf.hs
162 endif
163
164 HCS      = $(patsubst %.lhs, %.hc, $(patsubst %.hs, %.hc, $(HS_SRCS)))
165
166 ifeq "$(BootingFromHc)" "YES"
167 HCS     += rename/ParseIface.hc parser/Parser.hc main/ParsePkgConf.hc
168 endif
169
170 #
171 # Add misc .c helper code (used by the frontend.)
172 #
173 C_SRCS += parser/hschooks.c
174
175 HS_OBJS = \
176   $(patsubst %.hc, %.o, $(HCS)) \
177   $(patsubst %.c, %.o, $(C_SRCS))
178
179 DESTDIR       = $(INSTALL_LIBRARY_DIR_GHC)
180
181 #
182 # Big Fudge to get around inherent problem that Makefile setup
183 # has got with 'mkdependC'.
184
185 SRC_MKDEPENDC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt) -I$(GHC_INCLUDE_DIR)
186
187 # -----------------------------------------------------------------------------
188 #               Haskell compilations
189
190 #
191 # Compiler to use for building ghc, use the build tree
192 # driver when booting.
193 #
194 HC=$(GHC)
195
196 #
197 # Use GHC for compiling C bits
198 #
199 ifeq "$(BootingFromHc)" "YES"
200 SRC_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
201 else
202 CC = $(HC)
203 CC_OPTS := $(addprefix -optc, $(CC_OPTS))
204 endif
205
206 # magic from GNU make manual to convert a list of values
207 # into a colon-separated list
208 empty:=
209 space:= $(empty) $(empty)
210
211 SRC_HC_OPTS += \
212   -cpp -fglasgow-exts -Rghc-timing \
213   -I. -IcodeGen -InativeGen -Iparser \
214   -i$(subst $(space),:,$(DIRS)) 
215
216 # Omitted:      -I$(GHC_INCLUDE_DIR)
217 # We should have -I$(GHC_INCLUDE_DIR) in SRC_HC_OPTS, 
218 # to avoid the use of an explicit path in GHC source files
219 #       (include "../includes/config.h"
220 # But alas GHC 4.08 (and others for all I know) uses this very
221 # same include path when compiling the .hc files it generates.
222 # Disaster!  Then the hc file sees the GHC 5.02 (or whatever)
223 # include files.   For the moment we've reverted to using
224 # an explicit path in the .hs sources
225
226 ifneq "$(mingw32_TARGET_OS)" "1"
227 SRC_HC_OPTS += -package concurrent -package posix -package text -package util
228 else
229 SRC_HC_OPTS += -package concurrent -package text -package util
230 endif
231
232 SRC_CC_OPTS += -Iparser -I. -I$(TOP)/includes -O
233 SRC_HC_OPTS += -recomp $(GhcHcOpts)
234 SRC_HC_OPTS += -H16M
235
236 #       Special flags for particular modules
237 #       The standard suffix rule for compiling a Haskell file
238 #       adds these flags to the command line
239
240 # not sure if this is required --SDM
241 main/Main_HC_OPTS               = -fvia-C
242
243 prelude/PrimOp_HC_OPTS          = -no-recomp -H80m
244
245 # because the NCG can't handle the 64-bit math in here
246 prelude/PrelRules_HC_OPTS       = -fvia-C
247
248 rename/ParseIface_HC_OPTS       += -Onot -H45m -fno-warn-incomplete-patterns
249 parser/Parser_HC_OPTS           += -Onot -fno-warn-incomplete-patterns
250 main/ParsePkgConf_HC_OPTS       += -fno-warn-incomplete-patterns
251
252 # The latest GHC version doesn't have a -K option yet, and it doesn't
253 # seem to be necessary anymore for the modules below.
254 ifeq "$(compiling_with_4xx)" "YES"
255 rename/ParseIface_HC_OPTS       += -K2m
256 parser/Parser_HC_OPTS           += -K2m
257 endif
258
259 ifeq "$(TARGETPLATFORM)" "hppa1.1-hp-hpux9"
260 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
261 endif
262
263 utils/StringBuffer_HC_OPTS      = -fvia-C -fno-prune-tydecls
264 utils/Digraph_HC_OPTS           = -fglasgow-exts 
265
266 # flags for PrimPacked:
267 #
268 # -monly-3-regs 
269 #       because it contains a 'ccall strlen', which gets inlined by
270 #       gcc, causing a lack of registers.
271 #
272 utils/PrimPacked_HC_OPTS        = -fvia-C -monly-3-regs
273
274 # ByteCodeItbls uses primops that the NCG doesn't support yet.
275 ghci/ByteCodeItbls_HC_OPTS      = -fvia-C
276 ghci/ByteCodeLink_HC_OPTS       = -fvia-C
277
278 # CSE interacts badly with top-level IORefs (reportedly in DriverState and
279 # DriverMkDepend), causing some of them to be commoned up.  We have a fix for
280 # this in 5.00+, but earlier versions of the compiler will need CSE turned off.
281 # To be on the safe side, we disable CSE in *all* modules with top-level IORefs.
282 compMan/CompManager_HC_OPTS     = -fno-cse
283 ghci/InteractiveUI_HC_OPTS      = -fno-cse
284 main/CmdLineOpts_HC_OPTS        = -fno-cse
285 main/DriverFlags_HC_OPTS        = -fno-cse
286 main/DriverMkDepend_HC_OPTS     = -fno-cse
287 main/DriverPipeline_HC_OPTS     = -fno-cse
288 main/DriverState_HC_OPTS        = -fno-cse
289 main/DriverUtil_HC_OPTS         = -fno-cse
290 main/Finder_HC_OPTS             = -fno-cse
291 main/SysTools_HC_OPTS           = -fno-cse
292
293 # The #include is vital for the via-C route, else the C
294 # compiler doesn't realise that the stcall foreign imports are indeed
295 # stdcall, and doesn't generate the Foo@8 name for them
296 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
297 main/SysTools_HC_OPTS           += '-\#include <windows.h>'
298 endif
299
300 # ----------------------------------------------------------------------------
301 #               C compilations
302
303 SRC_C_OPTS     += -O -I. -IcodeGen
304
305
306 # ----------------------------------------------------------------------------
307 #               Generate supporting stuff for prelude/PrimOp.lhs 
308 #               from prelude/primops.txt
309
310 CLEAN_FILES += prelude/primops.txt
311
312 GENPOC=$(TOP)/utils/genprimopcode/genprimopcode
313
314 PRIMOP_BITS=primop-data-decl.hs-incl \
315             primop-tag.hs-incl  \
316             primop-list.hs-incl  \
317             primop-has-side-effects.hs-incl  \
318             primop-out-of-line.hs-incl  \
319             primop-commutable.hs-incl  \
320             primop-needs-wrapper.hs-incl  \
321             primop-can-fail.hs-incl  \
322             primop-strictness.hs-incl  \
323             primop-usage.hs-incl  \
324             primop-primop-info.hs-incl
325
326 ifneq "$(BootingFromHc)" "YES"
327 prelude/PrimOp.lhs prelude/PrimOp.o: $(PRIMOP_BITS)
328 endif
329
330 ifneq "$(BootingFromHc)" "YES"
331 depend :: $(PRIMOP_BITS)
332 endif
333
334 primop-data-decl.hs-incl: prelude/primops.txt
335         $(GENPOC) --data-decl          < $< > $@
336 primop-tag.hs-incl: prelude/primops.txt
337         $(GENPOC) --primop-tag         < $< > $@
338 primop-list.hs-incl: prelude/primops.txt
339         $(GENPOC) --primop-list        < $< > $@
340 primop-has-side-effects.hs-incl: prelude/primops.txt
341         $(GENPOC) --has-side-effects   < $< > $@
342 primop-out-of-line.hs-incl: prelude/primops.txt
343         $(GENPOC) --out-of-line        < $< > $@
344 primop-commutable.hs-incl: prelude/primops.txt
345         $(GENPOC) --commutable         < $< > $@
346 primop-needs-wrapper.hs-incl: prelude/primops.txt
347         $(GENPOC) --needs-wrapper      < $< > $@
348 primop-can-fail.hs-incl: prelude/primops.txt
349         $(GENPOC) --can-fail           < $< > $@
350 primop-strictness.hs-incl: prelude/primops.txt
351         $(GENPOC) --strictness         < $< > $@
352 primop-usage.hs-incl: prelude/primops.txt
353         $(GENPOC) --usage              < $< > $@
354 primop-primop-info.hs-incl: prelude/primops.txt
355         $(GENPOC) --primop-primop-info < $< > $@
356
357
358
359 # ----------------------------------------------------------------------------
360 #               Parsers/lexers
361
362 SRC_HAPPY_OPTS += +RTS -K2m -H16m -RTS  $(GHC_HAPPY_OPTS)
363
364 #-----------------------------------------------------------------------------
365 #               Linking
366
367 SRC_LD_OPTS += -no-link-chk 
368
369 # -----------------------------------------------------------------------------
370 # create ghc-inplace, a convenient way to run ghc from the build tree...
371
372 all :: ghc-inplace
373
374 ghc-inplace : $(HS_PROG)
375         @$(RM) $@
376         echo '#!/bin/sh' >>$@
377         echo exec $(FPTOOLS_TOP_ABS_UNIX)/ghc/compiler/$(HS_PROG) -B$(FPTOOLS_TOP_ABS) '"$$@"' >>$@
378         chmod 755 $@
379 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
380         @$(RM) $@.bat
381         echo "@"$(subst /,\\,$(FPTOOLS_TOP_ABS)/ghc/compiler/$(HS_PROG)) "-B$(FPTOOLS_TOP_ABS) %1 %2 %3 %4 %5 %6 %7 %8 %9" >$@.bat
382         chmod 755 $@.bat
383 endif
384
385 CLEAN_FILES += ghc-inplace
386
387 #-----------------------------------------------------------------------------
388 #               install
389
390 # We don't want ghc treated as an ordinary executable,
391 # but put it together with the libraries.
392 # Also don't want any interface files intstalled
393
394 INSTALL_LIBEXECS += $(HS_PROG)
395
396 #-----------------------------------------------------------------------------
397 #               clean
398
399 CLEAN_FILES += $(wildcard */*.$(way_)o */*.$(way_)hi)
400 CLEAN_FILES += $(PRIMOP_BITS)
401
402 # Extra tidy, remove the .hc files (if you've got them).
403 MAINTAINER_CLEAN_FILES += $(wildcard */*.hc) \
404         parser/Parser.info rename/ParseIface.info main/ParsePkgConf.info \
405         parser/Parser.hs rename/ParseIface.hs main/ParsePkgConf.hs
406
407 #-----------------------------------------------------------------------------
408 #               Include target-rule boilerplate
409
410 include $(TOP)/mk/target.mk