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