gpt4 book ai didi

linux - libtool 库版本编号

转载 作者:太空宇宙 更新时间:2023-11-04 09:16:01 27 4
gpt4 key购买 nike

目前我正在将一个成功构建的库与选项链接起来

libtool --mode=link g++ -version-info 1:0

这导致一个名为

的库
libxxx.so.1.0.0

到目前为止一切正常。我的问题:我怎样才能影响版本方案中的最后一位数字,也就是说我怎样才能在库名称末尾有一个不同于 0 的值?

谢谢!

最佳答案

请引用Libtool manual中的“更新库版本信息” , 它解释了这些数字的含义以及为什么 -version-info 1:0:3 无效:

If you want to use libtool’s versioning system, then you must specify the version information to libtool using the -version-info flag during link mode (see Link mode).

This flag accepts an argument of the form current[:revision[:age]]. So, passing -version-info 3:12:1 sets current to 3, revision to 12, and age to 1.

If either revision or age are omitted, they default to 0. Also note that age must be less than or equal to the current interface number.

Here are a set of rules to help you update your library version information:

  1. Start with version information of 0:0:0 for each libtool library.
  2. Update the version information only immediately before a public release of your software. More frequent updates are unnecessary, and only guarantee that the current interface number gets larger faster.
  3. If the library source code has changed at all since the last update, then increment revision (c:r:a becomes c:r+1:a).
  4. If any interfaces have been added, removed, or changed since the last update, increment current, and set revision to 0.
  5. If any interfaces have been added since the last public release, then increment age.
  6. If any interfaces have been removed or changed since the last public release, then set age to 0.

Never try to set the interface numbers so that they correspond to the release number of your package. This is an abuse that only fosters misunderstanding of the purpose of library versions. Instead, use the -release flag (see Release numbers), but be warned that every release of your package will not be binary compatible with any other release.

您可能还想阅读 Autotools Mythbuster 中的库版本控制。对此事进行更广泛的处理。

关于linux - libtool 库版本编号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47713592/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com