diff options
author | Joseph Myers <joseph@codesourcery.com> | 2014-09-12 12:22:27 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2014-09-12 12:22:27 +0000 |
commit | dc932a24d91eb13c570e82e12f7aba049431dc37 (patch) | |
tree | 8258e02b4e2c2d2e72f907d2418c8af8286b8c6b /sysdeps/unix/sysv/linux/powerpc/powerpc64 | |
parent | 0bd72468030947254e7de183cac1014dac884475 (diff) | |
download | glibc-dc932a24d91eb13c570e82e12f7aba049431dc37.tar glibc-dc932a24d91eb13c570e82e12f7aba049431dc37.tar.gz glibc-dc932a24d91eb13c570e82e12f7aba049431dc37.tar.bz2 glibc-dc932a24d91eb13c570e82e12f7aba049431dc37.zip |
Move architecture-specific shlib-versions entries to sysdeps files.
This patch eliminates another way in which ex-ports and non-ex-ports
architectures differ, by moving architecture-specific entries from the
top-level shlib-versions file and that in nptl/ to appropriate sysdeps
directories. As with my previous patch
<https://sourceware.org/ml/libc-alpha/2014-06/msg00949.html>, I do not
change the regular expressions used; even where the present
expressions seem more general, I believe they are in fact specific to
the chosen sysdeps directory, because any port that matches the
expression but not the sysdeps directory does not currently exist, and
so would use different symbol versions if added in future (and an
intended goal of these changes is to eliminate the first column in
shlib-versions completely rather than having two different mechanisms
in use for system-specific configuration).
Tested on x86_64 that this does not change the installed shared
libraries. (x86_64 of course does not provide much test coverage for
this patch - what should be architecture-specific contents in
shlib-versions for x86_64 is currently abi-*-ld-soname Makefile
settings, until gnu/lib-names.h is generated more like gnu/stubs.h so
those can move back to shlib-versions.)
* nptl/shlib-versions: Remove architecture-specific entries.
Moved to files in sysdeps.
* shlib-versions: Likewise.
* sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: New
file.
* sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
* sysdeps/unix/sysv/linux/sh/shlib-versions: Likewise.
* sysdeps/unix/sysv/linux/sparc/sparc32/shlib-versions: Likewise.
* sysdeps/unix/sysv/linux/sparc/sparc64/shlib-versions: Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/powerpc/powerpc64')
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions b/sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions new file mode 100644 index 0000000000..f6480238c5 --- /dev/null +++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions @@ -0,0 +1,4 @@ +powerpc64-.*-linux.* DEFAULT GLIBC_2.3 +powerpc.*le-.*-linux.* DEFAULT GLIBC_2.17 +powerpc64-.*-linux.* libpthread=0 GLIBC_2.3 +powerpc.*le-.*-linux.* libpthread=0 GLIBC_2.17 |