diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-01-06 09:59:47 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-01-06 09:59:47 +0100 |
commit | a5d4ce23287e7d74ac924b8ff08b201ebaf5f724 (patch) | |
tree | 3de3d68c8c102706760607a51948be7cd687248e /package | |
parent | 55dc511d46738aee8af5b595e0a02017324b7ca4 (diff) |
fix linker scripts
Diffstat (limited to 'package')
-rw-r--r-- | package/glibc/files/libc.so.mips | 6 | ||||
-rw-r--r-- | package/glibc/files/libc.so.mipsel | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/package/glibc/files/libc.so.mips b/package/glibc/files/libc.so.mips index 9e73ea39c..32a3700e7 100644 --- a/package/glibc/files/libc.so.mips +++ b/package/glibc/files/libc.so.mips @@ -1,5 +1,5 @@ /* GNU ld script Use the shared library, but some functions are only in - the static library, so try that secondarily. */ - OUTPUT_FORMAT(@@ELFTARGET@@) - GROUP ( /lib/libc.so.6 /usr/lib/libc_nonshared.a AS_NEEDED ( /lib/ld.so.1 ) ) + the static library, so try that secondarily. */ +OUTPUT_FORMAT(elf32-tradbigmips) +GROUP ( /lib/libc.so.6 /usr/lib/libc_nonshared.a AS_NEEDED ( /lib/ld.so.1 ) ) diff --git a/package/glibc/files/libc.so.mipsel b/package/glibc/files/libc.so.mipsel index 9e73ea39c..6a6ff5582 100644 --- a/package/glibc/files/libc.so.mipsel +++ b/package/glibc/files/libc.so.mipsel @@ -1,5 +1,5 @@ /* GNU ld script Use the shared library, but some functions are only in - the static library, so try that secondarily. */ - OUTPUT_FORMAT(@@ELFTARGET@@) - GROUP ( /lib/libc.so.6 /usr/lib/libc_nonshared.a AS_NEEDED ( /lib/ld.so.1 ) ) + the static library, so try that secondarily. */ +OUTPUT_FORMAT(elf32-tradlittlemips) +GROUP ( /lib/libc.so.6 /usr/lib/libc_nonshared.a AS_NEEDED ( /lib/ld.so.1 ) ) |