From patchwork Fri Dec 13 14:09:59 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jozef Lawrynowicz X-Patchwork-Id: 36834 Received: (qmail 96274 invoked by alias); 13 Dec 2019 14:10:05 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 96266 invoked by uid 89); 13 Dec 2019 14:10:05 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy= X-HELO: mail-wr1-f49.google.com Received: from mail-wr1-f49.google.com (HELO mail-wr1-f49.google.com) (209.85.221.49) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 13 Dec 2019 14:10:03 +0000 Received: by mail-wr1-f49.google.com with SMTP id y17so6794205wrh.5 for ; Fri, 13 Dec 2019 06:10:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mittosystems.com; s=google; h=date:from:to:subject:message-id:mime-version; bh=QBk7lS3/6TS26YjIkXlbaynPQfPIXb9YVFnuTVO35nc=; b=hato0mditWZ6Xg5H9gdIypLThuqiHIE0+PgVpyr7IvLY3QY6/aGCr1wVZeT0czTH5/ w7oAgI2HmiTZ4Yyzn9xlai17oSQ2URlv31MoWvCcg/SMc3ZAunk5fdG+Iob4KTtrsnoE b80HDCgwLh/cuE26547rymGEDpRx4Ib2+1hbd1F6uZ6llTh0Zyn3xLJ4DrLkTpUdfMrh L5cP6jqZskzzNpgvtgd+hdpOy2cMSK+lkTZTFIG9M8UtdXqFytI/i9azQZLj+U/Ac5Mq wiTWl0smL0HvgYMcyYzXc15gELjZQLx8JxLs1fZ5Lbi1inEGzWRbRB295KCpYQ9dHTMk kuUQ== Return-Path: Received: from jozef-kubuntu ([2a01:4b00:87fd:900:4d57:b572:967d:3f2b]) by smtp.gmail.com with ESMTPSA id n189sm9854673wme.33.2019.12.13.06.10.00 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 13 Dec 2019 06:10:00 -0800 (PST) Date: Fri, 13 Dec 2019 14:09:59 +0000 From: Jozef Lawrynowicz To: gdb-patches@sourceware.org Subject: [COMMITTED PATCH] MSP430: Relax target glob for configuring GDB Message-ID: <20191213140959.4a79238a@jozef-kubuntu> MIME-Version: 1.0 Committed a small change to the globs used to match the msp430 target when configuring GDB. This is to enable support for the msp430-elfbare target being added to GCC. From b3f4b80fba8bee1d1d2601424d0be0f2adcb0d79 Mon Sep 17 00:00:00 2001 From: Jozef Lawrynowicz Date: Fri, 13 Dec 2019 13:46:32 +0000 Subject: [PATCH] MSP430: Relax target glob for configuring GDB This enables support for the msp430-elfbare target being added to GCC. gdb/ChangeLog: 2019-12-13 Jozef Lawrynowicz * configure.tgt: Match msp430-*-elf* targets when configuring GDB. --- gdb/ChangeLog | 4 ++++ gdb/configure.tgt | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ecd2124720..4f5138932b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2019-12-13 Jozef Lawrynowicz + + * configure.tgt: Match msp430-*-elf* targets when configuring GDB. + 2019-12-12 Tom Tromey * objfiles.h (struct objfile) : Now a diff --git a/gdb/configure.tgt b/gdb/configure.tgt index b3717c7a80..ab4c098c0d 100644 --- a/gdb/configure.tgt +++ b/gdb/configure.tgt @@ -454,7 +454,7 @@ mn10300-*-*) gdb_sim=../sim/mn10300/libsim.a ;; -msp430*-*-elf) +msp430-*-elf*) gdb_target_obs="msp430-tdep.o" gdb_sim=../sim/msp430/libsim.a ;; -- 2.17.1