Fix dynamic libs on OS X, and enable them by default
[ghc-hetmet.git] / mk / config.mk.in
1 #                                                                -*-makefile-*-
2 # @configure_input@
3 #
4 ################################################################################
5 #
6 # config.mk.in
7 #
8 # This file supplies defaults for many tweakable build configuration
9 # options.  Some of the defaults are filled in by the autoconf-generated
10 # configure script.
11 #
12 # DO NOT EDIT THIS FILE!
13 #
14 #       - config.mk is auto-generated from config.mk.in by configure.
15 #         If you edit config.mk your changes will be spammed.
16 #
17 #       - Settings in this file may be overriden by giving replacement
18 #         definitions in build.mk.  See build.mk.sample for a good
19 #         starting point for a build.mk file.
20 #
21 #         If you don't have a build.mk file then you get defaults for everything.
22 #         The defaults should provide a reasonable vanilla build.
23
24 # TOP: the top of the fptools hierarchy, absolute path.
25 # On Windows this is a c:/foo/bar style path.
26 TOP             = @hardtop@
27
28 include $(TOP)/mk/project.mk
29
30 ################################################################################
31 #
32 #               Global configuration options
33 #
34 ################################################################################
35
36 # BootingFromHc - build GHC and the libraries from .hc files?
37 # (unregisterised only)
38 BootingFromHc = @BootingFromHc@
39
40 NO_INCLUDE_DEPS = NO
41 NO_INCLUDE_PKGDATA = NO
42
43 # Should we build latex docs?
44 LATEX_DOCS = NO
45
46 # Mac OS X deployment target (to cross-compile for older OS versions)
47 #
48 MACOSX_DEPLOYMENT_VERSION = @MACOSX_DEPLOYMENT_VERSION@
49 MACOSX_DEPLOYMENT_SDK = @MACOSX_DEPLOYMENT_SDK@
50
51 ifneq "$(MACOSX_DEPLOYMENT_VERSION)" ""
52 MACOSX_DEPLOYMENT_CC_OPTS = -mmacosx-version-min=$(MACOSX_DEPLOYMENT_VERSION) \
53                             -isysroot $(MACOSX_DEPLOYMENT_SDK) \
54                             --no-builtin-fprintf
55 MACOSX_DEPLOYMENT_LD_OPTS = -mmacosx-version-min=$(MACOSX_DEPLOYMENT_VERSION) \
56                             -Wl,-syslibroot,$(MACOSX_DEPLOYMENT_SDK)
57 # We don't extend SRC_CC_OPTS and friends here directly, as (a) they may get
58 # overwritten in build.mk and (b) we must not use the deployment options in
59 # stage 1 or we get a linker error if the bootstrap compiler is for a more 
60 # recent OS version.
61 #
62 # We need --no-builtin-fprintf, as the use of the builtin function optimisation
63 # for fprintf together with #include "PosixSource" in the RTS leads to the
64 # use of fwrite$UNIX2003 (with GCC 4.0.1 on Mac OS X 10.5.2).
65 endif
66
67 ################################################################################
68 #
69 # Variables that control how the compiler itself is built
70 #
71 ################################################################################
72
73 # The compiler used to build GHC is $(GHC).  To change the actual compiler
74 # used, re-configure with --with-ghc=<path-to-ghc>.
75
76 # Extra ways in which to build the compiler (for example, you might want to
77 # build a profiled compiler so you can see where it spends its time)
78 GhcCompilerWays=
79
80 # Extra option flags to pass to the compiler that compiles the compiler
81 # (Ones that are essential are wired into compiler/Makefile)
82 # Typical options to use here:
83 #
84 #       -DDEBUG         include debugging code and assertions (will make the
85 #                       compiler slower and produce debugging output, but useful
86 #                       for development)
87 #
88 #       -dcore-lint     check the types after every pass of the compiler;
89 #                       a pretty strong internal check of the compiler being
90 #                       used to compile GHC.  Useful when bootstrapping.
91 GhcHcOpts=-Rghc-timing
92
93 # Extra options added to specific stages of the compiler bootstrap.
94 # These are placed later on the command line, and may therefore
95 # override options from $(GhcHcOpts).
96 GhcStage1HcOpts=
97 GhcStage2HcOpts=-O2
98 GhcStage3HcOpts=-O2
99
100 GhcProfiled=NO
101 GhcDebugged=NO
102 GhcLibProfiled=$(if $(filter p,$(GhcLibWays)),YES,NO)
103
104 # Do we support shared libs?
105 PlatformSupportsSharedLibs = $(if $(filter $(TARGETPLATFORM),i386-unknown-linux x86_64-unknown-linux i386-unknown-freebsd x86_64-unknown-freebsd i386-unknown-mingw32 i386-apple-darwin),YES,NO)
106
107 # ToDo later:
108 # BuildStaticLibs=@BuildStaticLibs@
109
110 # Build a compiler that will build *unregisterised* libraries and
111 # binaries by default.  Unregisterised code is supposed to compile and
112 # run without any support for architecture-specific assembly mangling,
113 # register assignment or tail-calls, and is therefore a good way to get
114 # started when porting GHC to new architectures.
115 #
116 # If this is set to NO, you can still use the unregisterised way
117 # (way 'u') to get unregisterised code, but the default way will be
118 # registerised.
119 #
120 # NOTE: the stage1 compiler will be a registerised binary (assuming
121 # the compiler you build with is generating registerised binaries), but
122 # the stage2 compiler will be an unregisterised binary.
123 #
124 ifneq "$(findstring $(HostArch_CPP), alpha hppa)" ""
125 GhcUnregisterised=YES
126 else
127 GhcUnregisterised=NO
128 endif
129
130 # Build a compiler with a native code generator backend
131 # (as well as a C backend)
132 #
133 # Target platforms supported:
134 #   i386, powerpc
135 #   AIX is not supported 
136 ArchSupportsNCG=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc sparc)))
137 OsSupportsNCG=$(strip $(patsubst $(HostOS_CPP), YES, $(patsubst aix,,$(HostOS_CPP))))
138
139 # lazy test, because $(GhcUnregisterised) might be set in build.mk later.
140 GhcWithNativeCodeGen=$(strip\
141     $(if $(filter YESYESNO,\
142                   $(OsSupportsNCG)$(ArchSupportsNCG)$(GhcUnregisterised)),YES,NO))
143
144 HaveLibDL = @HaveLibDL@
145
146 # ArchSupportsSMP should be set iff there is support for that arch in
147 # includes/stg/SMP.h
148 ArchSupportsSMP=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 sparc powerpc)))
149
150 # lazy test, because $(GhcUnregisterised) might be set in build.mk later.
151 GhcWithSMP=$(strip $(if $(filter YESNO, $(ArchSupportsSMP)$(GhcUnregisterised)),YES,NO))
152
153 # Whether to include GHCi in the compiler.  Depends on whether the RTS linker
154 # has support for this OS/ARCH combination.
155
156 OsSupportsGHCi=$(strip $(patsubst $(HostOS_CPP), YES, $(findstring $(HostOS_CPP), mingw32 cygwin32 linux solaris2 freebsd dragonfly netbsd openbsd darwin)))
157 ArchSupportsGHCi=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc sparc sparc64)))
158
159 ifeq "$(OsSupportsGHCi)$(ArchSupportsGHCi)" "YESYES"
160 GhcWithInterpreter=YES
161 else 
162 GhcWithInterpreter=NO
163 endif
164
165 # GhcEnableTablesNextToCode tells us whether the target architecture
166 # supports placing info tables directly before the entry code
167 # (see TABLES_NEXT_TO_CODE in the RTS).  Whether we actually compile for
168 # TABLES_NEXT_TO_CODE depends on whether we're building unregisterised
169 # code or not, which may be decided by options to the compiler later.
170 ifneq "$(findstring $(TargetArch_CPP)X, ia64X powerpc64X)" ""
171 GhcEnableTablesNextToCode=NO
172 else
173 GhcEnableTablesNextToCode=YES
174 endif
175
176 # Whether to use libffi for adjustors (foreign import "wrapper") or
177 # not.  If we have built-in support (rts/Adjustor.c) then we use that,
178 # otherwise we fall back on libffi, which is slightly slower.
179 ArchHasAdjustorSupport=$(strip $(if $(findstring $(HostArch_CPP),i386 x86_64 alpha powerpc ia64,),YES,NO))
180 ifeq "$(ArchHasAdjustorSupport)" "YES"
181 UseLibFFIForAdjustors=NO
182 else
183 UseLibFFIForAdjustors=YES
184 endif
185
186 # On Windows we normally want to make a relocatable bindist, to we
187 # ignore flags like libdir
188 ifeq "$(Windows)" "YES"
189 RelocatableBuild = YES
190 else
191 RelocatableBuild = NO
192 endif
193
194 # needs to be after $(RelocatableBuild) is set above
195 include $(TOP)/mk/install.mk
196
197 # When building bindists we set this to yes so that the binaries are as
198 # portable as possible.
199 BeConservative = NO
200
201 #
202 # Building various ways?
203 # (right now, empty if not).
204 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
205 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
206
207 #------------------------------------------------------------------------------
208 # Options for Libraries
209
210 # Which directory (in libraries/) contains the integer library?
211 INTEGER_LIBRARY=integer-gmp
212
213 # We build the libraries at least the "vanilla" way (way "v")
214 GhcLibWays = v
215
216 # In addition to the normal sequential way, the default is to also build
217 # profiled prelude libraries unless we are booting from .hc files
218 ifneq "$(BootingFromHc)" "YES"
219 GhcLibWays += p
220 endif
221
222 ifeq "$(PlatformSupportsSharedLibs)" "YES"
223 GhcLibWays += dyn
224 endif
225
226 # Handy way to test whether we're building shared libs or not.
227 BuildSharedLibs=$(strip $(if $(findstring dyn,$(GhcLibWays)),YES,NO))
228
229 # In addition, the RTS is built in some further variations.  Ways that
230 # make sense here:
231
232 #   thr         : threaded
233 #   thr_p       : threaded profiled
234 #   debug       : debugging (compile with -g for the C compiler, and -DDEBUG)
235 #   debug_p     : debugging profiled
236 #   thr_debug   : debugging threaded
237 #   thr_debug_p : debugging threaded profiled
238 #   l           : event logging
239 #   thr_l       : threaded and event logging
240 #
241 GhcRTSWays=l
242
243 # Usually want the debug version
244 ifeq "$(BootingFromHc)" "NO"
245 GhcRTSWays += debug 
246 endif
247
248 # Want the threaded versions unless we're unregisterised
249 # Defer the check until later by using $(if..), because GhcUnregisterised might
250 # be set in build.mk, which hasn't been read yet.
251 GhcRTSWays += $(if $(findstring NO, $(GhcUnregisterised)),thr thr_debug thr_l,)
252 GhcRTSWays += $(if $(findstring p, $(GhcLibWays)),$(if $(findstring NO, $(GhcUnregisterised)),thr_p,),)
253 GhcRTSWays += $(if $(findstring dyn, $(GhcLibWays)), dyn debug_dyn $(if $(findstring NO, $(GhcUnregisterised)),thr_dyn thr_debug_dyn),)
254
255 # We can only build GHCi threaded if we have a threaded RTS:
256 GhcThreaded = $(if $(findstring thr,$(GhcRTSWays)),YES,NO)
257
258 # Option flags to pass to GHC when it's compiling modules in
259 # fptools/libraries.  Typically these are things like -O or
260 # -dcore-lint or -H32m.  The ones that are *essential* are wired into
261 # the build system.
262 #
263 #       -O(2) is pretty desirable, otherwise no inlining of prelude
264 #               things (incl "+") happens when compiling with this compiler
265 #
266 #       -XGenerics switches on generation of support code for 
267 #               derivable type classes.  This is now off by default,
268 #               but we switch it on for the libraries so that we generate
269 #               the code in case someone importing wants it
270
271 GhcLibHcOpts=-O2 -XGenerics
272
273 # Strip local symbols from libraries?  This can make the libraries smaller,
274 # but makes debugging somewhat more difficult.  Doesn't work with all ld's.
275 #
276 StripLibraries=NO
277
278 # These are the URL patterns that Haddock uses to generate the "Source
279 # File" links on each page.
280 PackageSourceURL = http://darcs.haskell.org/packages/$(PACKAGE)/%{FILE}
281
282 # ----------------------------------------------------------------------------
283 # Object-file splitting
284 #
285 #       Set SplitObjs=YES or NO in your build.mk
286 #
287 #       Don't use -split-objs in in GhcLibHcOpts, because the build
288 #               system needs to do other special magic if you are
289 #               doing object-file splitting
290
291 ArchSupportsSplitObjs=$(strip $(if $(filter $(TargetArch_CPP),i386 x86_64 powerpc sparc),YES,NO))
292
293 # lazy test, so that $(GhcUnregisterised) can be set in build.mk
294 SupportsSplitObjs=$(strip $(if $(filter YES,$(ArchSupportsSplitObjs)),\
295                     $(if $(filter NO,$(BootingFromHc)),\
296                       $(if $(filter NO,$(GhcUnregisterised)),\
297                         YES,\
298                         NO),\
299                       NO),\
300                     NO))
301
302 # By default, enable SplitObjs for the libraries if this build supports it
303 SplitObjs=$(SupportsSplitObjs)
304
305 # ----------------------------------------------------------------------------
306 # Package-related things
307
308 # Extra packages to add to the build, in dependency order
309 EXTRA_PACKAGES =
310
311 # Whether to install $(EXTRA_PACKAGES)
312 InstallExtraPackages = NO
313
314 # Run "ghc-pkg check" on each package
315 CHECK_PACKAGES = NO
316
317 # ----------------------------------------------------------------------------
318 # Options for GHC's RTS
319
320 # For an optimised RTS (you probably don't want to change these; we build
321 # a debugging RTS by default now.  Use -debug to get it).
322 GhcRtsHcOpts=-optc-O2
323 GhcRtsCcOpts=-fomit-frame-pointer
324
325 # Include the front panel code?  Needs GTK+.
326 GhcRtsWithFrontPanel = NO
327
328 # Include support for CPU performance counters via the PAPI library in the RTS?
329 # (PAPI: http://icl.cs.utk.edu/papi/)
330 GhcRtsWithPapi = NO
331 PapiLibDir=
332 PapiIncludeDir=
333
334 ################################################################################
335 #
336 #               Paths (see paths.mk)
337 #
338 ################################################################################
339
340 # Directory used by GHC (and possibly other tools) for storing
341 # temporary files.  If your TMPDIR isn't big enough, either override
342 # this in build.mk or set your environment variable "TMPDIR" to point
343 # to somewhere with more space.  (TMPDIR=. is a good choice).
344
345 # DEFAULT_TMPDIR isn't called TMPDIR because GNU make tends to
346 # override an environment variable with the value of the make variable
347 # of the same name (if it exists) when executing sub-processes, so
348 # setting the TMPDIR env var would have no effect in the build tree.
349
350 DEFAULT_TMPDIR          = /tmp
351 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
352 DEFAULT_TMPDIR          = /C/TEMP
353 endif
354 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
355 DEFAULT_TMPDIR          = /C/TEMP
356 endif
357
358 BIN_DIST_NAME         = ghc-$(ProjectVersion)
359 BIN_DIST_PREP_DIR     = bindistprep/$(BIN_DIST_NAME)
360 BIN_DIST_PREP_TAR     = bindistprep/$(BIN_DIST_NAME)-$(TARGETPLATFORM).tar
361 BIN_DIST_PREP_TAR_BZ2 = $(BIN_DIST_PREP_TAR).bz2
362 BIN_DIST_TAR_BZ2      = $(BIN_DIST_NAME)-$(TARGETPLATFORM).tar.bz2
363 BIN_DIST_LIST         = bindist-list
364
365 WINDOWS_INSTALLER_BASE = ghc-$(ProjectVersion)-i386-windows
366 WINDOWS_INSTALLER = $(WINDOWS_INSTALLER_BASE)$(exeext)
367
368 # -----------------------------------------------------------------------------
369 # Utilities programs: flags 
370
371 # If you want to give any standard flags to pretty much any utility
372 # (see utils.mk for a complete list), by adding a line here
373 #
374 #       SRC_P_OPTS += ...
375 #
376 # where P is the utility. For example, to add -O to all Haskell
377 # compilations, 
378 #
379 #       SRC_HC_OPTS += -O
380
381 SRC_HC_OPTS += -H32m -O
382
383 # These flags make flex 8-bit
384 SRC_FLEX_OPTS   += -8
385
386 # Default fptools options for dllwrap.
387 SRC_BLD_DLL_OPTS += --target=i386-mingw32
388
389 # Flags for CPP when running GreenCard on .pgc files
390 GC_CPP_OPTS += -P -E -x c -traditional -D__GLASGOW_HASKELL__
391
392
393 # -----------------------------------------------------------------------------
394 # Names of programs in the GHC tree
395 #
396 #      xxx_PGM          the name of an executable, without the path
397 #      xxx              the executable relative to the current dir
398
399 GHC_UNLIT_PGM           = unlit$(exeext)
400 GHC_HP2PS_PGM           = hp2ps$(exeext)
401 GHC_GHCTAGS_PGM         = ghctags$(exeext)
402 GHC_HSC2HS_PGM          = hsc2hs$(exeext)
403 GHC_TOUCHY_PGM          = touchy$(exeext)
404 GHC_MANGLER_PGM         = ghc-asm
405 GHC_SPLIT_PGM           = ghc-split
406 GHC_SYSMAN_PGM          = SysMan
407 GHC_GENPRIMOP_PGM       = genprimopcode$(exeext)
408 GHC_GENAPPLY_PGM        = genapply$(exeext)
409 GHC_CABAL_PGM           = ghc-cabal$(exeext)
410 GHC_PKG_PGM             = ghc-pkg$(exeext)
411 GHC_LTX_PGM             = ltx$(exeext)
412 GHC_MKDIRHIER_PGM       = mkdirhier
413 GHC_LNDIR_PGM           = lndir
414 GHC_DUMMY_GHC_PGM       = dummy-ghc$(exeext)
415
416 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
417 GHC_CP                  = "xcopy /y"
418 GHC_PERL                = perl
419 else
420 GHC_CP                  = $(CP)
421 GHC_PERL                = $(PERL)
422 endif
423
424 HP2PS                   = $(GHC_HP2PS_DIR)/$(GHC_HP2PS_PGM)
425 MANGLER                 = $(INPLACE_LIB)/$(GHC_MANGLER_PGM)
426 SPLIT                   = $(INPLACE_LIB)/$(GHC_SPLIT_PGM)
427 SYSMAN                  = $(GHC_SYSMAN_DIR)/$(GHC_SYSMAN_PGM)
428 LTX                     = $(GHC_LTX_DIR)/$(GHC_LTX_PGM)
429 LNDIR                   = $(GHC_LNDIR_DIR)/$(GHC_LNDIR_PGM)
430
431 UNLIT                   = $(INPLACE_LIB)/$(GHC_UNLIT_PGM)
432 TOUCHY                  = $(INPLACE_LIB)/$(GHC_TOUCHY_PGM)
433 MKDIRHIER               = $(INPLACE_BIN)/$(GHC_MKDIRHIER_PGM)
434 GHC_CABAL_INPLACE       = $(INPLACE_BIN)/$(GHC_CABAL_PGM)
435 GENAPPLY_INPLACE        = $(INPLACE_BIN)/$(GHC_GENAPPLY_PGM)
436 GHC_PKG_INPLACE         = $(INPLACE_BIN)/$(GHC_PKG_PGM)
437 GHCTAGS_INPLACE         = $(INPLACE_BIN)/$(GHC_GHCTAGS_PGM)
438 HSC2HS_INPLACE          = $(INPLACE_BIN)/$(GHC_HSC2HS_PGM)
439 GENPRIMOP_INPLACE       = $(INPLACE_BIN)/$(GHC_GENPRIMOP_PGM)
440 DUMMY_GHC_INPLACE       = $(INPLACE_BIN)/$(GHC_DUMMY_GHC_PGM)
441
442 GENERATED_FILE  = chmod a-w
443 EXECUTABLE_FILE = chmod +x
444
445 #-----------------------------------------------------------------------------
446 # Haskell compilers and mkdependHS
447
448 # $(GHC), $(HBC) and $(NHC) point to installed versions of the relevant
449 # compilers, if available.
450 #
451 # $(HC) is a generic Haskell 98 compiler, set to $(GHC) by default.
452 # $(MKDEPENDHS) is the Haskell dependency generator (ghc -M).
453 #
454 # NOTE: Don't override $(GHC) in build.mk, use configure --with-ghc instead
455 # (because the version numbers have to be calculated).
456
457 GHC := @WithGhc@
458 # If we have a make dependency on c:/ghc/ghc, and the file is actually
459 # called c:/ghc/ghc.exe, then make will think that ghc doesn't exist
460 # and that it doesn't know how to create it.
461 ifneq "$(wildcard $(GHC).exe)" ""
462 GHC := $(GHC).exe
463 endif
464
465 GhcDir          = $(dir $(GHC))
466
467 # Set to YES if $(GHC) has the editline package installed
468 GhcHasEditline  = @GhcHasEditline@
469
470 HBC             = @HBC@
471 NHC             = @NHC@
472
473 # Sometimes we want to invoke ghc from the build tree in different
474 # places (eg. it's handy to have a nofib & a ghc build in the same
475 # tree).  We can refer to "this ghc" as $(GHC_INPLACE):
476
477 GHC_INPLACE = $(GHC_STAGE1)
478
479 GHC_STAGE0_ABS = $(GHC)
480 GHC_STAGE1_ABS = $(TOP)/$(INPLACE_BIN)/ghc-stage1$(exeext)
481 GHC_STAGE2_ABS = $(TOP)/$(INPLACE_BIN)/ghc-stage2$(exeext)
482 GHC_STAGE3_ABS = $(TOP)/$(INPLACE_BIN)/ghc-stage3$(exeext)
483
484 GHC_STAGE0  = $(GHC)
485 GHC_STAGE1  = $(INPLACE_BIN)/ghc-stage1$(exeext)
486 GHC_STAGE2  = $(INPLACE_BIN)/ghc-stage2$(exeext)
487 GHC_STAGE3  = $(INPLACE_BIN)/ghc-stage3$(exeext)
488
489 # Install stage 2 by default, can be changed to 3
490 INSTALL_GHC_STAGE=2
491
492 BOOTSTRAPPING_CONF = libraries/bootstrapping.conf
493
494 INPLACE_PACKAGE_CONF = $(INPLACE_LIB)/package.conf.d
495
496 GhcVersion      = @GhcVersion@
497 GhcPatchLevel   = @GhcPatchLevel@
498 GhcMajVersion   = @GhcMajVersion@
499 GhcMinVersion   = @GhcMinVersion@
500
501 # Keep this in sync with the variables in package-config.mk
502 ghc_ge_6102 = @ghc_ge_6102@
503 ghc_ge_611 = @ghc_ge_611@
504 ghc_ge_613 = @ghc_ge_613@
505
506 # Canonicalised ghc version number, used for easy (integer) version
507 # comparisons.  We must expand $(GhcMinVersion) to two digits by
508 # adding a leading zero if necessary:
509 ifneq "$(findstring $(GhcMinVersion), 0 1 2 3 4 5 6 7 8 9)" ""
510 GhcCanonVersion = $(GhcMajVersion)0$(GhcMinVersion)
511 else
512 GhcCanonVersion = $(GhcMajVersion)$(GhcMinVersion)
513 endif
514
515 #-----------------------------------------------------------------------------
516 # C compiler
517 #
518 # NB. Don't override $(WhatGccIsCalled) using build.mk,  re-configure using
519 # the flag --with-gcc=<blah> instead.  The reason is that the configure script
520 # needs to know which gcc you're using in order to perform its tests.
521
522 HaveGcc         = @HaveGcc@
523 UseGcc          = YES
524 WhatGccIsCalled = @WhatGccIsCalled@
525 GccVersion      = @GccVersion@
526 GccLT34         = @GccLT34@
527 ifeq "$(strip $(HaveGcc))" "YES"
528 ifneq "$(strip $(UseGcc))"  "YES"
529   CC    = cc
530 else
531   CC    = $(WhatGccIsCalled)
532 endif
533 endif
534
535 # C compiler and linker flags from configure (e.g. -m<blah> to select
536 # correct C compiler backend).
537 CONF_CC_OPTS = @CONF_CC_OPTS@
538 CONF_LD_OPTS = @CONF_LD_OPTS@
539
540 ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux"
541 CONF_CC_OPTS += -G0
542 endif
543
544 SRC_HSC2HS_OPTS += $(addprefix --cflag=,$(filter-out -O,$(SRC_CC_OPTS) $(CONF_CC_OPTS)))
545 SRC_HSC2HS_OPTS += $(foreach d,$(GMP_INCLUDE_DIRS),-I$(d))
546
547 #-----------------------------------------------------------------------------
548 # Mingwex Library
549 #
550 HaveLibMingwEx  = @HaveLibMingwEx@
551 DLLTOOL                 = inplace/mingw/bin/dlltool.exe
552
553 #-----------------------------------------------------------------------------
554 # Flex (currently unused, could be moved to glafp-utils)
555
556 # FLEX                  = @LEX@
557 # Don't bother with -lfl, we define our own yywrap()s anyway.
558 # FLEX_LIB              = 
559 #WAS:FLEX_LIB           = @LEXLIB@
560
561 #-----------------------------------------------------------------------------
562 # Other standard (ha!) Unix utilities
563
564 AR                      = @ArCmd@
565 AR_OPTS                 = @ArArgs@
566 ArSupportsInput         = @ArSupportsInput@
567 ArSupportsAtFile = @ArSupportsAtFile@
568 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
569 BASH                    = /usr/local/bin/bash
570
571 CONTEXT_DIFF            = @ContextDiffCmd@
572 CP                      = cp
573 # It's not easy to separate the CPP program from its flags, as
574 # AC_PROG_CPP defines CPP as "/usr/bin/gcc -E"
575 CPP                     = @CPP@ @CPPFLAGS@
576 CTAGS                   = $(ETAGS)
577 #
578 # RAWCPP_FLAGS are the flags to give to cpp (viz, gcc -E) to persuade it to
579 # behave plausibly on Haskell sources.
580 #
581 RAWCPP_FLAGS            = -undef -traditional
582 FIND                    = @FindCmd@
583 SORT                    = @SortCmd@
584 INSTALL                 = @INSTALL@
585 #
586 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
587 # install-sh script (if chosen). This not terribly useful to us, so we convert
588 # it into an abs. path.
589
590 INSTALL                 := $(subst .././install-sh,$(TOP)/install-sh,$(INSTALL))
591 LATEX                   = latex
592 PDFLATEX        = pdflatex
593 BIBTEX          = bibtex
594 HEVEA                   = hevea
595 HACHA                   = hacha
596 LN_S                    = @LN_S@
597 MANMACROS               = -man
598 MSMACROS                = -ms
599 MV                      = mv
600 NROFF                   = nroff
601 PERL                    = @PerlCmd@
602 PYTHON                  = @PythonCmd@
603 PIC                     = pic
604 PREPROCESSCMD           = $(CC) -E
605 RANLIB                  = @RANLIB@
606 SED                     = @SedCmd@
607 TR                      = tr
608 SHELL                   = /bin/sh
609
610 HaveDtrace              = @HaveDtrace@
611 DTRACE                  = @DtraceCmd@
612
613 LD = @LdCmd@
614 NM = @NmCmd@
615
616 # Some ld's support the -x flag and some don't, so the configure
617 # script detects which we have and sets LdXFlag to "-x" or ""
618 # respectively.
619 LD_X                    = @LdXFlag@
620
621 # GNU ld supports input via a linker script, which is useful to avoid
622 # overflowing command-line length limits.
623 LdIsGNULd               = @LdIsGNULd@
624
625 # On MSYS, building with SplitObjs=YES fails with 
626 #   ar: Bad file number
627 # see #3201.  We need to specify a smaller max command-line size
628 # to work around it.  32767 doesn't work; 30000 does.
629 XARGS = xargs
630 ifeq "$(Windows)" "YES"
631 XARGS_OPTS = -s 30000
632 endif
633
634 #
635 # In emergency situations, REAL_SHELL is used to perform shell commands
636 # from within the ghc driver script, by scribbling the command line to
637 # a temp file and then having $(REAL_SHELL) execute it. 
638 #
639 # The reason for having to do this is that overly long command lines
640 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
641 # 2.5.1), which is why this backdoor is provided. The situation of overly
642 # long command lines is either encountered while doing `make boot' in compiler/, 
643 # or when linking the compiler binary (`hsc'). 
644 #
645 # We do not use SHELL to execute long commands, as `make' will more than likely
646 # override whatever setting you have in your environment while executing. 
647
648 # By default, REAL_SHELL is set equal to SHELL, which is not really a smart move
649 # as it is SHELL that will show up the bogosity in the first place, but setting
650 # it to anything else isn't really portable.
651 #
652 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
653 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
654 # command shell.
655 #
656 REAL_SHELL=$(SHELL)
657 SIZE                    = size
658 STRIP                   = strip
659 PATCH                   = @PatchCmd@
660 TAR                     = @TarCmd@
661 BZIP2                   = bzip2
662 GZIP                    = gzip
663 ZIP                     = zip
664
665 HSCOLOUR = @HSCOLOUR@
666
667 #
668 # This is special to literate/, ToDo: add literate-specific
669 # configure setup to literate/.
670 #
671 TBL                     = tbl
672 TEX                     = tex
673 TGRIND                  = tgrind
674 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
675 TIB                     = tib
676
677 TIME                    = @TimeCmd@
678 TROFF                   = troff
679 UNAME                   = uname
680
681 # GTK+
682 GTK_CONFIG = @GTK_CONFIG@
683
684 # Set this if you want to use Inno Setup to build a Windows installer
685 # when you make a bindist
686 ISCC                    =
687
688 #-----------------------------------------------------------------------------
689 # DocBook XML stuff
690
691 BUILD_DOCBOOK_HTML       = @BUILD_DOCBOOK_HTML@
692 BUILD_DOCBOOK_PS         = @BUILD_DOCBOOK_PS@
693 BUILD_DOCBOOK_PDF        = @BUILD_DOCBOOK_PDF@
694 DBLATEX                  = @DblatexCmd@
695 XSLTPROC                 = @XsltprocCmd@
696 XMLLINT                  = @XmllintCmd@
697 HAVE_DOCBOOK_XSL         = @HAVE_DOCBOOK_XSL@
698 XSLTPROC_HTML_STYLESHEET = http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl
699 XSLTPROC_LABEL_OPTS      = --stringparam toc.section.depth 3 \
700                            --stringparam section.autolabel 1 \
701                            --stringparam section.label.includes.component.label 1
702
703 #-----------------------------------------------------------------------------
704 #               FPtools support software
705
706 BLD_DLL                 = dllwrap
707
708 #
709 # ghc-pkg
710 #
711 GHC_PKG                 = @GhcPkgCmd@
712
713 #
714 # GreenCard
715 #
716 GREENCARD               = @GreenCardCmd@
717 GREENCARD_VERSION       = @GreenCardVersion@            
718
719 #
720 # Happy
721 #
722 HAPPY                   = @HappyCmd@
723 HAPPY_VERSION           = @HappyVersion@                
724 #
725 # Options to pass to Happy when we're going to compile the output with GHC
726 #
727 SRC_HAPPY_OPTS          = -agc --strict
728
729 # Temp. to work around performance problems in the HEAD around 8/12/2003,
730 # A Happy compiled with this compiler needs more stack.
731 SRC_HAPPY_OPTS          += +RTS -K2m -RTS
732
733 #
734 # Alex
735 #
736 ALEX                    = @AlexCmd@
737 ALEX_VERSION            = @AlexVersion@         
738 #
739 # Options to pass to Happy when we're going to compile the output with GHC
740 #
741 SRC_ALEX_OPTS           = -g
742
743 HSTAGS = @HstagsCmd@
744
745 # Should we build haddock docs?
746 HADDOCK_DOCS = $(GhcWithInterpreter)
747 # And HsColour the sources?
748 ifeq "$(HSCOLOUR)" ""
749 HSCOLOUR_SRCS = NO
750 else
751 HSCOLOUR_SRCS = YES
752 endif
753
754 ################################################################################
755 #
756 #               31-bit-Int Core files
757 #
758 ################################################################################
759
760
761 # It is possible to configure the compiler and prelude to support 31-bit
762 # integers, suitable for a back-end and RTS using a tag bit on a 32-bit
763 # architecture.  Currently the only useful output from this option is external Core
764 # files.  The following additions to your build.mk will produce the
765 # 31-bit core output.  Note that this is *not* just a library "way"; the
766 # compiler must be built a special way too.
767
768 # GhcCppOpts +=-DWORD_SIZE_IN_BITS=31
769 # GhcLibHcOpts +=-fext-core -fno-code -DWORD_SIZE_IN_BITS=31
770 # GhcLibCppOpts += -DWORD_SIZE_IN_BITS=31
771 # SplitObjs=NO
772
773 ################################################################################
774 #
775 #    Library configure arguments
776 #
777 ################################################################################
778
779 CONFIGURE_ARGS = @CONFIGURE_ARGS@
780
781 ################################################################################
782 #
783 #    To be passed to sub-builds
784 #
785 ################################################################################
786
787 ICONV_INCLUDE_DIRS = @ICONV_INCLUDE_DIRS@
788 ICONV_LIB_DIRS = @ICONV_LIB_DIRS@
789
790 ################################################################################
791 #
792 #    Bindist testing directory
793 #
794 ################################################################################
795
796 BIN_DIST_INST_SUBDIR = "install dir"
797 BIN_DIST_INST_DIR = $(TOP)/bindisttest/$(BIN_DIST_INST_SUBDIR)
798