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