From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12645 invoked by alias); 24 Jul 2013 12:34:40 -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 12619 invoked by uid 89); 24 Jul 2013 12:34:40 -0000 X-Spam-SWARE-Status: No, score=-3.9 required=5.0 tests=AWL,BAYES_00,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, 24 Jul 2013 12:34:37 +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, 24 Jul 2013 17:57:36 +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, 24 Jul 2013 17:57:33 +0530 Received: from d28relay01.in.ibm.com (d28relay01.in.ibm.com [9.184.220.58]) by d28dlp03.in.ibm.com (Postfix) with ESMTP id DB9741258051 for ; Wed, 24 Jul 2013 18:03:49 +0530 (IST) Received: from d28av05.in.ibm.com (d28av05.in.ibm.com [9.184.220.67]) by d28relay01.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r6OCZBLN36175994 for ; Wed, 24 Jul 2013 18:05:11 +0530 Received: from d28av05.in.ibm.com (loopback [127.0.0.1]) by d28av05.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r6OCYHDU008172 for ; Wed, 24 Jul 2013 22:34:17 +1000 Received: from d23ml188.in.ibm.com (d23ml188.in.ibm.com [9.182.8.144]) by d28av05.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id r6OCXoBb006200; Wed, 24 Jul 2013 22:33:50 +1000 Subject: [PATCH 1/5] config support for powerpc64-aix X-KeepSent: 488FCA34:4C26669A-65257BB2:00444A34; type=4; name=$KeepSent To: gdb-patches@sourceware.org Cc: tromey@redhat.com, Mark Kettenis Message-ID: From: Raunaq 12 Date: Wed, 24 Jul 2013 12:34: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: 13072412-3864-0000-0000-0000093C5F41 X-SW-Source: 2013-07/txt/msg00562.txt.bz2 powerpc64: Add support for host and target powerpc64. Add new case to configure.host and configure.tgt to support powerpc64 running aix --- 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. ---