From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 36337 invoked by alias); 16 Dec 2019 09:15:48 -0000 Mailing-List: contact newlib-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-cvs-owner@sourceware.org Received: (qmail 36295 invoked by uid 9078); 16 Dec 2019 09:15:48 -0000 Date: Mon, 16 Dec 2019 09:15:00 -0000 Message-ID: <20191216091548.36294.qmail@sourceware.org> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] MSP430: Support new msp430-elfbare target X-Act-Checkin: newlib-cygwin X-Git-Author: Jozef Lawrynowicz X-Git-Refname: refs/heads/master X-Git-Oldrev: 78b7a3b0f879715f6078720aaa07e0fb6156b586 X-Git-Newrev: b74ba7dca6489f5bb16048eb6bcddd5cd646c925 X-SW-Source: 2019-q4/txt/msg00021.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=b74ba7dca6489f5bb16048eb6bcddd5cd646c925 commit b74ba7dca6489f5bb16048eb6bcddd5cd646c925 Author: Jozef Lawrynowicz Date: Mon Nov 25 21:17:41 2019 +0000 MSP430: Support new msp430-elfbare target Update the target triplet glob used when configuring for msp430 to support a new msp430-elfbare target being added to gcc. Diff: --- libgloss/configure | 2 +- libgloss/configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libgloss/configure b/libgloss/configure index 6c592b1..0d2918c 100755 --- a/libgloss/configure +++ b/libgloss/configure @@ -2552,7 +2552,7 @@ case "${target}" in subdirs="$subdirs m32c" ;; - msp430*-*-elf) + msp430-*-elf*) subdirs="$subdirs msp430" config_libnosys=false diff --git a/libgloss/configure.in b/libgloss/configure.in index 16f413f..f38d529 100644 --- a/libgloss/configure.in +++ b/libgloss/configure.in @@ -148,7 +148,7 @@ case "${target}" in m32c-*-*) AC_CONFIG_SUBDIRS([m32c]) ;; - msp430*-*-elf) + msp430-*-elf*) AC_CONFIG_SUBDIRS([msp430]) config_libnosys=false ;;