diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2004-07-16 20:23:19 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2004-07-16 20:23:19 +0000 |
commit | 0a60e524e9823fcdc2902aaafeab2af2a72236df (patch) | |
tree | 91814b6a6cca834d6bdf3da342f0c26df83ad11c /libc/sysdeps/linux | |
parent | 3c44c596c12a210444001fd590f6ede89a11a737 (diff) | |
download | uClibc-alpine-0a60e524e9823fcdc2902aaafeab2af2a72236df.tar.bz2 uClibc-alpine-0a60e524e9823fcdc2902aaafeab2af2a72236df.tar.xz |
Follow glibc's lead and add a gcc-3.4.1 required symbol to crt0.S.
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/sh/crt0.S | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/sh/crt0.S b/libc/sysdeps/linux/sh/crt0.S index a978b3fcf..f5efe35e1 100644 --- a/libc/sysdeps/linux/sh/crt0.S +++ b/libc/sysdeps/linux/sh/crt0.S @@ -134,6 +134,12 @@ __data_start: .long 0 .weak data_start data_start = __data_start +#if defined __CONFIG_SH4__ + .global __fpscr_values +__fpscr_values: + .long 0 + .long 0x80000 +#endif #if defined L_gcrt1 && defined __UCLIBC_PROFILING__ # include "./gmon-start.S" |