public inbox for newlib@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Add missing crt0 symbols for RTEMS
@ 2016-12-05  7:23 Sebastian Huber
  2016-12-05 10:34 ` Corinna Vinschen
  0 siblings, 1 reply; 4+ messages in thread
From: Sebastian Huber @ 2016-12-05  7:23 UTC (permalink / raw)
  To: newlib; +Cc: Sebastian Huber

In order to enable proper detection of thread-local storage availability
we have to provide some symbols on ARM.

Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>
---
 newlib/libc/sys/rtems/crt0.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/newlib/libc/sys/rtems/crt0.c b/newlib/libc/sys/rtems/crt0.c
index 1a0a055..769cde7 100644
--- a/newlib/libc/sys/rtems/crt0.c
+++ b/newlib/libc/sys/rtems/crt0.c
@@ -188,6 +188,11 @@ RTEMS_STUB(_VOID, _free_r(struct _reent *r, _PTR *p), { })
 /* stubs for functions required by libc/stdlib */
 RTEMS_STUB(void, __assert_func(const char *file, int line, const char *failedexpr), { })
 
+#if defined(__arm__)
+RTEMS_STUB(void, __aeabi_read_tp(void), { })
+RTEMS_STUB(void *, __tls_get_addr(const void *ti), { })
+#endif
+
 /* The PowerPC expects certain symbols to be defined in the linker script. */
 
 #if defined(__PPC__)
-- 
1.8.4.5

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-12-05 15:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-05  7:23 [PATCH] Add missing crt0 symbols for RTEMS Sebastian Huber
2016-12-05 10:34 ` Corinna Vinschen
2016-12-05 14:35   ` Sebastian Huber
2016-12-05 15:46     ` Corinna Vinschen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).