Skip to content

Latest commit

 

History

History
6864 lines (6184 loc) · 192 KB

ltmain.sh

File metadata and controls

6864 lines (6184 loc) · 192 KB
 
Apr 30, 2006
Apr 30, 2006
1
# Based on libtool-1.5.22
Oct 21, 1999
Oct 21, 1999
2
# ltmain.sh - Provide generalized library-building support services.
Nov 19, 2003
Nov 19, 2003
3
# NOTE: Changing this file will not affect anything until you rerun configure.
Oct 21, 1999
Oct 21, 1999
4
#
Apr 30, 2006
Apr 30, 2006
5
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
Nov 19, 2003
Nov 19, 2003
6
# Free Software Foundation, Inc.
Oct 21, 1999
Oct 21, 1999
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
Apr 30, 2006
Apr 30, 2006
21
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Oct 21, 1999
Oct 21, 1999
22
23
24
25
26
27
#
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
# configuration script generated by Autoconf, you may include it under
# the same distribution terms that you use for the rest of that program.
Aug 24, 2004
Aug 24, 2004
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
basename="s,^.*/,,g"
# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
# is ksh but when the shell is invoked as "sh" and the current value of
# the _XPG environment variable is not equal to 1 (one), the special
# positional parameter $0, within a function call, is the name of the
# function.
progpath="$0"
# The name of this program:
progname=`echo "$progpath" | $SED $basename`
modename="$progname"
# Global variables:
EXIT_SUCCESS=0
EXIT_FAILURE=1
PROGRAM=ltmain.sh
PACKAGE=libtool
Apr 30, 2006
Apr 30, 2006
47
48
VERSION=1.5.22
TIMESTAMP=" (1.1220.2.365 2005/12/18 22:14:06)"
Aug 24, 2004
Aug 24, 2004
49
50
51
52
53
54
55
# See if we are running on zsh, and set the options which allow our
# commands through without removal of \ escapes.
if test -n "${ZSH_VERSION+set}" ; then
setopt NO_GLOB_SUBST
fi
Oct 21, 1999
Oct 21, 1999
56
57
58
59
60
61
62
63
64
65
66
67
# Check that we have a working $echo.
if test "X$1" = X--no-reexec; then
# Discard the --no-reexec flag, and continue.
shift
elif test "X$1" = X--fallback-echo; then
# Avoid inline document here, it may be left over
:
elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
# Yippee, $echo works!
:
else
# Restart under the correct shell, and then maybe $echo will work.
Aug 24, 2004
Aug 24, 2004
68
exec $SHELL "$progpath" --no-reexec ${1+"$@"}
Oct 21, 1999
Oct 21, 1999
69
70
71
72
73
74
75
76
fi
if test "X$1" = X--fallback-echo; then
# used as fallback echo
shift
cat <<EOF
$*
EOF
Aug 24, 2004
Aug 24, 2004
77
exit $EXIT_SUCCESS
Oct 21, 1999
Oct 21, 1999
78
79
80
81
82
83
84
85
86
87
88
fi
default_mode=
help="Try \`$progname --help' for more information."
magic="%%%MAGIC variable%%%"
mkdir="mkdir"
mv="mv -f"
rm="rm -f"
# Sed substitution that helps us do robust quoting. It backslashifies
# metacharacters that are still active within double-quoted strings.
Nov 19, 2003
Nov 19, 2003
89
Xsed="${SED}"' -e 1s/^X//'
Oct 21, 1999
Oct 21, 1999
90
sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g'
Nov 19, 2003
Nov 19, 2003
91
# test EBCDIC or ASCII
Apr 30, 2006
Apr 30, 2006
92
93
94
95
96
case `echo X|tr X '\101'` in
A) # ASCII based system
# \n is not interpreted correctly by Solaris 8 /usr/ucb/tr
SP2NL='tr \040 \012'
NL2SP='tr \015\012 \040\040'
Nov 19, 2003
Nov 19, 2003
97
;;
Apr 30, 2006
Apr 30, 2006
98
99
100
*) # EBCDIC based system
SP2NL='tr \100 \n'
NL2SP='tr \r\n \100\100'
Nov 19, 2003
Nov 19, 2003
101
102
;;
esac
Oct 21, 1999
Oct 21, 1999
103
104
105
106
107
108
109
110
111
112
113
114
115
# NLS nuisances.
# Only set LANG and LC_ALL to C if already set.
# These must not be set unconditionally because not all systems understand
# e.g. LANG=C (notably SCO).
# We save the old values to restore during execute mode.
if test "${LC_ALL+set}" = set; then
save_LC_ALL="$LC_ALL"; LC_ALL=C; export LC_ALL
fi
if test "${LANG+set}" = set; then
save_LANG="$LANG"; LANG=C; export LANG
fi
Nov 19, 2003
Nov 19, 2003
116
# Make sure IFS has a sensible default
Apr 30, 2006
Apr 30, 2006
117
118
119
lt_nl='
'
IFS=" $lt_nl"
Oct 21, 1999
Oct 21, 1999
120
121
if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
Nov 19, 2003
Nov 19, 2003
122
123
$echo "$modename: not configured to build any kind of library" 1>&2
$echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2
Aug 24, 2004
Aug 24, 2004
124
exit $EXIT_FAILURE
Oct 21, 1999
Oct 21, 1999
125
126
127
128
129
130
131
132
133
134
135
fi
# Global variables.
mode=$default_mode
nonopt=
prev=
prevopt=
run=
show="$echo"
show_help=
execute_dlfiles=
Apr 30, 2006
Apr 30, 2006
136
137
duplicate_deps=no
preserve_args=
Oct 21, 1999
Oct 21, 1999
138
139
140
lo2o="s/\\.lo\$/.${objext}/"
o2lo="s/\\.${objext}\$/.lo/"
Nov 19, 2003
Nov 19, 2003
141
142
143
144
#####################################
# Shell function definitions:
# This seems to be the best place for them
Apr 30, 2006
Apr 30, 2006
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# func_mktempdir [string]
# Make a temporary directory that won't clash with other running
# libtool processes, and avoids race conditions if possible. If
# given, STRING is the basename for that directory.
func_mktempdir ()
{
my_template="${TMPDIR-/tmp}/${1-$progname}"
if test "$run" = ":"; then
# Return a directory name, but don't create it in dry-run mode
my_tmpdir="${my_template}-$$"
else
# If mktemp works, use that first and foremost
my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null`
if test ! -d "$my_tmpdir"; then
# Failing that, at least try and use $RANDOM to avoid a race
my_tmpdir="${my_template}-${RANDOM-0}$$"
save_mktempdir_umask=`umask`
umask 0077
$mkdir "$my_tmpdir"
umask $save_mktempdir_umask
fi
# If we're not in dry-run mode, bomb out on failure
test -d "$my_tmpdir" || {
$echo "cannot create temporary directory \`$my_tmpdir'" 1>&2
exit $EXIT_FAILURE
}
fi
$echo "X$my_tmpdir" | $Xsed
}
Aug 24, 2004
Aug 24, 2004
182
183
184
# func_win32_libid arg
# return the library type of file 'arg'
#
Nov 19, 2003
Nov 19, 2003
185
186
187
# Need a lot of goo to handle *both* DLLs and import libs
# Has to be a shell function in order to 'eat' the argument
# that is supplied when $file_magic_command is called.
Apr 30, 2006
Apr 30, 2006
188
189
func_win32_libid ()
{
Nov 19, 2003
Nov 19, 2003
190
191
192
193
194
195
196
197
win32_libid_type="unknown"
win32_fileres=`file -L $1 2>/dev/null`
case $win32_fileres in
*ar\ archive\ import\ library*) # definitely import
win32_libid_type="x86 archive import"
;;
*ar\ archive*) # could be an import, or static
if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | \
Aug 24, 2004
Aug 24, 2004
198
$EGREP -e 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then
Nov 19, 2003
Nov 19, 2003
199
win32_nmres=`eval $NM -f posix -A $1 | \
Apr 30, 2006
Apr 30, 2006
200
201
202
203
204
$SED -n -e '1,100{/ I /{s,.*,import,;p;q;};}'`
case $win32_nmres in
import*) win32_libid_type="x86 archive import";;
*) win32_libid_type="x86 archive static";;
esac
Nov 19, 2003
Nov 19, 2003
205
206
fi
;;
Aug 24, 2004
Aug 24, 2004
207
*DLL*)
Nov 19, 2003
Nov 19, 2003
208
209
210
211
212
213
214
215
216
217
218
219
220
win32_libid_type="x86 DLL"
;;
*executable*) # but shell scripts are "executable" too...
case $win32_fileres in
*MS\ Windows\ PE\ Intel*)
win32_libid_type="x86 DLL"
;;
esac
;;
esac
$echo $win32_libid_type
}
Aug 24, 2004
Aug 24, 2004
221
222
223
224
225
226
227
# func_infer_tag arg
# Infer tagged configuration to use if any are available and
# if one wasn't chosen via the "--tag" command line option.
# Only attempt this if the compiler in the base compile
# command doesn't match the default compiler.
# arg is usually of the form 'gcc ...'
Apr 30, 2006
Apr 30, 2006
228
229
func_infer_tag ()
{
Aug 24, 2004
Aug 24, 2004
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
if test -n "$available_tags" && test -z "$tagname"; then
CC_quoted=
for arg in $CC; do
case $arg in
*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
arg="\"$arg\""
;;
esac
CC_quoted="$CC_quoted $arg"
done
case $@ in
# Blanks in the command may have been stripped by the calling shell,
# but not from the CC environment variable when configure was run.
" $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) ;;
# Blanks at the start of $base_compile will cause this to fail
# if we don't check for them as well.
*)
for z in $available_tags; do
if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then
# Evaluate the configuration.
eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
CC_quoted=
for arg in $CC; do
# Double-quote args containing other shell metacharacters.
case $arg in
*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
arg="\"$arg\""
;;
esac
CC_quoted="$CC_quoted $arg"
done
case "$@ " in
" $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*)
# The compiler in the base compile command matches
# the one in the tagged configuration.
# Assume this is the tagged configuration we want.
tagname=$z
break
;;
esac
fi
done
# If $tagname still isn't set, then no tagged configuration
# was found and let the user know that the "--tag" command
# line option must be used.
if test -z "$tagname"; then
$echo "$modename: unable to infer tagged configuration"
$echo "$modename: specify a tag with \`--tag'" 1>&2
exit $EXIT_FAILURE
# else
# $echo "$modename: using $tagname tagged configuration"
fi
;;
esac
fi
}
Apr 30, 2006
Apr 30, 2006
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
# func_extract_an_archive dir oldlib
func_extract_an_archive ()
{
f_ex_an_ar_dir="$1"; shift
f_ex_an_ar_oldlib="$1"
$show "(cd $f_ex_an_ar_dir && $AR x $f_ex_an_ar_oldlib)"
$run eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_oldlib)" || exit $?
if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
:
else
$echo "$modename: ERROR: object name conflicts: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" 1>&2
exit $EXIT_FAILURE
fi
}
Aug 24, 2004
Aug 24, 2004
304
# func_extract_archives gentop oldlib ...
Apr 30, 2006
Apr 30, 2006
305
306
func_extract_archives ()
{
Aug 24, 2004
Aug 24, 2004
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
my_gentop="$1"; shift
my_oldlibs=${1+"$@"}
my_oldobjs=""
my_xlib=""
my_xabs=""
my_xdir=""
my_status=""
$show "${rm}r $my_gentop"
$run ${rm}r "$my_gentop"
$show "$mkdir $my_gentop"
$run $mkdir "$my_gentop"
my_status=$?
if test "$my_status" -ne 0 && test ! -d "$my_gentop"; then
exit $my_status
fi
for my_xlib in $my_oldlibs; do
# Extract the objects.
case $my_xlib in
[\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;;
*) my_xabs=`pwd`"/$my_xlib" ;;
esac
my_xlib=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'`
my_xdir="$my_gentop/$my_xlib"
$show "${rm}r $my_xdir"
$run ${rm}r "$my_xdir"
$show "$mkdir $my_xdir"
$run $mkdir "$my_xdir"
Apr 30, 2006
Apr 30, 2006
337
338
339
exit_status=$?
if test "$exit_status" -ne 0 && test ! -d "$my_xdir"; then
exit $exit_status
Aug 24, 2004
Aug 24, 2004
340
341
342
343
344
345
346
347
348
349
fi
case $host in
*-darwin*)
$show "Extracting $my_xabs"
# Do not bother doing anything if just a dry run
if test -z "$run"; then
darwin_orig_dir=`pwd`
cd $my_xdir || exit $?
darwin_archive=$my_xabs
darwin_curdir=`pwd`
Apr 30, 2006
Apr 30, 2006
350
darwin_base_archive=`$echo "X$darwin_archive" | $Xsed -e 's%^.*/%%'`
Aug 24, 2004
Aug 24, 2004
351
352
353
354
355
356
357
358
359
darwin_arches=`lipo -info "$darwin_archive" 2>/dev/null | $EGREP Architectures 2>/dev/null`
if test -n "$darwin_arches"; then
darwin_arches=`echo "$darwin_arches" | $SED -e 's/.*are://'`
darwin_arch=
$show "$darwin_base_archive has multiple architectures $darwin_arches"
for darwin_arch in $darwin_arches ; do
mkdir -p "unfat-$$/${darwin_base_archive}-${darwin_arch}"
lipo -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}"
cd "unfat-$$/${darwin_base_archive}-${darwin_arch}"
Apr 30, 2006
Apr 30, 2006
360
func_extract_an_archive "`pwd`" "${darwin_base_archive}"
Aug 24, 2004
Aug 24, 2004
361
cd "$darwin_curdir"
Apr 30, 2006
Apr 30, 2006
362
$rm "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}"
Aug 24, 2004
Aug 24, 2004
363
364
done # $darwin_arches
## Okay now we have a bunch of thin objects, gotta fatten them up :)
Apr 30, 2006
Apr 30, 2006
365
darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print| xargs basename | sort -u | $NL2SP`
Aug 24, 2004
Aug 24, 2004
366
367
368
369
370
371
darwin_file=
darwin_files=
for darwin_file in $darwin_filelist; do
darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP`
lipo -create -output "$darwin_file" $darwin_files
done # $darwin_filelist
Apr 30, 2006
Apr 30, 2006
372
${rm}r unfat-$$
Aug 24, 2004
Aug 24, 2004
373
374
cd "$darwin_orig_dir"
else
Apr 30, 2006
Apr 30, 2006
375
376
cd "$darwin_orig_dir"
func_extract_an_archive "$my_xdir" "$my_xabs"
Aug 24, 2004
Aug 24, 2004
377
378
379
fi # $darwin_arches
fi # $run
;;
Apr 30, 2006
Apr 30, 2006
380
381
382
*)
func_extract_an_archive "$my_xdir" "$my_xabs"
;;
Aug 24, 2004
Aug 24, 2004
383
384
385
386
387
esac
my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
done
func_extract_archives_result="$my_oldobjs"
}
Nov 19, 2003
Nov 19, 2003
388
389
390
# End of Shell function definitions
#####################################
Aug 24, 2004
Aug 24, 2004
391
392
393
# Darwin sucks
eval std_shrext=\"$shrext_cmds\"
Apr 30, 2006
Apr 30, 2006
394
395
disable_libs=no
Oct 21, 1999
Oct 21, 1999
396
# Parse our command line options once, thoroughly.
Nov 19, 2003
Nov 19, 2003
397
while test "$#" -gt 0
Oct 21, 1999
Oct 21, 1999
398
399
400
401
do
arg="$1"
shift
Nov 19, 2003
Nov 19, 2003
402
case $arg in
Oct 21, 1999
Oct 21, 1999
403
404
405
406
407
408
-*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
*) optarg= ;;
esac
# If the previous option needs an argument, assign it.
if test -n "$prev"; then
Nov 19, 2003
Nov 19, 2003
409
case $prev in
Oct 21, 1999
Oct 21, 1999
410
execute_dlfiles)
Nov 19, 2003
Nov 19, 2003
411
412
413
414
execute_dlfiles="$execute_dlfiles $arg"
;;
tag)
tagname="$arg"
Aug 24, 2004
Aug 24, 2004
415
preserve_args="${preserve_args}=$arg"
Nov 19, 2003
Nov 19, 2003
416
417
418
419
420
# Check whether tagname contains only valid characters
case $tagname in
*[!-_A-Za-z0-9,/]*)
$echo "$progname: invalid tag name: $tagname" 1>&2
Aug 24, 2004
Aug 24, 2004
421
exit $EXIT_FAILURE
Nov 19, 2003
Nov 19, 2003
422
423
424
425
426
427
428
429
430
;;
esac
case $tagname in
CC)
# Don't test for the "default" C tag, as we know, it's there, but
# not specially marked.
;;
*)
Aug 24, 2004
Aug 24, 2004
431
if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev/null; then
Nov 19, 2003
Nov 19, 2003
432
433
taglist="$taglist $tagname"
# Evaluate the configuration.
Aug 24, 2004
Aug 24, 2004
434
eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`"
Nov 19, 2003
Nov 19, 2003
435
436
437
438
439
else
$echo "$progname: ignoring unknown tag $tagname" 1>&2
fi
;;
esac
Oct 21, 1999
Oct 21, 1999
440
441
442
443
444
445
446
447
448
449
450
451
;;
*)
eval "$prev=\$arg"
;;
esac
prev=
prevopt=
continue
fi
# Have we seen a non-optional argument yet?
Nov 19, 2003
Nov 19, 2003
452
case $arg in
Oct 21, 1999
Oct 21, 1999
453
454
455
456
457
--help)
show_help=yes
;;
--version)
Nov 19, 2003
Nov 19, 2003
458
459
$echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"
$echo
Apr 30, 2006
Apr 30, 2006
460
$echo "Copyright (C) 2005 Free Software Foundation, Inc."
Nov 19, 2003
Nov 19, 2003
461
462
$echo "This is free software; see the source for copying conditions. There is NO"
$echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
Apr 30, 2006
Apr 30, 2006
463
exit $?
Oct 21, 1999
Oct 21, 1999
464
465
466
;;
--config)
Aug 24, 2004
Aug 24, 2004
467
${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $progpath
Nov 19, 2003
Nov 19, 2003
468
469
# Now print the configurations for the tags.
for tagname in $taglist; do
Aug 24, 2004
Aug 24, 2004
470
${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath"
Nov 19, 2003
Nov 19, 2003
471
done
Apr 30, 2006
Apr 30, 2006
472
exit $?
Oct 21, 1999
Oct 21, 1999
473
474
475
;;
--debug)
Nov 19, 2003
Nov 19, 2003
476
$echo "$progname: enabling shell trace mode"
Oct 21, 1999
Oct 21, 1999
477
set -x
Aug 24, 2004
Aug 24, 2004
478
preserve_args="$preserve_args $arg"
Oct 21, 1999
Oct 21, 1999
479
480
481
482
483
484
485
;;
--dry-run | -n)
run=:
;;
--features)
Nov 19, 2003
Nov 19, 2003
486
$echo "host: $host"
Oct 21, 1999
Oct 21, 1999
487
if test "$build_libtool_libs" = yes; then
Nov 19, 2003
Nov 19, 2003
488
$echo "enable shared libraries"
Oct 21, 1999
Oct 21, 1999
489
else
Nov 19, 2003
Nov 19, 2003
490
$echo "disable shared libraries"
Oct 21, 1999
Oct 21, 1999
491
492
fi
if test "$build_old_libs" = yes; then
Nov 19, 2003
Nov 19, 2003
493
$echo "enable static libraries"
Oct 21, 1999
Oct 21, 1999
494
else
Nov 19, 2003
Nov 19, 2003
495
$echo "disable static libraries"
Oct 21, 1999
Oct 21, 1999
496
fi
Apr 30, 2006
Apr 30, 2006
497
exit $?
Oct 21, 1999
Oct 21, 1999
498
499
500
501
502
503
504
;;
--finish) mode="finish" ;;
--mode) prevopt="--mode" prev=mode ;;
--mode=*) mode="$optarg" ;;
Nov 19, 2003
Nov 19, 2003
505
506
--preserve-dup-deps) duplicate_deps="yes" ;;
Oct 21, 1999
Oct 21, 1999
507
508
--quiet | --silent)
show=:
Aug 24, 2004
Aug 24, 2004
509
preserve_args="$preserve_args $arg"
Oct 21, 1999
Oct 21, 1999
510
511
;;
Apr 30, 2006
Apr 30, 2006
512
513
514
515
516
--tag)
prevopt="--tag"
prev=tag
preserve_args="$preserve_args --tag"
;;
Nov 19, 2003
Nov 19, 2003
517
518
519
520
--tag=*)
set tag "$optarg" ${1+"$@"}
shift
prev=tag
Aug 24, 2004
Aug 24, 2004
521
preserve_args="$preserve_args --tag"
Nov 19, 2003
Nov 19, 2003
522
523
;;
Oct 21, 1999
Oct 21, 1999
524
525
526
527
528
529
530
531
-dlopen)
prevopt="-dlopen"
prev=execute_dlfiles
;;
-*)
$echo "$modename: unrecognized option \`$arg'" 1>&2
$echo "$help" 1>&2
Aug 24, 2004
Aug 24, 2004
532
exit $EXIT_FAILURE
Oct 21, 1999
Oct 21, 1999
533
534
535
536
537
538
539
540
541
542
543
544
;;
*)
nonopt="$arg"
break
;;
esac
done
if test -n "$prevopt"; then
$echo "$modename: option \`$prevopt' requires an argument" 1>&2
$echo "$help" 1>&2
Aug 24, 2004
Aug 24, 2004
545
exit $EXIT_FAILURE
Oct 21, 1999
Oct 21, 1999
546
547
fi
Apr 30, 2006
Apr 30, 2006
548
549
550
551
552
553
554
555
556
557
558
559
case $disable_libs in
no)
;;
shared)
build_libtool_libs=no
build_old_libs=yes
;;
static)
build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`
;;
esac
Nov 19, 2003
Nov 19, 2003
560
561
562
563
564
# If this variable is set in any of the actions, the command in it
# will be execed at the end. This prevents here-documents from being
# left over by shells.
exec_cmd=
Oct 21, 1999
Oct 21, 1999
565
566
567
568
if test -z "$show_help"; then
# Infer the operation mode.
if test -z "$mode"; then
Nov 19, 2003
Nov 19, 2003
569
$echo "*** Warning: inferring the mode of operation is deprecated." 1>&2
Apr 30, 2006
Apr 30, 2006
570
$echo "*** Future versions of Libtool will require --mode=MODE be specified." 1>&2
Nov 19, 2003
Nov 19, 2003
571
572
case $nonopt in
*cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*)
Oct 21, 1999
Oct 21, 1999
573
574
575
mode=link
for arg
do
Nov 19, 2003
Nov 19, 2003
576
case $arg in
Oct 21, 1999
Oct 21, 1999
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
-c)
mode=compile
break
;;
esac
done
;;
*db | *dbx | *strace | *truss)
mode=execute
;;
*install*|cp|mv)
mode=install
;;
*rm)
mode=uninstall
;;
*)
# If we have no mode, but dlfiles were specified, then do execute mode.
test -n "$execute_dlfiles" && mode=execute
# Just use the default operation mode.
if test -z "$mode"; then
if test -n "$nonopt"; then
$echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2
else
$echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2
fi
fi
;;
esac
fi
# Only execute mode is allowed to have -dlopen flags.
if test -n "$execute_dlfiles" && test "$mode" != execute; then
$echo "$modename: unrecognized option \`-dlopen'" 1>&2
$echo "$help" 1>&2
Aug 24, 2004
Aug 24, 2004
613
exit $EXIT_FAILURE
Oct 21, 1999
Oct 21, 1999
614
615
616
617
618
619
620
fi
# Change the help message to a mode-specific one.
generic_help="$help"
help="Try \`$modename --help --mode=$mode' for more information."
# These modes are in order of execution frequency so that they run quickly.
Nov 19, 2003
Nov 19, 2003
621
case $mode in
Oct 21, 1999
Oct 21, 1999
622
623
624
625
626
# libtool compile mode
compile)
modename="$modename: compile"
# Get the compilation command and the source file.
base_compile=
Nov 19, 2003
Nov 19, 2003
627
srcfile="$nonopt" # always keep a non-empty value in "srcfile"
Aug 24, 2004
Aug 24, 2004
628
suppress_opt=yes
Oct 21, 1999
Oct 21, 1999
629
suppress_output=
Nov 19, 2003
Nov 19, 2003
630
631
arg_mode=normal
libobj=
Aug 24, 2004
Aug 24, 2004
632
later=
Oct 21, 1999
Oct 21, 1999
633
634
635
for arg
do
Apr 30, 2006
Apr 30, 2006
636
case $arg_mode in
Nov 19, 2003
Nov 19, 2003
637
638
639
640
arg )
# do not "continue". Instead, add this to base_compile
lastarg="$arg"
arg_mode=normal
Oct 21, 1999
Oct 21, 1999
641
642
;;
Nov 19, 2003
Nov 19, 2003
643
target )
Oct 21, 1999
Oct 21, 1999
644
libobj="$arg"
Nov 19, 2003
Nov 19, 2003
645
arg_mode=normal
Oct 21, 1999
Oct 21, 1999
646
647
648
continue
;;
Nov 19, 2003
Nov 19, 2003
649
650
651
652
653
654
normal )
# Accept any command-line options.
case $arg in
-o)
if test -n "$libobj" ; then
$echo "$modename: you cannot specify \`-o' more than once" 1>&2
Aug 24, 2004
Aug 24, 2004
655
exit $EXIT_FAILURE
Nov 19, 2003
Nov 19, 2003
656
657
658
659
660
fi
arg_mode=target
continue
;;
Aug 24, 2004
Aug 24, 2004
661
662
-static | -prefer-pic | -prefer-non-pic)
later="$later $arg"
Nov 19, 2003
Nov 19, 2003
663
664
665
continue
;;
Aug 24, 2004
Aug 24, 2004
666
667
-no-suppress)
suppress_opt=no
Nov 19, 2003
Nov 19, 2003
668
669
670
671
672
673
674
675
676
677
678
679
continue
;;
-Xcompiler)
arg_mode=arg # the next one goes into the "base_compile" arg list
continue # The current "srcfile" will either be retained or
;; # replaced later. I would guess that would be a bug.
-Wc,*)
args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
lastarg=
save_ifs="$IFS"; IFS=','
Aug 24, 2004
Aug 24, 2004
680
for arg in $args; do
Nov 19, 2003
Nov 19, 2003
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
IFS="$save_ifs"
# Double-quote args containing other shell metacharacters.
# Many Bourne shells cannot handle close brackets correctly
# in scan sets, so we specify it separately.
case $arg in
*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
arg="\"$arg\""
;;
esac
lastarg="$lastarg $arg"
done
IFS="$save_ifs"
lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`
# Add the arguments to base_compile.
base_compile="$base_compile $lastarg"
continue
;;
* )
# Accept the current argument as the source file.
# The previous "srcfile" becomes the current argument.
#
lastarg="$srcfile"
srcfile="$arg"
;;
esac # case $arg
;;
esac # case $arg_mode
Oct 21, 1999
Oct 21, 1999
711
Nov 19, 2003
Nov 19, 2003
712
# Aesthetically quote the previous argument.
Oct 21, 1999
Oct 21, 1999
713
714
lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`
Nov 19, 2003
Nov 19, 2003
715
case $lastarg in
Oct 21, 1999
Oct 21, 1999
716
# Double-quote args containing other shell metacharacters.
Nov 19, 2003
Nov 19, 2003
717
# Many Bourne shells cannot handle close brackets correctly
Apr 30, 2006
Apr 30, 2006
718
719
720
721
# in scan sets, and some SunOS ksh mistreat backslash-escaping
# in scan sets (worked around with variable expansion),
# and furthermore cannot handle '|' '&' '(' ')' in scan sets
# at all, so we specify them separately.
Nov 19, 2003
Nov 19, 2003
722
*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
Oct 21, 1999
Oct 21, 1999
723
724
725
726
lastarg="\"$lastarg\""
;;
esac
Nov 19, 2003
Nov 19, 2003
727
728
base_compile="$base_compile $lastarg"
done # for arg
Oct 21, 1999
Oct 21, 1999
729
Nov 19, 2003
Nov 19, 2003
730
731
732
case $arg_mode in
arg)
$echo "$modename: you must specify an argument for -Xcompile"
Aug 24, 2004
Aug 24, 2004
733
exit $EXIT_FAILURE
Oct 21, 1999
Oct 21, 1999
734
;;
Nov 19, 2003
Nov 19, 2003
735
target)
Oct 21, 1999
Oct 21, 1999
736
$echo "$modename: you must specify a target with \`-o'" 1>&2
Aug 24, 2004
Aug 24, 2004
737
exit $EXIT_FAILURE
Oct 21, 1999
Oct 21, 1999
738
;;
Nov 19, 2003
Nov 19, 2003
739
740
741
742
*)
# Get the name of the library object.
[ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
;;
Oct 21, 1999
Oct 21, 1999
743
744
745
746
esac
# Recognize several different file suffixes.
# If the user specifies -o file.o, it is replaced with file.lo
Nov 19, 2003
Nov 19, 2003
747
748
xform='[cCFSifmso]'
case $libobj in
Oct 21, 1999
Oct 21, 1999
749
750
751
752
753
754
*.ada) xform=ada ;;
*.adb) xform=adb ;;
*.ads) xform=ads ;;
*.asm) xform=asm ;;
*.c++) xform=c++ ;;
*.cc) xform=cc ;;
Nov 19, 2003
Nov 19, 2003
755
756
*.ii) xform=ii ;;
*.class) xform=class ;;
Oct 21, 1999
Oct 21, 1999
757
758
759
760
*.cpp) xform=cpp ;;
*.cxx) xform=cxx ;;
*.f90) xform=f90 ;;
*.for) xform=for ;;
Nov 19, 2003
Nov 19, 2003
761
*.java) xform=java ;;
Oct 21, 1999
Oct 21, 1999
762
763
764
765
esac
libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`
Nov 19, 2003
Nov 19, 2003
766
case $libobj in
Oct 21, 1999
Oct 21, 1999
767
768
769
*.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
*)
$echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2
Aug 24, 2004
Aug 24, 2004
770
exit $EXIT_FAILURE
Oct 21, 1999
Oct 21, 1999
771
772
773
;;
esac
Aug 24, 2004
Aug 24, 2004
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
func_infer_tag $base_compile
for arg in $later; do
case $arg in
-static)
build_old_libs=yes
continue
;;
-prefer-pic)
pic_mode=yes
continue
;;
-prefer-non-pic)
pic_mode=no
continue
Nov 19, 2003
Nov 19, 2003
791
792
;;
esac
Aug 24, 2004
Aug 24, 2004
793
done
Nov 19, 2003
Nov 19, 2003
794
Apr 30, 2006
Apr 30, 2006
795
796
797
798
799
800
801
802
qlibobj=`$echo "X$libobj" | $Xsed -e "$sed_quote_subst"`
case $qlibobj in
*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
qlibobj="\"$qlibobj\"" ;;
esac
test "X$libobj" != "X$qlibobj" \
&& $echo "X$libobj" | grep '[]~#^*{};<>?"'"'"' &()|`$[]' \
&& $echo "$modename: libobj name \`$libobj' may not contain shell special characters."
Nov 19, 2003
Nov 19, 2003
803
804
805
806
807
808
809
810
811
objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
if test "X$xdir" = "X$obj"; then
xdir=
else
xdir=$xdir/
fi
lobj=${xdir}$objdir/$objname
Oct 21, 1999
Oct 21, 1999
812
813
814
if test -z "$base_compile"; then
$echo "$modename: you must specify a compilation command" 1>&2
$echo "$help" 1>&2
Aug 24, 2004
Aug 24, 2004
815
exit $EXIT_FAILURE
Oct 21, 1999
Oct 21, 1999
816
817
818
819
fi
# Delete any leftover library objects.
if test "$build_old_libs" = yes; then
Nov 19, 2003
Nov 19, 2003
820
removelist="$obj $lobj $libobj ${libobj}T"
Oct 21, 1999
Oct 21, 1999
821
else
Nov 19, 2003
Nov 19, 2003
822
removelist="$lobj $libobj ${libobj}T"
Oct 21, 1999
Oct 21, 1999
823
824
825
fi
$run $rm $removelist
Aug 24, 2004
Aug 24, 2004
826
trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15
Oct 21, 1999
Oct 21, 1999
827
Nov 19, 2003
Nov 19, 2003
828
829
830
831
832
833
834
835
836
837
838
# On Cygwin there's no "real" PIC flag so we must build both object types
case $host_os in
cygwin* | mingw* | pw32* | os2*)
pic_mode=default
;;
esac
if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then
# non-PIC code in shared libraries is not supported
pic_mode=default
fi
Oct 21, 1999
Oct 21, 1999
839
840
841
# Calculate the filename of the output object if compiler does
# not support -o with -c
if test "$compiler_c_o" = no; then
Nov 19, 2003
Nov 19, 2003
842
output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}
Oct 21, 1999
Oct 21, 1999
843
844
lockfile="$output_obj.lock"
removelist="$removelist $output_obj $lockfile"
Aug 24, 2004
Aug 24, 2004
845
trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15
Oct 21, 1999
Oct 21, 1999
846
else
Nov 19, 2003
Nov 19, 2003
847
output_obj=
Oct 21, 1999
Oct 21, 1999
848
849
850
851
852
853
854
need_locks=no
lockfile=
fi
# Lock this critical section if it is needed
# We use this script file to make the link, it avoids creating a new file
if test "$need_locks" = yes; then
Aug 24, 2004
Aug 24, 2004
855
until $run ln "$progpath" "$lockfile" 2>/dev/null; do
Oct 21, 1999
Oct 21, 1999
856
857
858
859
860
$show "Waiting for $lockfile to be removed"
sleep 2
done
elif test "$need_locks" = warn; then
if test -f "$lockfile"; then
Nov 19, 2003
Nov 19, 2003
861
$echo "\
Oct 21, 1999
Oct 21, 1999
862
863
864
865
866
867
868
869
870
871
872
*** ERROR, $lockfile exists and contains:
`cat $lockfile 2>/dev/null`
This indicates that another process is trying to use the same
temporary object file, and libtool could not work around it because
your compiler does not support \`-c' and \`-o' together. If you
repeat this compilation, it may succeed, by chance, but you had better
avoid parallel builds (make -j) in this platform, or get a better
compiler."
$run $rm $removelist
Aug 24, 2004
Aug 24, 2004
873
exit $EXIT_FAILURE
Oct 21, 1999
Oct 21, 1999
874
fi
Apr 30, 2006
Apr 30, 2006
875
$echo "$srcfile" > "$lockfile"
Oct 21, 1999
Oct 21, 1999
876
877
878
879
880
fi
if test -n "$fix_srcfile_path"; then
eval srcfile=\"$fix_srcfile_path\"
fi
Apr 30, 2006
Apr 30, 2006
881
882
883
884
885
qsrcfile=`$echo "X$srcfile" | $Xsed -e "$sed_quote_subst"`
case $qsrcfile in
*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
qsrcfile="\"$qsrcfile\"" ;;
esac
Oct 21, 1999
Oct 21, 1999
886
Nov 19, 2003
Nov 19, 2003
887
888
889
890
891
892
893
894
895
896
897
898
899
900
$run $rm "$libobj" "${libobj}T"
# Create a libtool object file (analogous to a ".la" file),
# but don't create it if we're doing a dry run.
test -z "$run" && cat > ${libobj}T <<EOF
# $libobj - a libtool object file
# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
#
# Please DO NOT delete this file!
# It is necessary for linking the library.
# Name of the PIC object.
EOF
Oct 21, 1999
Oct 21, 1999
901
902
903
904
905
# Only build a PIC object if we are building libtool libraries.
if test "$build_libtool_libs" = yes; then
# Without this assignment, base_compile gets emptied.
fbsd_hideous_sh_bug=$base_compile
Nov 19, 2003
Nov 19, 2003
906
if test "$pic_mode" != no; then
Apr 30, 2006
Apr 30, 2006
907
command="$base_compile $qsrcfile $pic_flag"
Nov 19, 2003
Nov 19, 2003
908
909
else
# Don't build PIC code
Apr 30, 2006
Apr 30, 2006
910
command="$base_compile $qsrcfile"
Nov 19, 2003
Nov 19, 2003
911
fi
Oct 21, 1999
Oct 21, 1999
912
Nov 19, 2003
Nov 19, 2003
913
914
915
if test ! -d "${xdir}$objdir"; then
$show "$mkdir ${xdir}$objdir"
$run $mkdir ${xdir}$objdir
Apr 30, 2006
Apr 30, 2006
916
917
918
exit_status=$?
if test "$exit_status" -ne 0 && test ! -d "${xdir}$objdir"; then
exit $exit_status
Oct 21, 1999
Oct 21, 1999
919
920
fi
fi
Nov 19, 2003
Nov 19, 2003
921
922
923
924
if test -z "$output_obj"; then
# Place PIC objects in $objdir
command="$command -o $lobj"
Oct 21, 1999
Oct 21, 1999
925
926
fi
Nov 19, 2003
Nov 19, 2003
927
928
$run $rm "$lobj" "$output_obj"
Oct 21, 1999
Oct 21, 1999
929
930
931
932
$show "$command"
if $run eval "$command"; then :
else
test -n "$output_obj" && $run $rm $removelist
Aug 24, 2004
Aug 24, 2004
933
exit $EXIT_FAILURE
Oct 21, 1999
Oct 21, 1999
934
935
936
fi
if test "$need_locks" = warn &&
Nov 19, 2003
Nov 19, 2003
937
938
test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
$echo "\
Oct 21, 1999
Oct 21, 1999
939
940
941
942
943
944
945
946
947
948
949
950
951
952
*** ERROR, $lockfile contains:
`cat $lockfile 2>/dev/null`
but it should contain:
$srcfile
This indicates that another process is trying to use the same
temporary object file, and libtool could not work around it because
your compiler does not support \`-c' and \`-o' together. If you
repeat this compilation, it may succeed, by chance, but you had better
avoid parallel builds (make -j) in this platform, or get a better
compiler."
$run $rm $removelist
Aug 24, 2004
Aug 24, 2004
953
exit $EXIT_FAILURE
Oct 21, 1999
Oct 21, 1999
954
955
956
fi
# Just move the object if needed, then go on to compile the next one
Nov 19, 2003
Nov 19, 2003
957
958
959
if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then
$show "$mv $output_obj $lobj"
if $run $mv $output_obj $lobj; then :
Oct 21, 1999
Oct 21, 1999
960
961
962
963
964
965
966
else
error=$?
$run $rm $removelist
exit $error
fi
fi
Nov 19, 2003
Nov 19, 2003
967
968
969
# Append the name of the PIC object to the libtool object file.
test -z "$run" && cat >> ${libobj}T <<EOF
pic_object='$objdir/$objname'
Oct 21, 1999
Oct 21, 1999
970
Nov 19, 2003
Nov 19, 2003
971
EOF
Oct 21, 1999
Oct 21, 1999
972
973
# Allow error messages only from the first compilation.
Aug 24, 2004
Aug 24, 2004
974
975
976
if test "$suppress_opt" = yes; then
suppress_output=' >/dev/null 2>&1'
fi
Nov 19, 2003
Nov 19, 2003
977
978
979
980
981
982
983
else
# No PIC object so indicate it doesn't exist in the libtool
# object file.
test -z "$run" && cat >> ${libobj}T <<EOF
pic_object=none
EOF
Oct 21, 1999
Oct 21, 1999
984
985
986
987
fi
# Only build a position-dependent object if we build old libraries.
if test "$build_old_libs" = yes; then
Nov 19, 2003
Nov 19, 2003
988
989
if test "$pic_mode" != yes; then
# Don't build PIC code
Apr 30, 2006
Apr 30, 2006
990
command="$base_compile $qsrcfile"
Nov 19, 2003
Nov 19, 2003
991
else
Apr 30, 2006
Apr 30, 2006
992
command="$base_compile $qsrcfile $pic_flag"
Nov 19, 2003
Nov 19, 2003
993
fi
Oct 21, 1999
Oct 21, 1999
994
995
996
997
998
999
if test "$compiler_c_o" = yes; then
command="$command -o $obj"
fi
# Suppress compiler output if we already did a PIC compilation.
command="$command$suppress_output"
Nov 19, 2003
Nov 19, 2003
1000
$run $rm "$obj" "$output_obj"