Date: Mon, 17 Jan 2000 20:54:18 -0500 From: Jim Bloom <bloom@acm.org> To: Brian Fundakowski Feldman <green@FreeBSD.ORG> Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/usr.bin/texinfo/info Makefilesrc/gnu/usr.bin/texinfo/install-info Makefile src/gnu/usr.bin/texinfo/makeinfoMakefile src/gnu/usr.bin/texinfo/texindex Makefile Message-ID: <3883C7CA.7C5F4F76@acm.org> References: <Pine.BSF.4.10.10001171410220.42505-100000@green.dyndns.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Brian, I found the problem. A buildworld gets past this problem now. I believe the problem has to do with the build order. You added texinfo after the compiler was rebuilt. As such, the compilation of texinfo used the newly compiled compiler which behaves differently than the installed compiler. It was passing crt1.o to ld instead of /usr/lib/crt1.o that was passed by the system compiler. There is no path search, so this failed. I forgot to save the original copy of Makefile.incl, so I can't send a diff, but you simply need to swap the order of gnu/usr.bin/cc and gnu/usr.bin/texinfo in the cross-tools target. Jim Bloom bloom@acm.org Brian Fundakowski Feldman wrote: > > On Mon, 17 Jan 2000, Brian Feldman wrote: > > > Log: > > :%s:\([A-Z][A-Z]ADD\)=:\1+=:g > > Add the forgotten plus, which should unbreak the world build. > > *Sigh*. I know this doesn't fix world, and I have no idea why the > hell world is still broken. Why is every other bootstrap tool > getting "-static" and not this one?!? *dies* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3883C7CA.7C5F4F76>