Keep separate linker flags, for when we want to link with gcc or ld
[ghc-hetmet.git] / configure.ac
1 dnl == autoconf source for the Glasgow FP tools ==
2 dnl (run "grep '^dnl \*' configure.ac | sed -e 's/dnl / /g; s/\*\*/   +/g;'"
3 dnl  (or some such) to see the outline of this file)
4 dnl
5 #
6 # (c) The University of Glasgow 1994-2004
7 #
8 # Configure script template for GHC
9 #
10 # Process with 'autoreconf' to get a working configure script.
11 #
12 # For the generated configure script, do "./configure --help" to
13 # see what flags are available. (Better yet, read the documentation!)
14 #
15
16 AC_INIT([The Glorious Glasgow Haskell Compilation System], [7.1], [glasgow-haskell-bugs@haskell.org], [ghc])
17
18 # Set this to YES for a released version, otherwise NO
19 : ${RELEASE=NO}
20
21 # The primary version (e.g. 6.7, 6.6.1) is set in the AC_INIT line
22 # above.  If this is not a released version, then we will append the
23 # date to the version number (e.g. 6.7.20070204).  The date is
24 # constructed by finding the date of the most recent patch in the
25 # darcs repository.  If this is a source distribution (not a darcs
26 # checkout), then we ship a file 'VERSION' containing the full version
27 # when the source distribution was created.
28
29 if test ! -f mk/config.h.in; then
30    echo "mk/config.h.in doesn't exist: perhaps you haven't run 'perl boot'?"
31    exit 1
32 fi
33
34 AC_SUBST([CONFIGURE_ARGS], [$ac_configure_args])
35
36 dnl ----------------------------------------------------------
37 dnl ** Find unixy sort and find commands, 
38 dnl ** which are needed by FP_SETUP_PROJECT_VERSION
39
40 dnl ** Find find command (for Win32's benefit)
41 FP_PROG_FIND
42
43 dnl ** Find sort command (for the benefit of Win32 environs)
44 FP_PROG_SORT
45
46 dnl ----------------------------------------------------------
47 FP_SETUP_PROJECT_VERSION
48
49 # Hmmm, we fix the RPM release number to 1 here... Is this convenient?
50 AC_SUBST([release], [1])
51
52 # First off, a distrib sanity check..
53 AC_CONFIG_SRCDIR([mk/config.mk.in])
54
55 dnl * We require autoconf version 2.52
56 dnl We need 2.50 due to the use of AC_SYS_LARGEFILE and AC_MSG_NOTICE.
57 dnl We need 2.52 due to the use of AS_TR_CPP and AS_TR_SH.
58 AC_PREREQ([2.52])
59
60 # -------------------------------------------------------------------------
61 # Prepare to generate the following header files
62 #
63 #
64 AC_CONFIG_HEADER(mk/config.h)
65
66 # No, semi-sadly, we don't do `--srcdir'...
67 if test x"$srcdir" != 'x.' ; then
68     echo "This configuration does not support the \`--srcdir' option.."
69     exit 1
70 fi
71
72 dnl --------------------------------------------------------------
73 dnl * Project specific configuration options
74 dnl --------------------------------------------------------------
75 dnl What follows is a bunch of options that can either be configured
76 dnl through command line options to the configure script or by
77 dnl supplying defns in the build tree's mk/build.mk. Having the option to
78 dnl use either is considered a Feature.
79
80 dnl ** What command to use to compile compiler sources ?
81 dnl --------------------------------------------------------------
82
83 AC_ARG_WITH([ghc],
84 [AC_HELP_STRING([--with-ghc=ARG],
85   [Use ARG as the path to GHC  [default=autodetect]])],
86   [WithGhc="$withval"],
87   [if test "$GHC" = ""; then
88     AC_PATH_PROG([GHC], [ghc])
89   fi
90   WithGhc="$GHC"])
91
92
93 dnl ** Tell the make system which OS we are using
94 dnl $OSTYPE is set by the operating system to "msys" or "cygwin" or something 
95 AC_SUBST(OSTYPE)
96
97 dnl ** Booting from .hc files?
98 dnl --------------------------------------------------------------
99 AC_ARG_ENABLE(hc-boot,
100 [AC_HELP_STRING([--enable-hc-boot],
101 [Boot the Glasgow Haskell Compiler from intermediate .hc files.
102  (This option is mostly of interest to porters.) [default=no]])],
103 [ if test x"$enableval" = x"yes"; then
104         BootingFromHc=YES
105   else
106         BootingFromHc=NO
107   fi
108 ],
109 [BootingFromHc=NO]
110 )
111 AC_SUBST(BootingFromHc)
112
113 AC_ARG_ENABLE(bootstrap-with-devel-snapshot,
114 [AC_HELP_STRING([--enable-bootstrap-with-devel-snapshot],
115                 [Allow bootstrapping using a development snapshot of GHC.  This is not guaranteed to work.])],
116         EnableBootstrapWithDevelSnaphost=YES,
117         EnableBootstrapWithDevelSnaphost=NO
118 )
119
120 if test "$WithGhc" != ""; then
121   FPTOOLS_GHC_VERSION([GhcVersion], [GhcMajVersion], [GhcMinVersion], [GhcPatchLevel])dnl
122
123   if test "$GhcMajVersion" = "unknown" -o "$GhcMinVersion" = "unknown"; then
124      AC_MSG_ERROR([Cannot determine the version of $WithGhc.  Is it really GHC?])
125   fi
126
127   AC_SUBST(GhcVersion)dnl
128   AC_SUBST(GhcMajVersion)dnl
129   AC_SUBST(GhcMinVersion)dnl
130   AC_SUBST(GhcPatchLevel)dnl
131   GhcMinVersion2=`echo "$GhcMinVersion" | sed 's/^\\(.\\)$/0\\1/'`
132   GhcCanonVersion="$GhcMajVersion$GhcMinVersion2"
133   if test $GhcCanonVersion -ge 613; then ghc_ge_613=YES; else ghc_ge_613=NO; fi
134   AC_SUBST(ghc_ge_613)dnl
135 fi
136
137 dnl ** Must have GHC to build GHC, unless --enable-hc-boot is on
138 if test "$BootingFromHc" = "NO" -a -d "$srcdir/compiler"; then
139   if test "$WithGhc" = ""; then
140      AC_MSG_ERROR([GHC is required unless bootstrapping from .hc files.])
141   fi
142   FP_COMPARE_VERSIONS([$GhcVersion],[-lt],[6.12],
143     [AC_MSG_ERROR([GHC version 6.12 or later is required to compile GHC.])])dnl
144
145   if test `expr $GhcMinVersion % 2` = "1"; then
146      if test "$EnableBootstrapWithDevelSnaphost" = "NO"; then
147         AC_MSG_ERROR([
148      $WithGhc is a development snapshot of GHC, version $GhcVersion.
149      Bootstrapping using this version of GHC is not supported, and may not
150      work.  Use --enable-bootstrap-with-devel-snapshot to try it anyway,
151      or --with-ghc to specify a different GHC to use.])
152      fi
153   fi
154 fi;
155
156 # GHC is passed to Cabal, so we need a native path
157 if test "${WithGhc}" != ""
158 then
159     ghc_host=`"${WithGhc}" +RTS --info | grep 'Host platform' | sed -e 's/.*, "//' -e 's/")//'`
160
161     if test "$ghc_host" = "i386-unknown-mingw32"
162     then
163         if test "${OSTYPE}" = "msys"
164         then
165             WithGhc=`echo "${WithGhc}" | sed "s#^/\([a-zA-Z]\)/#\1:/#"`
166         else
167             # Canonicalise to <drive>:/path/to/ghc
168             WithGhc=`cygpath -m "${WithGhc}"`
169         fi
170         echo "GHC path canonicalised to: ${WithGhc}"
171     fi
172 fi
173 AC_SUBST([WithGhc])
174
175 dnl ** Without optimization some INLINE trickery fails for GHCi
176 SRC_CC_OPTS="-O"
177
178 FP_ICONV
179 FP_GMP
180
181 dnl--------------------------------------------------------------------
182 dnl * Choose host(/target/build) platform
183 dnl--------------------------------------------------------------------
184 dnl If we aren't explicitly told what values to use with configure flags,
185 dnl we ask the bootstrapping compiler what platform it is for
186
187 if test "${WithGhc}" != ""
188 then
189         bootstrap_host=`"${WithGhc}" +RTS --info | grep '^ ,("Host platform"' | sed -e 's/.*, "//' -e 's/")//' | tr -d '\r'`
190         bootstrap_target=`"${WithGhc}" +RTS --info | grep '^ ,("Target platform"' | sed -e 's/.*, "//' -e 's/")//' | tr -d '\r'`
191         if test "$bootstrap_host" != "$bootstrap_target"
192         then
193                 echo "Bootstrapping GHC is a cross compiler. This probably isn't going to work"
194         fi
195 fi
196
197 # We have to run these unconditionally, but we may discard their
198 # results in the following code
199 AC_CANONICAL_BUILD
200 AC_CANONICAL_HOST
201 AC_CANONICAL_TARGET
202
203 # If no argument was given for a configuration variable, then discard
204 # the guessed canonical system and use the configuration of the
205 # bootstrapping ghc. If an argument was given, map it from gnu format
206 # to ghc format.
207 #
208 # For why we do it this way, see: #3637, #1717, #2951
209
210 if test "$build_alias" = ""
211 then
212     if test "${WithGhc}" != ""
213     then
214         build=$bootstrap_target
215         echo "Build platform inferred as: $build"
216     else
217         echo "Can't work out build platform"
218         exit 1
219     fi
220
221     BuildArch=`echo "$build" | sed 's/-.*//'`
222     BuildVendor=`echo "$build" | sed -e 's/.*-\(.*\)-.*/\1/'`
223     BuildOS=`echo "$build" | sed 's/.*-//'`
224 else
225     GHC_CONVERT_CPU([$build_cpu], [BuildArch])
226     GHC_CONVERT_VENDOR([$build_vendor], [BuildVendor])
227     GHC_CONVERT_OS([$build_os], [BuildOS])
228 fi
229
230 if test "$host_alias" = ""
231 then
232     if test "${WithGhc}" != ""
233     then
234         host=$bootstrap_target
235         echo "Host platform inferred as: $host"
236     else
237         echo "Can't work out host platform"
238         exit 1
239     fi
240
241     HostArch=`echo "$host" | sed 's/-.*//'`
242     HostVendor=`echo "$host" | sed -e 's/.*-\(.*\)-.*/\1/'`
243     HostOS=`echo "$host" | sed 's/.*-//'`
244 else
245     GHC_CONVERT_CPU([$host_cpu], [HostArch])
246     GHC_CONVERT_VENDOR([$host_vendor], [HostVendor])
247     GHC_CONVERT_OS([$host_os], [HostOS])
248 fi
249
250 if test "$target_alias" = ""
251 then
252     if test "${WithGhc}" != ""
253     then
254         target=$bootstrap_target
255         echo "Target platform inferred as: $target"
256     else
257         echo "Can't work out target platform"
258         exit 1
259     fi
260
261     TargetArch=`echo "$target" | sed 's/-.*//'`
262     TargetVendor=`echo "$target" | sed -e 's/.*-\(.*\)-.*/\1/'`
263     TargetOS=`echo "$target" | sed 's/.*-//'`
264 else
265     GHC_CONVERT_CPU([$target_cpu], [TargetArch])
266     GHC_CONVERT_VENDOR([$target_vendor], [TargetVendor])
267     GHC_CONVERT_OS([$target_os], [TargetOS])
268 fi
269
270 exeext=''
271 soext='.so'
272 case $host in
273 *-unknown-cygwin32)
274     AC_MSG_WARN([GHC does not support the Cygwin target at the moment])
275     AC_MSG_WARN([I'm assuming you wanted to build for i386-unknown-mingw32])
276     exit 1
277     ;;
278 *-unknown-mingw32)
279     exeext='.exe'
280     soext='.dll'
281     ;;
282 i386-apple-darwin|powerpc-apple-darwin)
283     soext='.dylib'
284     ;;
285 x86_64-apple-darwin)
286     soext='.dylib'
287     ;;
288 esac
289
290 # Sync this with cTargetArch in compiler/ghc.mk
291 checkArch() {
292     case $1 in
293     alpha|arm|hppa|hppa1_1|i386|ia64|m68k|mips|mipseb|mipsel|powerpc|powerpc64|rs6000|s390|sparc|sparc64|vax|x86_64)
294         ;;
295     *)
296         echo "Unknown arch $1"
297         exit 1
298         ;;
299     esac
300 }
301
302 checkVendor() {
303     case $1 in
304     dec|unknown|hp|apple|next|sun|sgi|ibm)
305         ;;
306     *)
307         echo "Unknown vendor $1"
308         exit 1
309         ;;
310     esac
311 }
312
313 checkOS() {
314     case $1 in
315     linux|freebsd|netbsd|openbsd|dragonfly|osf1|osf3|hpux|linuxaout|kfreebsdgnu|freebsd2|solaris2|cygwin32|mingw32|darwin|gnu|nextstep2|nextstep3|sunos4|ultrix|irix|aix|haiku)
316         ;;
317     *)
318         echo "Unknown OS '$1'"
319         exit 1
320         ;;
321     esac
322 }
323
324 BuildPlatform="$BuildArch-$BuildVendor-$BuildOS"
325 BuildPlatform_CPP=`echo "$BuildPlatform" | sed -e 's/\./_/g' -e 's/-/_/g'`
326 BuildArch_CPP=`    echo "$BuildArch"     | sed -e 's/\./_/g' -e 's/-/_/g'`
327 BuildVendor_CPP=`  echo "$BuildVendor"   | sed -e 's/\./_/g' -e 's/-/_/g'`
328 BuildOS_CPP=`      echo "$BuildOS"       | sed -e 's/\./_/g' -e 's/-/_/g'`
329
330 checkArch "$BuildArch"
331 checkVendor "$BuildVendor"
332 checkOS "$BuildOS"
333
334 HostPlatform="$HostArch-$HostVendor-$HostOS"
335 HostPlatform_CPP=`echo "$HostPlatform" | sed -e 's/\./_/g' -e 's/-/_/g'`
336 HostArch_CPP=`    echo "$HostArch"     | sed -e 's/\./_/g' -e 's/-/_/g'`
337 HostVendor_CPP=`  echo "$HostVendor"   | sed -e 's/\./_/g' -e 's/-/_/g'`
338 HostOS_CPP=`      echo "$HostOS"       | sed -e 's/\./_/g' -e 's/-/_/g'`
339
340 checkArch "$HostArch"
341 checkVendor "$HostVendor"
342 checkOS "$HostOS"
343
344 TargetPlatform="$TargetArch-$TargetVendor-$TargetOS"
345 TargetPlatform_CPP=`echo "$TargetPlatform" | sed -e 's/\./_/g' -e 's/-/_/g'`
346 TargetArch_CPP=`    echo "$TargetArch"     | sed -e 's/\./_/g' -e 's/-/_/g'`
347 TargetVendor_CPP=`  echo "$TargetVendor"   | sed -e 's/\./_/g' -e 's/-/_/g'`
348 TargetOS_CPP=`      echo "$TargetOS"       | sed -e 's/\./_/g' -e 's/-/_/g'`
349
350 checkArch "$TargetArch"
351 checkVendor "$TargetVendor"
352 checkOS "$TargetOS"
353
354 # Verify that the installed (bootstrap) GHC is capable of generating
355 # code for the requested build platform.
356 if test "$build" != "$bootstrap_target"
357 then
358     echo "This GHC (${WithGhc}) does not generate code for the build platform"
359     echo "   GHC target platform    : $bootstrap_target"
360     echo "   Desired build platform : $BuildPlatform"
361     exit 1
362 fi
363
364 AC_SUBST(BuildPlatform)
365 AC_SUBST(HostPlatform)
366 AC_SUBST(TargetPlatform)
367 AC_SUBST(HostPlatform_CPP)
368 AC_SUBST(BuildPlatform_CPP)
369 AC_SUBST(TargetPlatform_CPP)
370
371 AC_SUBST(HostArch_CPP)
372 AC_SUBST(BuildArch_CPP)
373 AC_SUBST(TargetArch_CPP)
374
375 AC_SUBST(HostOS_CPP)
376 AC_SUBST(BuildOS_CPP)
377 AC_SUBST(TargetOS_CPP)
378
379 AC_SUBST(HostVendor_CPP)
380 AC_SUBST(BuildVendor_CPP)
381 AC_SUBST(TargetVendor_CPP)
382
383 AC_SUBST(exeext)
384 AC_SUBST(soext)
385
386 AC_ARG_WITH(hc,
387 [AC_HELP_STRING([--with-hc=ARG],
388         [Use ARG as the path to the compiler for compiling ordinary
389          Haskell code  (default= value of --with-ghc)])],
390 [WithHc="$withval"],
391 [WithHc=$WithGhc]
392 )
393 AC_SUBST(WithHc)
394
395 # This uses GHC, so put it after the "GHC is required" check above:
396 FP_INTREE_GHC_PWD
397 FP_FIND_ROOT
398
399 if test "$HostOS" = "mingw32"
400 then
401     test -d inplace || mkdir inplace
402
403     CC="$hardtop/inplace/mingw/bin/gcc.exe"
404     LD="$hardtop/inplace/mingw/bin/ld.exe"
405     NM="$hardtop/inplace/mingw/bin/nm.exe"
406     fp_prog_ar_raw="$hardtop/inplace/mingw/bin/ar.exe"
407
408     # NB. If you update the tarbballs to a new version of gcc, don't
409     # forget to tweak the paths in driver/gcc/gcc.c.
410     if ! test -d inplace/mingw ||
411          test inplace/mingw -ot ghc-tarballs/mingw/binutils*.tar.lzma  ||
412          test inplace/mingw -ot ghc-tarballs/mingw/gcc-core*.tar.lzma  ||
413          test inplace/mingw -ot ghc-tarballs/mingw/gcc-c++*.tar.lzma   ||
414          test inplace/mingw -ot ghc-tarballs/mingw/libgmp*.tar.gz      ||
415          test inplace/mingw -ot ghc-tarballs/mingw/libmpc*.tar.gz      ||
416          test inplace/mingw -ot ghc-tarballs/mingw/libmpfr*.tar.gz     ||
417          test inplace/mingw -ot ghc-tarballs/mingw/libstdc*.tar.lzma   ||
418          test inplace/mingw -ot ghc-tarballs/mingw/mingwrt*-dev.tar.gz ||
419          test inplace/mingw -ot ghc-tarballs/mingw/mingwrt*-dll.tar.gz ||
420          test inplace/mingw -ot ghc-tarballs/mingw/w32api*.tar.lzma
421     then
422         AC_MSG_NOTICE([Making in-tree mingw tree])
423         rm -rf inplace/mingw
424         mkdir inplace/mingw
425         (
426             cd inplace/mingw &&
427             tar --lzma -xf ../../ghc-tarballs/mingw/binutils*.tar.lzma  &&
428             tar --lzma -xf ../../ghc-tarballs/mingw/gcc-core*.tar.lzma  &&
429             tar --lzma -xf ../../ghc-tarballs/mingw/gcc-c++*.tar.lzma   &&
430             tar --lzma -xf ../../ghc-tarballs/mingw/libgmp*.tar.lzma    &&
431             tar --lzma -xf ../../ghc-tarballs/mingw/libmpc*.tar.lzma    &&
432             tar --lzma -xf ../../ghc-tarballs/mingw/libmpfr*.tar.lzma   &&
433             tar --lzma -xf ../../ghc-tarballs/mingw/libstdc*.tar.lzma   &&
434             tar -z     -xf ../../ghc-tarballs/mingw/mingwrt*-dev.tar.gz &&
435             tar -z     -xf ../../ghc-tarballs/mingw/mingwrt*-dll.tar.gz &&
436             tar --lzma -xf ../../ghc-tarballs/mingw/w32api*.tar.lzma    &&
437             mv bin/gcc.exe bin/realgcc.exe
438         )
439         PATH=`pwd`/inplace/mingw/bin:$PATH inplace/mingw/bin/realgcc.exe driver/gcc/gcc.c driver/utils/cwrapper.c driver/utils/getLocation.c -Idriver/utils -o inplace/mingw/bin/gcc.exe
440         if ! test -e inplace/mingw/bin/gcc.exe
441         then
442             AC_MSG_ERROR([GHC is required unless bootstrapping from .hc files.])
443         fi
444         AC_MSG_NOTICE([In-tree mingw tree created])
445     fi
446     if ! test -d inplace/perl ||
447          test inplace/perl -ot ghc-tarballs/perl/ghc-perl*.tar.gz
448     then
449         AC_MSG_NOTICE([Making in-tree perl tree])
450         rm -rf inplace/perl
451         mkdir inplace
452         mkdir inplace/perl
453         (
454             cd inplace/perl &&
455             tar -zxf ../../ghc-tarballs/perl/ghc-perl*.tar.gz
456         )
457         AC_MSG_NOTICE([In-tree perl tree created])
458     fi
459 fi
460
461 dnl ** Which gcc to use?
462 dnl --------------------------------------------------------------
463 FP_ARG_WITH_PATH_GNU_PROG([CC], [gcc])
464 export CC
465 WhatGccIsCalled="$CC"
466 AC_SUBST(WhatGccIsCalled)
467
468 dnl ** Which ld to use?
469 dnl --------------------------------------------------------------
470 FP_ARG_WITH_PATH_GNU_PROG([LD], [ld])
471 LdCmd="$LD"
472 AC_SUBST([LdCmd])
473
474 dnl ** Which nm to use?
475 dnl --------------------------------------------------------------
476 FP_ARG_WITH_PATH_GNU_PROG([NM], [nm])
477 NmCmd="$NM"
478 AC_SUBST([NmCmd])
479
480 dnl ** Mac OS X: explicit deployment target
481 dnl --------------------------------------------------------------
482 AC_ARG_WITH([macosx-deployment-target],
483 [AC_HELP_STRING([--with-macosx-deployment-target=VERSION],
484         [Build for Mac OS VERSION and higher  (default= version of build host)])],
485 [FP_MACOSX_DEPLOYMENT_TARGET="$withval"
486  if test "x$TargetOS_CPP-$TargetVendor_CPP" != "xdarwin-apple"; then
487    # ignore everywhere, but on Mac OS
488    AC_MSG_WARN([--macosx-deployment-target is only available on Mac OS X])
489    FP_MACOSX_DEPLOYMENT_TARGET=none
490  fi],
491 [FP_MACOSX_DEPLOYMENT_TARGET=none]
492 )
493 FP_CHECK_MACOSX_DEPLOYMENT_TARGET
494 AC_SUBST(MACOSX_DEPLOYMENT_VERSION)
495 AC_SUBST(MACOSX_DEPLOYMENT_SDK)
496
497 dnl --------------------------------------------------------------
498 dnl End of configure script option section
499 dnl --------------------------------------------------------------
500
501
502 dnl --------------------------------------------------------------
503 dnl * General configuration checks
504 dnl --------------------------------------------------------------
505
506 dnl ** Can the unix package be built?
507 dnl --------------------------------------------------------------
508
509 if test x"$TargetPlatform" = x"i386-unknown-mingw32"; then
510    GhcLibsWithUnix=NO
511 else
512    GhcLibsWithUnix=YES
513 fi
514 AC_SUBST([GhcLibsWithUnix])
515
516 dnl ** does #! work?
517 AC_SYS_INTERPRETER()
518
519 dnl ** look for `perl'
520 case $HostOS_CPP in
521 cygwin32|mingw32)
522     PerlCmd=$hardtop/inplace/perl/perl
523     ;;
524 *)
525     AC_PATH_PROG(PerlCmd,perl)
526     if test -z "$PerlCmd"
527     then
528         echo "You must install perl before you can continue"
529         echo "Perhaps it is already installed, but not in your PATH?"
530         exit 1
531     else
532         FPTOOLS_CHECK_PERL_VERSION
533     fi
534     ;;
535 esac
536
537 dnl ** does #! path/to/perl work? (sometimes it's too long...)
538 FPTOOLS_SHEBANG_PERL
539
540 dnl ** check for Python
541 AC_PATH_PROG(PythonCmd,python)
542
543 dnl ** look for GCC and find out which version
544 dnl     Figure out which C compiler to use.  Gcc is preferred.
545 dnl     If gcc, make sure it's at least 2.1
546 dnl
547 FP_HAVE_GCC
548
549 FPTOOLS_SET_C_LD_FLAGS([target],[CFLAGS],[LDFLAGS],[IGNORE_LINKER_LD_FLAGS],[CPPFLAGS])
550 FPTOOLS_SET_C_LD_FLAGS([build],[CONF_CC_OPTS_STAGE0],[CONF_GCC_LINKER_OPTS_STAGE0],[CONF_LD_LINKER_OPTS_STAGE0],[CONF_CPP_OPTS_STAGE0])
551 FPTOOLS_SET_C_LD_FLAGS([target],[CONF_CC_OPTS_STAGE1],[CONF_GCC_LINKER_OPTS_STAGE1],[CONF_LD_LINKER_OPTS_STAGE1],[CONF_CPP_OPTS_STAGE1])
552 # Stage 3 won't be supported by cross-compilation
553 FPTOOLS_SET_C_LD_FLAGS([target],[CONF_CC_OPTS_STAGE2],[CONF_GCC_LINKER_OPTS_STAGE2],[CONF_LD_LINKER_OPTS_STAGE2],[CONF_CPP_OPTS_STAGE2])
554
555 FP_GCC_EXTRA_FLAGS
556
557 dnl ** figure out how to invoke cpp directly (gcc -E is no good)
558 AC_PROG_CPP
559
560 AC_SUBST(CONF_CC_OPTS_STAGE0)
561 AC_SUBST(CONF_CC_OPTS_STAGE1)
562 AC_SUBST(CONF_CC_OPTS_STAGE2)
563 AC_SUBST(CONF_GCC_LINKER_OPTS_STAGE0)
564 AC_SUBST(CONF_GCC_LINKER_OPTS_STAGE1)
565 AC_SUBST(CONF_GCC_LINKER_OPTS_STAGE2)
566 AC_SUBST(CONF_LD_LINKER_OPTS_STAGE0)
567 AC_SUBST(CONF_LD_LINKER_OPTS_STAGE1)
568 AC_SUBST(CONF_LD_LINKER_OPTS_STAGE2)
569 AC_SUBST(CONF_CPP_OPTS_STAGE0)
570 AC_SUBST(CONF_CPP_OPTS_STAGE1)
571 AC_SUBST(CONF_CPP_OPTS_STAGE2)
572
573 dnl ** figure out how to do context diffs
574 FP_PROG_CONTEXT_DIFF
575
576 dnl Let's make sure install-sh is executable here.  If we got it from
577 dnl a darcs repo, it might not be (see bug #978).
578 chmod +x install-sh
579 dnl ** figure out how to do a BSD-ish install
580 AC_PROG_INSTALL
581
582 dnl If you can run configure, you certainly have /bin/sh
583 AC_DEFINE([HAVE_BIN_SH], [1], [Define to 1 if you have /bin/sh.])
584
585 dnl ** how to invoke `ar' and `ranlib'
586 FP_PROG_AR_SUPPORTS_ATFILE
587 FP_PROG_AR_NEEDS_RANLIB
588 FP_PROG_AR_SUPPORTS_INPUT
589
590 dnl ** Check to see whether ln -s works
591 AC_PROG_LN_S
592
593
594 dnl ** Find the path to sed
595 AC_PATH_PROGS(SedCmd,gsed sed,sed)
596
597
598 dnl ** check for time command
599 AC_PATH_PROG(TimeCmd,time)
600
601 dnl ** check for tar
602 dnl   if GNU tar is named gtar, look for it first.
603 AC_PATH_PROGS(TarCmd,gnutar gtar tar,tar)
604
605 dnl ** check for patch
606 dnl if GNU patch is named gpatch, look for it first
607 AC_PATH_PROGS(PatchCmd,gpatch patch, patch)
608
609 dnl ** check for dtrace (currently only implemented for Mac OS X)
610 HaveDtrace=NO
611 AC_PATH_PROG(DtraceCmd,dtrace)
612 if test -n "$DtraceCmd"; then
613   if test "x$TargetOS_CPP-$TargetVendor_CPP" == "xdarwin-apple"; then
614     HaveDtrace=YES
615   fi
616 fi
617 AC_SUBST(HaveDtrace)
618
619 AC_PATH_PROG(HSCOLOUR,HsColour)
620 # HsColour is passed to Cabal, so we need a native path
621 if test "x$HostPlatform"  = "xi386-unknown-mingw32" && \
622    test "${OSTYPE}"      != "msys"                  && \
623    test "${HSCOLOUR}"    != ""
624 then
625     # Canonicalise to <drive>:/path/to/gcc
626     HSCOLOUR=`cygpath -m ${HSCOLOUR}`
627 fi
628
629 dnl ** check for DocBook toolchain
630 FP_CHECK_DOCBOOK_DTD
631 FP_DOCBOOK_XSL
632 FP_PROG_DBLATEX
633
634 FP_PROG_HSTAGS
635
636 dnl ** check for ghc-pkg command
637 FP_PROG_GHC_PKG
638
639 dnl ** check for installed happy binary + version
640 dnl    (don't do it if we're booting from .hc files though.)
641 if test "$BootingFromHc" = "NO"; then
642 FPTOOLS_HAPPY
643 fi;
644
645 dnl ** check for installed alex binary + version
646 dnl    (don't do it if we're booting from .hc files though.)
647 if test "$BootingFromHc" = "NO"; then
648 FPTOOLS_ALEX
649 fi;
650
651 dnl --------------------------------------------------
652 dnl ### program checking section ends here ###
653 dnl --------------------------------------------------
654
655 dnl --------------------------------------------------
656 dnl * Platform header file and syscall feature tests
657 dnl ### checking the state of the local header files and syscalls ###
658
659 dnl ** check for full ANSI header (.h) files
660 AC_HEADER_STDC
661
662 dnl ** Enable large file support.  NB. do this before testing the type of
663 dnl    off_t, because it will affect the result of that test.
664 AC_SYS_LARGEFILE
665
666 dnl ** check for specific header (.h) files that we are interested in
667 AC_CHECK_HEADERS([bfd.h ctype.h dirent.h dlfcn.h errno.h fcntl.h grp.h limits.h locale.h nlist.h pthread.h pwd.h signal.h sys/cpuset.h sys/mman.h sys/resource.h sys/select.h sys/time.h sys/timeb.h sys/timers.h sys/times.h sys/utsname.h sys/wait.h termios.h time.h utime.h windows.h winsock.h sched.h])
668
669 dnl ** check if it is safe to include both <time.h> and <sys/time.h>
670 AC_HEADER_TIME
671
672 dnl ** do we have long longs?
673 AC_CHECK_TYPES([long long])
674
675 dnl ** what are the sizes of various types
676 AC_CHECK_SIZEOF(char,               1)
677 AC_CHECK_SIZEOF(double,             8)
678 AC_CHECK_SIZEOF(float,              4)
679 AC_CHECK_SIZEOF(int,                4)
680 AC_CHECK_SIZEOF(long,               4)
681 if test "$ac_cv_type_long_long" = yes; then
682 AC_CHECK_SIZEOF(long long,          8)
683 fi
684 AC_CHECK_SIZEOF(short,              2)
685 AC_CHECK_SIZEOF(unsigned char,      1)
686 AC_CHECK_SIZEOF(unsigned int,       4)
687 AC_CHECK_SIZEOF(unsigned long,      4)
688 if test "$ac_cv_type_long_long" = yes; then
689 AC_CHECK_SIZEOF(unsigned long long, 8)
690 fi
691 AC_CHECK_SIZEOF(unsigned short,     2)
692 AC_CHECK_SIZEOF(void *,             4)
693
694 dnl ** what are alignment constraints on various types
695 FP_CHECK_ALIGNMENT(char)
696 FP_CHECK_ALIGNMENT(double)
697 FP_CHECK_ALIGNMENT(float)
698 FP_CHECK_ALIGNMENT(int)
699 FP_CHECK_ALIGNMENT(long)
700 if test "$ac_cv_type_long_long" = yes; then
701 FP_CHECK_ALIGNMENT(long long)
702 fi
703 FP_CHECK_ALIGNMENT(short)
704 FP_CHECK_ALIGNMENT(unsigned char)
705 FP_CHECK_ALIGNMENT(unsigned int)
706 FP_CHECK_ALIGNMENT(unsigned long)
707 if test "$ac_cv_type_long_long" = yes; then
708 FP_CHECK_ALIGNMENT(unsigned long long)
709 fi
710 FP_CHECK_ALIGNMENT(unsigned short)
711 FP_CHECK_ALIGNMENT(void *)
712
713 FP_CHECK_FUNC([WinExec],
714   [@%:@include <windows.h>], [WinExec("",0)])
715
716 FP_CHECK_FUNC([GetModuleFileName],
717   [@%:@include <windows.h>], [GetModuleFileName((HMODULE)0,(LPTSTR)0,0)])
718
719 dnl ** check return type of signal handlers
720 dnl Foo: assumes we can use prototypes.
721 dnl On BCC, signal handlers have type "int(void)", elsewhere its "void(int)".
722 dnl AC_CACHE_CHECK([type of signal handlers], ac_cv_type_signal_handler,
723 dnl [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
724 dnl #include <signal.h>
725 dnl #ifdef signal
726 dnl #undef signal
727 dnl #endif
728 dnl void (*signal (int, void (*)(int)))(int);
729 dnl ]],
730 dnl [[int i;]])],
731 dnl [ac_cv_type_signal_handler=void_int],
732 dnl [ac_cv_type_signal_handler=int_void])])
733 dnl if test "$ac_cv_type_signal_handler" = void_int; then
734 dnl AC_DEFINE(VOID_INT_SIGNALS)
735 dnl fi
736
737 dnl On BCC, signal handlers have type "int(void)", elsewhere its "void(int)".
738 AC_TYPE_SIGNAL
739 if test "$ac_cv_type_signal" = void; then
740   AC_DEFINE([VOID_INT_SIGNALS], [1], [Define to 1 if signal handlers have type void (*)(int). Otherwise, they're assumed to have type int (*)(void).])
741 fi
742
743 dnl ** check for more functions
744 dnl ** The following have been verified to be used in ghc/, but might be used somewhere else, too.
745 AC_CHECK_FUNCS([getclock getrusage gettimeofday setitimer siginterrupt sysconf times ctime_r sched_setaffinity setlocale])
746
747 AC_TRY_RUN([
748 #include <sys/types.h>
749 #include <sys/time.h>
750 int main(void) {
751   struct itimerval tval;
752   tval.it_value.tv_sec = 1;
753   tval.it_value.tv_usec = 0;
754   tval.it_interval = tval.it_value;
755   return setitimer(ITIMER_VIRTUAL, &tval, (void*)0) != 0;
756 }
757 ],[AC_DEFINE([HAVE_SETITIMER_VIRTUAL], [1], [Define to 1 if setitimer accepts ITIMER_VIRTUAL, 0 else.])])
758
759 dnl ** On OS X 10.4 (at least), time.h doesn't declare ctime_r if
760 dnl ** _POSIX_C_SOURCE is defined
761 AC_CHECK_DECLS([ctime_r], , ,
762 [#define _POSIX_SOURCE 1
763 #define _POSIX_C_SOURCE 199506L
764 #include <time.h>])
765
766 dnl ** check for mingwex library
767 AC_CHECK_LIB(mingwex, closedir, HaveLibMingwEx=YES, HaveLibMingwEx=NO)
768 AC_SUBST(HaveLibMingwEx)
769
770 if test $HaveLibMingwEx = YES ; then
771   AC_DEFINE([HAVE_MINGWEX], [1], [Define to 1 if you have the mingwex library.])
772 fi
773
774 dnl ** check for math library
775 dnl    Keep that check as early as possible.
776 dnl    as we need to know whether we need libm
777 dnl    for math functions or not
778 dnl    (see http://hackage.haskell.org/trac/ghc/ticket/3730)
779 AC_CHECK_LIB(m, atan, HaveLibM=YES, HaveLibM=NO)
780 if test $HaveLibM = YES
781 then
782   AC_DEFINE([HAVE_LIBM], [1], [Define to 1 if you need to link with libm])
783 fi
784
785 dnl ** check whether this machine has BFD and liberty installed (used for debugging)
786 dnl    the order of these tests matters: bfd needs liberty
787 AC_CHECK_LIB(iberty, xmalloc)
788 AC_CHECK_LIB(bfd,    bfd_init)
789
790 dnl ################################################################
791 dnl Check for libraries
792 dnl ################################################################
793
794 dnl ** check whether we need -ldl to get dlopen()
795
796 AC_CHECK_LIB(dl, dlopen,
797     [HaveLibDL=YES
798      AC_DEFINE([HAVE_LIBDL], [1], [Define to 1 if you need -ldl to get dlopen().])
799      LIBS="$LIBS -ldl"],
800     [HaveLibDL=NO])
801 AC_SUBST(HaveLibDL)
802
803 dnl --------------------------------------------------
804 dnl * Miscellaneous feature tests
805 dnl --------------------------------------------------
806
807 dnl ** can we get alloca?
808 AC_FUNC_ALLOCA
809
810 dnl ** Working vfork?
811 AC_FUNC_FORK
812
813 dnl ** determine whether or not const works
814 AC_C_CONST
815
816 dnl ** are we big endian?
817 AC_C_BIGENDIAN
818 FPTOOLS_FLOAT_WORD_ORDER_BIGENDIAN
819
820 dnl ** check for leading underscores in symbol names
821 FP_LEADING_UNDERSCORE
822
823 dnl ** check for ld, whether it has an -x option, and if it is GNU ld
824 FP_PROG_LD_X
825 FP_PROG_LD_IS_GNU
826
827 dnl ** check for Apple-style dead-stripping support
828 dnl    (.subsections-via-symbols assembler directive)
829
830
831 AC_MSG_CHECKING(for .subsections_via_symbols)
832 AC_COMPILE_IFELSE(
833     [AC_LANG_PROGRAM([], [__asm__ (".subsections_via_symbols");])],
834     [AC_MSG_RESULT(yes)
835      AC_DEFINE([HAVE_SUBSECTIONS_VIA_SYMBOLS],[1],
836                [Define to 1 if Apple-style dead-stripping is supported.])
837     ],
838     [AC_MSG_RESULT(no)])
839
840 dnl *** check for GNU non-executable stack note support (ELF only)
841 dnl     (.section .note.GNU-stack,"",@progbits)
842
843 dnl This test doesn't work with "gcc -g" in gcc 4.4 (GHC trac #3889:
844 dnl     Error: can't resolve `.note.GNU-stack' {.note.GNU-stack section} - `.Ltext0' {.text section}
845 dnl so we empty CFLAGS while running this test
846 CFLAGS2="$CFLAGS"
847 CFLAGS=
848 AC_MSG_CHECKING(for GNU non-executable stack support)
849 AC_COMPILE_IFELSE(
850     [AC_LANG_PROGRAM([__asm__ (".section .note.GNU-stack,\"\",@progbits");], [0])],
851     [AC_MSG_RESULT(yes)
852      AC_DEFINE([HAVE_GNU_NONEXEC_STACK],[1],
853                [Define to 1 if GNU non-executable stack notes are supported.])
854     ],
855     [AC_MSG_RESULT(no)])
856 CFLAGS="$CFLAGS2"
857
858 FP_VISIBILITY_HIDDEN
859
860 dnl ** check for librt
861 AC_CHECK_LIB(rt, clock_gettime)
862 AC_CHECK_FUNCS(clock_gettime timer_create timer_settime)
863 FP_CHECK_TIMER_CREATE
864
865 dnl ** check for Apple's "interesting" long double compatibility scheme
866 AC_MSG_CHECKING(for printf\$LDBLStub)
867 AC_TRY_LINK_FUNC(printf\$LDBLStub,
868     [
869         AC_MSG_RESULT(yes)
870         AC_DEFINE([HAVE_PRINTF_LDBLSTUB],[1],
871             [Define to 1 if we have printf$LDBLStub (Apple Mac OS >= 10.4, PPC).])
872     ],
873     [
874         AC_MSG_RESULT(no)
875         AC_DEFINE([HAVE_PRINTF_LDBLSTUB],[0],
876             [Define to 1 if we have printf$LDBLStub (Apple Mac OS >= 10.4, PPC).])
877     ])
878
879 dnl ** check for eventfd which is needed by the I/O manager
880 AC_CHECK_HEADERS([sys/eventfd.h])
881 AC_CHECK_FUNCS([eventfd])
882
883 # test for GTK+
884 AC_PATH_PROGS([GTK_CONFIG], [pkg-config])
885 if test -n "$GTK_CONFIG"; then
886   if $GTK_CONFIG gtk+-2.0 --atleast-version=2.0; then
887     GTK_CONFIG="$GTK_CONFIG gtk+-2.0"
888   else
889     AC_MSG_WARN([GTK+ not usable, need at least version 2.0])
890     GTK_CONFIG=
891   fi
892 fi
893 AC_SUBST([GTK_CONFIG])
894
895 #Checking for PAPI
896 AC_CHECK_LIB(papi, PAPI_library_init, HavePapiLib=YES, HavePapiLib=NO)
897 AC_CHECK_HEADER([papi.h], [HavePapiHeader=YES], [HavePapiHeader=NO])
898 AC_SUBST(HavePapiLib)
899 AC_SUBST(HavePapiHeader)
900
901 AC_CHECK_FUNCS(__mingw_vfprintf)
902
903 if test "$HavePapiLib" = "YES" -a "$HavePapiHeader" = "YES"; then
904    HavePapi=YES
905 else
906    HavePapi=NO
907 fi
908 AC_SUBST(HavePapi)
909
910 if test "$HAVE_DOCBOOK_XSL" = "NO" ||
911    test "$XsltprocCmd" = ""
912 then
913     BUILD_DOCBOOK_HTML=NO
914 else
915     BUILD_DOCBOOK_HTML=YES
916 fi
917 AC_SUBST(BUILD_DOCBOOK_HTML)
918
919 if test "$DblatexCmd" = ""
920 then
921     BUILD_DOCBOOK_PS=NO
922     BUILD_DOCBOOK_PDF=NO
923 else
924     BUILD_DOCBOOK_PS=YES
925     BUILD_DOCBOOK_PDF=YES
926 fi
927 AC_SUBST(BUILD_DOCBOOK_PS)
928 AC_SUBST(BUILD_DOCBOOK_PDF)
929
930 LIBRARY_VERSION(base)
931 LIBRARY_VERSION(Cabal)
932 LIBRARY_VERSION(ghc-prim)
933 LIBRARY_ghc_VERSION="$ProjectVersion"
934 AC_SUBST(LIBRARY_ghc_VERSION)
935
936 if grep '       ' compiler/ghc.cabal.in 2>&1 >/dev/null; then
937    AC_MSG_ERROR([compiler/ghc.cabal.in contains tab characters; please remove them])
938 fi
939
940 AC_CONFIG_FILES([mk/config.mk mk/install.mk mk/project.mk compiler/ghc.cabal ghc/ghc-bin.cabal utils/runghc/runghc.cabal ghc.spec extra-gcc-opts docs/users_guide/ug-book.xml docs/users_guide/ug-ent.xml docs/index.html libraries/prologue.txt distrib/ghc.iss distrib/configure.ac distrib/MacOS/installer-scripts/create-links distrib/MacOS/installer-scripts/Uninstaller distrib/MacOS/GHC-system.pmdoc/index.xml])
941 AC_CONFIG_COMMANDS([mk/stamp-h],[echo timestamp > mk/stamp-h])
942 AC_OUTPUT
943
944 # We get caught by
945 #     http://savannah.gnu.org/bugs/index.php?1516
946 #     $(eval ...) inside conditionals causes errors
947 # with make 3.80, so warn the user if it looks like they're about to
948 # try to use it.
949 # We would use "grep -q" here, but Solaris's grep doesn't support it.
950 checkMake380() {
951     if $1 --version 2>&1 | head -1 | grep 'GNU Make 3\.80' > /dev/null
952     then
953         echo
954         echo "WARNING: It looks like \"$1\" is GNU make 3.80."
955         echo "This version cannot be used to build GHC."
956         echo "Please use GNU make >= 3.81."
957     fi
958 }
959
960 checkMake380 make
961 checkMake380 gmake
962
963 echo ["
964 ----------------------------------------------------------------------
965 Configure completed successfully.
966
967    Building GHC version  : $ProjectVersion
968
969    Build platform        : $BuildPlatform
970    Host platform         : $HostPlatform
971    Target platform       : $TargetPlatform
972 "]
973
974 if test "$BootingFromHc" = "YES"; then
975 echo ["\
976    Bootstrapping from HC files.
977 "]
978 else
979 echo ["\
980    Bootstrapping using   : $WithGhc
981       which is version   : $GhcVersion
982 "]
983 fi
984
985 echo ["\
986    Using GCC             : $WhatGccIsCalled
987       which is version   : $GccVersion
988
989    ld       : $LdCmd
990    Happy    : $HappyCmd ($HappyVersion)
991    Alex     : $AlexCmd ($AlexVersion)
992    Python   : $PythonCmd
993    Perl     : $PerlCmd
994    dblatex  : $DblatexCmd
995    xsltproc : $XsltprocCmd"]
996
997 if test "$HSCOLOUR" = ""; then
998 echo ["
999    HsColour was not found; documentation will not contain source links
1000 "]
1001 else
1002 echo ["\
1003    HsColour : $HSCOLOUR
1004 "]
1005 fi
1006
1007 echo ["\
1008    Building DocBook HTML documentation : $BUILD_DOCBOOK_HTML
1009    Building DocBook PS documentation   : $BUILD_DOCBOOK_PS
1010    Building DocBook PDF documentation  : $BUILD_DOCBOOK_PDF"]
1011
1012 echo ["----------------------------------------------------------------------
1013 "]
1014
1015 echo "\
1016 For a standard build of GHC (fully optimised with profiling), type (g)make.
1017
1018 To make changes to the default build configuration, copy the file
1019 mk/build.mk.sample to mk/build.mk, and edit the settings in there.
1020
1021 For more information on how to configure your GHC build, see
1022    http://hackage.haskell.org/trac/ghc/wiki/Building
1023 "