mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 17:39:31 +00:00
f3146ae8ce
eglibc builds for arm-eabi unconditionally enables the libc-do-syscall.S file, which contains thumb assembly. It's unused in arm-eabi-nothumb case, so just ifdef the actual code. V2: use the patch from oe.dev. The patch is submitted to sourceware bugzilla by Khem Raj back in October of 2010, but the status is still UNCONFIRMED and the patch isn't commited. (From OE-Core rev: d557b18845d2ddc035d7f3949713ba1961a8cce1) Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> Cc: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
766 B
Diff
26 lines
766 B
Diff
Source: http://sourceware.org/bugzilla/show_bug.cgi?id=12097
|
|
Upstream-Status: Submitted
|
|
|
|
The patch should be merged into glibc-ports
|
|
|
|
-Khem
|
|
Index: libc/ports/sysdeps/unix/sysv/linux/arm/eabi/libc-do-syscall.S
|
|
===================================================================
|
|
--- libc.orig/ports/sysdeps/unix/sysv/linux/arm/eabi/libc-do-syscall.S
|
|
+++ libc/ports/sysdeps/unix/sysv/linux/arm/eabi/libc-do-syscall.S
|
|
@@ -16,6 +16,8 @@
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
02111-1307 USA. */
|
|
|
|
+#if defined(__thumb__)
|
|
+
|
|
#include <sysdep.h>
|
|
|
|
/* Out-of-line syscall stub. We expect the system call number in ip
|
|
@@ -41,3 +43,5 @@ ENTRY (__libc_do_syscall)
|
|
pop {r7, pc}
|
|
.fnend
|
|
END (__libc_do_syscall)
|
|
+
|
|
+#endif /* __thumb__ */
|