2 # Wrapper for Microsoft lib.exe
5 scriptversion
=2024-06-19.01
; # UTC
7 # Copyright (C) 2010-2024 Free Software Foundation, Inc.
8 # Written by Peter Rosin <peda@lysator.liu.se>.
10 # This program is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 2, or (at your option)
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with this program. If not, see <https://www.gnu.org/licenses/>.
23 # As a special exception to the GNU General Public License, if you
24 # distribute this file as part of a program that contains a
25 # configuration script generated by Autoconf, you may include it under
26 # the same distribution terms that you use for the rest of that program.
28 # This file is maintained in Automake, please report
29 # bugs to <bug-automake@gnu.org> or send patches to
30 # <automake-patches@gnu.org>.
42 # func_file_conv build_file
43 # Convert a $build file to $host form and store it in $file
44 # Currently only supports Windows hosts.
49 / |
/[!/]*) # absolute file, and not a UNC file
50 if test -z "$file_conv"; then
51 # lazily determine how to convert abs files
66 file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
69 file=`cygpath -m "$file" || echo "$file"`
72 file=`winepath -w "$file" || echo "$file"`
79 # func_at_file at_file operation archive
80 # Iterate over all members in AT_FILE performing OPERATION on ARCHIVE
82 # When interpreting the content of the @FILE, do NOT use func_file_conv,
83 # since the user would need to supply preconverted file names to
84 # binutils ar, at least for MinGW.
89 at_file_contents
=`cat "$1"`
90 eval set x
"$at_file_contents"
95 $AR -NOLOGO $operation:"$member" "$archive" ||
exit $?
101 func_error
"no command. Try '$0 --help' for more information."
105 Usage: $me [--help] [--version] PROGRAM ACTION ARCHIVE [MEMBER...]
107 Members may be specified in a file named with @FILE.
109 Report bugs to <bug-automake@gnu.org>.
110 GNU Automake home page: <https://www.gnu.org/software/automake/>.
111 General help using GNU software: <https://www.gnu.org/gethelp/>.
116 echo "$me (GNU Automake) $scriptversion"
121 if test $# -lt 3; then
122 func_error
"you must specify a program, an action and an archive"
129 if test $# -lt 2; then
130 func_error
"you must specify a program, an action and an archive"
135 |
-machine* |
-MACHINE* \
136 |
-subsystem* |
-SUBSYSTEM* \
137 |
-verbose |
-VERBOSE \
143 # We always invoke AR with -nologo, so don't need to add it again.
155 func_file_conv
"$orig_archive"
158 # strip leading dash in $action
169 while test -n "$action"
178 S
*) ;; # the index is always updated implicitly
180 u
*) ;; # TODO: don't ignore the update modifier
181 v
*) ;; # TODO: don't ignore the verbose modifier
183 func_error
"unknown action specified"
189 case $delete$extract$list$quick$replace,$index in
193 func_error
"more than one action specified"
196 func_error
"no action specified"
200 if test -n "$delete"; then
201 if test ! -f "$orig_archive"; then
202 func_error
"archive not found"
208 func_at_file
"${1#@}" -REMOVE "$archive"
212 $AR -NOLOGO -REMOVE:"$file" "$archive" ||
exit $?
217 elif test -n "$extract"; then
218 if test ! -f "$orig_archive"; then
219 func_error
"archive not found"
221 if test $# -gt 0; then
226 func_at_file
"${1#@}" -EXTRACT "$archive"
230 $AR -NOLOGO -EXTRACT:"$file" "$archive" ||
exit $?
235 $AR -NOLOGO -LIST "$archive" |
tr -d '\r' |
sed -e 's/\\/\\\\/g' \
238 $AR -NOLOGO -EXTRACT:"$member" "$archive" ||
exit $?
242 elif test -n "$quick$replace"; then
243 if test ! -f "$orig_archive"; then
244 if test -z "$create"; then
245 echo "$me: creating $orig_archive"
249 orig_archive
=$archive
256 func_file_conv
"${1#@}"
268 if test -n "$orig_archive"; then
269 $AR -NOLOGO -OUT:"$archive" "$orig_archive" "$@" ||
exit $?
271 $AR -NOLOGO -OUT:"$archive" "$@" ||
exit $?
274 elif test -n "$list"; then
275 if test ! -f "$orig_archive"; then
276 func_error
"archive not found"
278 $AR -NOLOGO -LIST "$archive" ||
exit $?