From: sof Date: Tue, 18 Aug 1998 20:40:42 +0000 (+0000) Subject: [project @ 1998-08-18 20:40:42 by sof] X-Git-Tag: Approx_2487_patches~310 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=b799828011279d73fa33fa0a1b9bfd0793d601f1;p=ghc-hetmet.git [project @ 1998-08-18 20:40:42 by sof] Doc string for --enable-hc-boot was lacking; added --with-gcc cmd line option --- diff --git a/configure.in b/configure.in index 938ef04..c0fac1e 100644 --- a/configure.in +++ b/configure.in @@ -284,16 +284,24 @@ AC_SUBST(exeext) dnl * Booting from .hc files? #-------------------------------------------------------------- AC_ARG_ENABLE(hc-boot, - [ -Boot the Glasgow Haskell Compiler from intermediate .hc files. -(This option is mostly of interest for porters.) - ], - - BootingFromHc=YES, - BootingFromHc=NO +[ --enable-hc-boot + Boot the Glasgow Haskell Compiler from intermediate .hc files. + (This option is mostly of interest to porters.) +], +[BootingFromHc=YES], +[BootingFromHc=NO] ) AC_SUBST(BootingFromHc) +AC_ARG_WITH(gcc, +[ --with-gcc= + Use a different command instead of 'gcc' for the GNU C compiler. +], +[WhatGccIsCalled="$withval"], +[WhatGccIsCalled="gcc"] +) +AC_SUBST(WhatGccIsCalled) + # ------------------------------------------------------------------------- dnl dnl * _GENERAL_ CONFIGURATION CHECKS