[project @ 1997-12-15 11:13:20 by simonm]
[ghc-hetmet.git] / mk / config.mk.in
1 #
2 # @configure_input@
3 #
4 #################################################################################
5 #
6 #                       config.mk.in-template
7 #
8 #       This file defines all the variables that set the configuration of
9 #       a particular build.
10 #
11 #
12 #################################################################################
13
14 # The configuration is defined in two steps:
15 #
16 #       1. The builder (i.e. the person doing the build)
17 #          copies this file, config.mk.in-template
18 #          to config.mk.in
19 #
20 #       2. S/he then edits it manually (gasp) to reflect any configuration
21 #          options s/he wants.
22 #
23 #       3. Then s/he runs "configure", which generates config.mk from
24 #          config.mk.in, substituting for system/platform-dependent things
25 #          enclosed in @at-signs@.
26 #
27 # This is one of only two files that configure generates (the other is config.h)
28 #
29 # Note that after subsequent edits of config.mk.in for a build, the configure script
30 # will have to be re-run manually to have the change reflected in config.mk. 
31 #
32
33 # There is a section below for each project within the fptools suite
34 #
35 #       PLUS
36 #
37 # a section corresponding to each of the main .mk files 
38 # included by boilerplate.mk (see boilerplate.mk for a list).
39
40
41 #################################################################################
42 #
43 #               Project-wide platform variables
44 #
45 #################################################################################
46
47 # A "platform" is the GNU cpu-type/manufacturer/operating-system target machine
48 # specifier.  E.g. sparc-sun-solaris2
49
50 HOSTPLATFORM                    = @HostPlatform@
51 TARGETPLATFORM                  = @TargetPlatform@
52 BUILDPLATFORM                   = @HostPlatform@
53
54 # Hack alert:
55 # in one or two places, we need to get at the OS version (major and perhaps even minor),
56 # HostOS_Full is the OS name reported by AC_CANONICAL_SYSTEM.
57 #
58 HostPlatform_CPP                = @HostPlatform_CPP@
59 HostArch_CPP                    = @HostArch_CPP@
60 HostOS_CPP                      = @HostOS_CPP@
61 HostOS_Full                     = @HostOS_Full@
62 HostVendor_CPP                  = @HostVendor_CPP@
63
64 #
65 # ToDo: check if these can be purged now. -- sof
66 #
67
68 @HostPlatform_CPP@_HOST        = 1
69 @HostPlatform_CPP@_TARGET      = 1
70 @HostPlatform_CPP@_BUILD       = 1
71
72 @HostArch_CPP@_HOST_ARCH       = 1
73 @HostArch_CPP@_TARGET_ARCH      = 1
74 @HostArch_CPP@_BUILD_ARCH      = 1
75
76 @HostOS_CPP@_HOST_OS           = 1
77 @HostOS_CPP@_TARGET_OS         = 1
78 @HostOS_CPP@_BUILD_OS          = 1
79
80 @HostVendor_CPP@_HOST_VENDOR    = 1
81 @HostVendor_CPP@_TARGET_VENDOR  = 1
82 @HostVendor_CPP@_BUILD_VENDOR   = 1
83
84 # Leading underscores on symbol names in object files
85 # Valid options: YES/NO
86 #
87 LeadingUnderscore=@LeadingUnderscore@
88
89 # Pin a suffix on executables? If so, what. (cygwin32 only).
90 exeext=
91
92 #################################################################################
93 #
94 #               project-wide flags
95 #
96 #       Set of options applicable to all fptools projects
97 #
98 #################################################################################
99
100 #
101 # What parts to build: An fptools build tree does not have to be built
102 # all in one go. By setting the list of ProjectsToBuild in build.mk you can
103 # control which projects are built.
104 #
105 # Caution: the projects are built in the order given here, so if some
106 # projects use others you must list them in the correct order.
107 #
108 # Generally:    * glafp-utils should be first
109 #               * literate next
110 #               * happy next
111 #               * ghc&hslibs next
112 #               then it's up to you
113
114 ProjectsToBuild   = glafp-utils literate happy ghc hslibs
115 #
116 # Make a distinction between building and installing, ProjectsToInstall
117 # does not include the literate bits..
118 #
119 ProjectsToInstall = glafp-utils happy ghc hslibs
120
121 #
122 # Should the various project tests directories be built?
123 #
124 IncludeTestDirsInBuild=NO
125
126 #################################################################################
127 #
128 #               GHC project
129
130 #       Set of (configurable) options needed by the ghc tree
131 #       plus their default options (if any).
132 #
133 #################################################################################
134
135 #
136 # Name variables for ghc:
137
138 GhcProjectName         = The Glorious Glasgow Haskell Compilation System
139 GhcProjectNameShort    = ghc
140 GhcProjectVersion      = 2.09
141 GhcProjectPatchLevel   = 0
142
143 #
144 # Name variables for happy:
145 #
146 HappyProjectName       = Happy
147 HappyProjectNameShort  = happy
148 HappyProjectVersion    = 1.5
149 HappyProjectPatchLevel = 0
150
151 #
152 # Name variables for the fptools, for now equal to the above
153 # ghc stuff
154 #
155 ProjectName       =$(GhcProjectName)
156 ProjectNameShort  =$(GhcProjectNameShort)
157 ProjectVersion    =$(GhcProjectVersion)
158 ProjectPatchLevel =$(GhcProjectPatchLevel)
159
160
161 #---------------------------------------------------------------
162 #
163 # Variables that control how the compiler itself is built
164
165 # Specify the Haskell compiler to be used to compile the compiler itself
166 #
167 #   WithGhcHc      Path name of the compiler to use
168 #
169 #   Ghc2_0         Whether this compiler is GHC 2.0 or later
170 #                  (which affects gruesome details about
171 #                  how mutually recursive modules are handled)
172 #
173 #   WithGhcHcType  What "type" of compiler is being used
174 #                  Valid options:
175 #                            HC_CHALMERS_HBC
176 #                            HC_GLASGOW_GHC
177 #                            HC_ROJEMO_NHC
178 #                            HC_UNSPECIFIED
179
180 WithGhcHc = ghc-0.29
181 Ghc2_0=NO
182
183 # Unused, we think
184 # WithGhcHcType=HC_GLASGOW_GHC
185
186 # Extra ways in which to build the compiler (for example, you might want to
187 # build a profiled compiler so you can see where it spends its time)
188 GhcCompilerWays=
189
190 # Extra option flags to pass to the compiler that compiles the compiler
191 # (Ones that are essential are wired into ghc/compiler/Makefile)
192 # Typical ones:
193 #       -H25m           allocate a bigger heap (default is 6m)
194 #
195 #       -O              compile an optimised compiler
196 #                       NB! If you add -O you'll almost certainly need to increase
197 #                       the amount of heap space too (to 15m or more)
198 #
199 #       -DDEBUG         include consistency/assertion checks in the compiled compiler
200 #
201 #       -dcore-lint     check the types after every pass of the compiler;
202 #                       a pretty strong internal check
203 GhcHcOpts=
204
205 # GhcWithHscBuiltViaC - build GHC compiler proper (\`hsc') from .hc files?
206 GhcWithHscBuiltViaC=NO
207
208 # Build hsc with -O and turn optimising flag on when compiling
209 # the intermediate C file
210 GhcUseGccForOptAsm=YES
211
212 # Compile intermediate C file with debugging options set.
213 GhcUseGccForDebuggingAsm=YES
214
215 # Build a registerised version of hsc and runtime
216 # (you'd be desperate or silly not to).
217 GhcWithRegisterised=YES
218
219 # Build a compiler with a native code generator backend
220 # (as well as a C backend)
221 #
222 # Target platforms supported:
223 #   i386, alpha & sparc
224 GhcWithNativeCodeGen=$(shell if (test x$(findstring $(HostArch_CPP),i386 alpha sparc) = x); then echo NO; else echo YES; fi)
225
226 #
227 # Building various ways?
228 # (right now, empty if not).
229 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
230 BuildingConcurrent=$(subst mc,YES,$(filter mc,$(WAYS)))
231 BuildingProfiling=$(subst p,YES,$(filter p,$(WAYS)))
232 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
233 BuildingProfilingConcurrent=$(subst mr,YES,$(filter mr,$(WAYS)))
234
235 #---------------------------------------------------------------
236 #
237 # Variables that control how the prelude libraries and runtime system are built
238
239 # What extra ways to build the libraries in
240 # In addition to the normal sequential way, the default is to also build
241 # profiled prelude libraries.
242 GhcLibWays=p
243
244 # Option flags to pass to GHC when it's compiling prelude modules
245 # Typically these are things like -O or -dcore-lint
246 # The ones that are *essential* are wired into ghc/lib/Makefile
247 #
248 #       -O is pretty desirable, otherwise no inlining of prelude
249 #               things (incl "+") happens when compiling with this compiler
250
251 #
252 # Splitting profiled code produces awfully large archives under ELF, so
253 # we turn it off here.
254 #
255 # ToDo: track down the source of this.
256 #
257 ifneq "$(strip $(way))" "p"
258 GhcLibHcOpts= -O -split-objs -odir $*
259 else
260 GhcLibHcOpts= -O
261 endif
262
263
264 #################################################################################
265 #
266 #               hslibs project
267 #
268 #       Set of (configurable) options needed by the Haskell libraries (hslibs)
269 #       plus their default options (if any).
270 #
271 #################################################################################
272
273 # Build the Haskell Readline bindings?
274 #
275 HsLibsWithReadline=NO
276 #
277 # Include path to readline.h
278 # (no path == in standard include path)
279 #
280 ReadlineIncludePath=
281
282 # Build the socket libraries?
283 #
284 HsLibsWithSockets=YES
285
286 #
287 # The different ways to build hslibs. Default is just to mirror
288 # what is done for the ghc prelude libraries.
289 #
290 HsLibWays=$(GhcLibWays)
291
292 # Option flags for hslibs are by default the same as for the options
293 # used for the prelude libs (see above).
294 HsLibHcOpts=$(GhcLibHcOpts)
295
296 #################################################################################
297 #
298 #               happy project
299 #
300 #       Happy specific options
301 #
302 #################################################################################
303
304 # The compiler you'd like to use to compile Happy
305 WithHappyHc = $(WithGhcHc)
306
307 # HappyHcOpts gives the flags to pass to the Haskell compiler used
308 #             to compile the Happy sources with.
309 #
310 HappyHcOpts = 
311
312
313 #################################################################################
314 #
315 #               haggis project
316 #
317 #       Haggis specific options
318 #
319 #################################################################################
320
321
322
323 #################################################################################
324 #
325 #               green-card project
326 #
327 #       Green-card specific options
328 #
329 #################################################################################
330
331
332 #################################################################################
333 #
334 #               nofib project
335 #
336 #       nofib specific options
337 #
338 #################################################################################
339
340
341 # NoFibSubDirs controls which set of tests should be run
342 # You can run one or more of
343 #       imaginary 
344 #       spectral
345 #       real
346 #       parallel
347 #       PRIVATE
348 #       GHC_ONLY
349 #       PENDING
350 #       UNUSED
351 NoFibSubDirs = imaginary spectral real GHC_ONLY PRIVATE
352
353 # The different ways to build nofib. Default is just to mirror
354 # what is done for the ghc prelude libraries.
355 #
356 NoFibWays=$(GhcLibWays)
357
358 # Haskell compiler options for nofib
359 NoFibHcOpts=
360
361 # ==============================================================================
362 #
363 #                       END OF PROJECT-SPECIFIC STUFF
364 #
365 #               Now come the generic configuration options
366 #
367 # ==============================================================================
368
369 #################################################################################
370 #
371 #               Paths (see paths.mk)
372 #
373 #################################################################################
374
375 TMPDIR                  = /tmp
376
377 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path.
378
379 FPTOOLS_TOP_ABS         = @hardtop@
380
381 #
382 # Installation directories, we don't use half of these,
383 # but since the configure script has them on offer while
384 # passing through, we might as well set them.
385
386 prefix                  = @prefix@
387 exec_prefix             = @exec_prefix@
388 bindir                  = @bindir@
389 #UNUSED, see below: libexecdir              = @libexecdir@
390 datadir                 = @datadir@
391 #sysconfdir              = @datadir@
392 #sharedstatedir          = @sharedstatedir@
393 #localstatedir           = @localstatedir@
394 libdir                  = @libdir@
395 infodir                 = @infodir@
396 includedir              = @includedir@
397 oldincludedir           = @oldincludedir@
398 mandir                  = @mandir@
399 #UNUSED:srcdir          = @srcdir@
400
401
402 # Default values for most of the above are only set if
403 # they weren't configured to anything in particular
404 # via the configure script. (i.e., we make no assumption
405 # that the autoconf-generated script will assign defaults
406 # to all of the above).
407 #
408 ifeq "$(strip $(exec_prefix))" ""
409 exec_prefix             = $(prefix)
410 endif
411 ifeq "$(strip $(bindir))" ""
412 bindir                  = $(exec_prefix)/bin
413 endif
414
415 #
416 # NOTE: by intention, libexecdir and libdir point to 
417 # the same place.
418 #  => Only way to override this is to set libexecdir= on the command line.
419 #     (NOTE: configure script setting is ignored).
420 libexecdir              = $(libdir)
421
422 ifeq "$(strip $(datadir))" ""
423 datadir         = $(prefix)/share
424 endif
425 ifeq "$(strip $(libdir))" ""
426 libdir          = $(exec_prefix)/lib
427 endif
428 ifeq "$(strip $(infodir))" ""
429 infodir         = $(prefix)/info
430 endif
431 ifeq "$(strip $(includedir))" ""
432 includedir      = $(prefix)/include
433 endif
434 ifeq "$(strip $(oldincludedir))" ""
435 oldincludedir   = /usr/include
436 endif
437 ifeq "$(strip $(mandir))" ""
438 mandir          = $(prefix)/man
439 endif
440  
441
442 #################################################################################
443 #
444 #               Utilities programs: flags
445 #
446 #################################################################################
447
448 # If you want to give any standard flags to pretty much any utility
449 # (see utils.mk for a complete list), by adding a line here
450 #
451 #       SRC_P_OPTS += ...
452 #
453 # where P is the utility. For example, to add -O to all Haskell
454 # compilations, 
455 #
456 #       SRC_HC_OPTS += -O
457
458
459 #################################################################################
460 #
461 #               Utilities programs: where to find them
462 #
463 #################################################################################
464
465 #-----------------------------------------------------------------------------
466 # FPtools Utility locations
467
468 # By default, the various utils needed to be build ghc and chums
469 # is set up to point to the utils/ directory. Define here the
470 # path prefix for the utilities. Notice that it's a prefix with
471 # a trailing slash, so that it can be concatenated directly on
472 # front of a program name; if it's not set then we just look
473 # along the shell's $(PATH)
474 #
475 # If instead you want to use installed or your own versions of these,
476 # override the various *_PREFIX in build.mk, i.e., having the following
477 # in build.mk:
478 #
479 #   FASTMAKE_PREFIX=
480 #
481 # will force `make' to rummage around in your PATH to find `fastmake' (not
482 # sure it would need it in the first place, but still).
483 #
484 GLAFP_UTILS             = $(FPTOOLS_TOP)/glafp-utils
485
486 SCRIPT_PREFIX           = $(GLAFP_UTILS)/scripts/
487 FASTMAKE_PREFIX         = $(GLAFP_UTILS)/fastmake/
488 MKDEPENDC_PREFIX        = $(GLAFP_UTILS)/mkdependC/
489 LTX_PREFIX              = $(GLAFP_UTILS)/ltx/
490 RUNTEST_PREFIX          = $(GLAFP_UTILS)/runstdtest/
491 VERBATIM_PREFIX         = $(GLAFP_UTILS)/verbatim/
492 SGMLVERB_PREFIX         = $(GLAFP_UTILS)/sgmlverb/
493 ETAGS_PREFIX            = $(GLAFP_UTILS)/etags/
494 MSUB_PREFIX             = $(GLAFP_UTILS)/msub/
495 LNDIR_PREFIX            = $(GLAFP_UTILS)/lndir/
496 MKDIRHIER_PREFIX        = $(GLAFP_UTILS)/mkdirhier/
497
498 # Still used?
499 LITERATE                = $(FPTOOLS_TOP)/literate
500
501 LITERATE_PREFIX         = $(FPTOOLS_TOP)/literate/
502 INFO_PREFIX             = $(FPTOOLS_TOP)/literate/info-utils/
503 TEXI2HTML_PREFIX        = $(LITERATE_PREFIX)texi2html/
504
505 HAPPY_PREFIX            = $(FPTOOLS_TOP)/happy/src/
506 GREENCARD_PREFIX        = $(FPTOOLS_TOP)/green-card/src/
507
508 UNLIT_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/unlit/
509 UGEN_PREFIX             = $(FPTOOLS_TOP)/ghc/utils/ugen/
510 STAT2RESID_PREFIX       = $(FPTOOLS_TOP)/ghc/utils/stat2resid/
511 HP2PS_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hp2ps/
512 HSCPP_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hscpp/
513 HSTAGS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hstags/
514
515
516 #-----------------------------------------------------------------------------
517 # Haskell compiler and mkdependHS
518
519 HC              = $(FPTOOLS_TOP)/ghc/driver/ghc
520 MKDEPENDHS      = $(HC)
521
522 #
523 # The compiler proper is built with the 1.2 compiler,
524 # so when building the dependencies, we need mkdependHS
525 # for the 1.2 compiler.
526 #
527 MKDEPENDHS_1_2  = mkdependHS-1.2
528
529 #-----------------------------------------------------------------------------
530 # C compiler
531 #
532 #
533 HaveGcc         = @HaveGcc@
534 UseGcc          = YES
535 WhatGccIsCalled = gcc
536 ifeq "$(strip $(HaveGcc))" "YES"
537 ifneq "$(strip $(UseGcc))"  "YES"
538   CC    = cc
539 else
540   CC    = $(WhatGccIsCalled)
541 endif
542 endif
543
544 #-----------------------------------------------------------------------------
545 # Flex
546
547 FLEX                    = @LEX@
548 FLEX_LIB                = @LEXLIB@
549
550 #-----------------------------------------------------------------------------
551 # Other standard (ha!) Unix utilities
552
553 AR                      = @ArCmd@
554 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
555 BASH                    = /usr/local/bin/bash
556 #
557 # Could be either gzip or compress
558 #
559 COMPRESS                = @CompressCmd@
560 COMPRESS_SUFFIX         = @CompressSuffix@
561
562 CONTEXT_DIFF            = @ContextDiffCmd@
563 CP                      = cp
564 CPP                     = @RAWCPP@
565 CTAGS                   = $(ETAGS)
566 RAWCPP                  = @RAWCPP@
567 GNUCPP                  = @GNUCPP@
568 INSTALL                 = @INSTALL@
569 #
570 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
571 # install-sh script (if chosen). This not terribly useful to us, so we convert
572 # it into an abs. path.
573
574 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
575 LATEX                   = latex
576 LN_S                    = @LN_S@
577 MANMACROS               = -man
578 MSMACROS                = -ms
579 MV                      = mv
580 NROFF                   = nroff
581 PERL                    = @PerlCmd@
582 PIC                     = pic
583 PREPROCESSCMD           = $(CC) -E
584 PRINTER                 = lpr
585 RANLIB                  = @RANLIB@
586 RM                      = rm -f
587 SED                     = @SedCmd@
588 SHELL                   = /bin/sh
589 #
590 # In emergency situations, REAL_SHELL is used to perform shell commands
591 # from within the ghc driver script, by scribbling the command line to
592 # a temp file and then having $(REAL_SHELL) execute it. 
593 #
594 # The reason for having to do this is that overly long command lines
595 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
596 # 2.5.1), which is why this backdoor is provided. The situation of overly
597 # long command lines is either encountered while doing `make boot' in ghc/compiler, 
598 # or when linking the compiler binary (`hsc'). 
599 #
600 # We do not use SHELL to execute long commands, as `make' will more than likely
601 # override whatever setting you have in your environment while executing. 
602
603 # By default, REAL_SHELL is set equal SHELL, which is not really a smart move
604 # as it SHELL that will show up the bogosity in the first place, but setting
605 # it to anything else isn't really portable.
606 #
607 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
608 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
609 # command shell.
610 #
611 REAL_SHELL=$(SHELL)
612 SIZE                    = size
613 STRIP                   = strip
614 TAR                     = @TarCmd@
615
616 #
617 # Under cygwin32, we have to deal with .exe suffixes
618 #
619 EXE_SUFFIX=@ExeSuffix@
620
621 #
622 # This is special to literate/, ToDo: add literate-specific
623 # configure setup to literate/.
624 #
625 TBL                     = tbl
626 TEX                     = tex
627 TGRIND                  = tgrind
628 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
629 TIB                     = tib
630
631 TIME                    = @TimeCmd@
632 TROFF                   = troff
633 UNAME                   = uname
634 YACC                    = @YaccCmd@
635
636
637 #-----------------------------------------------------------------------------
638 #               FPtools support software
639
640 # Stuff from fptools/glafp-utils
641 MKDEPENDC               = $(MKDEPENDC_PREFIX)mkdependC
642 FASTMAKE                = $(FASTMAKE_PREFIX)fastmake
643 LTX                     = $(LTX_PREFIX)ltx
644 MKDIRHIER               = $(MKDIRHIER_PREFIX)mkdirhier
645 LNDIR                   = $(LNDIR_PREFIX)lndir
646 MSUB                    = $(MSUB_PREFIX)msub
647 ETAGS                   = $(ETAGS_PREFIX)etags
648 VERBATIM                = $(VERBATIM_PREFIX)verbatim
649 SGMLVERB                = $(SGMLVERB_PREFIX)sgmlverb
650 SGML2LATEX              = sgml2latex
651 RUNTEST                 = $(RUNTEST_PREFIX)runstdtest
652 HAPPY                   = @HappyCmd@
653 HAPPY_VERSION           = @HappyVersion@                
654 LX                      = @LxCmd@
655 GREENCARD               = @GreencardCmd@
656
657 ifeq "$(HAPPY)" ""
658 HAPPY                   = $(HAPPY_PREFIX)happy
659 endif
660
661 #
662 # Stuff from fptools/literate
663 #
664 INFO                    = $(UTIL_PREFIX)info
665 MAKEINFO                = $(INFO_PREFIX)makeinfo
666 POSTMAKEINFO            = $(INFO_PREFIX)postmakeinfo
667 LIT2PGM                 = $(LITERATE_PREFIX)lit2pgm
668 LIT2TEXI                = $(LITERATE_PREFIX)lit2texi
669 LIT2HTML                = $(LITERATE_PREFIX)lit2html
670 LIT2LATEX               = $(LITERATE_PREFIX)lit2latex
671 MKDEPENDLIT             = $(LITERATE_PREFIX)mkdependlit
672 LIT2CHANGELOG           = $(LITERATE_PREFIX)lit2changelog
673 LIT2TEXT                = $(LITERATE_PREFIX)lit2text
674 TEXI2HTML               = $(TEXI2HTML_PREFIX)texi2html
675
676 #
677 # Stuff from fptools/ghc/utils
678 #
679 UNLIT                   = $(UNLIT_PREFIX)unlit
680 UGEN                    = $(UGEN_PREFIX)ugen
681 STAT2RESID              = $(STAT2RESID_PREFIX)stat2resid
682 HP2PS                   = $(HP2PS_PREFIX)hp2ps
683 HSCPP                   = $(HSCPP_PREFIX)hscpp
684 HSTAGS                  = $(HSTAGS_PREFIX)hstags
685
686 #
687 # Options for the compiling different `ways'. Various projects within
688 # the glorious fptools tree support building in various user-configured
689 # ways. For instance, you could set up one `way' such that the prelude
690 # libraries and hslibs all were built with the option -ffoldr-build-on.
691
692 # To configure up your own way, have a look at some of the standard ways
693 # such as profiling, and create your own set of WAY_*_OPTS defs below.
694 # After having done that, add your way string to WAYS, and after having
695 # run the configure script, the different projects will add the new way
696 # to the list of ways they support.
697 #
698
699 #
700 # IMPORTANT! The WAYS variable configures the different `ways'
701 # you want to build a project (or maybe just parts of it, as is
702 # the case for ghc/). This variable is intended set inside the
703 # project mk setup, enforcing a global fptools WAYS is a bit too
704 # much (do you *really* want to build glafp-utils the profiled-concurrent 
705 # way?)
706 #
707
708 #
709 # Definitions of the different ways:
710 #   
711 #   * their name:
712 #          - tag, e.g., p
713 #          - description, e.g., profiling
714 #   * what they mean to the driver:
715 #          - WAY_p_HC_OPTS gives the list of command-line options
716 #            to the driver.
717 #
718
719 #
720 # The ways currently defined.
721 #
722 ALL_WAYS=p t u mc mr mt mp mg 1s 2s du a b c d e f g h i j k l m n o A B
723
724 #
725 # The following ways currently have treated specially, p u t mc mt my mp mg 1s 2d du,
726 # as the driver script treats these guys specially and needs to carefully be told
727 # about the options for these. Hence, we hide the required command line options
728 # for these in the ghc/driver, as this is the only place they are needed.
729
730 # If you want to add to these default options, fill in the variables below:
731
732 WAY_p_NAME=profiling
733 WAY_p_HC_OPTS= -prof
734
735 # Way t:
736 WAY_t_NAME=ticky-ticky profiling
737 WAY_t_HC_OPTS= -ticky
738
739 # Way `u':
740 WAY_u_NAME=unregisterized (using portable C only)
741 WAY_u_HC_OPTS=
742
743 # Way `mc': concurrent
744 WAY_mc_NAME=concurrent
745 WAY_mc_HC_OPTS=-concurrent
746
747 # Way `mr': 
748 WAY_mr_NAME=profiled concurrent
749 WAY_mr_HC_OPTS=-prof -concurrent
750
751 # Way `mt': 
752 WAY_mt_NAME=ticky-ticky concurrent
753 WAY_mt_HC_OPTS=-ticky -concurrent
754
755 # Way `mp': 
756 WAY_mp_NAME=parallel
757 WAY_mp_HC_OPTS=-parallel
758
759 #
760 # Way `mg': 
761 #
762 WAY_mg_NAME=GranSim
763 WAY_mg_HC_OPTS=-gransim
764
765 #
766 # Ways for different garbage collectors
767 #
768 WAY_2s_NAME=2-space GC
769 WAY_2s_HC_OPTS=-2s
770
771 WAY_1s_NAME=1-space GC
772 WAY_1s_HC_OPTS=-1s
773
774 WAY_du_NAME=dual-mode GC
775 WAY_du_HC_OPTS=-du
776
777 #
778 # Add user-way configurations here:
779 #
780 WAY_A_NAME=
781 WAY_A_HC_OPTS=
782
783 WAY_B_NAME=
784 WAY_B_HC_OPTS=
785
786 WAY_a_NAME=
787 WAY_a_HC_OPTS=
788
789 WAY_b_NAME=
790 WAY_b_HC_OPTS=
791
792 WAY_c_NAME=
793 WAY_c_HC_OPTS=
794
795 WAY_d_NAME=
796 WAY_d_HC_OPTS=
797
798 WAY_e_NAME=
799 WAY_e_HC_OPTS=
800
801 WAY_f_NAME=
802 WAY_f_HC_OPTS=
803
804 WAY_g_NAME=
805 WAY_g_HC_OPTS=
806
807 WAY_h_NAME=
808 WAY_h_HC_OPTS=
809
810 WAY_i_NAME=
811 WAY_i_HC_OPTS=
812
813 WAY_j_NAME=
814 WAY_j_HC_OPTS=
815
816 WAY_k_NAME=
817 WAY_k_HC_OPTS=
818
819 WAY_l_NAME=
820 WAY_l_HC_OPTS=
821
822 WAY_m_NAME=
823 WAY_m_HC_OPTS=
824
825 WAY_n_NAME=
826 WAY_n_HC_OPTS=
827
828 WAY_o_NAME=
829 WAY_o_HC_OPTS=