From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10624 invoked by alias); 15 May 2012 09:22:03 -0000 Received: (qmail 10611 invoked by uid 22791); 15 May 2012 09:22:01 -0000 X-SWARE-Spam-Status: No, hits=-4.4 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_THREADED,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from smtp1.ugent.be (HELO smtp1.ugent.be) (157.193.71.182) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 15 May 2012 09:21:47 +0000 Received: from localhost (mcheck2.ugent.be [157.193.49.249]) by smtp1.ugent.be (Postfix) with ESMTP id 837A58895 for ; Tue, 15 May 2012 11:21:45 +0200 (CEST) Received: from smtp1.ugent.be ([157.193.71.182]) by localhost (mcheck2.UGent.be [157.193.43.11]) (amavisd-new, port 10024) with ESMTP id mn0sxI4knVKK for ; Tue, 15 May 2012 11:21:45 +0200 (CEST) Received: from mail.elis.ugent.be (mail.elis.UGent.be [157.193.206.48]) by smtp1.ugent.be (Postfix) with ESMTP id 482B2888D for ; Tue, 15 May 2012 11:21:45 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mail.elis.ugent.be (Postfix) with ESMTP id 26C6B918F17 for ; Tue, 15 May 2012 11:21:45 +0200 (CEST) Received: from mail.elis.ugent.be ([127.0.0.1]) by localhost (mail.elis.ugent.be [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UvdPeD-7iFNg for ; Tue, 15 May 2012 11:21:40 +0200 (CEST) Received: by mail.elis.ugent.be (Postfix, from userid 48) id 2C442AA30043; Tue, 15 May 2012 11:21:40 +0200 (CEST) Received: from bigmac.elis.UGent.be (bigmac.elis.UGent.be [157.193.206.33]) by mail.elis.ugent.be (Horde Framework) with HTTP; Tue, 15 May 2012 11:21:40 +0200 Date: Tue, 15 May 2012 09:22:00 -0000 Message-ID: <20120515112139.Horde.wuqbbUisJlFPsiAj8wLB51A@mail.elis.ugent.be> From: Jonas Maebe To: gdb@sourceware.org Subject: Re: Using gdb with a Delphi XE2 project References: <4FB2190B.2020408@free.fr> In-Reply-To: <4FB2190B.2020408@free.fr> User-Agent: Internet Messaging Program (IMP) H4 (5.0.21) Content-Type: text/plain; charset=ISO-8859-1; format=flowed; DelSp=Yes MIME-Version: 1.0 Content-Disposition: inline X-j-chkmail-Enveloppe: 4FB22029.000 from mail.elis.UGent.be/mail.elis.UGent.be/157.193.206.48/mail.elis.ugent.be/ X-j-chkmail-Score: MSGID : 4FB22029.000 on smtp1.ugent.be : j-chkmail score : . : R=. U=. O=. B=0.000 -> S=0.000 X-j-chkmail-Status: Ham X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2012-05/txt/msg00066.txt.bz2 OBones wrote on Tue, 15 May 2012: > Under Windows, I'm trying to debug with gdb an exe file created with > Delphi XE2 > However, I can't find which options I should set for the > compiler/linker in order for gdb to find the symbols and allow > debugging as right now, I always get this message: > > Reading symbols from C:\Some\Dir\MyProgram.exe...(no debugging > symbols found)...done. > > Does anyone have any suggestion? Delphi can only generate debug info in the TD32 format, which is not supported by gdb. Jonas