/usr/src/newlib/patches/60_newlib-libgloss-eabi.patch is in newlib-source 1.18.0-6.1ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | Set objtype to elf for armel/arm-linux-gnueabi; fixes installation for this
target. Run autoreconf -fi && rm -rf autom4te.cache.
--- 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)
+ *-*-elf | *-*-eabi | *-*-gnueabi)
objtype=elf-
;;
*-*-coff)
--- a/libgloss/arm/configure
+++ b/libgloss/arm/configure
@@ -2540,7 +2540,7 @@ test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS
case "${target}" in
- *-*-elf | *-*-eabi)
+ *-*-elf | *-*-eabi | *-*-gnueabi)
objtype=elf-
;;
*-*-coff)
|