summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-05-19release 0.5.19v0.5.19midipix2-1/+12
2018-05-09driver: -shrext support: only use the extension portion of the extension.midipix1-1/+3
2018-05-08link mode: pass --export-dynamic to the linker as needed.midipix1-0/+3
2018-03-06README: clarify difference between variants (slibtool[-shared|-static]).midipix1-1/+3
2018-03-05driver: support -export-dynamic (currently as a no-op).midipix4-0/+14
2018-03-04compile mode: gnu libtool compatibility: do not add -c to compiler arguments.midipix1-18/+0
2018-02-26driver: allow flavor-based use of native tools (ar,ranlib,etc.)midipix1-0/+5
2018-02-26driver: slbt_init_host_params(): improve native target detection logic.midipix1-2/+45
2018-02-05release 0.5.18v0.5.18midipix2-1/+15
2017-12-20link mode: re-implemented slbt_exec_link_finalize_argument_vector().midipix1-94/+77
The above internal interface is now doing the right thing, namely to split the argument vector between object arguments and all other arguments, then rejoin the arguments by placing object arguments first, and all other arguments last.
2017-12-19link mode: argument vector ordering: treat {.a|.so} the same way as -lfoo.midipix1-25/+35
2017-11-23build system: added --cchost support.midipix5-4/+31
2017-11-23build system: added PERK to the toolchain variables.midipix2-0/+2
2017-11-18process spawning and forking: use dup2, not dup, in the child process.midipix2-9/+5
2017-11-18process forking and spawning: call _exit, not exit, in the child process.midipix2-3/+3
2017-10-31build system: toolchain: added definitions for message and resource compilers.midipix2-0/+4
2017-10-26link mode: import library generation: added mdso support.midipix1-15/+43
2017-10-26driver: added --mdso and --implib support.midipix5-0/+70
2017-10-25build system: PE targets: added mdso-based import library generation support.midipix7-3/+30
2017-10-24build system: midipix.mk: OS_SONAME: use symlinks by default.midipix1-2/+2
2017-10-19build system: allow cmdline overriding of the static archive's base name.midipix1-1/+2
2017-08-11driver: added initial -dlpreopen support.midipix3-0/+10
2017-08-11driver: support -thread-safe more elegantly.midipix3-3/+5
2017-08-11link mode: use -fpic objects with -disable-static.midipix1-0/+3
2017-08-10driver: properly handle -thread-safe (no-op, compatibility).midipix1-0/+3
2017-08-10release 0.5.17v0.5.17midipix2-1/+6
2017-08-10link mode: argument reordering now supports libfoo.a --whole-archive wrapping.midipix1-11/+21
2017-08-10release 0.5.16v0.5.16midipix2-1/+11
2017-08-10slibtool-shared: properly handle .la arguments when creating an archive.midipix2-1/+8
tool ==== slibtool-shared (or slibtool with -disable-static). scenario ======== - create libfoo.so (via libfoo.la). - create libbar.a (via libbar.la), with libfoo.la as an input argument. Before this fix, slibtool failed since it could not find libfoo.a.slibtool.deps. After this fix, slibtool properly handles this scenario, first by detecting that there is no archive for which secondary dependencies need to be processed, and then by detecting that libfoo.a is a symlink to /dev/null.
2017-08-10slbt_exec_link_create_dep_file(): properly initialize and track fdeps.midipix1-23/+13
2017-08-09release 0.5.15v0.5.15midipix2-1/+10
2017-08-09link mode: reluctantly support packages that rely on argument reordering.midipix1-0/+122
2017-08-07error trace: remove and fix inadvertent calls to strerror(3).midipix2-7/+1
2017-08-06release 0.5.14v0.5.14midipix2-1/+14
2017-05-28build system: added extended dir variables.midipix3-0/+140
2017-05-19driver: refine handling of --target.midipix1-8/+1
* for a --target argument that precedes the compiler argument, as in: slibtool --target=xxx --mode=compile cc --> set an explicit (cross-)target, --> but do not pass the argument to the compiler. * for a --target argument that follows the compiler argument, as in: slibtool --mode=compile cc --target=xxx --> set an explicit (cross-)target, --> and also pass the argument to the compiler.
2017-02-09annual chores: normalize date range in internal header.midipix1-1/+1
2017-02-08link mode: static archives: always have ar(1) act as ranlib(1).midipix1-27/+4
2017-02-05annual chores, properly performed.midipix27-27/+27
2017-02-04annual chores.midipix27-27/+27
2017-01-29build system: added --sbindir support.midipix3-0/+10
2017-01-08link mode: fix fdepfile construction when determining dynlib dependency.midipix1-1/+1
2016-12-26argv.h: struct argv_ctx: .unitidx and .erridx are set via pointer arithmetic.midipix1-2/+2
2016-12-25argv.h: use an option vector rather than a direct pointer to the option table.midipix5-61/+95
2016-12-18build system: version.sh: create output directory as needed.midipix1-0/+1
2016-12-15release 0.5.13v0.5.13midipix2-1/+11
2016-12-14link mode: create an archive /dev/null symlink placeholder as needed.midipix2-3/+30
2016-12-13PE soname support: added the designated LDFLAGS_SONAME variable.midipix1-2/+3
2016-12-08build system: configure: pass --sysroot to the linker as a compiler argument.midipix1-1/+1
2016-12-03release 0.5.12v0.5.12midipix3-2/+28