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