From patchwork Wed Jul 20 02:06:02 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yao Qi X-Patchwork-Id: 105566 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id D8CCCB6F6F for ; Wed, 20 Jul 2011 12:06:38 +1000 (EST) Received: (qmail 26358 invoked by alias); 20 Jul 2011 02:06:34 -0000 Received: (qmail 26348 invoked by uid 22791); 20 Jul 2011 02:06:32 -0000 X-SWARE-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, TW_EG X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 20 Jul 2011 02:06:06 +0000 Received: (qmail 31860 invoked from network); 20 Jul 2011 02:06:05 -0000 Received: from unknown (HELO ?192.168.0.100?) (yao@127.0.0.2) by mail.codesourcery.com with ESMTPA; 20 Jul 2011 02:06:05 -0000 Message-ID: <4E26380A.4080404@codesourcery.com> Date: Wed, 20 Jul 2011 10:06:02 +0800 From: Yao Qi User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.17) Gecko/20110424 Lightning/1.0b2 Thunderbird/3.1.10 MIME-Version: 1.0 To: GCC Patches , binutils@sourceware.org CC: gdb-patches@sourceware.org Subject: [RFA 1/8] New port: TI C6x: Remove "gdb" from noconfigdirs in configure.ac X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org This patch is one of patch set to add a new port (TI C6x) in gdb. In this patch, "gdb" is removed from noconfigdirs in top-level configure.ac. OK for gcc and binutils? From 321345017e27e908539502a3f08bc604c5f60c66 Mon Sep 17 00:00:00 2001 From: Yao Qi Date: Mon, 11 Jul 2011 01:30:03 -0700 Subject: [PATCH 01/14] remove gdb from noconfigdirs 2011-07-19 Yao Qi * configure.ac (noconfigdirs): Remove gdb. * configure: Regenerate. --- configure | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 9f7055d..11ea09b 100755 --- a/configure +++ b/configure @@ -3606,7 +3606,7 @@ case "${target}" in fi ;; tic6x-*-*) - noconfigdirs="$noconfigdirs gdb sim" + noconfigdirs="$noconfigdirs sim" ;; tilepro-*-* | tilegx-*-*) noconfigdirs="$noconfigdirs sim" diff --git a/configure.ac b/configure.ac index 98705a1..80a0fca 100644 --- a/configure.ac +++ b/configure.ac @@ -1052,7 +1052,7 @@ case "${target}" in fi ;; tic6x-*-*) - noconfigdirs="$noconfigdirs gdb sim" + noconfigdirs="$noconfigdirs sim" ;; tilepro-*-* | tilegx-*-*) noconfigdirs="$noconfigdirs sim" -- 1.7.0.4