This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Bootstrap failure after libcpp config rewrite


Paolo,

Your change

2004-08-25  Paolo Bonzini  <bonzini@gnu.org>

        * configure.ac: Replace Automake macro invocations
        with manual Autoconf checks and substitutions.
        * Makefile.am: Removed.
        * Makefile.in: Heavy simplification and reorganization.

is causing bootstrap failures.

gcc -g -O2  -o makedepend \
  makedepend.o libcpp.a ../libiberty/libiberty.a \
  /../intl/libintl.a 
gcc: /../intl/libintl.a: No such file or directory
gnumake[1]: *** [makedepend] Error 1
gnumake[1]: Leaving directory `/work/rearnsha/gnu/egcs/libcpp'
gnumake: *** [all-libcpp] Error 2

It seems that the Makefile contains


INCINTL = -I${top_builddir}/../intl
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
LDFLAGS = 
LIBICONV = 
LIBINTL = ${top_builddir}/../intl/libintl.a

but you've killed the definition of top_builddir.

R.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]