diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-05 21:09:13 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-05 21:09:13 +0000 |
commit | d1191d66c696498fbcc1d1c598e1a3736d8142f3 (patch) | |
tree | e29c743b82f2f1ee1e278acb8b57aa446a4856b4 /libgfortran/configure | |
parent | 942043f8b1e9c4040e632488ea345801b2f670a9 (diff) | |
download | gcc-d1191d66c696498fbcc1d1c598e1a3736d8142f3.tar.gz |
2005-11-05 Richard Guenther <rguenther@suse.de>
* configure.ac: Use AM_FCFLAGS for extra flags, not FCFLAGS.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@106535 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/configure')
-rwxr-xr-x | libgfortran/configure | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libgfortran/configure b/libgfortran/configure index b5bcafafa81..a332726e668 100755 --- a/libgfortran/configure +++ b/libgfortran/configure @@ -2965,9 +2965,9 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu -# Add -Wall if we are using GCC. +# Add -Wall -fno-repack-arrays -fno-underscoring if we are using GCC. if test "x$GCC" = "xyes"; then - AM_FCFLAGS="-Wall" + AM_FCFLAGS="-Wall -fno-repack-arrays -fno-underscoring" ## We like to use C99 routines when available. This makes sure that ## __STDC_VERSION__ is set such that libc includes make them available. AM_CFLAGS="-std=gnu99 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wextra -Wwrite-strings" @@ -4418,7 +4418,6 @@ exec 5>>./config.log #AC_MSG_NOTICE([====== Finished libtool configuration]) ; sleep 10 # We need gfortran to compile parts of the library -# We can't use AC_PROG_FC because it expects a fully working gfortran. #AC_PROG_FC(gfortran) FC="$GFORTRAN" ac_ext=${FC_SRCEXT-f} @@ -4513,7 +4512,7 @@ fi # Provide some information about the compiler. -echo "$as_me:4516:" \ +echo "$as_me:4515:" \ "checking for Fortran compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5 @@ -4656,7 +4655,6 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu -FCFLAGS="$FCFLAGS -Wall -fno-repack-arrays -fno-underscoring" # extra LD Flags which are required for targets case "${host}" in |