Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJozef Lawrynowicz <jozef.l@mittosystems.com>2019-11-26 00:17:41 +0300
committerCorinna Vinschen <corinna@vinschen.de>2019-12-16 12:15:06 +0300
commitb74ba7dca6489f5bb16048eb6bcddd5cd646c925 (patch)
tree01a9828f55458ad51e627f1cf412eab073a1e122
parent78b7a3b0f879715f6078720aaa07e0fb6156b586 (diff)
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.
-rwxr-xr-xlibgloss/configure2
-rw-r--r--libgloss/configure.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/libgloss/configure b/libgloss/configure
index 6c592b16b..0d2918cee 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 16f413f66..f38d5298e 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
;;