This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] libgloss/arm: fix dircovery 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>
---
Tested on Crosstool-NG, building a toolchain for target
"armv7em-cortex_m4f-eabihf".
---
 libgloss/arm/configure    | 2 +-
 libgloss/arm/configure.in | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libgloss/arm/configure b/libgloss/arm/configure
index 93c2b27..1aed3a9 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 39c15d7..5fa901d 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)
-- 
2.7.4


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]