[project @ 2003-11-15 19:37:13 by panne]
[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 # This is one of only two files that configure generates (the other is config.h)
27 #
28 # There is a section below for each project within the fptools suite
29 #
30 #       PLUS
31 #
32 # a section corresponding to each of the main .mk files 
33 # included by boilerplate.mk (see boilerplate.mk for a list).
34
35
36 ################################################################################
37 #
38 #               Project-wide platform variables
39 #
40 ################################################################################
41
42 # A "platform" is the GNU cpu-type/manufacturer/operating-system target machine
43 # specifier.  E.g. sparc-sun-solaris2
44 #
45 # Build  platform: the platform on which we are doing this build
46 # Host   platform: the platform on which these binaries will run
47 # Target platform: the platform for which this compiler will generate code
48 #
49 # We don't support build & host being different, because the build
50 # process creates binaries that are run during the build, and also
51 # installed.
52 #
53 # If host & target are different, then we are building a compiler
54 # which will generate intermediate .hc files to port to the target
55 # architecture for bootstrapping.  The libraries and stage 2 compiler
56 # will be built as HC files for the target system, and likely won't
57 # build on this host platform.
58 #
59 # Guidelines for when to use HOST vs. TARGET:
60 #
61 #  - In the build system (Makefile, foo.mk), normally we should test
62 #    $(HOSTPLATFORM).  There are some cases (eg. installation), where
63 #    we expect $(HOSTPLATFORM)==$(TARGETPLATFORM), so in those cases it
64 #    doesn't matter which is used.
65 #
66 #  - In the compiler itself, we should test HOST or TARGET depending
67 #    on whether the conditional relates to the code being generated, or
68 #    the platform on which the compiler is running.  For stage 2,
69 #    HOSTPLATFORM should be reset to be TARGETPLATFORM (we currently
70 #    don't do this, but we should).
71 #
72 #  - In the RTS and library code, we should be testing TARGET only.
73 #
74 # NOTE: cross-compiling is not well supported by the build system.
75 # You have to do a lot of work by hand to cross compile: see the
76 # section on "Porting GHC" in the Building Guide.
77
78 HOSTPLATFORM                    = @HostPlatform@
79 TARGETPLATFORM                  = @TargetPlatform@
80 BUILDPLATFORM                   = @BuildPlatform@
81
82 # Hack alert:
83 # in one or two places, we need to get at the OS version (major and
84 # perhaps even minor), HostOS_Full is the OS name reported by
85 # AC_CANONICAL_SYSTEM.
86 #
87 HostPlatform_CPP                = @HostPlatform_CPP@
88 HostArch_CPP                    = @HostArch_CPP@
89 HostOS_CPP                      = @HostOS_CPP@
90 HostOS_Full                     = @HostOS_Full@
91 HostVendor_CPP                  = @HostVendor_CPP@
92
93 TargetPlatform_CPP              = @TargetPlatform_CPP@
94 TargetArch_CPP                  = @TargetArch_CPP@
95 TargetOS_CPP                    = @TargetOS_CPP@
96 TargetVendor_CPP                = @TargetVendor_CPP@
97
98 BuildPlatform_CPP               = @BuildPlatform_CPP@
99 BuildArch_CPP                   = @BuildArch_CPP@
100 BuildOS_CPP                     = @BuildOS_CPP@
101 BuildVendor_CPP                 = @BuildVendor_CPP@
102
103 @HostPlatform_CPP@_HOST           = 1
104 @TargetPlatform_CPP@_TARGET       = 1
105 @BuildPlatform_CPP@_BUILD         = 1
106
107 @HostArch_CPP@_HOST_ARCH          = 1
108 @TargetArch_CPP@_TARGET_ARCH      = 1
109 @BuildArch_CPP@_BUILD_ARCH        = 1
110
111 @HostOS_CPP@_HOST_OS              = 1
112 @TargetOS_CPP@_TARGET_OS          = 1
113 @BuildOS_CPP@_BUILD_OS            = 1
114
115 @HostVendor_CPP@_HOST_VENDOR      = 1
116 @TargetVendor_CPP@_TARGET_VENDOR  = 1
117 @BuildVendor_CPP@_BUILD_VENDOR    = 1
118
119 # Leading underscores on symbol names in object files
120 # Valid options: YES/NO
121 #
122 LeadingUnderscore=@LeadingUnderscore@
123
124 # Pin a suffix on executables? If so, what (Windows only).
125 exeext=@exeext@
126
127 ################################################################################
128 #
129 #               project-wide flags
130 #
131 #       Set of options applicable to all fptools projects
132 #
133 ################################################################################
134
135 # BootingFromHc - build GHC and the libraries from .hc files?
136 BootingFromHc = @BootingFromHc@
137
138 # BootingFromUnregisterisedHc - treat .hc files as containing unregisterised
139 # rather than registerised code, i.e., disable the mangler?
140 BootingFromUnregisterisedHc = @BootingFromUnregisterisedHc@
141
142 # Build Order: we build Happy, Haddock and Alex before GHC if they are
143 # in this source tree, just in case our GHC build depends on these
144 # local builds rather than installed versions of the tools.
145 #
146 # Build the libs first if we're bootstrapping from .hc files.
147 ifeq "$(BootingFromHc)" "YES"
148 AllProjects = glafp-utils happy alex haddock libraries hslibs ghc greencard hdirect hood nofib
149 else
150 AllProjects = glafp-utils happy alex haddock ghc libraries hslibs greencard hdirect hood nofib
151 endif
152
153 #
154 # (OPTIONAL) set ProjectsToBuild to a list of projects to be built.  If this
155 # list is empty, then all projects present in the source tree will be built.
156 #
157 ProjectsToBuild =
158
159 #
160 # set ProjectsDontInstall to a list of projects which are normally built but
161 # not installed.
162 #
163 ProjectsDontInstall = glafp-utils nofib
164
165 #
166 # Should the various project tests directories be built?
167 #
168 IncludeTestDirsInBuild=NO
169
170 #
171 # Should the various project example directories be built?
172 #
173 IncludeExampleDirsInBuild=NO
174
175 #
176 # Which ways should SGML documents be built?
177 # options are: dvi ps pdf html rtf
178 #
179 SGMLDocWays=
180
181 ################################################################################
182 #
183 #               GHC project
184
185 #       Set of (configurable) options needed by the ghc tree
186 #       plus their default options (if any).
187 #
188 ################################################################################
189
190 #---------------------------------------------------------------
191 #
192 # Variables that control how the compiler itself is built
193 #
194 #---------------------------------------------------------------
195
196 # The compiler used to build GHC is $(GHC).  To change the actual compiler
197 # used, re-configure with --with-ghc=<path-to-ghc>.
198
199 # Extra ways in which to build the compiler (for example, you might want to
200 # build a profiled compiler so you can see where it spends its time)
201 GhcCompilerWays=
202
203 # Extra option flags to pass to the compiler that compiles the compiler
204 # (Ones that are essential are wired into ghc/compiler/Makefile)
205 # Typical options to use here:
206 #
207 #       -DDEBUG         include debugging code and assertions (will make the
208 #                       compiler slower and produce debugging output, but useful
209 #                       for development)
210 #
211 #       -dcore-lint     check the types after every pass of the compiler;
212 #                       a pretty strong internal check of the compiler being
213 #                       used to compile GHC.  Useful when bootstrapping.
214 GhcHcOpts=-Rghc-timing
215
216 # Extra options added to specific stages of the compiler bootstrap.
217 # These are placed later on the command line, and may therefore
218 # override options from $(GhcHcOpts).
219 GhcStage1HcOpts=
220 GhcStage2HcOpts=
221 GhcStage3HcOpts=
222
223 # Build a compiler that will build *unregisterised* libraries and
224 # binaries by default.  Unregisterised code is supposed to compile and
225 # run without any support for architecture-specific assembly mangling,
226 # register assignment or tail-calls, and is therefore a good way to get
227 # started when porting GHC to new architectures.
228 #
229 # If this is set to NO, you can still use the unregisterised way
230 # (way 'u') to get unregisterised code, but the default way will be
231 # registerised.
232 #
233 # NOTE: the stage1 compiler will be a registerised binary (assuming
234 # the compiler you build with is generating registerised binaries), but
235 # the stage2 compiler will be an unregisterised binary.
236 #
237 GhcUnregisterised=NO
238
239 # Build a compiler with a native code generator backend
240 # (as well as a C backend)
241 #
242 # Target platforms supported:
243 #   i386, sparc & powerpc
244 ifneq "$(findstring $(HostArch_CPP), i386 sparc powerpc)" ""
245 GhcWithNativeCodeGen=YES
246 else
247 GhcWithNativeCodeGen=NO
248 endif
249
250 # Include support for generating Java
251 GhcWithJavaGen=NO
252
253 HaveLibDL = @HaveLibDL@
254 HaveRtldNext = @HaveRtldNext@
255 HaveRtldLocal = @HaveRtldLocal@
256
257 # Include GHCi in the compiler.  Default to NO for the time being.
258
259 ifneq "$(findstring $(HostOS_CPP), mingw32 cygwin32 linux solaris2 freebsd netbsd openbsd darwin)" ""
260 GhcWithInterpreter=YES
261 else 
262 GhcWithInterpreter=NO
263 endif
264
265 #
266 # Building various ways?
267 # (right now, empty if not).
268 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
269 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
270
271 #------------------------------------------------------------------------------
272 # Options for Libraries
273
274 # What extra ways to build the libraries in
275 # In addition to the normal sequential way, the default is to also build
276 # profiled prelude libraries.
277 # When booting from .hc files, turn this off.
278 ifeq "$(BootingFromHc)" "YES"
279 GhcLibWays=
280 else
281 GhcLibWays=p
282 endif
283
284 # Option flags to pass to GHC when it's compiling modules in
285 # fptools/libraries.  Typically these are things like -O or
286 # -dcore-lint or -H32m.  The ones that are *essential* are wired into
287 # the build system.
288 #
289 #       -O is pretty desirable, otherwise no inlining of prelude
290 #               things (incl "+") happens when compiling with this compiler
291
292 GhcLibHcOpts=-O -Rghc-timing
293
294 # Win32 only: Enable the RTS and libraries to be built as DLLs
295 DLLized=@EnableWin32DLLs@
296
297 # Win32 only: are we building a compiler that tries to reduce external
298 # dependencies? i.e., one that doesn't assume that the user has got
299 # the cygwin toolchain installed on his/her Win32 box.
300 #
301 # GHC is still dependent on GNU tools in the backend (gcc to further process
302 # .c/.hc/.s/.o files + 'perl' to mangle and split), but using this
303 # option a GHC distribution can be put together which includes a minimal
304 # set of these open source tools. 
305 #
306 MinimalUnixDeps=@MinimalUnixDeps@
307
308 # Strip local symbols from libraries?  This can make the libraries smaller,
309 # but makes debugging somewhat more difficult.  Doesn't work with all ld's.
310 #
311 StripLibraries=NO
312
313
314 # ----------------------------------------------------------------------------
315 # Object-file splitting
316 #
317 #       Set SplitObjs=YES or NO in your build.mk
318 #
319 #       Don't use -split-objs in in GhcLibHcOpts, because the build
320 #               system needs to do other special magic if you are
321 #               doing object-file splitting
322
323 # Don't split object files for libs if we're building DLLs, or booting from
324 # .hc files.
325 SplitObjs=YES
326
327 ifeq "$(DLLized)" "YES"
328 SplitObjs=NO
329 endif
330 ifeq "$(BootingFromHc)" "YES"
331 SplitObjs=NO
332 endif
333 ifeq "$(GhcUnregisterised)" "YES"
334 SplitObjs=NO
335 endif
336 ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux"
337 SplitObjs=NO
338 endif
339
340 # ----------------------------------------------------------------------------
341 # Options for GHC's RTS
342
343 # This is a good way to set things like -optc-g and -optc-DDEBUG for the RTS.
344 # GhcRtsHcOpts is used when compiling .hc files and .c files.
345 # GhcRtsCcOpts is used when compiling .c  files only.
346
347 # For a debugging RTS:
348 # GhcRtsHcOpts = -optc-DDEBUG
349 # GhcRtsCcOpts = -g
350
351 # For an optimised RTS:
352 GhcRtsHcOpts=-O2
353 GhcRtsCcOpts=-fomit-frame-pointer
354
355 # Include the front panel code?  Needs GTK+.
356 GhcRtsWithFrontPanel = NO
357
358 #
359 # To have the RTS support interoperation with OS threads, set
360 # GhcRtsThreaded to YES (preferably via the --enable-threaded-rts
361 # configure script option). The consequence of this is spelled out
362 # in details elsewhere, but, briefly, Concurrent Haskell threads
363 # can now make external (i.e., C) calls without blocking the progress
364 # of other CH threads. Multiple native threads can also execute
365 # Haskell code without getting in each others way too.
366
367 GhcRtsThreaded=@ThreadedRts@
368
369 ################################################################################
370 #
371 # libraries project
372 #
373 ################################################################################
374
375 # Build the Haskell Readline bindings?
376 #
377 GhcLibsWithReadline=@GhcLibsWithReadline@
378
379 # Libraries needed for linking with readline
380 LibsReadline=@LibsReadline@
381
382 # Include path to readline.h
383 # (no path == in standard include path)
384 #
385 ReadlineIncludePath=
386
387 # Math library
388 LIBM=@LIBM@
389
390 # Build the ObjectIO ?
391 #
392 GhcLibsWithObjectIO=@GhcLibsWithObjectIO@
393
394 # Build the Haskell OpenGL/GLUT binding?
395 #
396 GhcLibsWithHOpenGL=@GhcLibsWithHOpenGL@
397 GL_CFLAGS=@GL_CFLAGS@
398 GL_LIBS=@GL_LIBS@
399 GLUT_LIBS=@GLUT_LIBS@
400
401 X_CFLAGS=@X_CFLAGS@
402 X_LIBS=@X_LIBS@
403
404
405
406 # .NET interop support?
407 #
408 DotnetSupport=@DotnetSupport@
409
410 # Build unix package?
411 #
412 GhcLibsWithUnix=@GhcLibsWithUnix@
413
414 ################################################################################
415 #
416 #               happy project
417 #
418 #       Happy specific options
419 #
420 ################################################################################
421
422 # The compiler you'd like to use to compile Happy
423 WithHappyHc = @WithHc@
424
425 # HappyHcOpts gives the flags to pass to the Haskell compiler used
426 #             to compile the Happy sources with.
427 #
428 HappyHcOpts = -O
429
430 ################################################################################
431 #
432 #               haggis project
433 #
434 #       Haggis specific options
435 #
436 ################################################################################
437
438 ################################################################################
439 #
440 #               greencard project
441 #
442 #       GreenCard specific options
443 #
444 ################################################################################
445
446 ################################################################################
447 #
448 #               nofib project
449 #
450 #       nofib specific options
451 #
452 ################################################################################
453
454 WithNofibHc = $(GHC_INPLACE)
455
456 # NoFibSubDirs controls which set of tests should be run
457 # You can run one or more of
458 #       imaginary 
459 #       spectral
460 #       real
461 #       parallel
462 #       PRIVATE
463 #       PENDING
464 #       UNUSED
465 NoFibSubDirs = imaginary spectral real
466
467 # The different ways to build nofib. Default is just to mirror
468 # what is done for the ghc prelude libraries.
469 #
470 NoFibWays = $(GhcLibWays)
471
472 # Haskell compiler options for nofib
473 NoFibHcOpts = -O
474
475 # ==============================================================================
476 #
477 #                       END OF PROJECT-SPECIFIC STUFF
478 #
479 #               Now come the generic configuration options
480 #
481 # ==============================================================================
482
483 ################################################################################
484 #
485 #               Paths (see paths.mk)
486 #
487 ################################################################################
488
489 # Directory used by GHC (and possibly other tools) for storing
490 # temporary files.  If your TMPDIR isn't big enough, either override
491 # this in build.mk or set your environment variable "TMPDIR" to point
492 # to somewhere with more space.  (TMPDIR=. is a good choice).
493
494 # DEFAULT_TMPDIR isn't called TMPDIR because GNU make tends to
495 # override an environment variable with the value of the make variable
496 # of the same name (if it exists) when executing sub-processes, so
497 # setting the TMPDIR env var would have no effect in the build tree.
498
499 DEFAULT_TMPDIR          = /tmp
500 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
501 DEFAULT_TMPDIR          = C:/TEMP
502 endif
503 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
504 DEFAULT_TMPDIR          = C:/TEMP
505 endif
506
507 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path. (POSIX / unix-style path).
508 FPTOOLS_TOP_ABS         = @hardtop@
509 # The platform specific version of 'hardtop'.
510 FPTOOLS_TOP_ABS_PLATFORM = @hardtop_plat@
511
512 #
513 # Installation directories, we don't use half of these,
514 # but since the configure script has them on offer while
515 # passing through, we might as well set them.
516
517 prefix                  = @prefix@
518 exec_prefix             = @exec_prefix@
519 bindir                  = @bindir@
520 datadir0                = @datadir@
521
522 #sysconfdir             = @datadir@
523 #sharedstatedir         = @sharedstatedir@
524 #localstatedir          = @localstatedir@
525 libdir0                 = @libdir@
526 includedir              = @includedir@
527 oldincludedir           = @oldincludedir@
528 mandir                  = @mandir@
529
530 #UNUSED:infodir         = @infodir@
531 #UNUSED:srcdir          = @srcdir@
532
533 #
534 # override libdir and datadir to put project-specific stuff in
535 # a subdirectory with the version number included.
536 #
537 libdir     = $(if $(ProjectNameShort),$(libdir0)/$(ProjectNameShort)-$(ProjectVersion),$(libdir0))
538 datadir    = $(if $(ProjectNameShort),$(datadir0)/$(ProjectNameShort)-$(ProjectVersion),$(datadir0))
539
540 # Default place for putting interface files is $(libdir)
541 # (overriden for packages in package.mk)
542 ifacedir   = $(libdir)
543
544
545 # Default values for most of the above are only set if
546 # they weren't configured to anything in particular
547 # via the configure script. (i.e., we make no assumption
548 # that the autoconf-generated script will assign defaults
549 # to all of the above).
550 #
551 ifeq "$(strip $(exec_prefix))" ""
552 exec_prefix             = $(prefix)
553 endif
554 ifeq "$(strip $(bindir))" ""
555 bindir                  = $(exec_prefix)/bin
556 endif
557
558 #
559 # NOTE: by intention, libexecdir and libdir point to 
560 # the same place.
561 #  => Only way to override this is to set libexecdir= on the command line.
562 #     (NOTE: configure script setting is ignored).
563 libexecdir              = $(libdir)
564
565 ifeq "$(strip $(datadir))" ""
566 datadir         = $(prefix)/share
567 endif
568 ifeq "$(strip $(libdir))" ""
569 libdir          = $(exec_prefix)/lib
570 endif
571 ifeq "$(strip $(includedir))" ""
572 includedir      = $(prefix)/include
573 endif
574 ifeq "$(strip $(oldincludedir))" ""
575 oldincludedir   = /usr/include
576 endif
577 ifeq "$(strip $(mandir))" ""
578 mandir          = $(prefix)/man
579 endif
580
581 ################################################################################
582 #
583 #               Utilities programs: flags
584 #
585 ################################################################################
586
587 # If you want to give any standard flags to pretty much any utility
588 # (see utils.mk for a complete list), by adding a line here
589 #
590 #       SRC_P_OPTS += ...
591 #
592 # where P is the utility. For example, to add -O to all Haskell
593 # compilations, 
594 #
595 #       SRC_HC_OPTS += -O
596
597 SRC_HC_OPTS += -H16m -O
598
599 # These flags make flex 8-bit
600 SRC_FLEX_OPTS   += -8
601
602 SRC_INSTALL_BIN_OPTS    += -s
603
604 # lint gets all CPP's flags too
605 SRC_LINT_OPTS           += -axz -DLINT $(SRC_CPP_OPTS)
606 WAY$(_way)_LINT_OPTS    += WAY$(_way)_CPP_OPTS
607
608 # Default fptools options for dllwrap.
609 SRC_BLD_DLL_OPTS += -mno-cygwin --target=i386-mingw32
610
611 # Flags for CPP when running GreenCard on .pgc files
612 GC_CPP_OPTS += -P -E -x c -traditional -D__GLASGOW_HASKELL__
613
614
615 ################################################################################
616 #
617 #               Utilities programs: where to find them
618 #
619 ################################################################################
620
621 #-----------------------------------------------------------------------------
622 # FPtools Utility locations
623
624 # By default, the various utils needed to be build ghc and chums
625 # is set up to point to the utils/ directory. Define here the
626 # path prefix for the utilities. Notice that it's a prefix with
627 # a trailing slash, so that it can be concatenated directly on
628 # front of a program name; if it's not set then we just look
629 # along the shell's $(PATH)
630 #
631 # If instead you want to use installed or your own versions of these,
632 # override the various *_PREFIX in build.mk, i.e., having the following
633 # in build.mk:
634 #
635 #   MKDEPENDC_PREFIX=
636 #
637 # will force `make' to rummage around in your PATH to find `mkdependC' (not
638 # sure it would need it in the first place, but still).
639 #
640 GLAFP_UTILS             = $(FPTOOLS_TOP)/glafp-utils
641
642 SCRIPT_PREFIX           = $(GLAFP_UTILS)/scripts/
643 MKDEPENDC_PREFIX        = $(GLAFP_UTILS)/mkdependC/
644 LTX_PREFIX              = $(GLAFP_UTILS)/ltx/
645 RUNTEST_PREFIX          = $(GLAFP_UTILS)/runstdtest/
646 VERBATIM_PREFIX         = $(GLAFP_UTILS)/verbatim/
647 SGMLVERB_PREFIX         = $(GLAFP_UTILS)/sgmlverb/
648 ETAGS_PREFIX            = $(GLAFP_UTILS)/etags/
649 LNDIR_PREFIX            = $(GLAFP_UTILS)/lndir/
650 MKDIRHIER_PREFIX        = $(GLAFP_UTILS)/mkdirhier/
651 DOCBOOK_PREFIX          = $(GLAFP_UTILS)/docbook/
652
653 HADDOCK_PREFIX          = $(FPTOOLS_TOP)/haddock/
654
655 LITERATE_PREFIX         = $(FPTOOLS_TOP)/literate/
656
657 UNLIT_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/unlit/
658 HP2PS_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hp2ps/
659 HSTAGS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hasktags/
660 HSC2HS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hsc2hs/
661
662 #-----------------------------------------------------------------------------
663 # Haskell compilers and mkdependHS
664
665 # $(GHC), $(HBC) and $(NHC) point to installed versions of the relevant
666 # compilers, if available.
667 #
668 # $(HC) is a generic Haskell 98 compiler, set to $(GHC) by default.
669 # $(MKDEPENDHS) is the Haskell dependency generator (ghc -M).
670 #
671 # NOTE: Don't override $(GHC) in build.mk, use configure --with-ghc instead
672 # (because the version numbers have to be calculated).
673
674 GHC             = @WithGhc@
675 GhcVersion      = @GhcVersion@
676 GhcMajVersion   = @GhcMajVersion@
677 GhcMinVersion   = @GhcMinVersion@
678 GhcPatchLevel   = @GhcPatchLevel@
679
680 # Canonicalised ghc version number, used for easy (integer) version
681 # comparisons.  We must expand $(GhcMinVersion) to two digits by
682 # adding a leading zero if necessary:
683 ifneq "$(findstring $(GhcMinVersion), 0 1 2 3 4 5 6 7 8 9)" ""
684 GhcCanonVersion = $(GhcMajVersion)0$(GhcMinVersion)
685 else
686 GhcCanonVersion = $(GhcMajVersion)$(GhcMinVersion)
687 endif
688
689 HBC             = @HBC@
690 NHC             = @NHC@
691
692 HC              = @WithHc@
693 MKDEPENDHS      = $(GHC)
694
695 # Sometimes we want to invoke ghc from the build tree in different
696 # projects (eg. it's handy to have a nofib & a ghc build in the same
697 # tree).  We can refer to "this ghc" as $(GHC_INPLACE):
698
699 GHC_INPLACE     = $(FPTOOLS_TOP)/ghc/compiler/ghc-inplace
700 GHC_STAGE1      = $(FPTOOLS_TOP)/ghc/compiler/stage1/ghc-inplace
701 GHC_STAGE2      = $(FPTOOLS_TOP)/ghc/compiler/stage2/ghc-inplace
702 GHC_STAGE3      = $(FPTOOLS_TOP)/ghc/compiler/stage3/ghc-inplace
703
704 #-----------------------------------------------------------------------------
705 # C compiler
706 #
707 # NB. Don't override $(WhatGccIsCalled) using build.mk,  re-configure using
708 # the flag --with-gcc=<blah> instead.  The reason is that the configure script
709 # needs to know which gcc you're using in order to perform its tests.
710
711 HaveGcc         = @HaveGcc@
712 UseGcc          = YES
713 WhatGccIsCalled = @WhatGccIsCalled@
714 ifeq "$(strip $(HaveGcc))" "YES"
715 ifneq "$(strip $(UseGcc))"  "YES"
716   CC    = cc
717 else
718   CC    = $(WhatGccIsCalled)
719 endif
720 endif
721
722 # default C compiler flags
723 SRC_CC_OPTS = @SRC_CC_OPTS@
724
725 ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux"
726 SRC_CC_OPTS += -G0
727 endif
728
729 # Solaris2 strikes again.
730 unix_SRC_HSC2HS_OPTS += @unix_SRC_HSC2HS_OPTS@
731
732 #-----------------------------------------------------------------------------
733 # GMP Library (version 2.0.x or above)
734 #
735 HaveLibGmp      = @HaveLibGmp@
736 LibGmp          = @LibGmp@
737
738 #-----------------------------------------------------------------------------
739 # Mingwex Library
740 #
741 HaveLibMingwEx  = @HaveLibMingwEx@
742
743 #-----------------------------------------------------------------------------
744 # HaskellSupport framework (Mac OS X)
745 #
746 HaveFrameworkHaskellSupport = @HaveFrameworkHaskellSupport@
747
748 #-----------------------------------------------------------------------------
749 # Regex library
750 # (if present in libc use that one, otherwise use the one in the tree)
751 #
752 HavePosixRegex  = @HavePosixRegex@
753
754 #-----------------------------------------------------------------------------
755 # GTK+
756
757 GTK_CONFIG              = @GTK_CONFIG@
758 GTK_VERSION             = @GTK_VERSION@
759
760 #-----------------------------------------------------------------------------
761 # Flex (currently unused, could be moved to glafp-utils)
762
763 # FLEX                  = @LEX@
764 # Don't bother with -lfl, we define our own yywrap()s anyway.
765 # FLEX_LIB              = 
766 #WAS:FLEX_LIB           = @LEXLIB@
767
768 #-----------------------------------------------------------------------------
769 # Other standard (ha!) Unix utilities
770
771 AR                      = @ArCmd@
772 ArSupportsInput         = @ArSupportsInput@
773 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
774 BASH                    = /usr/local/bin/bash
775
776 CONTEXT_DIFF            = @ContextDiffCmd@
777 CP                      = cp
778 CPP                     = @CPP@ @CPPFLAGS@
779 CTAGS                   = $(ETAGS)
780 #
781 # RAWCPP_FLAGS are the flags to give to cpp (viz, gcc -E) to persuade it to
782 # behave plausibly on Haskell sources.
783 #
784 RAWCPP_FLAGS            = -undef -traditional
785 FIND                    = @FindCmd@
786 INSTALL                 = @INSTALL@
787 #
788 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
789 # install-sh script (if chosen). This not terribly useful to us, so we convert
790 # it into an abs. path.
791
792 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
793 LATEX                   = latex
794 HEVEA                   = hevea
795 HACHA                   = hacha
796 LN_S                    = @LN_S@
797 MANMACROS               = -man
798 MSMACROS                = -ms
799 MV                      = mv
800 NROFF                   = nroff
801 PERL                    = @PerlCmd@
802 PYTHON                  = @PythonCmd@
803 PIC                     = pic
804 PREPROCESSCMD           = $(CC) -E
805 RANLIB                  = @RANLIB@
806 RM                      = rm -f
807 SED                     = @SedCmd@
808 SHELL                   = /bin/sh
809
810 # Some ld's support the -x flag and some don't, so the configure
811 # script detects which we have and sets LdXFlag to "-x" or ""
812 # respectively.
813 LD                      = @LdCmd@
814 LD_X                    = @LdXFlag@
815
816 #
817 # In emergency situations, REAL_SHELL is used to perform shell commands
818 # from within the ghc driver script, by scribbling the command line to
819 # a temp file and then having $(REAL_SHELL) execute it. 
820 #
821 # The reason for having to do this is that overly long command lines
822 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
823 # 2.5.1), which is why this backdoor is provided. The situation of overly
824 # long command lines is either encountered while doing `make boot' in ghc/compiler, 
825 # or when linking the compiler binary (`hsc'). 
826 #
827 # We do not use SHELL to execute long commands, as `make' will more than likely
828 # override whatever setting you have in your environment while executing. 
829
830 # By default, REAL_SHELL is set equal to SHELL, which is not really a smart move
831 # as it is SHELL that will show up the bogosity in the first place, but setting
832 # it to anything else isn't really portable.
833 #
834 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
835 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
836 # command shell.
837 #
838 REAL_SHELL=$(SHELL)
839 SIZE                    = size
840 STRIP                   = strip
841 TAR                     = @TarCmd@
842 ZIP                     = zip
843
844 #
845 # This is special to literate/, ToDo: add literate-specific
846 # configure setup to literate/.
847 #
848 TBL                     = tbl
849 TEX                     = tex
850 TGRIND                  = tgrind
851 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
852 TIB                     = tib
853
854 TIME                    = @TimeCmd@
855 TROFF                   = troff
856 UNAME                   = uname
857
858 #-----------------------------------------------------------------------------
859 # SGML stuff
860
861 JADE                    = @JadeCmd@
862
863 SGML2DVI                = $(DOCBOOK_PREFIX)db2dvi
864 SGML2HTML               = $(DOCBOOK_PREFIX)db2html
865 SGML2PS                 = $(DOCBOOK_PREFIX)db2ps
866 SGML2PDF                = $(DOCBOOK_PREFIX)db2pdf
867 SGML2RTF                = $(DOCBOOK_PREFIX)db2rtf
868
869 SGMLSTYLESHEET          = $(FPTOOLS_TOP_ABS)/docs/fptools-both.dsl
870
871 SRC_SGML2DVI_OPTS       = -d $(SGMLSTYLESHEET)
872 SRC_SGML2HTML_OPTS      = -d $(SGMLSTYLESHEET)
873 SRC_SGML2PS_OPTS        = -d $(SGMLSTYLESHEET)
874 SRC_SGML2RTF_OPTS       = -d $(SGMLSTYLESHEET)
875 SRC_SGML2PDF_OPTS       = -d $(SGMLSTYLESHEET)
876
877 DOCBOOK_CATALOG         = @Catalog@
878
879 #-----------------------------------------------------------------------------
880 #               FPtools support software
881
882 # Stuff from fptools/glafp-utils
883 MKDEPENDC               = $(MKDEPENDC_PREFIX)mkdependC
884 LTX                     = $(LTX_PREFIX)ltx
885 MKDIRHIER               = $(MKDIRHIER_PREFIX)mkdirhier
886 LNDIR                   = $(LNDIR_PREFIX)lndir
887 ETAGS                   = $(ETAGS_PREFIX)etags
888 VERBATIM                = $(VERBATIM_PREFIX)verbatim
889 SGMLVERB                = $(SGMLVERB_PREFIX)sgmlverb
890 RUNTEST                 = $(RUNTEST_PREFIX)runstdtest
891 LX                      = @LxCmd@
892
893 BLD_DLL                 = dllwrap
894
895 #
896 # .NET support software
897 #
898 ILX2IL                  = ilx2il
899 ILASM                   = ilasm
900
901 #
902 # ghc-pkg
903 #
904 GHC_PKG                 = @GhcPkgCmd@
905
906 #
907 # GreenCard
908 #
909 GREENCARD               = @GreenCardCmd@
910 GREENCARD_VERSION       = @GreenCardVersion@            
911
912 #
913 # Happy
914 #
915 HAPPY                   = @HappyCmd@
916 HAPPY_VERSION           = @HappyVersion@                
917 #
918 # Options to pass to Happy when we're going to compile the output with GHC
919 #
920 GHC_HAPPY_OPTS          = -agc
921
922 #
923 # Alex
924 #
925 ALEX                    = @AlexCmd@
926 ALEX_VERSION            = @AlexVersion@         
927 #
928 # Options to pass to Happy when we're going to compile the output with GHC
929 #
930 GHC_ALEX_OPTS           = -g
931
932 #
933 # Haddock
934
935 HADDOCK                 = @HaddockCmd@
936 HADDOCK_INPLACE         = $(HADDOCK_PREFIX)/src/haddock-inplace
937
938 #
939 # Stuff from fptools/literate
940 #
941 LIT2PGM                 = $(LITERATE_PREFIX)lit2pgm
942 LIT2HTML                = $(LITERATE_PREFIX)lit2html
943 LIT2LATEX               = $(LITERATE_PREFIX)lit2latex
944 MKDEPENDLIT             = $(LITERATE_PREFIX)mkdependlit
945 LIT2CHANGELOG           = $(LITERATE_PREFIX)lit2changelog
946 LIT2TEXT                = $(LITERATE_PREFIX)lit2text
947
948 #
949 # Stuff from fptools/ghc/utils
950 #
951 UNLIT                   = $(UNLIT_PREFIX)unlit$(exeext)
952 HP2PS                   = $(HP2PS_PREFIX)hp2ps$(exeext)
953 HSTAGS                  = $(HSTAGS_PREFIX)hasktags
954 HSC2HS                  = $(HSC2HS_PREFIX)hsc2hs-inplace
955
956 #
957 # Options for the compiling different `ways'. Various projects within
958 # the glorious fptools tree support building in various user-configured
959 # ways. For instance, you could set up one `way' such that the prelude
960 # libraries all were built with the option -ffoldr-build-on.
961
962 # To configure up your own way, have a look at some of the standard ways
963 # such as profiling, and create your own set of WAY_*_OPTS defs below.
964 # After having done that, add your way string to WAYS, and after having
965 # run the configure script, the different projects will add the new way
966 # to the list of ways they support.
967 #
968
969 #
970 # IMPORTANT! The WAYS variable configures the different `ways'
971 # you want to build a project (or maybe just parts of it, as is
972 # the case for ghc/). This variable is intended set inside the
973 # project mk setup, enforcing a global fptools WAYS is a bit too
974 # much (do you *really* want to build glafp-utils the profiled-concurrent 
975 # way?)
976 #
977
978 #
979 # Definitions of the different ways:
980 #   
981 #   * their name:
982 #          - tag, e.g., p
983 #          - description, e.g., profiling
984 #   * what they mean to the driver:
985 #          - WAY_p_HC_OPTS gives the list of command-line options
986 #            to the driver.
987 #
988
989 #
990 # The ways currently defined.
991 #
992 ALL_WAYS=p t u s mp mg a b c d e f g h i j k l m n o A B
993 USER_WAYS=a b c d e f g h j k l m n o A B
994
995 #
996 # The following ways currently have treated specially, p u t mg,
997 # as the driver script treats these guys specially and needs to carefully be told
998 # about the options for these. Hence, we hide the required command line options
999 # for these in the ghc/driver, as this is the only place they are needed.
1000
1001 # If you want to add to these default options, fill in the variables below:
1002
1003 # Way 'i':
1004 WAY_i_NAME=ILX
1005 WAY_i_HC_OPTS= -filx -fruntime-types
1006
1007 # Way 'p':
1008 WAY_p_NAME=profiling
1009 WAY_p_HC_OPTS= -prof
1010
1011 # Way 't':
1012 WAY_t_NAME=ticky-ticky profiling
1013 WAY_t_HC_OPTS= -ticky
1014
1015 # Way `u':
1016 WAY_u_NAME=unregisterized (using portable C only)
1017 WAY_u_HC_OPTS=-unreg
1018
1019 # Way `s':
1020 WAY_s_NAME=threads (for SMP)
1021 WAY_s_HC_OPTS=-smp
1022
1023 # Way `mp': 
1024 WAY_mp_NAME=parallel
1025 WAY_mp_HC_OPTS=-parallel
1026
1027 # Way `mg': 
1028 WAY_mg_NAME=GranSim
1029 WAY_mg_HC_OPTS=-gransim
1030
1031 #
1032 # Add user-way configurations here:
1033 #
1034 WAY_A_NAME=
1035 WAY_A_HC_OPTS=
1036
1037 WAY_B_NAME=
1038 WAY_B_HC_OPTS=
1039
1040 WAY_a_NAME=
1041 WAY_a_HC_OPTS=
1042
1043 WAY_b_NAME=
1044 WAY_b_HC_OPTS=
1045
1046 WAY_c_NAME=
1047 WAY_c_HC_OPTS=
1048
1049 WAY_d_NAME=
1050 WAY_d_HC_OPTS=
1051
1052 WAY_e_NAME=
1053 WAY_e_HC_OPTS=
1054
1055 WAY_f_NAME=
1056 WAY_f_HC_OPTS=
1057
1058 WAY_g_NAME=
1059 WAY_g_HC_OPTS=
1060
1061 WAY_h_NAME=
1062 WAY_h_HC_OPTS=
1063
1064 WAY_j_NAME=
1065 WAY_j_HC_OPTS=
1066
1067 WAY_k_NAME=
1068 WAY_k_HC_OPTS=
1069
1070 WAY_l_NAME=
1071 WAY_l_HC_OPTS=
1072
1073 WAY_m_NAME=
1074 WAY_m_HC_OPTS=
1075
1076 WAY_n_NAME=
1077 WAY_n_HC_OPTS=
1078
1079 WAY_o_NAME=
1080 WAY_o_HC_OPTS=
1081
1082 ################################################################################
1083 #
1084 #               31-bit-Int Core files
1085 #
1086 ################################################################################
1087
1088
1089 # It is possible to configure the compiler and prelude to support 31-bit
1090 # integers, suitable for a back-end and RTS using a tag bit on a 32-bit
1091 # architecture.  Currently the only useful output from this option is external Core
1092 # files.  The following additions to your build.mk will produce the
1093 # 31-bit core output.  Note that this is *not* just a library "way"; the
1094 # compiler must be built a special way too.
1095
1096 # GhcCppOpts +=-DWORD_SIZE_IN_BITS=31
1097 # GhcLibHcOpts +=-fext-core -fno-code -DWORD_SIZE_IN_BITS=31
1098 # GhcLibCppOpts += -DWORD_SIZE_IN_BITS=31
1099 # SplitObjs=NO
1100