From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9851 invoked by alias); 16 Mar 2009 15:01:07 -0000 Received: (qmail 9481 invoked by uid 22791); 16 Mar 2009 15:01:03 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00,HK_OBFDOM,J_CHICKENPOX_92 X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 16 Mar 2009 15:00:58 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 925152BAB7F; Mon, 16 Mar 2009 11:00:56 -0400 (EDT) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id L5SCtW-V-4U3; Mon, 16 Mar 2009 11:00:56 -0400 (EDT) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 658092BAB64; Mon, 16 Mar 2009 11:00:56 -0400 (EDT) Received: by joel.gnat.com (Postfix, from userid 1000) id 21C46F5C40; Mon, 16 Mar 2009 08:00:56 -0700 (PDT) Date: Mon, 16 Mar 2009 15:08:00 -0000 From: Joel Brobecker To: gdb-patches@sourceware.org, gcc-patches@gcc.gnu.org Cc: Tristan Gingold , binutils@sources.redhat.com Subject: [RFA/commit?] Add gdb to the list of supported dirs on x86_64-darwin Message-ID: <20090316150056.GE9069@adacore.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="n8g4imXOkfNTN/H1" Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) 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 X-SW-Source: 2009-03/txt/msg00261.txt.bz2 --n8g4imXOkfNTN/H1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 794 Hello, I found this patch from Tristan Gingold from one of our source trees... It's one of two very small patches that allow us to build GDB on x86_64-darwin (right now, we only support x86-darwin), so I thought I'd contribute it. I'm not exactly clear who has jurisdiction over this type of change. This file is in the root directory. If I understand the MAINTAINERS file correctly, it looks like any Global Maintainer from either GCC, or Binutils, or GDB, etc, can approve it? (I'm GM for GDB) 2009-03-16 Tristan Gingold * configure.ac: Treat gdb as supported on x86_64-darwin. * configure: Regenerate. Tested on x86_64-darwin by building the debugger. GDB is missing another configure patch, but I'll commit it shortly. OK to checkin? -- Joel --n8g4imXOkfNTN/H1 Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="src.diff" Content-length: 1536 Index: configure.ac =================================================================== RCS file: /cvs/src/src/configure.ac,v retrieving revision 1.59 diff -u -p -r1.59 configure.ac --- configure.ac 16 Mar 2009 13:29:49 -0000 1.59 +++ configure.ac 16 Mar 2009 14:49:26 -0000 @@ -446,11 +446,11 @@ case "${target}" in *-*-chorusos) noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}" ;; - powerpc-*-darwin* | x86_64-*-darwin[[912]]*) + powerpc-*-darwin*) noconfigdirs="$noconfigdirs ld gas gdb gprof" noconfigdirs="$noconfigdirs sim target-rda" ;; - i[[3456789]]86-*-darwin*) + i[[3456789]]86-*-darwin* | x86_64-*-darwin9*) noconfigdirs="$noconfigdirs ld gas gprof" noconfigdirs="$noconfigdirs sim target-rda" ;; Index: configure =================================================================== RCS file: /cvs/src/src/configure,v retrieving revision 1.313 diff -u -p -r1.313 configure --- configure 16 Mar 2009 13:29:49 -0000 1.313 +++ configure 16 Mar 2009 14:49:28 -0000 @@ -2211,11 +2211,11 @@ case "${target}" in *-*-chorusos) noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}" ;; - powerpc-*-darwin* | x86_64-*-darwin[912]*) + powerpc-*-darwin*) noconfigdirs="$noconfigdirs ld gas gdb gprof" noconfigdirs="$noconfigdirs sim target-rda" ;; - i[3456789]86-*-darwin*) + i[3456789]86-*-darwin* | x86_64-*-darwin9*) noconfigdirs="$noconfigdirs ld gas gprof" noconfigdirs="$noconfigdirs sim target-rda" ;; --n8g4imXOkfNTN/H1--