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