From owner-freebsd-current@FreeBSD.ORG Tue Jun 22 21:25:39 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA05816A4CE; Tue, 22 Jun 2004 21:25:39 +0000 (GMT) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79D1443D5E; Tue, 22 Jun 2004 21:25:39 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.12.10/8.12.10) id i5MLPcRq090725; Tue, 22 Jun 2004 16:25:38 -0500 (CDT) (envelope-from dan) Date: Tue, 22 Jun 2004 16:25:38 -0500 From: Dan Nelson To: Jon Noack , freebsd-current@freebsd.org, freebsd-x11@freebsd.org Message-ID: <20040622212538.GA51531@dan.emsphone.com> References: <40D7EC48.5010800@alumni.rice.edu> <20040622204008.GB800@galgenberg.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040622204008.GB800@galgenberg.net> X-OS: FreeBSD 5.2-CURRENT X-message-flag: Outlook Error User-Agent: Mutt/1.5.6i Subject: Re: -Os -> libXaw.so: undefined reference to `.L91' X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Jun 2004 21:25:39 -0000 In the last episode (Jun 22), Ulrich Spoerlein said: > On Tue, 22.06.2004 at 03:22:32 -0500, Jon Noack wrote: > > I have been running into the following problem when attempting to > > compile teTex: > > /usr/X11R6/lib/libXaw.so: undefined reference to `.L91' > > me too here. But also XFree86-clients were broken by this. Funny > thing is, my error message was this: > /usr/X11R6/lib/libXaw.so: undefined reference to `.L99' > ^^^ .L## symbols are temporary labels used for short jumps, like around if() or while loops. The number may be different depending on your CPU and optimization flags. gcc probably generated a reference to one but forgot to generate the label itself. -- Dan Nelson dnelson@allantgroup.com