diff options
author | kkojima <kkojima@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-31 12:29:33 +0000 |
---|---|---|
committer | kkojima <kkojima@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-31 12:29:33 +0000 |
commit | 8f6d090c354f1db49ce1ba711d48add2c1364e30 (patch) | |
tree | e038e943658ce53f0c0231ac0c89338b82a735d6 | |
parent | a7ad25916ce62356901219d1c32a621ece909f8f (diff) | |
download | gcc-8f6d090c354f1db49ce1ba711d48add2c1364e30.tar.gz |
* Makefile.am: Don't set SECTION_FLAGS with @SECTION_FLAGS@.
Don't set IEEE_FLAGS with @IEEE_FLAGS@.
* Makefile.in: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@150313 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libgfortran/ChangeLog | 6 | ||||
-rw-r--r-- | libgfortran/Makefile.am | 2 | ||||
-rw-r--r-- | libgfortran/Makefile.in | 8 |
3 files changed, 10 insertions, 6 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 1412b0b980d..e8efb647c4b 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,9 @@ +2009-07-31 Kaz Kojima <kkojima@gcc.gnu.org> + + * Makefile.am: Don't set SECTION_FLAGS with @SECTION_FLAGS@. + Don't set IEEE_FLAGS with @IEEE_FLAGS@. + * Makefile.in: Regenerate. + 2009-07-30 Kaz Kojima <kkojima@gcc.gnu.org> * configure.host: Define ieee_flags and set it to -mieee for sh. diff --git a/libgfortran/Makefile.am b/libgfortran/Makefile.am index ee969d06936..aaecdb4f11a 100644 --- a/libgfortran/Makefile.am +++ b/libgfortran/Makefile.am @@ -34,11 +34,9 @@ AM_CPPFLAGS = -iquote$(srcdir)/io -I$(srcdir)/$(MULTISRCTOP)../gcc \ AM_CFLAGS += -fcx-fortran-rules # Use -ffunction-sections -fdata-sections if supported by the compiler -SECTION_FLAGS = @SECTION_FLAGS@ AM_CFLAGS += $(SECTION_FLAGS) # Some targets require additional compiler options for IEEE compatibility. -IEEE_FLAGS = @IEEE_FLAGS@ AM_CFLAGS += $(IEEE_FLAGS) gfor_io_src= \ diff --git a/libgfortran/Makefile.in b/libgfortran/Makefile.in index d7742ff7302..7ea32c6608b 100644 --- a/libgfortran/Makefile.in +++ b/libgfortran/Makefile.in @@ -815,6 +815,10 @@ AMDEP_TRUE = @AMDEP_TRUE@ AMTAR = @AMTAR@ # Fortran rules for complex multiplication and division + +# Use -ffunction-sections -fdata-sections if supported by the compiler + +# Some targets require additional compiler options for IEEE compatibility. AM_CFLAGS = @AM_CFLAGS@ -fcx-fortran-rules $(SECTION_FLAGS) \ $(IEEE_FLAGS) AM_FCFLAGS = @AM_FCFLAGS@ @@ -844,8 +848,6 @@ FCFLAGS = @FCFLAGS@ FGREP = @FGREP@ FPU_HOST_HEADER = @FPU_HOST_HEADER@ GREP = @GREP@ - -# Some targets require additional compiler options for IEEE compatibility. IEEE_FLAGS = @IEEE_FLAGS@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ @@ -879,8 +881,6 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ - -# Use -ffunction-sections -fdata-sections if supported by the compiler SECTION_FLAGS = @SECTION_FLAGS@ SED = @SED@ SET_MAKE = @SET_MAKE@ |