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