diff options
author | midipix <writeonce@midipix.org> | 2018-10-24 22:25:26 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-10-24 22:27:16 -0400 |
commit | bcd1d32b60dbc3019944fc7673f07fbf963d1bb9 (patch) | |
tree | 8572ca400707b6465765300dc91612ae48e9993e | |
parent | 4ac23a7903d866a443761d03929182c642d689dc (diff) | |
download | slibtool-bcd1d32b60dbc3019944fc7673f07fbf963d1bb9.tar.bz2 slibtool-bcd1d32b60dbc3019944fc7673f07fbf963d1bb9.tar.xz |
release 0.5.26v0.5.26
-rw-r--r-- | NEWS | 24 | ||||
-rw-r--r-- | project/tagver.mk | 2 |
2 files changed, 25 insertions, 1 deletions
@@ -1,3 +1,27 @@ +0.5.26: + +This patch release follows significant improvements in, as well as additions +to slibtool's functionality. Most notably, with the additions of --heuristics +and the rlibtool convenience symlink, slibtool may now automagically operate +in the exact same mode (static only, shared only, or both) as the generated +libtool script for which it serves as a surrogate. + +- utility: --heuristics support: added the 'rlibtool' convenience symlink. +- utility: convenience symlinks: added rclibtool, rdlibtool, and rdclibtool. +- link mode: properly handle local archives. +- link mode: remove placeholder arguments. +- link mode: remove redundant -l arguments. +- link mode: remove redundant -L arguments. +- compile mode: remove placeholder arguments. +- driver: added --heuristics support. +- driver: slbt_get_driver_ctx(): support stack-based argv. +- driver: output error vector upon post-argv-parsing failures. +- driver: execution context: added slbt_reset_argvector(). +- driver: properly normalize --library-path=<path> arguments. +- internals: slbt_mkdir() now uses the context's fdcwd. +- internals: slbt_adjust_linker_argument() now uses the context's fdcwd. +- internals: -shared/-static heuristics: added slbt_get_lconf_flags(). + 0.5.25: This patch release follows several important enhancements in slibtool's diff --git a/project/tagver.mk b/project/tagver.mk index bfb559f..a87a066 100644 --- a/project/tagver.mk +++ b/project/tagver.mk @@ -2,4 +2,4 @@ VER_NAMESPACE = SLBT VER_MAJOR = 0 VER_MINOR = 5 -VER_PATCH = 25 +VER_PATCH = 26 |