Age | Commit message (Expand) | Author | Files | Lines |
2024-02-10 | Annual chores. | midipix | 46 | -46/+46 |
2024-02-10 | slbt_exec_link_create_import_library(): fix repetition typo in expression. | midipix | 1 | -1/+1 |
2024-02-10 | link mode: move the executable creation logic to its own translation unit. | midipix | 3 | -251/+278 |
2024-02-10 | link mode: move the shared library creation logic to its own translation unit. | midipix | 3 | -239/+281 |
2024-02-10 | link mode: move the archive creation logic to its own translation unit. | midipix | 3 | -117/+164 |
2024-02-10 | link mode: move the import library logic to its own translation unit. | midipix | 3 | -74/+103 |
2024-02-10 | link mode: move the host tag logic to its own translation unit. | midipix | 3 | -48/+74 |
2024-02-10 | link mode: move the argument vector logic to its own translation unit. | midipix | 3 | -695/+768 |
2024-02-10 | link mode: move the dependency file logic to its own translation unit. | midipix | 3 | -315/+354 |
2024-02-10 | code base: simplify checks against value returned from snprintf() via wrapper. | midipix | 9 | -117/+172 |
2024-02-09 | uninstall mode: invoke the argv interfaces via the driver-provided wrappers. | midipix | 1 | -9/+7 |
2024-02-09 | install mode: invoke the argv interfaces via the driver-provided wrappers. | midipix | 1 | -9/+7 |
2024-02-09 | ar mode: invoke the argv interfaces via the driver-provided wrappers. | midipix | 1 | -11/+9 |
2024-02-09 | driver: provide wrappers for argv_usage() and argv_usage_plain(). | midipix | 2 | -0/+34 |
2024-02-09 | driver: eliminate duplicate presence of the static argv interfaces. | midipix | 3 | -12/+66 |
2024-02-09 | driver: move slbt_init_link_params() to its own translation unit. | midipix | 3 | -113/+133 |
2024-02-09 | driver: move slbt_init_version_info() to its own translation unit. | midipix | 3 | -55/+86 |
2024-02-09 | driver: move slbt_split_argv() to its own translation unit. | midipix | 3 | -491/+534 |
2024-02-09 | driver: move the host params logic to its own translation unit. | midipix | 3 | -642/+702 |
2024-02-08 | driver: rlibtool mode: derive AR and RANLIB from the located libtool script. | midipix | 2 | -9/+65 |
2024-02-08 | slbt_get_lconf_flags(): refactor around the new internal slbt_get_lconf_var(). | midipix | 1 | -65/+102 |
2024-02-08 | slbt_exec_link_create_archive(): pass proper (non-historical) action arguments. | midipix | 1 | -4/+4 |
2024-02-08 | slbt_archive_import(): check whether the imported archive is a placeholder. | midipix | 1 | -0/+6 |
2024-02-08 | slbt_archive_import(): use slibtool's in-memory archive merging facility. | midipix | 1 | -1/+37 |
2024-02-08 | slbt_store_archive(): initial implementation. | midipix | 1 | -0/+143 |
2024-02-08 | slbt_archive_import_mri(): avoid tmpnam(), use a tmpfile name pattern instead. | midipix | 1 | -5/+24 |
2024-02-08 | slbt_archive_import_mri(): close pipe fd upon slbt_mri_argument() failure. | midipix | 1 | -1/+3 |
2024-02-08 | slbt_archive_import_mri(): whitespace meditation. | midipix | 1 | -5/+6 |
2024-02-07 | slbt_merge_archives(): whitespace meditation. | midipix | 1 | -2/+2 |
2024-02-07 | slbt_merge_archives(): do not special-case signature-only archives. | midipix | 1 | -8/+0 |
2024-02-07 | slbt_merge_archives(): initial implementation. | midipix | 1 | -0/+698 |
2024-02-07 | slbt_ar_output_members(): file size: exclude the bsd long-name trailer. | midipix | 1 | -3/+3 |
2024-02-07 | slbt_get_archive_meta(): bsd symrefs vector: fix ar_name_offset logic. | midipix | 3 | -6/+30 |
2024-02-04 | struct slbt_archive_meta: store reference to the (optional) long names member. | midipix | 1 | -0/+6 |
2024-02-04 | slbt_copy_file(): enhance logging of copy errors. | midipix | 1 | -3/+11 |
2024-02-04 | slbt_exec_install(): enhance logging of file operation errors. | midipix | 1 | -6/+33 |
2024-02-04 | slbt_exec_link(): enhance logging of linker- and linking-tool errors. | midipix | 1 | -4/+32 |
2024-02-04 | driver: accept ``target <target>'' as a synonym for ``--target=<target>''. | midipix | 2 | -1/+9 |
2024-02-04 | slbt_exec_compile(): fix logging of compiler errors. | midipix | 1 | -2/+10 |
2024-02-04 | slbt_archive_import(): refactor in anticipation of in-memory archive merging. | midipix | 2 | -145/+172 |
2024-02-03 | slbt_ar_output_arname_yaml(): added the 'Meta' layer. | midipix | 1 | -2/+2 |
2024-02-03 | slbt_ar_output_members_posix() format string: use PRIu64 rather than %z. | midipix | 1 | -1/+11 |
2024-02-03 | slbt_ar_output_members_yaml(): implemented verbose yaml output. | midipix | 1 | -3/+55 |
2024-02-03 | slbt_ar_output_members_yaml(): refactor, prepare for verbose yaml output. | midipix | 1 | -7/+15 |
2024-02-03 | slbt_ar_output_members_yaml(): produce a more data-oriented yaml output. | midipix | 1 | -5/+5 |
2024-02-03 | slbt_ar_output_arname_yaml(): produce a more data-oriented yaml output. | midipix | 1 | -1/+6 |
2024-02-03 | ar mode: driver: added the -Wposix and -Wyaml shorthand switches. | midipix | 3 | -0/+20 |
2024-02-03 | slbt_ar_output_members_posix(): implemented posix verbose output. | midipix | 1 | -2/+98 |
2024-02-02 | ar mode: driver: added -Wverbose support. | midipix | 3 | -0/+11 |
2024-02-02 | slbt_ar_output_one_member_posix(): refactor in anticipation of -Wverbose. | midipix | 1 | -4/+13 |