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