From owner-cvs-all Wed Jun 5 17: 2:30 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id B4E5537B41F; Wed, 5 Jun 2002 17:01:34 -0700 (PDT) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id KAA32161; Thu, 6 Jun 2002 10:01:31 +1000 Date: Thu, 6 Jun 2002 10:02:07 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: "David O'Brien" Cc: Robert Watson , , Subject: Re: cvs commit: src UPDATING In-Reply-To: <20020605164841.C51253@dragon.nuxi.com> Message-ID: <20020606095727.T9454-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 5 Jun 2002, David O'Brien wrote: > On Thu, Jun 06, 2002 at 09:11:26AM +1000, Bruce Evans wrote: > > -gstabs+ doesnt't even compile here. > > > > %%% > > Script started on Thu Jun 6 09:02:20 2002 > > ttyp0:bde@besplex:/usr/src/bin/cat> make > > Warning: Using /usr/src/bin/cat/obj as object directory instead of canonical /usr/obj/usr/src/bin/cat > > cc -O -pipe -Wall -Wno-format-y2k -Wno-uninitialized -Wformat=2 -Wno-format-extra-args -static -o cat cat.o > > I don't see "-gstabs+" in your `cc' invocation. Oops. The above failed despite not having -gstabs because I had already built cat.o using -gstabs+. Here is a complete version: %%% Script started on Thu Jun 6 09:56:22 2002 ttyp0:bde@besplex:/usr/src/bin/cat> make clean rm -f cat cat.o cat.1.gz cat.1.cat.gz ttyp0:bde@besplex:/usr/src/bin/cat> make CC='cc -gstabs+' Warning: Using /usr/src/bin/cat/obj as object directory instead of canonical /usr/obj/usr/src/bin/cat cc -gstabs+ -O -pipe -Wall -Wno-format-y2k -Wno-uninitialized -Wformat=2 -Wno-format-extra-args -c /usr/src/bin/cat/cat.c {standard input}: Assembler messages: {standard input}:1342: Warning: rest of line ignored; first ignored character is `-' cc -gstabs+ -O -pipe -Wall -Wno-format-y2k -Wno-uninitialized -Wformat=2 -Wno-format-extra-args -static -o cat cat.o cat.o: In function `udom_open': /usr/src/bin/cat/cat.c(.stab+0x1460): undefined reference to `nantext' *** Error code 1 Stop in /usr/src/bin/cat. ttyp0:bde@besplex:/usr/src/bin/cat> exit Script done on Thu Jun 6 09:56:32 2002 %%% Compiling an empty file with -gstabs gives a reference to `nantext', and I don't have anything to satisfy it. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message