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