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