diff options
author | Nick Clifton <nickc@redhat.com> | 2008-05-21 07:44:32 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2008-05-21 07:44:32 +0000 |
commit | cb1f8161c1524fe06dd331cda3e64a0326abd51c (patch) | |
tree | 1bd9a1d11cfff9ae1a28582429c5e6842e980966 /libgloss | |
parent | 6e961ccc7e99a3eb6819b8581a234ebbf82fb5ea (diff) | |
download | newlib-cb1f8161c1524fe06dd331cda3e64a0326abd51c.zip newlib-cb1f8161c1524fe06dd331cda3e64a0326abd51c.tar.gz newlib-cb1f8161c1524fe06dd331cda3e64a0326abd51c.tar.bz2 |
* libc/sys/sysnecv850/crt0.S (___dso_handle): Define (weak).
* iq2000/crt0.S (__dso_handle): Define (weak).
* frv/crt0.S (__dso_handle): Define (weak).
* mn10300/crt0.S (___dso_handle): Define (weak).
Diffstat (limited to 'libgloss')
-rw-r--r-- | libgloss/ChangeLog | 6 | ||||
-rw-r--r-- | libgloss/frv/crt0.S | 6 | ||||
-rw-r--r-- | libgloss/iq2000/crt0.S | 6 | ||||
-rw-r--r-- | libgloss/mn10300/crt0.S | 6 |
4 files changed, 24 insertions, 0 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index 5146438..cd5b1e3 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,9 @@ +2008-05-20 Nick Clifton <nickc@redhat.com> + + * iq2000/crt0.S (__dso_handle): Define (weak). + * frv/crt0.S (__dso_handle): Define (weak). + * mn10300/crt0.S (___dso_handle): Define (weak). + 2008-05-05 Ken Werner <ken.werner@de.ibm.com> * spu/readlink.c: Align readlink implementation to POSIX. diff --git a/libgloss/frv/crt0.S b/libgloss/frv/crt0.S index af14b91..86d5a50 100644 --- a/libgloss/frv/crt0.S +++ b/libgloss/frv/crt0.S @@ -268,3 +268,9 @@ EXT(__frv_fix_usrptrs): .Lret3: ret .Lend3: .size EXT(__frv_fix_usrptrs),.Lend2-EXT(__frv_fix_usrptrs) + + .section .data + .global __dso_handle + .weak __dso_handle +__dso_handle: + .long 0 diff --git a/libgloss/iq2000/crt0.S b/libgloss/iq2000/crt0.S index 12d2a5b..eff6b27 100644 --- a/libgloss/iq2000/crt0.S +++ b/libgloss/iq2000/crt0.S @@ -54,3 +54,9 @@ _start: xor %5,%5,%5 jal exit # all done, no need to return or or %4,%0,%2 # exit with main's return value + + .section .data + .global __dso_handle + .weak __dso_handle +__dso_handle: + .long 0 diff --git a/libgloss/mn10300/crt0.S b/libgloss/mn10300/crt0.S index f50e425..13dd777 100644 --- a/libgloss/mn10300/crt0.S +++ b/libgloss/mn10300/crt0.S @@ -56,3 +56,9 @@ _start: .section .stack _stack: .long 1 + + .section .data + .global ___dso_handle + .weak ___dso_handle +___dso_handle: + .long 0 |