aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--newlib/ChangeLog5
-rw-r--r--newlib/libc/sys/rtems/crt0.c6
2 files changed, 11 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index f6167e0..3f25378 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,5 +1,10 @@
2002-10-07 Joel Sherrill <joel@OARcorp.com>
+ * libc/sys/rtems/crt0.c: Add even more symbols so gcc() can link
+ dummy programs.
+
+2002-10-07 Joel Sherrill <joel@OARcorp.com>
+
* libc/include/pthread.h: Define PTHREAD_CANCELED.
2002-10-07 Joel Sherrill <joel@OARcorp.com>
diff --git a/newlib/libc/sys/rtems/crt0.c b/newlib/libc/sys/rtems/crt0.c
index 9895ee6..e5f67c0 100644
--- a/newlib/libc/sys/rtems/crt0.c
+++ b/newlib/libc/sys/rtems/crt0.c
@@ -43,6 +43,12 @@ memset() {}
int __init; int __fini;
#endif
+/* The SH expects certain symbols to be defined in the linker script. */
+
+#if defined(__sh__)
+int __EH_FRAME_BEGIN__;
+#endif
+
/* The hppa expects this to be defined in the real crt0.s.
* Also for some reason, the hppa1.1 does not find atexit()
* during the AC_PROG_CC tests.