From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20331 invoked by alias); 12 Aug 2006 11:39:19 -0000 Received: (qmail 20320 invoked by uid 22791); 12 Aug 2006 11:39:18 -0000 X-Spam-Check-By: sourceware.org Received: from sibelius.xs4all.nl (HELO sibelius.xs4all.nl) (82.92.89.47) by sourceware.org (qpsmtpd/0.31) with ESMTP; Sat, 12 Aug 2006 11:39:15 +0000 Received: from elgar.sibelius.xs4all.nl (root@elgar.sibelius.xs4all.nl [192.168.0.2]) by sibelius.xs4all.nl (8.13.4/8.13.4) with ESMTP id k7CBdCoL009655; Sat, 12 Aug 2006 13:39:12 +0200 (CEST) Received: from elgar.sibelius.xs4all.nl (kettenis@localhost.sibelius.xs4all.nl [127.0.0.1]) by elgar.sibelius.xs4all.nl (8.13.6/8.13.6) with ESMTP id k7CBdBro004364; Sat, 12 Aug 2006 13:39:11 +0200 (CEST) Received: (from kettenis@localhost) by elgar.sibelius.xs4all.nl (8.13.6/8.13.6/Submit) id k7CBdBUE017527; Sat, 12 Aug 2006 13:39:11 +0200 (CEST) Date: Sat, 12 Aug 2006 11:39:00 -0000 Message-Id: <200608121139.k7CBdBUE017527@elgar.sibelius.xs4all.nl> From: Mark Kettenis To: denis.pilat@st.com CC: gdb@sourceware.org In-reply-to: <44D9FD1E.9020809@st.com> (message from Denis PILAT on Wed, 09 Aug 2006 17:19:58 +0200) Subject: Re: linux 64bits support References: <44D9FD1E.9020809@st.com> Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2006-08/txt/msg00106.txt.bz2 > Date: Wed, 09 Aug 2006 17:19:58 +0200 > From: Denis PILAT > > Hi guys, > > Is 64bits native linux target supported with gdb6.5 ? It sure is. > I get a lot of error in gdb.base testsuite. You probably are using a Linux distribution that has a 64-bit kernel, but 32-bit userland, where the toolchain produces 32-bit binaries by default. Whack away your build tree and start afresh, configuring with CFLAGS=-m64. It's a real mess since there are other 64-bit Linux distributions that do have a fully 64-bit userland, yet the canonical for both variants is the same :(. Mark