diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-01-23 08:13:59 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-01-23 08:13:59 +0100 |
commit | 17a6468b3f0fae577b1aaad51b56bdefe15a25c1 (patch) | |
tree | 2e0ccfed1a6a8afb24c2547ca97ae5d8c450b717 /package/eglibc | |
parent | 2548d641ca7adfe3dcf31d09bb2f9b047b186a0f (diff) | |
parent | c66e4117d3ac4d561718a8b17066dc8b04a02027 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/eglibc')
-rw-r--r-- | package/eglibc/files/libc.so.ppc | 5 | ||||
-rw-r--r-- | package/eglibc/files/libc.so.ppc64 | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/package/eglibc/files/libc.so.ppc b/package/eglibc/files/libc.so.ppc new file mode 100644 index 000000000..3d4612706 --- /dev/null +++ b/package/eglibc/files/libc.so.ppc @@ -0,0 +1,5 @@ +/* GNU ld script + Use the shared library, but some functions are only in + the static library, so try that secondarily. */ +OUTPUT_FORMAT(elf32-powerpc) +GROUP ( /lib/libc.so.6 /usr/lib/libc_nonshared.a AS_NEEDED ( /lib/ld.so.1 ) ) diff --git a/package/eglibc/files/libc.so.ppc64 b/package/eglibc/files/libc.so.ppc64 new file mode 100644 index 000000000..35a1edcc7 --- /dev/null +++ b/package/eglibc/files/libc.so.ppc64 @@ -0,0 +1,5 @@ +/* GNU ld script + Use the shared library, but some functions are only in + the static library, so try that secondarily. */ +OUTPUT_FORMAT(elf64-powerpc) +GROUP ( /lib/libc.so.6 /usr/lib/libc_nonshared.a AS_NEEDED ( /lib/ld64.so.1 ) ) |