From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30186 invoked by alias); 17 Jun 2003 21:42:28 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 30178 invoked from network); 17 Jun 2003 21:42:27 -0000 Received: from unknown (HELO mallaury.noc.nerim.net) (62.4.17.102) by sources.redhat.com with SMTP; 17 Jun 2003 21:42:27 -0000 Received: from nerim.fr (stcarrez.net1.nerim.net [62.212.108.40]) by mallaury.noc.nerim.net (Postfix) with ESMTP id 4B61162E11; Tue, 17 Jun 2003 23:42:23 +0200 (CEST) Message-ID: <3EEF8B41.30405@nerim.fr> Date: Tue, 17 Jun 2003 21:42:00 -0000 From: Stephane Carrez User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.2) Gecko/20030208 Netscape/7.02 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [RFA]: Compile Ada language files in gdb Content-Type: multipart/mixed; boundary="------------010905080005010800000704" X-SW-Source: 2003-06/txt/msg00584.txt.bz2 This is a multi-part message in MIME format. --------------010905080005010800000704 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 772 Hi! The following patch adds the Ada specific files to gdb. These files build completely and allow to have a support of Ada in gdb. Tested by configuring on i686 linux with ./configure --enable-tui Tested the resulting i686 gdb on an Ada program compiled by gcc 3.3 (I had to 'set language ada' and the result was reasonable when comparing to the C++ support). Can someone approve this patch? Ok... it breaks the -Werror because some of the Ada support files produce compilation warnings. But, it ensures that those files are kept up-to-date which was not the case. This will also allow people to improve and fix Ada support as well :-) Thanks, Stephane 2003-06-17 Stephane Carrez * Makefile.in (COMMON_OBS): Build the ada support files. --------------010905080005010800000704 Content-Type: text/plain; name="Makefile.in.diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Makefile.in.diffs" Content-length: 580 Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.407 diff -u -p -r1.407 Makefile.in --- Makefile.in 15 Jun 2003 20:56:46 -0000 1.407 +++ Makefile.in 17 Jun 2003 21:25:09 -0000 @@ -884,7 +884,8 @@ COMMON_OBS = version.o blockframe.o brea gnu-v2-abi.o gnu-v3-abi.o hpacc-abi.o cp-abi.o cp-support.o \ cp-namespace.o \ reggroups.o \ - trad-frame.o + trad-frame.o \ + ada-exp.tab.o ada-lang.o ada-tasks.o ada-typeprint.o ada-valprint.o OBS = $(COMMON_OBS) $(ANNOTATE_OBS) --------------010905080005010800000704--