mirror of
git://git.sv.gnu.org/autoconf
synced 2025-03-01 14:16:02 +08:00
Fix detection of link flags for fort77 on GNU/Linux.
* lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Properly detect the fort77 (f2c wrapper) compiler verbose linking output flag. Fixes also AC_F77_LIBRARY_LDFLAGS and AC_F77_DUMMY_MAIN. * THANKS: Update. Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
This commit is contained in:
parent
9e71645ffc
commit
cc2118d836
@ -1,3 +1,12 @@
|
|||||||
|
2011-02-12 Giulio Paci <giuliopaci@interfree.it> (tiny change)
|
||||||
|
Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||||
|
|
||||||
|
Fix detection of link flags for fort77 on GNU/Linux.
|
||||||
|
* lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Properly detect
|
||||||
|
the fort77 (f2c wrapper) compiler verbose linking output flag.
|
||||||
|
Fixes also AC_F77_LIBRARY_LDFLAGS and AC_F77_DUMMY_MAIN.
|
||||||
|
* THANKS: Update.
|
||||||
|
|
||||||
2011-02-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
2011-02-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||||
|
|
||||||
* doc/autoconf.texi: Rebuild menus using emacs ^C ^U ^A.
|
* doc/autoconf.texi: Rebuild menus using emacs ^C ^U ^A.
|
||||||
|
1
THANKS
1
THANKS
@ -151,6 +151,7 @@ Greg A. Woods woods@weird.com
|
|||||||
Greg Schafer gschafer@zip.com.au
|
Greg Schafer gschafer@zip.com.au
|
||||||
Gregorio Guidi ?
|
Gregorio Guidi ?
|
||||||
Gregory Giannoni sand@narguile.org
|
Gregory Giannoni sand@narguile.org
|
||||||
|
Giulio Paci giuliopaci@interfree.it
|
||||||
Guido Draheim Guido.Draheim@gmx.de
|
Guido Draheim Guido.Draheim@gmx.de
|
||||||
Guido Flohr gufl0000@stud.uni-sb.de
|
Guido Flohr gufl0000@stud.uni-sb.de
|
||||||
Guido van Rossum ?
|
Guido van Rossum ?
|
||||||
|
@ -540,6 +540,16 @@ case $ac_[]_AC_LANG_ABBREV[]_v_output in
|
|||||||
s/-ignore *'[[^']]*'/ /g; s/-ignore *\"[[^\"]]*\"/ /g
|
s/-ignore *'[[^']]*'/ /g; s/-ignore *\"[[^\"]]*\"/ /g
|
||||||
s/-def *'[[^']]*'/ /g; s/-def *\"[[^\"]]*\"/ /g"` ;;
|
s/-def *'[[^']]*'/ /g; s/-def *\"[[^\"]]*\"/ /g"` ;;
|
||||||
|
|
||||||
|
# If we are using fort77 (the f2c wrapper) then filter output and delete quotes.
|
||||||
|
*fort77*f2c*gcc*)
|
||||||
|
ac_[]_AC_LANG_ABBREV[]_v_output=`echo "$ac_[]_AC_LANG_ABBREV[]_v_output" | sed -n '
|
||||||
|
/:[[ ]]\+Running[[ ]]\{1,\}"gcc"/{
|
||||||
|
/"-c"/d
|
||||||
|
/[[.]]c"*/d
|
||||||
|
s/^.*"gcc"/"gcc"/
|
||||||
|
s/"//gp
|
||||||
|
}'` ;;
|
||||||
|
|
||||||
# If we are using Cray Fortran then delete quotes.
|
# If we are using Cray Fortran then delete quotes.
|
||||||
*cft90*)
|
*cft90*)
|
||||||
ac_[]_AC_LANG_ABBREV[]_v_output=`echo $ac_[]_AC_LANG_ABBREV[]_v_output | sed 's/"//g'` ;;
|
ac_[]_AC_LANG_ABBREV[]_v_output=`echo $ac_[]_AC_LANG_ABBREV[]_v_output | sed 's/"//g'` ;;
|
||||||
|
Loading…
Reference in New Issue
Block a user