From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22308 invoked by alias); 7 Aug 2013 11:36:06 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 22290 invoked by uid 89); 7 Aug 2013 11:36:06 -0000 X-Spam-SWARE-Status: No, score=-4.1 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,RCVD_IN_DNSWL_MED,RDNS_NONE,SPF_PASS autolearn=ham version=3.3.1 Received: from Unknown (HELO e28smtp03.in.ibm.com) (122.248.162.3) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Wed, 07 Aug 2013 11:35:28 +0000 Received: from /spool/local by e28smtp03.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 7 Aug 2013 16:58:03 +0530 Received: from d28dlp03.in.ibm.com (9.184.220.128) by e28smtp03.in.ibm.com (192.168.1.133) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Wed, 7 Aug 2013 16:58:00 +0530 Received: from d28relay03.in.ibm.com (d28relay03.in.ibm.com [9.184.220.60]) by d28dlp03.in.ibm.com (Postfix) with ESMTP id 7323F1258054 for ; Wed, 7 Aug 2013 17:04:51 +0530 (IST) Received: from d28av05.in.ibm.com (d28av05.in.ibm.com [9.184.220.67]) by d28relay03.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r77BaQxf27656346 for ; Wed, 7 Aug 2013 17:06:26 +0530 Received: from d28av05.in.ibm.com (localhost [127.0.0.1]) by d28av05.in.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id r77BZF92025467 for ; Wed, 7 Aug 2013 17:05:15 +0530 Received: from d23ml188.in.ibm.com (d23ml188.in.ibm.com [9.182.8.144]) by d28av05.in.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id r77BZ4M4024370; Wed, 7 Aug 2013 17:05:15 +0530 In-Reply-To: References: Subject: [PATCH 1/5] config support for powerpc64-aix X-KeepSent: 51F0634C:39480006-65257BC0:003F0737; type=4; name=$KeepSent To: gdb-patches@sourceware.org Cc: brobecker@adacore.com, tromey@redhat.com, Pedro Alves Message-ID: From: Raunaq 12 Date: Wed, 07 Aug 2013 11:36:00 -0000 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII X-TM-AS-MML: No X-Content-Scanned: Fidelis XPS MAILER x-cbid: 13080711-3864-0000-0000-0000097A4BDD X-SW-Source: 2013-08/txt/msg00186.txt.bz2 Hi, It has been a while since I received any review/feedback/approval for the following chain of patches which are intended to make gdb work better on AIX. Also adding support of 64 Bit GDB on powerpc64-aix. Resending the patches again with the hope that they get committed at the earliest. Kindly help me out with this. Regards, Raunaq M. Bathija --- powerpc64: Add support for host and target powerpc64. Add new case to configure.host and configure.tgt to support powerpc64 running aix. Kindly review and let me know if this is okay? --- ChangeLog- * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix. * configure.host (powerpc64-*-aix*): Likewise. --- Index: ./gdb/configure.host =================================================================== --- ./gdb.orig/configure.host +++ ./gdb/configure.host @@ -126,7 +126,7 @@ gdb_host=nbsd ;; mips64*-*-openbsd*) gdb_host=obsd64 ;; -powerpc-*-aix* | rs6000-*-*) +powerpc-*-aix* | rs6000-*-* | powerpc64-*-aix*) gdb_host=aix ;; powerpc*-*-freebsd*) gdb_host=fbsd ;; powerpc-*-linux*) gdb_host=linux ;; Index: gdb-7.6.50.20130612/gdb/configure.tgt =================================================================== --- gdb-7.6.50.20130612.orig/gdb/configure.tgt 2013-07-24 14:47:19.000000000 +0600 +++ gdb-7.6.50.20130612/gdb/configure.tgt 2013-07-24 15:20:13.000000000 +0600 @@ -427,7 +427,7 @@ solib-svr4.o \ ravenscar-thread.o ppc-ravenscar-thread.o" ;; -powerpc-*-aix* | rs6000-*-*) +powerpc-*-aix* | rs6000-*-* | powerpc64-*-aix*) # Target: PowerPC running AIX gdb_target_obs="rs6000-tdep.o rs6000-aix-tdep.o xcoffread.o \ ppc-sysv-tdep.o solib-aix.o \ @@ -714,6 +714,8 @@ *-*-dicos*) gdb_osabi=GDB_OSABI_DICOS ;; *-*-symbianelf*) gdb_osabi=GDB_OSABI_SYMBIAN ;; +powerpc-*-aix* | rs6000-*-* | powerpc64-*-aix*) + gdb_osabi=GDB_OSABI_AIX ;; esac # Check whether this target supports gcore. ---