diff options
author | Jakub Jelinek <jakub@redhat.com> | 2017-01-08 17:43:30 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2017-01-08 17:43:30 +0100 |
commit | 8a1f09e4d94a3928495f763abe961176377f0d5f (patch) | |
tree | 9b3c79329c41692b65d6f625d7deb4eb37fc0372 /libdecnumber/Makefile.in | |
parent | d8dc87c24cf4883d3934d285a9bf1e5ca5384022 (diff) | |
download | gcc-8a1f09e4d94a3928495f763abe961176377f0d5f.tar.gz |
re PR rtl-optimization/79003 (r238991 breaks ODR)
PR bootstrap/79003
* Makefile.in (CFLAGS, CPPFLAGS, LDFLAGS): Remove -fno-lto.
(NOLTO_FLAGS): New variable.
(ALL_CFLAGS): Use it.
* configure.ac (nolto_flags): New ACX_PROG_CC_WARNING_OPTS,
check for whether -fno-lto works.
* configure: Regenerated.
From-SVN: r244208
Diffstat (limited to 'libdecnumber/Makefile.in')
-rw-r--r-- | libdecnumber/Makefile.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libdecnumber/Makefile.in b/libdecnumber/Makefile.in index 2cfc5f48720..8f13f324edf 100644 --- a/libdecnumber/Makefile.in +++ b/libdecnumber/Makefile.in @@ -31,19 +31,20 @@ ACLOCAL = @ACLOCAL@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ CC = @CC@ -CFLAGS = @CFLAGS@ -fno-lto +CFLAGS = @CFLAGS@ WARN_CFLAGS = @WARN_CFLAGS@ @WARN_PEDANTIC@ @WERROR@ CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -fno-lto +CPPFLAGS = @CPPFLAGS@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ -LDFLAGS = @LDFLAGS@ -fno-lto +LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ PACKAGE = @PACKAGE@ PICFLAG = @PICFLAG@ RANLIB = @RANLIB@ SHELL = @SHELL@ objext = @OBJEXT@ +NOLTO_FLAGS = @nolto_flags@ datarootdir = @datarootdir@ datadir = @datadir@ @@ -58,7 +59,8 @@ enable_decimal_float= @enable_decimal_float@ INCLUDES = -I$(srcdir) -I. -ALL_CFLAGS = $(CFLAGS) $(WARN_CFLAGS) $(INCLUDES) $(CPPFLAGS) $(PICFLAG) +ALL_CFLAGS = $(CFLAGS) $(WARN_CFLAGS) $(NOLTO_FLAGS) $(INCLUDES) $(CPPFLAGS) \ + $(PICFLAG) bid_OBJS = bid2dpd_dpd2bid.$(objext) host-ieee32.$(objext) \ host-ieee64.$(objext) host-ieee128.$(objext) |