-
Notifications
You must be signed in to change notification settings - Fork 626
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and simplify SO versioning policy (#1498)
* Update and simplify SO versioning policy This change retires the "libtool" versioning scheme and adopts a policy of appending the ``MAJOR.MINOR.PATCH`` software release name to the SONAME to form the real name of the shared library. The SOVERSION is specified via the ``OPENEXR_LIB_SOVERSION`` setting in ``CMakeLists.txt`` and is the single number that increments whenever, and only when, the ABI changes in non-backwards-compatible ways. In practice, this corresponds to major and minor releases. The resulting real shared library file names look like, for example, ``libOpenEXR.so.31.3.2.0``, where ``libOpenEXR.so.31`` is the SONAME and ``.3.2.0`` identifies the corresponding software release. This naming scheme helps reinforce the correspondence between the shared library's real file name and the software release it corresponds to, moreso than would be indicated by a single increasing number. By OpenEXR project policy and discussion of the technical steering committee, the additional versioning information in the libtool versioning scheme is too confusing and error-prone to follow, without offering additional practical benefit. Documentation is in ``CMakeLists.txt`` and in ``docs/install.rst``. Signed-off-by: Cary Phillips <[email protected]> * remove reference to libtool Signed-off-by: Cary Phillips <[email protected]> --------- Signed-off-by: Cary Phillips <[email protected]>
- Loading branch information
Showing
2 changed files
with
35 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters