public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/14171] New: Clean up shlib-versions
@ 2012-05-26 20:09 hjl.tools at gmail dot com
  2012-05-26 20:11 ` [Bug libc/14171] " hjl.tools at gmail dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: hjl.tools at gmail dot com @ 2012-05-26 20:09 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=14171

             Bug #: 14171
           Summary: Clean up shlib-versions
           Product: glibc
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: libc
        AssignedTo: unassigned@sourceware.org
        ReportedBy: hjl.tools@gmail.com
                CC: drepper.fsp@gmail.com, joseph@codesourcery.com,
                    roland@gnu.org
    Classification: Unclassified


shlib-versions uses target triplets for alternate
sonames for different ABI variants, which leads
to PR 14112.  A stopgap fix is proposed for GLIBC
2.16 on hjl/abi branch at

http://sourceware.org/git/?p=glibc.git;a=patch;h=0d1f492b3cf83a200601c1f49734b048c5547e57

It should be fixed properly in GLIBC 2.17.

Joseph suggested that we should name ABI variants, not triplets,
in shlib-versions, with all the architecture information
in shlib-versions moving to appropriate sysdeps directories
shared by all the ABI variants of each architecture.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libc/14171] Clean up shlib-versions
  2012-05-26 20:09 [Bug libc/14171] New: Clean up shlib-versions hjl.tools at gmail dot com
@ 2012-05-26 20:11 ` hjl.tools at gmail dot com
  2014-06-19 14:36 ` fweimer at redhat dot com
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: hjl.tools at gmail dot com @ 2012-05-26 20:11 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=14171

H.J. Lu <hjl.tools at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |2.17

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libc/14171] Clean up shlib-versions
  2012-05-26 20:09 [Bug libc/14171] New: Clean up shlib-versions hjl.tools at gmail dot com
  2012-05-26 20:11 ` [Bug libc/14171] " hjl.tools at gmail dot com
