mirror of git://gcc.gnu.org/git/gcc.git
re PR tree-optimization/37717 (verify_ssa failed for legal C++ with -O2)
2008-10-15 Paolo Bonzini <bonzini@gnu.org> PR bootstrap/37717 * Makefile.in (LIBCFLAGS): Remove. (FLAGS_TO_PASS): Don't mention it. (COMPILE.c, MULTIOSDIR): Replace it with CFLAGS. From-SVN: r141135
This commit is contained in:
parent
ee06c6a59e
commit
269f1d98b8
|
|
@ -1,3 +1,10 @@
|
||||||
|
2008-10-15 Paolo Bonzini <bonzini@gnu.org>
|
||||||
|
|
||||||
|
PR bootstrap/37717
|
||||||
|
* Makefile.in (LIBCFLAGS): Remove.
|
||||||
|
(FLAGS_TO_PASS): Don't mention it.
|
||||||
|
(COMPILE.c, MULTIOSDIR): Replace it with CFLAGS.
|
||||||
|
|
||||||
2008-10-08 David Edelsohn <edelsohn@gnu.org>
|
2008-10-08 David Edelsohn <edelsohn@gnu.org>
|
||||||
|
|
||||||
* xstrdup.c: Include <sys/types.h> after "config.h"
|
* xstrdup.c: Include <sys/types.h> after "config.h"
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,6 @@ AR_FLAGS = rc
|
||||||
|
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
LIBCFLAGS = $(CFLAGS)
|
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
MAKEINFO = @MAKEINFO@
|
MAKEINFO = @MAKEINFO@
|
||||||
PERL = @PERL@
|
PERL = @PERL@
|
||||||
|
|
@ -80,7 +79,6 @@ FLAGS_TO_PASS = \
|
||||||
"CC=$(CC)" \
|
"CC=$(CC)" \
|
||||||
"CFLAGS=$(CFLAGS)" \
|
"CFLAGS=$(CFLAGS)" \
|
||||||
"DESTDIR=$(DESTDIR)" \
|
"DESTDIR=$(DESTDIR)" \
|
||||||
"LIBCFLAGS=$(LIBCFLAGS)" \
|
|
||||||
"EXTRA_OFILES=$(EXTRA_OFILES)" \
|
"EXTRA_OFILES=$(EXTRA_OFILES)" \
|
||||||
"HDEFINES=$(HDEFINES)" \
|
"HDEFINES=$(HDEFINES)" \
|
||||||
"INSTALL=$(INSTALL)" \
|
"INSTALL=$(INSTALL)" \
|
||||||
|
|
@ -111,7 +109,7 @@ installcheck: installcheck-subdir
|
||||||
|
|
||||||
INCDIR=$(srcdir)/$(MULTISRCTOP)../include
|
INCDIR=$(srcdir)/$(MULTISRCTOP)../include
|
||||||
|
|
||||||
COMPILE.c = $(CC) -c @DEFS@ $(LIBCFLAGS) -I. -I$(INCDIR) $(HDEFINES) @ac_libiberty_warn_cflags@
|
COMPILE.c = $(CC) -c @DEFS@ $(CFLAGS) -I. -I$(INCDIR) $(HDEFINES) @ac_libiberty_warn_cflags@
|
||||||
|
|
||||||
# Just to make sure we don't use a built-in rule with VPATH
|
# Just to make sure we don't use a built-in rule with VPATH
|
||||||
.c.o:
|
.c.o:
|
||||||
|
|
@ -350,9 +348,9 @@ install: install_to_$(INSTALL_DEST) install-subdir
|
||||||
|
|
||||||
# This is tricky. Even though CC in the Makefile contains
|
# This is tricky. Even though CC in the Makefile contains
|
||||||
# multilib-specific flags, it's overridden by FLAGS_TO_PASS from the
|
# multilib-specific flags, it's overridden by FLAGS_TO_PASS from the
|
||||||
# default multilib, so we have to take LIBCFLAGS into account as well,
|
# default multilib, so we have to take CFLAGS into account as well,
|
||||||
# since it will be passed the multilib flags.
|
# since it will be passed the multilib flags.
|
||||||
MULTIOSDIR = `$(CC) $(LIBCFLAGS) -print-multi-os-directory`
|
MULTIOSDIR = `$(CC) $(CFLAGS) -print-multi-os-directory`
|
||||||
install_to_libdir: all
|
install_to_libdir: all
|
||||||
${mkinstalldirs} $(DESTDIR)$(libdir)/$(MULTIOSDIR)
|
${mkinstalldirs} $(DESTDIR)$(libdir)/$(MULTIOSDIR)
|
||||||
$(INSTALL_DATA) $(TARGETLIB) $(DESTDIR)$(libdir)/$(MULTIOSDIR)/$(TARGETLIB)n
|
$(INSTALL_DATA) $(TARGETLIB) $(DESTDIR)$(libdir)/$(MULTIOSDIR)/$(TARGETLIB)n
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue