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