summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2018-06-29link mode: re-implemented slbt_exec_link_create_dep_file() w. pure fdio.midipix2-92/+120
2018-06-29link mode: re-implemented slbt_exec_link_adjust_argument_vector() w. pure fdio.midipix1-90/+73
2018-06-29slbt_exec_link_adjust_argument_vector(): free depsmeta memory upon error.midipix1-9/+26
2018-06-29helper interfaces: re-implemented slbt_archive_import() w. pure fdio.midipix1-23/+23
2018-06-29link mode: re-implemented slbt_get_deps_meta() w. pure fdio.midipix1-41/+31
2018-06-29install mode: re-implemented slbt_exec_install_library_wrapper() w. pure fdio.midipix1-47/+44
2018-06-29internals: added slbt_mapped_readline().midipix2-0/+47
2018-06-29driver: slbt_init_host_params(): do not set fnative when !fdumpmachine.midipix1-1/+0
2018-06-29driver: slbt_init_host_params(): propagate failure of <compiler> -dumpmachine.midipix1-7/+21
2018-06-29helper interfaces: re-implemented slbt_dump_machine() w. pure fdio.midipix1-29/+48
2018-06-29slbt_dump_machine_child(): fix argv[0] computation logic.midipix1-1/+1
2018-06-29internals: added slbt_map_file(), slbt_unmap_file().midipix2-0/+96
2018-06-27internal headers: add missing guards and notes, remove unneeded notes.midipix7-10/+34
2018-06-27internal headers: fix oversight typos.midipix1-2/+2
2018-06-27annual chores.midipix27-27/+27
2018-06-27driver, library interfaces: support alternate fd's for input/output/error/log.midipix10-89/+220
2018-06-27driver: argv usage and error output: use the signal-resilient slbt_dprintf().midipix2-0/+5
2018-06-27internals: added slbt_dprintf(), a signal-resilient dprintf implementation.midipix2-0/+62
2018-06-27argv.h: output usage and errors using [argv_]dprintf rather than fprint.midipix4-46/+58
2018-06-27argv.h: argv_get(): be consistent between forward decl. and impl.midipix1-1/+1
2018-06-27argv.h: move definition of struct argv_meta_impl to the implementation block.midipix1-6/+6
2018-06-23driver: added slbt_output_features(), providing compatible --features output.midipix3-8/+74
2018-06-23driver: added SLBT_MODE_INFO, for more elegant flow control.midipix1-9/+16
2018-06-22driver: compatibility: have -{shared|static} imply -disable-{static|shared}.midipix1-2/+2
2018-06-22link mode: properly handle the combination of -release and -version-info.midipix3-6/+51
2018-06-22install mode: slbt_copy_file(): properly detect placeholder symlinks.midipix1-0/+5
2018-06-21link mode: slbt_archive_import(): properly detect placeholder symlinks.midipix1-3/+3
2018-06-21link mode: slbt_exec_link_create_dep_file(): record top-level -L arguments.midipix1-0/+18
2018-06-21link mode: --disable-{shared|static}: use differently-named placeholders.midipix4-12/+46
2018-05-23argv.h: whitespace meditation.midipix1-5/+9
2018-05-23argv: argv_scan(): properly handle optional argument values of short options.midipix1-0/+2
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-05driver: support -export-dynamic (currently as a no-op).midipix3-0/+13
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
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-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-26link mode: import library generation: added mdso support.midipix1-15/+43
2017-10-26driver: added --mdso and --implib support.midipix4-0/+64
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-10link mode: argument reordering now supports libfoo.a --whole-archive wrapping.midipix1-11/+21
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