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