@ 2014-06-19 14:36 ` fweimer at redhat dot com
  2014-09-26 17:34 ` cvs-commit at gcc dot gnu.org
  2014-09-26 17:36 ` jsm28 at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: fweimer at redhat dot com @ 2014-06-19 14:36 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=14171

Florian Weimer <fweimer at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
              Flags|                            |security-

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libc/14171] Clean up shlib-versions
  2012-05-26 20:09 [Bug libc/14171] New: Clean up shlib-versions hjl.tools at gmail dot com
  2012-05-26 20:11 ` [Bug libc/14171] " hjl.tools at gmail dot com
  2014-06-19 14:36 ` fweimer at redhat dot com
@ 2014-09-26 17:34 ` cvs-commit at gcc dot gnu.org
  2014-09-26 17:36 ` jsm28 at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2014-09-26 17:34 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=14171

--- Comment #1 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  93ae1ebaa6df1a0c188614bd0a601ab6e26711c5 (commit)
      from  68870f1253b781960da0f8bf9d8e6fbe6cf2ff3d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=93ae1ebaa6df1a0c188614bd0a601ab6e26711c5

commit 93ae1ebaa6df1a0c188614bd0a601ab6e26711c5
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Fri Sep 26 17:33:04 2014 +0000

    Clean up gnu/lib-names.h generation (bug 14171).

    This patch eliminates the mixture of SONAME information in
    shlib-versions files and SONAME information used to generate
    gnu/lib-names.h in makefiles, with the information in the makefiles
    being removed so all this information comes from the shlib-versions
    files.

    So that gnu/lib-names.h supports multiple ABIs, it is changed to be
    generated on the same basis as gnu/stubs.h: when there are multiple
    ABIs, gnu/lib-names.h is a wrapper header (the same header installed
    whatever ABI is being built) and separate headers such as
    gnu/lib-names-64.h contain the substantive contents (only one such
    header being installed by any glibc build).

    The rules for building gnu/lib-names.h were moved from Makeconfig to
    Makerules because they need to come after sysdeps makefiles are
    included (now that "ifndef abi-variants" is a toplevel conditional on
    the rules rather than $(abi-variants) being evaluated later inside the
    commands for a rule).

    Tested for x86_64 and x86 that the installed shared libraries are
    unchanged by this patch, and examined the installed gnu/lib-names*.h
    headers by hand.  Also tested the case of a single ABI (where there is
    just a single header installed, again like stubs.h) by hacking
    abi-variants to empty for x86_64.

        [BZ #14171]
        * Makeconfig [$(build-shared) = yes]
        ($(common-objpfx)soversions.mk): Don't handle SONAMEs specified in
        makefiles.
        [$(build-shared) = yes && $(soversions.mk-done) = t]
        ($(common-objpfx)gnu/lib-names.h): Remove rule.
        [$(build-shared) = yes && $(soversions.mk-done) = t]
        ($(common-objpfx)gnu/lib-names.stmp): Likewise.  Split and moved
        to Makerules.
        [$(build-shared) = yes && $(soversions.mk-done) = t]
        (before-compile): Don't append $(common-objpfx)gnu/lib-names.h
        here.
        [$(build-shared) = yes && $(soversions.mk-done) = t]
        (common-generated): Don't append gnu/lib-names.h and
        gnu/lib-names.stmp here.
        * Makerules [$(build-shared) = yes && $(soversions.mk-done) = t]
        (lib-names-h-abi): New variable.
        [$(build-shared) = yes && $(soversions.mk-done) = t]
        (lib-names-stmp-abi): Likewise.
        [$(build-shared) = yes && $(soversions.mk-done) = t &&
        abi-variants] (before-compile): Append
        $(common-objpfx)$(lib-names-h-abi).
        [$(build-shared) = yes && $(soversions.mk-done) = t &&
        abi-variants] (common-generated): Append gnu/lib-names.h.
        [$(build-shared) = yes && $(soversions.mk-done) = t &&
        abi-variants] (install-others-nosubdir): Depend on
        $(inst_includedir)/$(lib-names-h-abi).
        [$(build-shared) = yes && $(soversions.mk-done) = t &&
        abi-variants] ($(common-objpfx)gnu/lib-names.h): New rule.
        [$(build-shared) = yes && $(soversions.mk-done) = t]
        ($(common-objpfx)$(lib-names-h-abi)): New rule.
        [$(build-shared) = yes && $(soversions.mk-done) = t]
        ($(common-objpfx)$(lib-names-stmp-abi)): Likewise.
        [$(build-shared) = yes && $(soversions.mk-done) = t]
        (common-generated): Append $(lib-names-h-abi) and
        $(lib-names-stmp-abi).
        * scripts/lib-names.awk: Do not handle multi being set.
        * sysdeps/unix/sysv/linux/aarch64/Makefile (abi-lp64-ld-soname):
        Remove variable.
        (abi-lp64_be-ld-soname): Likewise.
        * sysdeps/unix/sysv/linux/arm/Makefile (abi-soft-ld-soname):
        Likewise.
        (abi-hard-ld-soname): Likewise.
        * sysdeps/unix/sysv/linux/i386/shlib-versions: New file.
        * sysdeps/unix/sysv/linux/mips/Makefile (abi-o32_soft-ld-soname):
        Remove variable.
        (abi-o32_hard-ld-soname): Likewise.
        (abi-o32_soft_2008-ld-soname): Likewise.
        (abi-o32_hard_2008-ld-soname): Likewise.
        (abi-n32_soft-ld-soname): Likewise.
        (abi-n32_hard-ld-soname): Likewise.
        (abi-n32_soft_2008-ld-soname): Likewise.
        (abi-n32_hard_2008-ld-soname): Likewise.
        (abi-n64_soft-ld-soname): Likewise.
        (abi-n64_hard-ld-soname): Likewise.
        (abi-n64_soft_2008-ld-soname): Likewise.
        (abi-n64_hard_2008-ld-soname): Likewise.
        * sysdeps/unix/sysv/linux/powerpc/Makefile (abi-64-v1-ld-soname):
        Likewise.
        (abi-64-v2-ld-soname): Likewise.
        * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: Add
        ld.so entries.
        * sysdeps/unix/sysv/linux/s390/Makefile (abi-64-ld-soname): Remove
        variable.
        * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Add ld.so
        entry.
        * sysdeps/unix/sysv/linux/x86/Makefile (abi-32-ld-soname): Remove
        variable.
        (abi-64-ld-soname): Likewise.
        (abi-x32-ld-soname): Likewise.
        * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Add ld.so
        entry.
        * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                                          |   76 ++++++++++++++++++++
 Makeconfig                                         |   41 +----------
 Makerules                                          |   63 ++++++++++++++++
 NEWS                                               |    2 +-
 scripts/lib-names.awk                              |    3 +-
 sysdeps/unix/sysv/linux/aarch64/Makefile           |    2 -
 sysdeps/unix/sysv/linux/arm/Makefile               |    2 -
 .../linux/{sparc/sparc32 => i386}/shlib-versions   |    0
 sysdeps/unix/sysv/linux/mips/Makefile              |   12 ---
 sysdeps/unix/sysv/linux/powerpc/Makefile           |    2 -
 .../sysv/linux/powerpc/powerpc64/shlib-versions    |    2 +
 sysdeps/unix/sysv/linux/s390/Makefile              |    1 -
 .../unix/sysv/linux/s390/s390-64/shlib-versions    |    1 +
 sysdeps/unix/sysv/linux/x86/Makefile               |    3 -
 sysdeps/unix/sysv/linux/x86_64/64/shlib-versions   |    1 +
 sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions  |    1 +
 16 files changed, 147 insertions(+), 65 deletions(-)
 copy sysdeps/unix/sysv/linux/{sparc/sparc32 => i386}/shlib-versions (100%)

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libc/14171] Clean up shlib-versions
  2012-05-26 20:09 [Bug libc/14171] New: Clean up shlib-versions hjl.tools at gmail dot com
                   ` (2 preceding siblings ...)
  2014-09-26 17:34 ` cvs-commit at gcc dot gnu.org
@ 2014-09-26 17:36 ` jsm28 at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: jsm28 at gcc dot gnu.org @ 2014-09-26 17:36 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=14171

Joseph Myers <jsm28 at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|2.17                        |2.21

--- Comment #2 from Joseph Myers <jsm28 at gcc dot gnu.org> ---
Fixed for 2.21.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-09-26 17:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-26 20:09 [Bug libc/14171] New: Clean up shlib-versions hjl.tools at gmail dot com
2012-05-26 20:11 ` [Bug libc/14171] " hjl.tools at gmail dot com
2014-06-19 14:36 ` fweimer at redhat dot com
2014-09-26 17:34 ` cvs-commit at gcc dot gnu.org
2014-09-26 17:36 ` jsm28 at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).