[project @ 1998-06-08 13:00:08 by simonm]
[ghc-hetmet.git] / mk / config.mk.in
1 #
2 # @configure_input@
3 #
4 #################################################################################
5 #
6 #                       config.mk.in-template
7 #
8 #       This file defines all the variables that set the configuration of
9 #       a particular build.
10 #
11 #
12 #################################################################################
13
14 # The configuration is defined in two steps:
15 #
16 #       1. The builder (i.e. the person doing the build)
17 #          copies this file, config.mk.in-template
18 #          to config.mk.in
19 #
20 #       2. S/he then edits it manually (gasp) to reflect any configuration
21 #          options s/he wants.
22 #
23 #       3. Then s/he runs "configure", which generates config.mk from
24 #          config.mk.in, substituting for system/platform-dependent things
25 #          enclosed in @at-signs@.
26 #
27 # This is one of only two files that configure generates (the other is config.h)
28 #
29 # Note that after subsequent edits of config.mk.in for a build, the configure script
30 # will have to be re-run manually to have the change reflected in config.mk. 
31 #
32
33 # There is a section below for each project within the fptools suite
34 #
35 #       PLUS
36 #
37 # a section corresponding to each of the main .mk files 
38 # included by boilerplate.mk (see boilerplate.mk for a list).
39
40
41 #################################################################################
42 #
43 #               Project-wide platform variables
44 #
45 #################################################################################
46
47 # A "platform" is the GNU cpu-type/manufacturer/operating-system target machine
48 # specifier.  E.g. sparc-sun-solaris2
49
50 HOSTPLATFORM                    = @HostPlatform@
51 TARGETPLATFORM                  = @TargetPlatform@
52 BUILDPLATFORM                   = @HostPlatform@
53
54 # Hack alert:
55 # in one or two places, we need to get at the OS version (major and perhaps even minor),
56 # HostOS_Full is the OS name reported by AC_CANONICAL_SYSTEM.
57 #
58 HostPlatform_CPP                = @HostPlatform_CPP@
59 HostArch_CPP                    = @HostArch_CPP@
60 HostOS_CPP                      = @HostOS_CPP@
61 HostOS_Full                     = @HostOS_Full@
62 HostVendor_CPP                  = @HostVendor_CPP@
63
64 #
65 # ToDo: check if these can be purged now. -- sof
66 #
67
68 @HostPlatform_CPP@_HOST        = 1
69 @HostPlatform_CPP@_TARGET      = 1
70 @HostPlatform_CPP@_BUILD       = 1
71
72 @HostArch_CPP@_HOST_ARCH       = 1
73 @HostArch_CPP@_TARGET_ARCH      = 1
74 @HostArch_CPP@_BUILD_ARCH      = 1
75
76 @HostOS_CPP@_HOST_OS           = 1
77 @HostOS_CPP@_TARGET_OS         = 1
78 @HostOS_CPP@_BUILD_OS          = 1
79
80 @HostVendor_CPP@_HOST_VENDOR    = 1
81 @HostVendor_CPP@_TARGET_VENDOR  = 1
82 @HostVendor_CPP@_BUILD_VENDOR   = 1
83
84 # Leading underscores on symbol names in object files
85 # Valid options: YES/NO
86 #
87 LeadingUnderscore=@LeadingUnderscore@
88
89 # Pin a suffix on executables? If so, what. (cygwin32 only).
90 exeext=@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 #               * happy next
110 #               * ghc next
111 #               then it's up to you
112
113 ProjectsToBuild   = glafp-utils ghc
114 #
115 # Make a distinction between building and installing
116 #
117 ProjectsToInstall = glafp-utils ghc
118
119 #
120 # Should the various project tests directories be built?
121 #
122 IncludeTestDirsInBuild=NO
123
124 #
125 # Name variables for the main project
126 #
127 Project           = Ghc
128 ProjectName       = $($(Project)ProjectName)
129 ProjectNameShort  = $($(Project)ProjectNameShort)
130 ProjectVersion    = $($(Project)ProjectVersion)
131 ProjectVersionInt = $($(Project)ProjectVersionInt)
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 # *ProjectVersion    is treated as a *string*
147 # *ProjectVersionInt is treated as an *integer* (for cpp defines)
148
149 GhcProjectName         = The Glorious Glasgow Haskell Compilation System
150 GhcProjectNameShort    = ghc
151 GhcProjectVersion      = 3.03
152 GhcProjectVersionInt   = 303
153 GhcProjectPatchLevel   = 0
154
155 #---------------------------------------------------------------
156 #
157 # Variables that control how the compiler itself is built
158
159 # Specify the Haskell compiler to be used to compile the compiler itself
160 #
161 #   WithGhcHc      Path name of the compiler to use
162 #
163 #   WithGhcHcType  What "type" of compiler is being used
164 #                  Valid options:
165 #                            HC_CHALMERS_HBC
166 #                            HC_GLASGOW_GHC
167 #                            HC_ROJEMO_NHC
168 #                            HC_UNSPECIFIED
169
170 WithGhcHc = ghc-2.10
171
172 # Extra ways in which to build the compiler (for example, you might want to
173 # build a profiled compiler so you can see where it spends its time)
174 GhcCompilerWays=
175
176 # Extra option flags to pass to the compiler that compiles the compiler
177 # (Ones that are essential are wired into ghc/compiler/Makefile)
178 # Typical ones:
179 #       -H25m           allocate a bigger heap (default is 6m)
180 #
181 #       -O              compile an optimised compiler
182 #                       NB! If you add -O you'll almost certainly need to increase
183 #                       the amount of heap space too (to 15m or more)
184 #
185 #       -DDEBUG         include consistency/assertion checks in the compiled compiler
186 #
187 #       -dcore-lint     check the types after every pass of the compiler;
188 #                       a pretty strong internal check
189 GhcHcOpts=
190
191 # GhcWithHscBuiltViaC - build GHC compiler proper (\`hsc') from .hc files?
192 GhcWithHscBuiltViaC=@BootingFromHc@
193
194 # Build hsc with -O and turn optimising flag on when compiling
195 # the intermediate C file
196 GhcUseGccForOptAsm=YES
197
198 # Compile intermediate C file with debugging options set.
199 GhcUseGccForDebuggingAsm=YES
200
201 # Build a registerised version of hsc and runtime
202 # (you'd be desperate or silly not to).
203 GhcWithRegisterised=YES
204
205 # Build a compiler with a native code generator backend
206 # (as well as a C backend)
207 #
208 # Target platforms supported:
209 #   i386, alpha & sparc
210 GhcWithNativeCodeGen=$(shell if (test x$(findstring $(HostArch_CPP),i386 alpha sparc) = x); then echo NO; else echo YES; fi)
211
212 #
213 # Building various ways?
214 # (right now, empty if not).
215 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
216 BuildingConcurrent=$(subst mc,YES,$(filter mc,$(WAYS)))
217 BuildingProfiling=$(subst p,YES,$(filter p,$(WAYS)))
218 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
219 BuildingProfilingConcurrent=$(subst mr,YES,$(filter mr,$(WAYS)))
220
221 #---------------------------------------------------------------
222 #
223 # Variables that control how the prelude libraries and runtime system are built
224
225 # What extra ways to build the libraries in
226 # In addition to the normal sequential way, the default is to also build
227 # profiled prelude libraries.
228 # When booting from .hc files, turn this off.
229 ifeq "$(GhcWithHscBuiltViaC)" "YES"
230 GhcLibWays
231 else
232 GhcLibWays=p
233 endif
234
235 # Option flags to pass to GHC when it's compiling prelude modules
236 # Typically these are things like -O or -dcore-lint
237 # The ones that are *essential* are wired into ghc/lib/Makefile
238 #
239 #       -O is pretty desirable, otherwise no inlining of prelude
240 #               things (incl "+") happens when compiling with this compiler
241
242 ifeq "$(GhcWithHscBuiltViaC)" "YES"
243 GhcLibHcOpts=-O
244 else
245 GhcLibHcOpts=-O -split-objs -odir $*
246 endif
247
248 # Build the Haskell Readline bindings?
249 #
250 GhcLibsWithReadline=NO
251 #
252 # Include path to readline.h
253 # (no path == in standard include path)
254 #
255 ReadlineIncludePath=
256
257 # Build the socket libraries?  (ToDo: is this used?)
258 #
259 GhcLibsWithSockets=YES
260
261 # Strip local symbols from libraries?  This can make the libraries smaller,
262 # but makes debugging somewhat more difficult.  Doesn't work with all ld's.
263 #
264 StripLibraries=NO
265
266 # what to include in a binary distribution
267
268 GhcMainDir = ghc
269 GhcBinDistDirs = ghc
270 GhcBinDistDocs = docs ghc/docs/users_guide ghc/docs/libraries
271 GhcBinDistPrlScripts = ghc-$(GhcProjectVersion) stat2resid hstags mkdependHS
272 GhcBinDistLibPrlScripts = hscpp
273 GhcBinDistBins = hp2ps
274
275 #################################################################################
276 #
277 #               happy project
278 #
279 #       Happy specific options
280 #
281 #################################################################################
282
283 #
284 # Name variables for happy:
285 #
286 HappyProjectName       = Happy
287 HappyProjectNameShort  = happy
288 HappyProjectVersion    = 1.5
289 HappyProjectVersionInt = 15
290 HappyProjectPatchLevel = 0
291
292 # The compiler you'd like to use to compile Happy
293 WithHappyHc = $(WithGhcHc)
294
295 # HappyHcOpts gives the flags to pass to the Haskell compiler used
296 #             to compile the Happy sources with.
297 #
298 HappyHcOpts = 
299
300 # what to include in a binary distribution
301
302 HappyMainDir = happy
303 HappyBinDistDirs = happy
304 HappyBinDistDocs = happy/doc
305 HappyBinDistShScripts = happy
306
307 #################################################################################
308 #
309 #               haggis project
310 #
311 #       Haggis specific options
312 #
313 #################################################################################
314
315 #################################################################################
316 #
317 #               green-card project
318 #
319 #       Green-card specific options
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 #       PENDING
340 #       UNUSED
341 NoFibSubDirs = imaginary spectral real
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 = -O
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 RTS_PREFIX              = $(FPTOOLS_TOP)/common-rts/
498
499 UNLIT_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/unlit/
500 UGEN_PREFIX             = $(FPTOOLS_TOP)/ghc/utils/ugen/
501 STAT2RESID_PREFIX       = $(FPTOOLS_TOP)/ghc/utils/stat2resid/
502 HP2PS_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hp2ps/
503 HSCPP_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hscpp/
504 HSTAGS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hstags/
505
506
507 #-----------------------------------------------------------------------------
508 # Haskell compiler and mkdependHS
509
510 HC              = $(FPTOOLS_TOP)/ghc/driver/ghc
511 MKDEPENDHS      = $(HC)
512
513 #-----------------------------------------------------------------------------
514 # C compiler
515 #
516 #
517 HaveGcc         = @HaveGcc@
518 UseGcc          = YES
519 WhatGccIsCalled = gcc
520 ifeq "$(strip $(HaveGcc))" "YES"
521 ifneq "$(strip $(UseGcc))"  "YES"
522   CC    = cc
523 else
524   CC    = $(WhatGccIsCalled)
525 endif
526 endif
527
528 #-----------------------------------------------------------------------------
529 # GMP Library
530 #
531 HaveLibGmp      = @HaveLibGmp@
532
533 #-----------------------------------------------------------------------------
534 # Flex
535
536 FLEX                    = @LEX@
537 FLEX_LIB                = @LEXLIB@
538
539 #-----------------------------------------------------------------------------
540 # Other standard (ha!) Unix utilities
541
542 AR                      = @ArCmd@
543 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
544 BASH                    = /usr/local/bin/bash
545 #
546 # Could be either gzip or compress
547 #
548 COMPRESS                = @CompressCmd@
549 COMPRESS_SUFFIX         = @CompressSuffix@
550
551 CONTEXT_DIFF            = @ContextDiffCmd@
552 CP                      = cp
553 CPP                     = @CPP@
554 CTAGS                   = $(ETAGS)
555 RAWCPP                  = @RAWCPP@
556 INSTALL                 = @INSTALL@
557 #
558 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
559 # install-sh script (if chosen). This not terribly useful to us, so we convert
560 # it into an abs. path.
561
562 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
563 LATEX                   = latex
564 LN_S                    = @LN_S@
565 MANMACROS               = -man
566 MSMACROS                = -ms
567 MV                      = mv
568 NROFF                   = nroff
569 PERL                    = @PerlCmd@
570 PIC                     = pic
571 PREPROCESSCMD           = $(CC) -E
572 PRINTER                 = lpr
573 RANLIB                  = @RANLIB@
574 RM                      = rm -f
575 SED                     = @SedCmd@
576 SHELL                   = /bin/sh
577 #
578 # In emergency situations, REAL_SHELL is used to perform shell commands
579 # from within the ghc driver script, by scribbling the command line to
580 # a temp file and then having $(REAL_SHELL) execute it. 
581 #
582 # The reason for having to do this is that overly long command lines
583 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
584 # 2.5.1), which is why this backdoor is provided. The situation of overly
585 # long command lines is either encountered while doing `make boot' in ghc/compiler, 
586 # or when linking the compiler binary (`hsc'). 
587 #
588 # We do not use SHELL to execute long commands, as `make' will more than likely
589 # override whatever setting you have in your environment while executing. 
590
591 # By default, REAL_SHELL is set equal SHELL, which is not really a smart move
592 # as it SHELL that will show up the bogosity in the first place, but setting
593 # it to anything else isn't really portable.
594 #
595 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
596 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
597 # command shell.
598 #
599 REAL_SHELL=$(SHELL)
600 SIZE                    = size
601 STRIP                   = strip
602 TAR                     = @TarCmd@
603 ZIP                     = zip
604
605 #
606 # Under cygwin32, we have to deal with .exe suffixes
607 #
608 EXE_SUFFIX=@ExeSuffix@
609
610 #
611 # This is special to literate/, ToDo: add literate-specific
612 # configure setup to literate/.
613 #
614 TBL                     = tbl
615 TEX                     = tex
616 TGRIND                  = tgrind
617 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
618 TIB                     = tib
619
620 TIME                    = @TimeCmd@
621 TROFF                   = troff
622 UNAME                   = uname
623 YACC                    = @YaccCmd@
624
625 #-----------------------------------------------------------------------------
626 # SGML stuff (currently not configured - we assume you have it)
627
628 SGML2LATEX              = sgml2latex
629 SGML2HTML               = sgml2html
630 SGML2INFO               = sgml2info
631 SGML2TXT                = sgml2txt
632
633 #-----------------------------------------------------------------------------
634 #               FPtools support software
635
636 # Stuff from fptools/glafp-utils
637 MKDEPENDC               = $(MKDEPENDC_PREFIX)mkdependC
638 LTX                     = $(LTX_PREFIX)ltx
639 MKDIRHIER               = $(MKDIRHIER_PREFIX)mkdirhier
640 LNDIR                   = $(LNDIR_PREFIX)lndir
641 MSUB                    = $(MSUB_PREFIX)msub
642 ETAGS                   = $(ETAGS_PREFIX)etags
643 VERBATIM                = $(VERBATIM_PREFIX)verbatim
644 SGMLVERB                = $(SGMLVERB_PREFIX)sgmlverb
645 SGML2LATEX              = sgml2latex
646 RUNTEST                 = $(RUNTEST_PREFIX)runstdtest
647 HAPPY                   = @HappyCmd@
648 HAPPY_VERSION           = @HappyVersion@                
649 LX                      = @LxCmd@
650 GREENCARD               = $(FPTOOLS_TOP)/green-card/src/green-card
651
652 #
653 # Stuff from fptools/literate
654 #
655 INFO                    = $(UTIL_PREFIX)info
656 MAKEINFO                = $(INFO_PREFIX)makeinfo
657 POSTMAKEINFO            = $(INFO_PREFIX)postmakeinfo
658 LIT2PGM                 = $(LITERATE_PREFIX)lit2pgm
659 LIT2TEXI                = $(LITERATE_PREFIX)lit2texi
660 LIT2HTML                = $(LITERATE_PREFIX)lit2html
661 LIT2LATEX               = $(LITERATE_PREFIX)lit2latex
662 MKDEPENDLIT             = $(LITERATE_PREFIX)mkdependlit
663 LIT2CHANGELOG           = $(LITERATE_PREFIX)lit2changelog
664 LIT2TEXT                = $(LITERATE_PREFIX)lit2text
665 TEXI2HTML               = $(TEXI2HTML_PREFIX)texi2html
666
667 #
668 # Stuff from fptools/ghc/utils
669 #
670 UNLIT                   = $(UNLIT_PREFIX)unlit
671 UGEN                    = $(UGEN_PREFIX)ugen
672 STAT2RESID              = $(STAT2RESID_PREFIX)stat2resid
673 HP2PS                   = $(HP2PS_PREFIX)hp2ps
674 HSCPP                   = $(HSCPP_PREFIX)hscpp
675 HSTAGS                  = $(HSTAGS_PREFIX)hstags
676
677 #
678 # Options for the compiling different `ways'. Various projects within
679 # the glorious fptools tree support building in various user-configured
680 # ways. For instance, you could set up one `way' such that the prelude
681 # libraries all were built with the option -ffoldr-build-on.
682
683 # To configure up your own way, have a look at some of the standard ways
684 # such as profiling, and create your own set of WAY_*_OPTS defs below.
685 # After having done that, add your way string to WAYS, and after having
686 # run the configure script, the different projects will add the new way
687 # to the list of ways they support.
688 #
689
690 #
691 # IMPORTANT! The WAYS variable configures the different `ways'
692 # you want to build a project (or maybe just parts of it, as is
693 # the case for ghc/). This variable is intended set inside the
694 # project mk setup, enforcing a global fptools WAYS is a bit too
695 # much (do you *really* want to build glafp-utils the profiled-concurrent 
696 # way?)
697 #
698
699 #
700 # Definitions of the different ways:
701 #   
702 #   * their name:
703 #          - tag, e.g., p
704 #          - description, e.g., profiling
705 #   * what they mean to the driver:
706 #          - WAY_p_HC_OPTS gives the list of command-line options
707 #            to the driver.
708 #
709
710 #
711 # The ways currently defined.
712 #
713 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
714
715 #
716 # The following ways currently have treated specially, p u t mc mt my mp mg 1s 2d du,
717 # as the driver script treats these guys specially and needs to carefully be told
718 # about the options for these. Hence, we hide the required command line options
719 # for these in the ghc/driver, as this is the only place they are needed.
720
721 # If you want to add to these default options, fill in the variables below:
722
723 WAY_p_NAME=profiling
724 WAY_p_HC_OPTS= -prof
725
726 # Way t:
727 WAY_t_NAME=ticky-ticky profiling
728 WAY_t_HC_OPTS= -ticky
729
730 # Way `u':
731 WAY_u_NAME=unregisterized (using portable C only)
732 WAY_u_HC_OPTS=
733
734 # Way `mc': concurrent
735 WAY_mc_NAME=concurrent
736 WAY_mc_HC_OPTS=-concurrent
737
738 # Way `mr': 
739 WAY_mr_NAME=profiled concurrent
740 WAY_mr_HC_OPTS=-prof -concurrent
741
742 # Way `mt': 
743 WAY_mt_NAME=ticky-ticky concurrent
744 WAY_mt_HC_OPTS=-ticky -concurrent
745
746 # Way `mp': 
747 WAY_mp_NAME=parallel
748 WAY_mp_HC_OPTS=-parallel
749
750 #
751 # Way `mg': 
752 #
753 WAY_mg_NAME=GranSim
754 WAY_mg_HC_OPTS=-gransim
755
756 #
757 # Ways for different garbage collectors
758 #
759 WAY_2s_NAME=2-space GC
760 WAY_2s_HC_OPTS=-2s
761
762 WAY_1s_NAME=1-space GC
763 WAY_1s_HC_OPTS=-1s
764
765 WAY_du_NAME=dual-mode GC
766 WAY_du_HC_OPTS=-du
767
768 #
769 # Add user-way configurations here:
770 #
771 WAY_A_NAME=
772 WAY_A_HC_OPTS=
773
774 WAY_B_NAME=
775 WAY_B_HC_OPTS=
776
777 WAY_a_NAME=
778 WAY_a_HC_OPTS=
779
780 WAY_b_NAME=
781 WAY_b_HC_OPTS=
782
783 WAY_c_NAME=
784 WAY_c_HC_OPTS=
785
786 WAY_d_NAME=
787 WAY_d_HC_OPTS=
788
789 WAY_e_NAME=
790 WAY_e_HC_OPTS=
791
792 WAY_f_NAME=
793 WAY_f_HC_OPTS=
794
795 WAY_g_NAME=
796 WAY_g_HC_OPTS=
797
798 WAY_h_NAME=
799 WAY_h_HC_OPTS=
800
801 WAY_i_NAME=
802 WAY_i_HC_OPTS=
803
804 WAY_j_NAME=
805 WAY_j_HC_OPTS=
806
807 WAY_k_NAME=
808 WAY_k_HC_OPTS=
809
810 WAY_l_NAME=
811 WAY_l_HC_OPTS=
812
813 WAY_m_NAME=
814 WAY_m_HC_OPTS=
815
816 WAY_n_NAME=
817 WAY_n_HC_OPTS=
818
819 WAY_o_NAME=
820 WAY_o_HC_OPTS=