From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14618 invoked by alias); 31 Jan 2003 01:59:54 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 14611 invoked from network); 31 Jan 2003 01:59:54 -0000 Received: from unknown (HELO piper.synopsys.com) (204.176.21.195) by 172.16.49.205 with SMTP; 31 Jan 2003 01:59:54 -0000 Received: (from jbuck@localhost) by piper.synopsys.com (8.11.6/8.11.6) id h0V1xWp23230; Thu, 30 Jan 2003 17:59:32 -0800 Date: Fri, 31 Jan 2003 04:12:00 -0000 From: Joe Buck To: "J. Scott Edwards" Cc: gcc@gcc.gnu.org Subject: Re: gxx_personality_v0 undefined - 2.96 Libraries 3.2 GCC Message-ID: <20030130175932.B23205@synopsys.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from sedwards@xmission.com on Thu, Jan 30, 2003 at 11:40:30AM -0700 X-SW-Source: 2003-01/txt/msg01726.txt.bz2 On Thu, Jan 30, 2003 at 11:40:30AM -0700, J. Scott Edwards wrote: > I just switched this machine from Debian Woody to SuSE 8.1 GNU/Linux but > now when I try to build the software I'm working on I get this: > > undefined reference to `__gxx_personality_v0' You're linking with gcc, so you're not pulling in needed C++ runtime support. Link with g++ instead, or explicitly specify -lstdc++ or -lsupc++ .