On Fri, 24 Oct 2014, Rainer Orth wrote: > Richard Biener <rguent...@suse.de> writes: > > > On Thu, 23 Oct 2014, Richard Biener wrote: > > > >> > >> Final try for today. > > > > And this may work as well and is slightly simpler. > > > > Index: gcc/Makefile.in > > =================================================================== > > --- gcc/Makefile.in (revision 216590) > > +++ gcc/Makefile.in (working copy) > > @@ -981,7 +981,15 @@ else > > LIBIBERTY = ../libiberty/libiberty.a > > BUILD_LIBIBERTY = $(build_libobjdir)/libiberty/libiberty.a > > endif > > +# For stage1 and when cross-compiling use the build libcpp which is > > +# built with NLS disabled. For stage2+ use the host library and > > +# its dependencies. > > +ifeq ($(build_objdir),$(build_libobjdir)) > > BUILD_CPPLIB = $(build_libobjdir)/libcpp/libcpp.a > > +else > > +BUILD_CPPLIB = $(CPPLIB) $(LIBIBERTY) $(LIBINTL) $(LIBICONV) > > +build/genmatch$(build_exeext): BUILD_LIBDEPS += $(LIBINTL_DEP) > > $(LIBICONV_DEP) > > +endif > > > > # Dependencies on the intl and portability libraries. > > LIBDEPS= libcommon.a $(CPPLIB) $(LIBIBERTY) $(LIBINTL_DEP) $(LIBICONV_DEP) > > \ > > > > > > Can you test it please? > > Sure: this version allowed an i386-pc-solaris2.10 bootstrap to complete > just fine.
Great. Installed as follows. Richard. 2014-10-24 Richard Biener <rguent...@suse.de> * Makefile.in (BUILD_CPPLIB): When in stage2+ use the host library and make sure to pull in the required libintl and libiconv dependencies. Index: gcc/Makefile.in =================================================================== --- gcc/Makefile.in (revision 216590) +++ gcc/Makefile.in (working copy) @@ -981,7 +981,15 @@ else LIBIBERTY = ../libiberty/libiberty.a BUILD_LIBIBERTY = $(build_libobjdir)/libiberty/libiberty.a endif +# For stage1 and when cross-compiling use the build libcpp which is +# built with NLS disabled. For stage2+ use the host library and +# its dependencies. +ifeq ($(build_objdir),$(build_libobjdir)) BUILD_CPPLIB = $(build_libobjdir)/libcpp/libcpp.a +else +BUILD_CPPLIB = $(CPPLIB) $(LIBIBERTY) $(LIBINTL) $(LIBICONV) +build/genmatch$(build_exeext): BUILD_LIBDEPS += $(LIBINTL_DEP) $(LIBICONV_DEP) +endif # Dependencies on the intl and portability libraries. LIBDEPS= libcommon.a $(CPPLIB) $(LIBIBERTY) $(LIBINTL_DEP) $(LIBICONV_DEP) \