Date: Sun, 29 Nov 1998 14:17:49 +1030 From: Greg Lehey <grog@lemis.com> To: Andrew <andrew@violet.org> Cc: FreeBSD Questions <questions@FreeBSD.ORG> Subject: Re: /usr/lib/crt0.o & freebsd 3.0-release Message-ID: <19981129141749.D6182@freebie.lemis.com> In-Reply-To: <19981128193733.A4176@apogee.whack.org>; from Andrew on Sat, Nov 28, 1998 at 07:37:33PM -0800 References: <19981128174357.A3586@apogee.whack.org> <19981129123738.V6182@freebie.lemis.com> <19981128193733.A4176@apogee.whack.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Saturday, 28 November 1998 at 19:37:33 -0800, Andrew wrote: >> If you're linking an a.out executable, the linker will choose >> /usr/lib/aout/crt0.o. If you're linking an ELF executable, the linker >> will choose /usr/lib/crt1.o. > > Greg, I wish the linker chose something... > > > ...compiling... > if [ xlibgcc1.a != x ]; then (cd tmpcopy; ar x ../libgcc1.a); else true; fi > (cd tmpcopy; chmod +w * > /dev/null 2>&1) > (cd tmpcopy; ar x ../libgcc2.a) > (cd tmpcopy; ar rc ../tmplibgcc.a *.o) > rm -rf tmpcopy > if [ -f /usr/bin/ranlib -o -f /bin/ranlib ] ; then ranlib tmplibgcc.a; else true; fi > mv tmplibgcc.a libgcc.a > ./xgcc -B./ -DIN_GCC -g -I./include enquire.o -o enquire > /usr/libexec/elf/ld: cannot open crt0.o: No such file or directory > *** Error code 1 OK, in fact it's not the linker, it's the compiler. And it's the compiler you've just built. There's a file called 'specs' which contains this information--you should find it as /usr/ports/lang/gcc28/work/gcc-2.8.1/specs. You'll need to manually change it to read crt1.o. And don't forget a bug report to the ports team. They're just in the process of fixing up the ports for the 2.2.8 release, so this is a good time. Greg -- See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19981129141749.D6182>