From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17535 invoked by alias); 6 Oct 2004 17:41:54 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 17524 invoked from network); 6 Oct 2004 17:41:53 -0000 Received: from unknown (HELO neptune.TidalNetworks.net) (67.114.153.34) by sourceware.org with SMTP; 6 Oct 2004 17:41:53 -0000 Content-class: urn:content-classes:message Subject: RE: core file not loaded MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Wed, 06 Oct 2004 17:41:00 -0000 Message-ID: <52BBA75459915749B68F93B604B636CD06670D@neptune.TidalNetworks.net> X-MS-Has-Attach: X-MS-TNEF-Correlator: From: "Xinan Tang" To: "Daniel Jacobowitz" Cc: X-SW-Source: 2004-10/txt/msg00157.txt.bz2 Hi Has anyone implemented "gcore' command in the remote stub without any OS support? If I want to support the core file in the remote stub, where can I find the spec. on the core file (elf) format? Thanks --Xinan =20=20 -----Original Message----- That's not a core file. You can probably convert it to a core file, but you'd also have to teach the BFD and GDB powerpc-eabi support to recognize it as a powerpc-eabi core file. A core file is one of several "standard" formats, generated by various operating systems - lately, a particular kind of ELF object. Easiest might be to convert your binary dump to an ELF core file and copy support from powerpc-linux. Note that a memory dump isn't enough; for instance, you've lost all register values. --=20 Daniel Jacobowitz