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:
authorCarlos Santos <casantos@datacom.ind.br>2017-04-14 02:17:37 +0300
committerCorinna Vinschen <corinna@vinschen.de>2017-04-18 13:24:42 +0300
commit8ae6d8003a0a478643a9f3c3e2ede5198445d307 (patch)
tree4d44e52d8457e80684bf438af9b4ab85d88ba122 /libgloss/arm
parentbdb017b30ca0a8f57e50a3d5cb2334cbbeb2a43e (diff)
libgloss/arm: fix discovery of "eabihf" toolchains
ARM EABI toolchains can optionally use the "hf" suffix to identify hardware floating point support. Use the "*-*-eabi*" pattern to match these toolchains. Original patch by Bryan Hundven for the Crosstool-NG project. Improved by Alexey Neyman. Signed-off-by: Carlos Santos <casantos@datacom.ind.br> CC: Bryan Hundven <bryanhundven@gmail.com CC: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'libgloss/arm')
-rw-r--r--libgloss/arm/configure2
-rw-r--r--libgloss/arm/configure.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/libgloss/arm/configure b/libgloss/arm/configure
index 93c2b2746..1aed3a94e 100644
--- a/libgloss/arm/configure
+++ b/libgloss/arm/configure
@@ -2531,7 +2531,7 @@ test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS
case "${target}" in
- *-*-elf | *-*-eabi | *-*-tirtos*)
+ *-*-elf | *-*-eabi* | *-*-tirtos*)
objtype=elf-
;;
*-*-coff)
diff --git a/libgloss/arm/configure.in b/libgloss/arm/configure.in
index 39c15d724..5fa901d14 100644
--- a/libgloss/arm/configure.in
+++ b/libgloss/arm/configure.in
@@ -49,7 +49,7 @@ AC_PROG_RANLIB
LIB_AM_PROG_AS
case "${target}" in
- *-*-elf | *-*-eabi | *-*-tirtos*)
+ *-*-elf | *-*-eabi* | *-*-tirtos*)
objtype=elf-
;;
*-*-coff)