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:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2023-04-24 11:20:59 +0300
committerSebastian Huber <sebastian.huber@embedded-brains.de>2023-04-24 11:21:42 +0300
commitfd26d4b4b6bc84af57caeef81f913707b5d9c0d2 (patch)
tree551e638e86b25b369d007fa69012fd18f4d93506 /newlib/libc
parentda40bd6eaf400e102fca68cbe170465a4af6d49c (diff)
RTEMS: Add __m68k_read_tp() to crt0.c
This is required to build libgomp.
Diffstat (limited to 'newlib/libc')
-rw-r--r--newlib/libc/sys/rtems/crt0.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/newlib/libc/sys/rtems/crt0.c b/newlib/libc/sys/rtems/crt0.c
index 3b131d9c4..67f9d7302 100644
--- a/newlib/libc/sys/rtems/crt0.c
+++ b/newlib/libc/sys/rtems/crt0.c
@@ -230,3 +230,7 @@ int __EH_FRAME_BEGIN__;
*/
const char* __stack ;
#endif
+
+#if defined(__m68k__)
+RTEMS_STUB(void, __m68k_read_tp(void), { })
+#endif