From patchwork Thu Jan 24 11:33:53 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Will Newton X-Patchwork-Id: 215327 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 27DF82C008C for ; Thu, 24 Jan 2013 22:34:02 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id B460BA01F6; Thu, 24 Jan 2013 11:34:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8EZ8QeO5CAb6; Thu, 24 Jan 2013 11:34:01 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 06E5FA0049; Thu, 24 Jan 2013 11:34:01 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 9AC828F74B for ; Thu, 24 Jan 2013 11:34:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 8A90385267 for ; Thu, 24 Jan 2013 11:33:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id slqdYVZRr-qj for ; Thu, 24 Jan 2013 11:33:56 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-la0-f49.google.com (mail-la0-f49.google.com [209.85.215.49]) by whitealder.osuosl.org (Postfix) with ESMTPS id 5FAAD84AAF for ; Thu, 24 Jan 2013 11:33:56 +0000 (UTC) Received: by mail-la0-f49.google.com with SMTP id fs13so3636752lab.22 for ; Thu, 24 Jan 2013 03:33:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=O24LjgMaJO0b7SlkpaJHc2Q+ADSvI1KIn3xRGA+qNdQ=; b=sGjygBRFB3D/3U3gljWWXpDgmPt5sFgvz7/DkhGJ6jRos9CXtvf1B6dn+wcuDDsbga xCSDe37kXjl9kEwJDimQmZQZmsaz970ORykJAeekNyU9RHUkiZ8I6j0Kgf0N8dxqWVJN 9NUaUJsuf9KAC5LdWU3Da2aXVeuDC1jK4WCdYnVmPc4USwtDVP858GJDCxE0/B8D/TI4 ThNnIm/oBfxmvcCrv1o2jR7RMpHcfBm2xMvQDA6GgohQwwAYbeKUJhXtqUB/QEjQI4FX ydc1iwWrzTYVl/P/mg+6IkmpCe6QjNlfJjK3We0YuSEYdmMHwWAJQyhbIQxxK71/bO/m 4zOA== MIME-Version: 1.0 X-Received: by 10.112.38.162 with SMTP id h2mr642701lbk.88.1359027234275; Thu, 24 Jan 2013 03:33:54 -0800 (PST) Received: by 10.112.106.169 with HTTP; Thu, 24 Jan 2013 03:33:53 -0800 (PST) Date: Thu, 24 Jan 2013 11:33:53 +0000 Message-ID: From: Will Newton To: Buildroot List Subject: [Buildroot] [PATCH] gdb: Add support for gdb 7.5.1 and make it the default. X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Will Newton --- toolchain/gdb/Config.in | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) I'm imagine a few of those older version could be safely removed but I am not sure which versions people are using. Aside from avr32 and bfin is anyone using a non-7.4 version? diff --git a/toolchain/gdb/Config.in b/toolchain/gdb/Config.in index 6a8e48e..53dcb93 100644 --- a/toolchain/gdb/Config.in +++ b/toolchain/gdb/Config.in @@ -45,7 +45,7 @@ choice prompt "GDB debugger Version" default BR2_GDB_VERSION_6_6 if BR2_bfin default BR2_GDB_VERSION_6_7_1_AVR32_2_1_5 if BR2_avr32 - default BR2_GDB_VERSION_7_4 + default BR2_GDB_VERSION_7_5 depends on BR2_PACKAGE_GDB || BR2_PACKAGE_GDB_SERVER || BR2_PACKAGE_GDB_HOST help Select the version of gdb you wish to use. @@ -95,6 +95,12 @@ choice depends on BR2_TOOLCHAIN_HAS_THREADS_DEBUG_IF_NEEDED select BR2_PTHREAD_DEBUG if (BR2_TOOLCHAIN_BUILDROOT && !BR2_PTHREADS_NONE) + config BR2_GDB_VERSION_7_5 + bool "gdb 7.5.x" + depends on !BR2_bfin + depends on BR2_TOOLCHAIN_HAS_THREADS_DEBUG_IF_NEEDED + select BR2_PTHREAD_DEBUG if (BR2_TOOLCHAIN_BUILDROOT && !BR2_PTHREADS_NONE) + endchoice comment "gdb support needs pthread debug support in toolchain" @@ -110,3 +116,4 @@ config BR2_GDB_VERSION default "7.2a" if BR2_GDB_VERSION_7_2 default "7.3.1" if BR2_GDB_VERSION_7_3 default "7.4.1" if BR2_GDB_VERSION_7_4 + default "7.5.1" if BR2_GDB_VERSION_7_5