remove unused $(HscIfaceFileVersion)
[ghc-hetmet.git] / mk / config.mk.in
1 #                                                                -*-makefile-*-
2 # @configure_input@
3 #
4 ################################################################################
5 #
6 # config.mk.in
7 #
8 # This file supplies defaults for many tweakable build configuration
9 # options.  Some of the defaults are filled in by the autoconf-generated
10 # configure script.
11 #
12 # DO NOT EDIT THIS FILE!
13 #
14 #       - config.mk is auto-generated from config.mk.in by configure.
15 #         This may be triggered automatically by the build system (say
16 #         if config.mk.in has changed more recently than config.mk),
17 #         so if you edit config.mk your changes will be spammed.
18 #
19 #       - Settings in this file may be overriden by giving replacement
20 #         definitions in build.mk.  See build.mk.sample for a good
21 #         starting point for a build.mk file.
22 #
23 #         If you don't have a build.mk file then you get defaults for everything.
24 #         The defaults should provide a reasonable vanilla build.
25
26 # TOP: the top of the fptools hierarchy, absolute path.
27 # On Windows this is a c:/foo/bar style path.
28 TOP             = @hardtop@
29
30 include $(TOP)/mk/project.mk
31
32 ################################################################################
33 #
34 #               Global configuration options
35 #
36 ################################################################################
37
38 # BootingFromHc - build GHC and the libraries from .hc files?
39 BootingFromHc = @BootingFromHc@
40
41 # BootingFromUnregisterisedHc - treat .hc files as containing unregisterised
42 # rather than registerised code, i.e., disable the mangler?
43 BootingFromUnregisterisedHc = @BootingFromUnregisterisedHc@
44
45 NO_INCLUDE_DEPS = NO
46 NO_INCLUDE_PKGDATA = NO
47
48 # Should we build latex docs?
49 LATEX_DOCS = NO
50
51 # Mac OS X deployment target (to cross-compile for older OS versions)
52 #
53 MACOSX_DEPLOYMENT_VERSION = @MACOSX_DEPLOYMENT_VERSION@
54 MACOSX_DEPLOYMENT_SDK = @MACOSX_DEPLOYMENT_SDK@
55
56 ifneq "$(MACOSX_DEPLOYMENT_VERSION)" ""
57 MACOSX_DEPLOYMENT_CC_OPTS = -mmacosx-version-min=$(MACOSX_DEPLOYMENT_VERSION) \
58                             -isysroot $(MACOSX_DEPLOYMENT_SDK) \
59                             --no-builtin-fprintf
60 MACOSX_DEPLOYMENT_LD_OPTS = -mmacosx-version-min=$(MACOSX_DEPLOYMENT_VERSION) \
61                             -Wl,-syslibroot,$(MACOSX_DEPLOYMENT_SDK)
62 # We don't extend SRC_CC_OPTS and friends here directly, as (a) they may get
63 # overwritten in build.mk and (b) we must not use the deployment options in
64 # stage 1 or we get a linker error if the bootstrap compiler is for a more 
65 # recent OS version.
66 #
67 # We need --no-builtin-fprintf, as the use of the builtin function optimisation
68 # for fprintf together with #include "PosixSource" in the RTS leads to the
69 # use of fwrite$UNIX2003 (with GCC 4.0.1 on Mac OS X 10.5.2).
70 endif
71
72 ################################################################################
73 #
74 # Variables that control how the compiler itself is built
75 #
76 ################################################################################
77
78 # The compiler used to build GHC is $(GHC).  To change the actual compiler
79 # used, re-configure with --with-ghc=<path-to-ghc>.
80
81 # Extra ways in which to build the compiler (for example, you might want to
82 # build a profiled compiler so you can see where it spends its time)
83 GhcCompilerWays=
84
85 # Extra option flags to pass to the compiler that compiles the compiler
86 # (Ones that are essential are wired into compiler/Makefile)
87 # Typical options to use here:
88 #
89 #       -DDEBUG         include debugging code and assertions (will make the
90 #                       compiler slower and produce debugging output, but useful
91 #                       for development)
92 #
93 #       -dcore-lint     check the types after every pass of the compiler;
94 #                       a pretty strong internal check of the compiler being
95 #                       used to compile GHC.  Useful when bootstrapping.
96 GhcHcOpts=-Rghc-timing
97
98 # Extra options added to specific stages of the compiler bootstrap.
99 # These are placed later on the command line, and may therefore
100 # override options from $(GhcHcOpts).
101 GhcStage1HcOpts=
102 GhcStage2HcOpts=-O2
103 GhcStage3HcOpts=-O2
104
105 GhcProfiled=NO
106 GhcDebugged=NO
107 GhcLibProfiled=$(if $(filter p,$(GhcLibWays)),YES,NO)
108
109 # Build shared and/or static libs?
110 BuildSharedLibs=@BuildSharedLibs@
111 # ToDo later:
112 # BuildStaticLibs=@BuildStaticLibs@
113
114 # Build a compiler that will build *unregisterised* libraries and
115 # binaries by default.  Unregisterised code is supposed to compile and
116 # run without any support for architecture-specific assembly mangling,
117 # register assignment or tail-calls, and is therefore a good way to get
118 # started when porting GHC to new architectures.
119 #
120 # If this is set to NO, you can still use the unregisterised way
121 # (way 'u') to get unregisterised code, but the default way will be
122 # registerised.
123 #
124 # NOTE: the stage1 compiler will be a registerised binary (assuming
125 # the compiler you build with is generating registerised binaries), but
126 # the stage2 compiler will be an unregisterised binary.
127 #
128 ifneq "$(findstring $(HostArch_CPP), alpha hppa)" ""
129 GhcUnregisterised=YES
130 else
131 GhcUnregisterised=NO
132 endif
133
134 # Build a compiler with a native code generator backend
135 # (as well as a C backend)
136 #
137 # Target platforms supported:
138 #   i386, powerpc
139 #   AIX is not supported 
140 ArchSupportsNCG=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc sparc)))
141 OsSupportsNCG=$(strip $(patsubst $(HostOS_CPP), YES, $(patsubst aix,,$(HostOS_CPP))))
142
143 # lazy test, because $(GhcUnregisterised) might be set in build.mk later.
144 GhcWithNativeCodeGen=$(strip\
145     $(if $(filter YESYESNO,\
146                   $(OsSupportsNCG)$(ArchSupportsNCG)$(GhcUnregisterised)),YES,NO))
147
148 HaveLibDL = @HaveLibDL@
149
150 # ArchSupportsSMP should be set iff there is support for that arch in
151 # includes/SMP.h
152 ArchSupportsSMP=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 sparc powerpc)))
153
154 # lazy test, because $(GhcUnregisterised) might be set in build.mk later.
155 GhcWithSMP=$(strip $(if $(filter YESNO, $(ArchSupportsSMP)$(GhcUnregisterised)),YES,NO))
156
157 # Whether to include GHCi in the compiler.  Depends on whether the RTS linker
158 # has support for this OS/ARCH combination.
159
160 OsSupportsGHCi=$(strip $(patsubst $(HostOS_CPP), YES, $(findstring $(HostOS_CPP), mingw32 cygwin32 linux solaris2 freebsd netbsd openbsd darwin)))
161 ArchSupportsGHCi=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc sparc sparc64)))
162
163 ifeq "$(OsSupportsGHCi)$(ArchSupportsGHCi)" "YESYES"
164 GhcWithInterpreter=YES
165 else 
166 GhcWithInterpreter=NO
167 endif
168
169 # GhcEnableTablesNextToCode tells us whether the target architecture
170 # supports placing info tables directly before the entry code
171 # (see TABLES_NEXT_TO_CODE in the RTS).  Whether we actually compile for
172 # TABLES_NEXT_TO_CODE depends on whether we're building unregisterised
173 # code or not, which may be decided by options to the compiler later.
174 ifneq "$(findstring $(TargetArch_CPP)X, ia64X powerpc64X)" ""
175 GhcEnableTablesNextToCode=NO
176 else
177 GhcEnableTablesNextToCode=YES
178 endif
179
180 # Whether to use libffi for adjustors (foreign import "wrapper") or
181 # not.  If we have built-in support (rts/Adjustor.c) then we use that,
182 # otherwise we fall back on libffi, which is slightly slower.
183 ArchHasAdjustorSupport=$(strip $(if $(findstring $(HostArch_CPP),i386 x86_64 alpha powerpc ia64,),YES,NO))
184 ifeq "$(ArchHasAdjustorSupport)" "YES"
185 UseLibFFIForAdjustors=NO
186 else
187 UseLibFFIForAdjustors=YES
188 endif
189
190 # On Windows we normally want to make a relocatable bindist, to we
191 # ignore flags like libdir
192 ifeq "$(Windows)" "YES"
193 RelocatableBuild = YES
194 else
195 RelocatableBuild = NO
196 endif
197
198 # When building bindists we set this to yes so that the binaries are as
199 # portable as possible.
200 BeConservative = NO
201
202 #
203 # Building various ways?
204 # (right now, empty if not).
205 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
206 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
207
208 #------------------------------------------------------------------------------
209 # Options for Libraries
210
211 # Which directory (in libraries/) contains the integer library?
212 INTEGER_LIBRARY=integer-gmp
213
214 # We build the libraries at least the "vanilla" way (way "v")
215 GhcLibWays = v
216
217 # In addition to the normal sequential way, the default is to also build
218 # profiled prelude libraries unless we are booting from .hc files
219 ifneq "$(BootingFromHc)" "YES"
220 GhcLibWays += p
221 endif
222
223 ifeq "$(BuildSharedLibs)" "YES"
224 GhcLibWays += dyn
225 endif
226
227 # In addition, the RTS is built in some further variations.  Ways that
228 # make sense here:
229
230 #   thr         : threaded
231 #   thr_p       : threaded profiled
232 #   debug       : debugging (compile with -g for the C compiler, and -DDEBUG)
233 #   debug_p     : debugging profiled
234 #   thr_debug   : debugging threaded
235 #   thr_debug_p : debugging threaded profiled
236 #   t           : ticky-ticky profiling
237 #   debug_t     : debugging ticky-ticky profiling
238 #   l           : event logging
239 #   thr_l       : threaded and event logging
240 #   thr_debug_l : threaded and debugging and event logging
241 #
242 GhcRTSWays=l
243
244 # Usually want the debug version
245 ifeq "$(BootingFromHc)" "NO"
246 GhcRTSWays += debug 
247 endif
248
249 ifeq "$(BuildSharedLibs)" "YES"
250 GhcRTSWays += dyn debug_dyn thr_dyn thr_debug_dyn
251 endif
252
253 # Want the threaded versions unless we're unregisterised
254 # Defer the check until later by using $(if..), because GhcUnregisterised might
255 # be set in build.mk, which hasn't been read yet.
256 GhcRTSWays += $(if $(findstring NO, $(GhcUnregisterised)),thr thr_debug thr_l,)
257 GhcRTSWays += $(if $(findstring p, $(GhcLibWays)),$(if $(findstring NO, $(GhcUnregisterised)),thr_p,),)
258
259 # We can only build GHCi threaded if we have a threaded RTS:
260 GhcThreaded = $(if $(findstring thr,$(GhcRTSWays)),YES,NO)
261
262 # Option flags to pass to GHC when it's compiling modules in
263 # fptools/libraries.  Typically these are things like -O or
264 # -dcore-lint or -H32m.  The ones that are *essential* are wired into
265 # the build system.
266 #
267 #       -O(2) is pretty desirable, otherwise no inlining of prelude
268 #               things (incl "+") happens when compiling with this compiler
269 #
270 #       -XGenerics switches on generation of support code for 
271 #               derivable type classes.  This is now off by default,
272 #               but we switch it on for the libraries so that we generate
273 #               the code in case someone importing wants it
274
275 GhcLibHcOpts=-O2 -XGenerics
276
277 # Win32 only: Enable the RTS and libraries to be built as DLLs
278 DLLized=@EnableWin32DLLs@
279
280 # Strip local symbols from libraries?  This can make the libraries smaller,
281 # but makes debugging somewhat more difficult.  Doesn't work with all ld's.
282 #
283 StripLibraries=NO
284
285 # These are the URL patterns that Haddock uses to generate the "Source
286 # File" links on each page.
287 PackageSourceURL = http://darcs.haskell.org/packages/$(PACKAGE)/%{FILE}
288
289 # ----------------------------------------------------------------------------
290 # Object-file splitting
291 #
292 #       Set SplitObjs=YES or NO in your build.mk
293 #
294 #       Don't use -split-objs in in GhcLibHcOpts, because the build
295 #               system needs to do other special magic if you are
296 #               doing object-file splitting
297
298 ArchSupportsSplitObjs=$(strip $(if $(filter $(TargetArch_CPP),i386 x86_64 powerpc sparc),YES,NO))
299
300 # lazy test, so that $(GhcUnregisterised) can be set in build.mk
301 SupportsSplitObjs=$(strip $(if $(filter YES,$(ArchSupportsSplitObjs)),\
302                     $(if $(filter NO,$(BootingFromHc)),\
303                       $(if $(filter NO,$(GhcUnregisterised)),\
304                         YES,\
305                         NO),\
306                       NO),\
307                     NO))
308
309 # By default, enable SplitObjs for the libraries if this build supports it
310 SplitObjs=$(SupportsSplitObjs)
311
312 # Math library
313 LIBM=@LIBM@
314
315 # .NET interop support?
316 #
317 DotnetSupport=NO
318
319 # Build unix package?
320 #
321 GhcLibsWithUnix=@GhcLibsWithUnix@
322
323 # ----------------------------------------------------------------------------
324 # Options for GHC's RTS
325
326 # For an optimised RTS (you probably don't want to change these; we build
327 # a debugging RTS by default now.  Use -debug to get it).
328 GhcRtsHcOpts=-optc-O2
329 GhcRtsCcOpts=-fomit-frame-pointer
330
331 # Include the front panel code?  Needs GTK+.
332 GhcRtsWithFrontPanel = NO
333
334 # Include support for CPU performance counters via the PAPI library in the RTS?
335 # (PAPI: http://icl.cs.utk.edu/papi/)
336 GhcRtsWithPapi = NO
337 PapiLibDir=
338 PapiIncludeDir=
339
340 ################################################################################
341 #
342 #               Paths (see paths.mk)
343 #
344 ################################################################################
345
346 # Directory used by GHC (and possibly other tools) for storing
347 # temporary files.  If your TMPDIR isn't big enough, either override
348 # this in build.mk or set your environment variable "TMPDIR" to point
349 # to somewhere with more space.  (TMPDIR=. is a good choice).
350
351 # DEFAULT_TMPDIR isn't called TMPDIR because GNU make tends to
352 # override an environment variable with the value of the make variable
353 # of the same name (if it exists) when executing sub-processes, so
354 # setting the TMPDIR env var would have no effect in the build tree.
355
356 DEFAULT_TMPDIR          = /tmp
357 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
358 DEFAULT_TMPDIR          = /C/TEMP
359 endif
360 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
361 DEFAULT_TMPDIR          = /C/TEMP
362 endif
363
364 BIN_DIST_TOPDIR_ABS=$(TOP)
365 BIN_DIST_DIR=$(BIN_DIST_TOPDIR_ABS)/$(BIN_DIST_NAME)
366
367 BIN_DIST_NAME=ghc-$(ProjectVersion)
368 BIN_DIST_TAR=$(TOP)/$(BIN_DIST_NAME)-$(TARGETPLATFORM).tar
369 BIN_DIST_TAR_BZ2=$(BIN_DIST_TAR).bz2
370 BIN_DIST_PREP_DIR=$(TOP)/bindist-prep
371 BIN_DIST_PREP=$(BIN_DIST_PREP_DIR)/$(BIN_DIST_NAME)
372 BIN_DIST_LIST=$(TOP)/bindist-list
373
374 WINDOWS_INSTALLER_BASE = ghc-$(ProjectVersion)-i386-windows
375 WINDOWS_INSTALLER = $(WINDOWS_INSTALLER_BASE)$(exeext)
376
377 # Definition of installation directories, we don't use half of these, but since
378 # the configure script has them on offer while passing through, we might as well
379 # set them. Note that we have to be careful, because the GNU coding standards
380 # have changed a bit over the course of time, and autoconf development reflects
381 # this.
382 #
383 # A little bit of history regarding autoconf and GNU coding standards, use this
384 # as a cheat-sheet for the stuff below:
385 #
386 # variable    | default < 2.60     | default >= 2.60
387 # ------------+--------------------+--------------------------------------
388 # exec_prefix | ${prefix}          | ${prefix}
389 # libdir      | ${exec_prefix}/lib | ${exec_prefix}/lib
390 # datarootdir | NONE!              | ${prefix}/share
391 # datadir     | ${prefix}/share    | ${datarootdir}
392 # infodir     | ${prefix}/info     | ${datarootdir}/info
393 # mandir      | ${prefix}/man      | ${datarootdir}/man
394 # docdir      | NONE!              | ${datarootdir}/doc/${PACKAGE_TARNAME}
395 # htmldir     | NONE!              | ${docdir}
396 # dvidir      | NONE!              | ${docdir}
397 # pdfdir      | NONE!              | ${docdir}
398 # psdir       | NONE!              | ${docdir}
399 #
400 # NOTE: The default e.g. ${docdir} above means that autoconf substitutes the
401 # string "${docdir}", not the value of docdir! This is crucial for the GNU
402 # coding standards.
403
404 # This gets used in the default docdir when autoconf >= 2.60 is used
405 PACKAGE_TARNAME := @PACKAGE_TARNAME@
406
407 prefix          := @prefix@
408
409 # New autoconf (>= 2.60?) make a configure with a --datarootdir=DIR flag.
410 # However, in order to support older autoconf's we don't use it.
411 # datarootdir is set lower down instead.
412 # But, as datadir is defined in terms of datarootdir, we also need to
413 # set it to the value (if any) that configure gives it here.
414 datarootdir     := @datarootdir@
415
416 exec_prefix     := @exec_prefix@
417 bindir          := @bindir@
418 datadir0        := @datadir@
419 libdir0         := @libdir@
420 includedir      := @includedir@
421 mandir          := @mandir@
422 dynlibdir       := @libdir@
423
424 ifeq "$(RelocatableBuild)" "YES"
425
426 # Hack: our directory layouts tend to be different on Windows, so
427 # hack around configure's bogus assumptions here.
428 datarootdir := $(prefix)
429 datadir     := $(prefix)/lib
430 libdir      := $(prefix)/lib
431
432 docdir    := $(prefix)/doc
433 htmldir   := $(docdir)
434 dvidir    := $(docdir)
435 pdfdir    := $(docdir)
436 psdir     := $(docdir)
437
438 else
439
440 # Unix: override libdir and datadir to put ghc-specific stuff in
441 # a subdirectory with the version number included.
442 #
443 # datadir is set to libdir here as GHC needs package.conf and unlit
444 # to be in the same place (and things like ghc-pkg need to agree on
445 # where package.conf is, so we just set it globally).
446 #
447 datarootdir := $(datadir0)
448 libdir      := $(libdir0)/ghc-$(ProjectVersion)
449 datadir     := $(libdir)
450
451 # New autoconf (>= 2.60?) make a configure with --docdir=DIR etc flags.
452 # However, in order to support older autoconf's we don't use them.
453
454 #docdir    := @docdir@
455 #htmldir   := @htmldir@
456 #dvidir    := @dvidir@
457 #pdfdir    := @pdfdir@
458 #psdir     := @psdir@
459
460 docdir    := $(datarootdir)/doc/ghc
461 htmldir   := $(docdir)
462 dvidir    := $(docdir)
463 pdfdir    := $(docdir)
464 psdir     := $(docdir)
465
466 endif # Windows
467
468 headerdir := $(libdir)/include
469
470 # Default place for putting interface files is $(libdir)
471 # (overriden for packages in package.mk)
472 ifacedir                = $(libdir)
473
474 # NOTE: by intention, libexecdir and libdir point to 
475 # the same place.
476 #  => Only way to override this is to set libexecdir= on the command line.
477 #     (NOTE: configure script setting is ignored).
478 libexecdir              = $(libdir)
479
480 #-----------------------------------------------------------------------------
481 # install configuration
482
483 #
484 # Set this to have files installed with a specific owner
485 #
486 INSTALL_OWNER =
487
488
489 # Set this to have files installed with a specific group
490 #
491 INSTALL_GROUP =
492
493 #
494 # Invocations of `install' for the four different classes
495 # of targets:
496 #
497 INSTALL_PROGRAM = $(INSTALL) -m 755
498 INSTALL_SCRIPT  = $(INSTALL) -m 755
499 INSTALL_SHLIB   = $(INSTALL) -m 755
500 INSTALL_DATA    = $(INSTALL) -m 644
501 INSTALL_HEADER  = $(INSTALL) -m 644
502 INSTALL_MAN     = $(INSTALL) -m 644
503 INSTALL_DIR     = $(MKDIRHIER)
504
505 #
506 # runhaskell and hsc2hs are special, in that other compilers besides
507 # GHC might provide them.  Systems with a package manager often come
508 # with tools to manage this kind of clash, e.g. RPM's
509 # update-alternatives.  When building a distribution for such a system,
510 # we recommend setting both of the following to 'YES'.
511 #
512 # NO_INSTALL_RUNHASKELL = YES
513 # NO_INSTALL_HSC2HS     = YES
514 #
515 # NB. we use negative tests here because for binary-distributions we cannot
516 # test build-time variables at install-time, so they must default to on.
517
518 # -----------------------------------------------------------------------------
519 # Utilities programs: flags 
520
521 # If you want to give any standard flags to pretty much any utility
522 # (see utils.mk for a complete list), by adding a line here
523 #
524 #       SRC_P_OPTS += ...
525 #
526 # where P is the utility. For example, to add -O to all Haskell
527 # compilations, 
528 #
529 #       SRC_HC_OPTS += -O
530
531 SRC_HC_OPTS += -H32m -O
532
533 # These flags make flex 8-bit
534 SRC_FLEX_OPTS   += -8
535
536 # Default fptools options for dllwrap.
537 SRC_BLD_DLL_OPTS += --target=i386-mingw32
538
539 # Flags for CPP when running GreenCard on .pgc files
540 GC_CPP_OPTS += -P -E -x c -traditional -D__GLASGOW_HASKELL__
541
542
543 # -----------------------------------------------------------------------------
544 # Names of programs in the GHC tree
545 #
546 #      xxx_PGM          the name of an executable, without the path
547 #      xxx              the executable relative to the current dir
548
549 GHC_UNLIT_PGM           = unlit$(exeext)
550 GHC_HP2PS_PGM           = hp2ps$(exeext)
551 GHC_GHCTAGS_PGM         = ghctags$(exeext)
552 GHC_HSC2HS_PGM          = hsc2hs$(exeext)
553 GHC_TOUCHY_PGM          = touchy$(exeext)
554 GHC_MANGLER_PGM         = ghc-asm
555 GHC_SPLIT_PGM           = ghc-split
556 GHC_SYSMAN_PGM          = SysMan
557 GHC_GENPRIMOP_PGM       = genprimopcode$(exeext)
558 GHC_GENAPPLY_PGM        = genapply$(exeext)
559 GHC_CABAL_PGM           = ghc-cabal$(exeext)
560 GHC_PKG_PGM             = ghc-pkg$(exeext)
561 GHC_MKDEPENDC_PGM       = mkdependC
562 GHC_LTX_PGM             = ltx$(exeext)
563 GHC_MKDIRHIER_PGM       = mkdirhier
564 GHC_LNDIR_PGM           = lndir
565 GHC_DUMMY_GHC_PGM       = dummy-ghc$(exeext)
566
567 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
568 GHC_CP                  = "xcopy /y"
569 GHC_PERL                = perl
570 else
571 GHC_CP                  = $(CP)
572 GHC_PERL                = $(PERL)
573 endif
574
575 HP2PS                   = $(GHC_HP2PS_DIR)/$(GHC_HP2PS_PGM)
576 MANGLER                 = $(INPLACE_LIB)/$(GHC_MANGLER_PGM)
577 SPLIT                   = $(INPLACE_LIB)/$(GHC_SPLIT_PGM)
578 SYSMAN                  = $(GHC_SYSMAN_DIR)/$(GHC_SYSMAN_PGM)
579 LTX                     = $(GHC_LTX_DIR)/$(GHC_LTX_PGM)
580 LNDIR                   = $(GHC_LNDIR_DIR)/$(GHC_LNDIR_PGM)
581
582 UNLIT                   = $(INPLACE_LIB)/$(GHC_UNLIT_PGM)
583 TOUCHY                  = $(INPLACE_LIB)/$(GHC_TOUCHY_PGM)
584 MKDIRHIER               = $(INPLACE_BIN)/$(GHC_MKDIRHIER_PGM)
585 MKDEPENDC               = $(INPLACE_BIN)/$(GHC_MKDEPENDC_PGM)
586 GHC_CABAL_INPLACE       = $(INPLACE_BIN)/$(GHC_CABAL_PGM)
587 GENAPPLY_INPLACE        = $(INPLACE_BIN)/$(GHC_GENAPPLY_PGM)
588 GHC_PKG_INPLACE         = $(INPLACE_BIN)/$(GHC_PKG_PGM)
589 GHCTAGS_INPLACE         = $(INPLACE_BIN)/$(GHC_GHCTAGS_PGM)
590 HSC2HS_INPLACE          = $(INPLACE_BIN)/$(GHC_HSC2HS_PGM)
591 GENPRIMOP_INPLACE       = $(INPLACE_BIN)/$(GHC_GENPRIMOP_PGM)
592 DUMMY_GHC_INPLACE       = $(INPLACE_BIN)/$(GHC_DUMMY_GHC_PGM)
593
594 GENERATED_FILE  = chmod a-w
595 EXECUTABLE_FILE = chmod +x
596
597 #-----------------------------------------------------------------------------
598 # Haskell compilers and mkdependHS
599
600 # $(GHC), $(HBC) and $(NHC) point to installed versions of the relevant
601 # compilers, if available.
602 #
603 # $(HC) is a generic Haskell 98 compiler, set to $(GHC) by default.
604 # $(MKDEPENDHS) is the Haskell dependency generator (ghc -M).
605 #
606 # NOTE: Don't override $(GHC) in build.mk, use configure --with-ghc instead
607 # (because the version numbers have to be calculated).
608
609 GHC := @WithGhc@
610 # If we have a make dependency on c:/ghc/ghc, and the file is actually
611 # called c:/ghc/ghc.exe, then make will think that ghc doesn't exist
612 # and that it doesn't know how to create it.
613 ifneq "$(wildcard $(GHC).exe)" ""
614 GHC := $(GHC).exe
615 endif
616
617 GhcDir          = $(dir $(GHC))
618
619 # Set to YES if $(GHC) has the editline package installed
620 GhcHasEditline  = @GhcHasEditline@
621
622 HBC             = @HBC@
623 NHC             = @NHC@
624
625 # Sometimes we want to invoke ghc from the build tree in different
626 # places (eg. it's handy to have a nofib & a ghc build in the same
627 # tree).  We can refer to "this ghc" as $(GHC_INPLACE):
628
629 GHC_INPLACE = $(GHC_STAGE1)
630
631 GHC_STAGE0_ABS = $(GHC)
632 GHC_STAGE1_ABS = $(TOP)/$(INPLACE_BIN)/ghc-stage1$(exeext)
633 GHC_STAGE2_ABS = $(TOP)/$(INPLACE_BIN)/ghc-stage2$(exeext)
634 GHC_STAGE3_ABS = $(TOP)/$(INPLACE_BIN)/ghc-stage3$(exeext)
635
636 GHC_STAGE0  = $(GHC)
637 GHC_STAGE1  = $(INPLACE_BIN)/ghc-stage1$(exeext)
638 GHC_STAGE2  = $(INPLACE_BIN)/ghc-stage2$(exeext)
639 GHC_STAGE3  = $(INPLACE_BIN)/ghc-stage3$(exeext)
640
641 # Install stage 2 by default, can be changed to 3
642 INSTALL_GHC_STAGE=2
643
644 BOOTSTRAPPING_CONF = libraries/bootstrapping.conf
645
646 INPLACE_PACKAGE_CONF = $(INPLACE_LIB)/package.conf
647
648 GhcVersion      = @GhcVersion@
649 GhcPatchLevel   = @GhcPatchLevel@
650 GhcMajVersion   = @GhcMajVersion@
651 GhcMinVersion   = @GhcMinVersion@
652
653 ghc_ge_609 = @ghc_ge_609@
654
655 # Canonicalised ghc version number, used for easy (integer) version
656 # comparisons.  We must expand $(GhcMinVersion) to two digits by
657 # adding a leading zero if necessary:
658 ifneq "$(findstring $(GhcMinVersion), 0 1 2 3 4 5 6 7 8 9)" ""
659 GhcCanonVersion = $(GhcMajVersion)0$(GhcMinVersion)
660 else
661 GhcCanonVersion = $(GhcMajVersion)$(GhcMinVersion)
662 endif
663
664 #-----------------------------------------------------------------------------
665 # C compiler
666 #
667 # NB. Don't override $(WhatGccIsCalled) using build.mk,  re-configure using
668 # the flag --with-gcc=<blah> instead.  The reason is that the configure script
669 # needs to know which gcc you're using in order to perform its tests.
670
671 HaveGcc         = @HaveGcc@
672 UseGcc          = YES
673 WhatGccIsCalled = @WhatGccIsCalled@
674 GccVersion      = @GccVersion@
675 ifeq "$(strip $(HaveGcc))" "YES"
676 ifneq "$(strip $(UseGcc))"  "YES"
677   CC    = cc
678 else
679   CC    = $(WhatGccIsCalled)
680 endif
681 endif
682
683 # default C compiler and linker flags
684 SRC_CC_OPTS = @SRC_CC_OPTS@
685 SRC_LD_OPTS = @SRC_LD_OPTS@
686
687 ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux"
688 SRC_CC_OPTS += -G0
689 endif
690
691 SRC_HSC2HS_OPTS += $(addprefix --cflag=,$(filter-out -O,$(SRC_CC_OPTS)))
692 SRC_HSC2HS_OPTS += $(foreach d,$(GMP_INCLUDE_DIRS),-I$(d))
693
694 #-----------------------------------------------------------------------------
695 # Mingwex Library
696 #
697 HaveLibMingwEx  = @HaveLibMingwEx@
698
699 #-----------------------------------------------------------------------------
700 # Flex (currently unused, could be moved to glafp-utils)
701
702 # FLEX                  = @LEX@
703 # Don't bother with -lfl, we define our own yywrap()s anyway.
704 # FLEX_LIB              = 
705 #WAS:FLEX_LIB           = @LEXLIB@
706
707 #-----------------------------------------------------------------------------
708 # Other standard (ha!) Unix utilities
709
710 AR                      = @ArCmd@
711 ArSupportsInput         = @ArSupportsInput@
712 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
713 BASH                    = /usr/local/bin/bash
714
715 CONTEXT_DIFF            = @ContextDiffCmd@
716 CP                      = cp
717 CPP                     = @CPP@ @CPPFLAGS@
718 CTAGS                   = $(ETAGS)
719 #
720 # RAWCPP_FLAGS are the flags to give to cpp (viz, gcc -E) to persuade it to
721 # behave plausibly on Haskell sources.
722 #
723 RAWCPP_FLAGS            = -undef -traditional
724 FIND                    = @FindCmd@
725 SORT                    = @SortCmd@
726 INSTALL                 = @INSTALL@
727 #
728 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
729 # install-sh script (if chosen). This not terribly useful to us, so we convert
730 # it into an abs. path.
731
732 INSTALL                 := $(subst .././install-sh,$(TOP)/install-sh,$(INSTALL))
733 LATEX                   = latex
734 HEVEA                   = hevea
735 HACHA                   = hacha
736 LN_S                    = @LN_S@
737 MANMACROS               = -man
738 MSMACROS                = -ms
739 MV                      = mv
740 NROFF                   = nroff
741 PERL                    = @PerlCmd@
742 PYTHON                  = @PythonCmd@
743 PIC                     = pic
744 PREPROCESSCMD           = $(CC) -E
745 RANLIB                  = @RANLIB@
746 SED                     = @SedCmd@
747 SHELL                   = /bin/sh
748
749 LD                      = @LdCmd@
750
751 # Some ld's support the -x flag and some don't, so the configure
752 # script detects which we have and sets LdXFlag to "-x" or ""
753 # respectively.
754 LD_X                    = @LdXFlag@
755
756 # GNU ld supports input via a linker script, which is useful to avoid
757 # overflowing command-line length limits.
758 LdIsGNULd               = @LdIsGNULd@
759
760 # On MSYS, building with SplitObjs=YES fails with 
761 #   ar: Bad file number
762 # see #3201.  We need to specify a smaller max command-line size
763 # to work around it.  32767 doesn't work; 30000 does.
764 ifeq "$(Windows)" "YES"
765 XARGS = xargs -s 30000
766 else
767 XARGS = xargs
768 endif
769
770 #
771 # In emergency situations, REAL_SHELL is used to perform shell commands
772 # from within the ghc driver script, by scribbling the command line to
773 # a temp file and then having $(REAL_SHELL) execute it. 
774 #
775 # The reason for having to do this is that overly long command lines
776 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
777 # 2.5.1), which is why this backdoor is provided. The situation of overly
778 # long command lines is either encountered while doing `make boot' in compiler/, 
779 # or when linking the compiler binary (`hsc'). 
780 #
781 # We do not use SHELL to execute long commands, as `make' will more than likely
782 # override whatever setting you have in your environment while executing. 
783
784 # By default, REAL_SHELL is set equal to SHELL, which is not really a smart move
785 # as it is SHELL that will show up the bogosity in the first place, but setting
786 # it to anything else isn't really portable.
787 #
788 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
789 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
790 # command shell.
791 #
792 REAL_SHELL=$(SHELL)
793 SIZE                    = size
794 STRIP                   = strip
795 PATCH                   = @PatchCmd@
796 TAR                     = @TarCmd@
797 ZIP                     = zip
798
799 HSCOLOUR = @HSCOLOUR@
800
801 #
802 # This is special to literate/, ToDo: add literate-specific
803 # configure setup to literate/.
804 #
805 TBL                     = tbl
806 TEX                     = tex
807 TGRIND                  = tgrind
808 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
809 TIB                     = tib
810
811 TIME                    = @TimeCmd@
812 TROFF                   = troff
813 UNAME                   = uname
814
815 # GTK+
816 GTK_CONFIG = @GTK_CONFIG@
817
818 # Set this if you want to use Inno Setup to build a Windows installer
819 # when you make a bindist
820 ISCC                    =
821
822 #-----------------------------------------------------------------------------
823 # DocBook XML stuff
824
825 BUILD_DOCBOOK_HTML       = @BUILD_DOCBOOK_HTML@
826 BUILD_DOCBOOK_PS         = @BUILD_DOCBOOK_PS@
827 BUILD_DOCBOOK_PDF        = @BUILD_DOCBOOK_PDF@
828 DBLATEX                  = @DblatexCmd@
829 XSLTPROC                 = @XsltprocCmd@
830 XMLLINT                  = @XmllintCmd@
831 HAVE_DOCBOOK_XSL         = @HAVE_DOCBOOK_XSL@
832 XSLTPROC_HTML_STYLESHEET = http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl
833 XSLTPROC_LABEL_OPTS      = --stringparam toc.section.depth 3 \
834                            --stringparam section.autolabel 1 \
835                            --stringparam section.label.includes.component.label 1
836
837 #-----------------------------------------------------------------------------
838 #               FPtools support software
839
840 BLD_DLL                 = dllwrap
841
842 #
843 # ghc-pkg
844 #
845 GHC_PKG                 = @GhcPkgCmd@
846
847 #
848 # GreenCard
849 #
850 GREENCARD               = @GreenCardCmd@
851 GREENCARD_VERSION       = @GreenCardVersion@            
852
853 #
854 # Happy
855 #
856 HAPPY                   = @HappyCmd@
857 HAPPY_VERSION           = @HappyVersion@                
858 #
859 # Options to pass to Happy when we're going to compile the output with GHC
860 #
861 SRC_HAPPY_OPTS          = -agc --strict
862
863 # Temp. to work around performance problems in the HEAD around 8/12/2003,
864 # A Happy compiled with this compiler needs more stack.
865 SRC_HAPPY_OPTS          += +RTS -K2m -RTS
866
867 #
868 # Alex
869 #
870 ALEX                    = @AlexCmd@
871 ALEX_VERSION            = @AlexVersion@         
872 #
873 # Options to pass to Happy when we're going to compile the output with GHC
874 #
875 SRC_ALEX_OPTS           = -g
876
877 HSTAGS = @HstagsCmd@
878
879 # Should we build haddock docs?
880 HADDOCK_DOCS = YES
881 # And HsColour the sources?
882 ifeq "$(HSCOLOUR)" ""
883 HSCOLOUR_SRCS = NO
884 else
885 HSCOLOUR_SRCS = YES
886 endif
887
888 #
889 # Options for compiling in different `ways'. 
890
891 # To configure up your own way, have a look at some of the standard ways
892 # such as profiling, and create your own set of WAY_*_OPTS defs below.
893 # After having done that, add your way string to WAYS, and after having
894 # run the configure script, the different projects will add the new way
895 # to the list of ways they support.
896 #
897
898 #
899 # Definitions of the different ways:
900 #   
901 #   * their name:
902 #          - tag, e.g., p
903 #          - description, e.g., profiling
904 #   * what they mean to the driver:
905 #          - WAY_p_HC_OPTS gives the list of command-line options
906 #            to the driver.
907 #
908
909 #
910 # The ways currently defined.
911 #
912 ALL_WAYS=v p t l s mp mg debug dyn thr thr_l debug_dyn thr_dyn thr_debug_dyn thr_p thr_debug thr_debug_l debug_p thr_debug_p
913 USER_WAYS=a b c d e f g h j k l m n o A B
914
915 #
916 # The following ways currently have treated specially, p t mg,
917 # as the driver script treats these guys specially and needs to carefully be told
918 # about the options for these. Hence, we hide the required command line options
919 # for these in the driver, as this is the only place they are needed.
920
921 # If you want to add to these default options, fill in the variables below:
922
923 # Way 'v':
924 WAY_v_NAME=vanilla
925 WAY_v_HC_OPTS= 
926
927 # Way 'p':
928 WAY_p_NAME=profiling
929 WAY_p_HC_OPTS= -prof
930
931 # Way 't':
932 WAY_t_NAME=ticky-ticky profiling
933 WAY_t_HC_OPTS= -ticky
934
935 # Way 'l':
936 WAY_l_NAME=event logging
937 WAY_l_HC_OPTS= -eventlog
938
939 # Way `mp': 
940 WAY_mp_NAME=parallel
941 WAY_mp_HC_OPTS=-parallel
942
943 # Way `mg': 
944 WAY_mg_NAME=GranSim
945 WAY_mg_HC_OPTS=-gransim
946
947 #
948 # These ways apply to the RTS only:
949 #
950
951 # Way 'thr':
952 WAY_thr_NAME=threaded
953 WAY_thr_HC_OPTS=-optc-DTHREADED_RTS
954
955 # Way 'thr_p':
956 WAY_thr_p_NAME=threaded profiled
957 WAY_thr_p_HC_OPTS=-optc-DTHREADED_RTS -prof
958
959 # Way 'thr_l':
960 WAY_thr_l_NAME=threaded event logging
961 WAY_thr_l_HC_OPTS=-optc-DTHREADED_RTS -eventlog
962
963 # Way 'debug':
964 WAY_debug_NAME=debug
965 WAY_debug_HC_OPTS=-optc-DDEBUG
966
967 # Way 'debug_p':
968 WAY_debug_p_NAME=debug profiled
969 WAY_debug_p_HC_OPTS=-optc-DDEBUG -prof
970
971 # Way 'debug_t':
972 WAY_debug_t_NAME=debug ticky-ticky profiling
973 WAY_debug_t_HC_OPTS= -ticky -optc-DDEBUG
974
975 # Way 'thr_debug':
976 WAY_thr_debug_NAME=threaded
977 WAY_thr_debug_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG
978
979 # Way 'thr_debug_p':
980 WAY_thr_debug_p_NAME=threaded debug profiling
981 WAY_thr_debug_p_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG -prof
982
983 # Way 'thr_debug_l':
984 WAY_thr_debug_l_NAME=threaded debug event logging
985 WAY_thr_debug_l_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG -eventlog
986
987 # Way 'dyn': build dynamic shared libraries
988 WAY_dyn_NAME=dyn
989 WAY_dyn_HC_OPTS=-fPIC -dynamic
990 WAY_dyn_LIB_TARGET=libHSrts-gcc661.so
991
992 # Way 'thr_dyn':
993 WAY_thr_dyn_NAME=thr_dyn
994 WAY_thr_dyn_HC_OPTS=-fPIC -dynamic -optc-DTHREADED_RTS
995
996 # Way 'thr_debug_dyn':
997 WAY_thr_debug_dyn_NAME=thr_dyn
998 WAY_thr_debug_dyn_HC_OPTS=-fPIC -dynamic -optc-DTHREADED_RTS -optc-DDEBUG
999
1000 # Way 'debug_dyn':
1001 WAY_debug_dyn_NAME=thr_dyn
1002 WAY_debug_dyn_HC_OPTS=-fPIC -dynamic -optc-DDEBUG
1003
1004 #
1005 # Add user-way configurations here:
1006 #
1007 WAY_A_NAME=
1008 WAY_A_HC_OPTS=
1009
1010 WAY_B_NAME=
1011 WAY_B_HC_OPTS=
1012
1013 WAY_a_NAME=
1014 WAY_a_HC_OPTS=
1015
1016 WAY_b_NAME=
1017 WAY_b_HC_OPTS=
1018
1019 WAY_c_NAME=
1020 WAY_c_HC_OPTS=
1021
1022 WAY_d_NAME=
1023 WAY_d_HC_OPTS=
1024
1025 WAY_e_NAME=
1026 WAY_e_HC_OPTS=
1027
1028 WAY_f_NAME=
1029 WAY_f_HC_OPTS=
1030
1031 WAY_g_NAME=
1032 WAY_g_HC_OPTS=
1033
1034 WAY_h_NAME=
1035 WAY_h_HC_OPTS=
1036
1037 WAY_j_NAME=
1038 WAY_j_HC_OPTS=
1039
1040 WAY_k_NAME=
1041 WAY_k_HC_OPTS=
1042
1043 WAY_l_NAME=
1044 WAY_l_HC_OPTS=
1045
1046 WAY_m_NAME=
1047 WAY_m_HC_OPTS=
1048
1049 WAY_n_NAME=
1050 WAY_n_HC_OPTS=
1051
1052 WAY_o_NAME=
1053 WAY_o_HC_OPTS=
1054
1055 ################################################################################
1056 #
1057 #               31-bit-Int Core files
1058 #
1059 ################################################################################
1060
1061
1062 # It is possible to configure the compiler and prelude to support 31-bit
1063 # integers, suitable for a back-end and RTS using a tag bit on a 32-bit
1064 # architecture.  Currently the only useful output from this option is external Core
1065 # files.  The following additions to your build.mk will produce the
1066 # 31-bit core output.  Note that this is *not* just a library "way"; the
1067 # compiler must be built a special way too.
1068
1069 # GhcCppOpts +=-DWORD_SIZE_IN_BITS=31
1070 # GhcLibHcOpts +=-fext-core -fno-code -DWORD_SIZE_IN_BITS=31
1071 # GhcLibCppOpts += -DWORD_SIZE_IN_BITS=31
1072 # SplitObjs=NO
1073
1074 ################################################################################
1075 #
1076 #    Library configure arguments
1077 #
1078 ################################################################################
1079
1080 CONFIGURE_ARGS = @CONFIGURE_ARGS@
1081
1082 ################################################################################
1083 #
1084 #    Bindist testing directory
1085 #
1086 ################################################################################
1087
1088 ifeq "$(Windows)" "YES"
1089 BIN_DIST_INST_SUBDIR = "install dir"
1090 else
1091 # I very much doubt that paths with spaces will work on Unix
1092 BIN_DIST_INST_SUBDIR = installed
1093 endif
1094
1095 BIN_DIST_INST_DIR = $(TOP)/bindisttest/$(BIN_DIST_INST_SUBDIR)
1096