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