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