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