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