annotate src/flac-1.2.1/ltmain.sh @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 98c1576536ae
children
rev   line source
cannam@86 1 # ltmain.sh - Provide generalized library-building support services.
cannam@86 2 # NOTE: Changing this file will not affect anything until you rerun configure.
cannam@86 3 #
cannam@86 4 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
cannam@86 5 # Free Software Foundation, Inc.
cannam@86 6 # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
cannam@86 7 #
cannam@86 8 # This program is free software; you can redistribute it and/or modify
cannam@86 9 # it under the terms of the GNU General Public License as published by
cannam@86 10 # the Free Software Foundation; either version 2 of the License, or
cannam@86 11 # (at your option) any later version.
cannam@86 12 #
cannam@86 13 # This program is distributed in the hope that it will be useful, but
cannam@86 14 # WITHOUT ANY WARRANTY; without even the implied warranty of
cannam@86 15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
cannam@86 16 # General Public License for more details.
cannam@86 17 #
cannam@86 18 # You should have received a copy of the GNU General Public License
cannam@86 19 # along with this program; if not, write to the Free Software
cannam@86 20 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
cannam@86 21 #
cannam@86 22 # As a special exception to the GNU General Public License, if you
cannam@86 23 # distribute this file as part of a program that contains a
cannam@86 24 # configuration script generated by Autoconf, you may include it under
cannam@86 25 # the same distribution terms that you use for the rest of that program.
cannam@86 26
cannam@86 27 basename="s,^.*/,,g"
cannam@86 28
cannam@86 29 # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
cannam@86 30 # is ksh but when the shell is invoked as "sh" and the current value of
cannam@86 31 # the _XPG environment variable is not equal to 1 (one), the special
cannam@86 32 # positional parameter $0, within a function call, is the name of the
cannam@86 33 # function.
cannam@86 34 progpath="$0"
cannam@86 35
cannam@86 36 # The name of this program:
cannam@86 37 progname=`echo "$progpath" | $SED $basename`
cannam@86 38 modename="$progname"
cannam@86 39
cannam@86 40 # Global variables:
cannam@86 41 EXIT_SUCCESS=0
cannam@86 42 EXIT_FAILURE=1
cannam@86 43
cannam@86 44 PROGRAM=ltmain.sh
cannam@86 45 PACKAGE=libtool
cannam@86 46 VERSION=1.5.16
cannam@86 47 TIMESTAMP=" (1.1220.2.235 2005/04/25 18:13:26)"
cannam@86 48
cannam@86 49 # See if we are running on zsh, and set the options which allow our
cannam@86 50 # commands through without removal of \ escapes.
cannam@86 51 if test -n "${ZSH_VERSION+set}" ; then
cannam@86 52 setopt NO_GLOB_SUBST
cannam@86 53 fi
cannam@86 54
cannam@86 55 # Check that we have a working $echo.
cannam@86 56 if test "X$1" = X--no-reexec; then
cannam@86 57 # Discard the --no-reexec flag, and continue.
cannam@86 58 shift
cannam@86 59 elif test "X$1" = X--fallback-echo; then
cannam@86 60 # Avoid inline document here, it may be left over
cannam@86 61 :
cannam@86 62 elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
cannam@86 63 # Yippee, $echo works!
cannam@86 64 :
cannam@86 65 else
cannam@86 66 # Restart under the correct shell, and then maybe $echo will work.
cannam@86 67 exec $SHELL "$progpath" --no-reexec ${1+"$@"}
cannam@86 68 fi
cannam@86 69
cannam@86 70 if test "X$1" = X--fallback-echo; then
cannam@86 71 # used as fallback echo
cannam@86 72 shift
cannam@86 73 cat <<EOF
cannam@86 74 $*
cannam@86 75 EOF
cannam@86 76 exit $EXIT_SUCCESS
cannam@86 77 fi
cannam@86 78
cannam@86 79 default_mode=
cannam@86 80 help="Try \`$progname --help' for more information."
cannam@86 81 magic="%%%MAGIC variable%%%"
cannam@86 82 mkdir="mkdir"
cannam@86 83 mv="mv -f"
cannam@86 84 rm="rm -f"
cannam@86 85
cannam@86 86 # Sed substitution that helps us do robust quoting. It backslashifies
cannam@86 87 # metacharacters that are still active within double-quoted strings.
cannam@86 88 Xsed="${SED}"' -e 1s/^X//'
cannam@86 89 sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g'
cannam@86 90 # test EBCDIC or ASCII
cannam@86 91 case `echo A|tr A '\301'` in
cannam@86 92 A) # EBCDIC based system
cannam@86 93 SP2NL="tr '\100' '\n'"
cannam@86 94 NL2SP="tr '\r\n' '\100\100'"
cannam@86 95 ;;
cannam@86 96 *) # Assume ASCII based system
cannam@86 97 SP2NL="tr '\040' '\012'"
cannam@86 98 NL2SP="tr '\015\012' '\040\040'"
cannam@86 99 ;;
cannam@86 100 esac
cannam@86 101
cannam@86 102 # NLS nuisances.
cannam@86 103 # Only set LANG and LC_ALL to C if already set.
cannam@86 104 # These must not be set unconditionally because not all systems understand
cannam@86 105 # e.g. LANG=C (notably SCO).
cannam@86 106 # We save the old values to restore during execute mode.
cannam@86 107 if test "${LC_ALL+set}" = set; then
cannam@86 108 save_LC_ALL="$LC_ALL"; LC_ALL=C; export LC_ALL
cannam@86 109 fi
cannam@86 110 if test "${LANG+set}" = set; then
cannam@86 111 save_LANG="$LANG"; LANG=C; export LANG
cannam@86 112 fi
cannam@86 113
cannam@86 114 # Make sure IFS has a sensible default
cannam@86 115 lt_nl='
cannam@86 116 '
cannam@86 117 IFS=" $lt_nl"
cannam@86 118
cannam@86 119 if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
cannam@86 120 $echo "$modename: not configured to build any kind of library" 1>&2
cannam@86 121 $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2
cannam@86 122 exit $EXIT_FAILURE
cannam@86 123 fi
cannam@86 124
cannam@86 125 # Global variables.
cannam@86 126 mode=$default_mode
cannam@86 127 nonopt=
cannam@86 128 prev=
cannam@86 129 prevopt=
cannam@86 130 run=
cannam@86 131 show="$echo"
cannam@86 132 show_help=
cannam@86 133 execute_dlfiles=
cannam@86 134 lo2o="s/\\.lo\$/.${objext}/"
cannam@86 135 o2lo="s/\\.${objext}\$/.lo/"
cannam@86 136 quote_scanset='[[~#^*{};<>?'"'"' ]'
cannam@86 137
cannam@86 138 #####################################
cannam@86 139 # Shell function definitions:
cannam@86 140 # This seems to be the best place for them
cannam@86 141
cannam@86 142 # func_win32_libid arg
cannam@86 143 # return the library type of file 'arg'
cannam@86 144 #
cannam@86 145 # Need a lot of goo to handle *both* DLLs and import libs
cannam@86 146 # Has to be a shell function in order to 'eat' the argument
cannam@86 147 # that is supplied when $file_magic_command is called.
cannam@86 148 func_win32_libid ()
cannam@86 149 {
cannam@86 150 win32_libid_type="unknown"
cannam@86 151 win32_fileres=`file -L $1 2>/dev/null`
cannam@86 152 case $win32_fileres in
cannam@86 153 *ar\ archive\ import\ library*) # definitely import
cannam@86 154 win32_libid_type="x86 archive import"
cannam@86 155 ;;
cannam@86 156 *ar\ archive*) # could be an import, or static
cannam@86 157 if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | \
cannam@86 158 $EGREP -e 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then
cannam@86 159 win32_nmres=`eval $NM -f posix -A $1 | \
cannam@86 160 sed -n -e '1,100{/ I /{x;/import/!{s/^/import/;h;p;};x;};}'`
cannam@86 161 if test "X$win32_nmres" = "Ximport" ; then
cannam@86 162 win32_libid_type="x86 archive import"
cannam@86 163 else
cannam@86 164 win32_libid_type="x86 archive static"
cannam@86 165 fi
cannam@86 166 fi
cannam@86 167 ;;
cannam@86 168 *DLL*)
cannam@86 169 win32_libid_type="x86 DLL"
cannam@86 170 ;;
cannam@86 171 *executable*) # but shell scripts are "executable" too...
cannam@86 172 case $win32_fileres in
cannam@86 173 *MS\ Windows\ PE\ Intel*)
cannam@86 174 win32_libid_type="x86 DLL"
cannam@86 175 ;;
cannam@86 176 esac
cannam@86 177 ;;
cannam@86 178 esac
cannam@86 179 $echo $win32_libid_type
cannam@86 180 }
cannam@86 181
cannam@86 182
cannam@86 183 # func_infer_tag arg
cannam@86 184 # Infer tagged configuration to use if any are available and
cannam@86 185 # if one wasn't chosen via the "--tag" command line option.
cannam@86 186 # Only attempt this if the compiler in the base compile
cannam@86 187 # command doesn't match the default compiler.
cannam@86 188 # arg is usually of the form 'gcc ...'
cannam@86 189 func_infer_tag ()
cannam@86 190 {
cannam@86 191 if test -n "$available_tags" && test -z "$tagname"; then
cannam@86 192 CC_quoted=
cannam@86 193 for arg in $CC; do
cannam@86 194 case $arg in
cannam@86 195 *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")
cannam@86 196 arg="\"$arg\""
cannam@86 197 ;;
cannam@86 198 esac
cannam@86 199 CC_quoted="$CC_quoted $arg"
cannam@86 200 done
cannam@86 201 case $@ in
cannam@86 202 # Blanks in the command may have been stripped by the calling shell,
cannam@86 203 # but not from the CC environment variable when configure was run.
cannam@86 204 " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) ;;
cannam@86 205 # Blanks at the start of $base_compile will cause this to fail
cannam@86 206 # if we don't check for them as well.
cannam@86 207 *)
cannam@86 208 for z in $available_tags; do
cannam@86 209 if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then
cannam@86 210 # Evaluate the configuration.
cannam@86 211 eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
cannam@86 212 CC_quoted=
cannam@86 213 for arg in $CC; do
cannam@86 214 # Double-quote args containing other shell metacharacters.
cannam@86 215 case $arg in
cannam@86 216 *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")
cannam@86 217 arg="\"$arg\""
cannam@86 218 ;;
cannam@86 219 esac
cannam@86 220 CC_quoted="$CC_quoted $arg"
cannam@86 221 done
cannam@86 222 case "$@ " in
cannam@86 223 " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*)
cannam@86 224 # The compiler in the base compile command matches
cannam@86 225 # the one in the tagged configuration.
cannam@86 226 # Assume this is the tagged configuration we want.
cannam@86 227 tagname=$z
cannam@86 228 break
cannam@86 229 ;;
cannam@86 230 esac
cannam@86 231 fi
cannam@86 232 done
cannam@86 233 # If $tagname still isn't set, then no tagged configuration
cannam@86 234 # was found and let the user know that the "--tag" command
cannam@86 235 # line option must be used.
cannam@86 236 if test -z "$tagname"; then
cannam@86 237 $echo "$modename: unable to infer tagged configuration"
cannam@86 238 $echo "$modename: specify a tag with \`--tag'" 1>&2
cannam@86 239 exit $EXIT_FAILURE
cannam@86 240 # else
cannam@86 241 # $echo "$modename: using $tagname tagged configuration"
cannam@86 242 fi
cannam@86 243 ;;
cannam@86 244 esac
cannam@86 245 fi
cannam@86 246 }
cannam@86 247
cannam@86 248
cannam@86 249 # func_extract_an_archive dir oldlib
cannam@86 250 func_extract_an_archive ()
cannam@86 251 {
cannam@86 252 f_ex_an_ar_dir="$1"; shift
cannam@86 253 f_ex_an_ar_oldlib="$1"
cannam@86 254
cannam@86 255 $show "(cd $f_ex_an_ar_dir && $AR x $f_ex_an_ar_oldlib)"
cannam@86 256 $run eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_oldlib)" || exit $?
cannam@86 257 if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
cannam@86 258 :
cannam@86 259 else
cannam@86 260 $echo "$modename: ERROR: object name conflicts: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" 1>&2
cannam@86 261 exit $EXIT_FAILURE
cannam@86 262 fi
cannam@86 263 }
cannam@86 264
cannam@86 265 # func_extract_archives gentop oldlib ...
cannam@86 266 func_extract_archives ()
cannam@86 267 {
cannam@86 268 my_gentop="$1"; shift
cannam@86 269 my_oldlibs=${1+"$@"}
cannam@86 270 my_oldobjs=""
cannam@86 271 my_xlib=""
cannam@86 272 my_xabs=""
cannam@86 273 my_xdir=""
cannam@86 274 my_status=""
cannam@86 275
cannam@86 276 $show "${rm}r $my_gentop"
cannam@86 277 $run ${rm}r "$my_gentop"
cannam@86 278 $show "$mkdir $my_gentop"
cannam@86 279 $run $mkdir "$my_gentop"
cannam@86 280 my_status=$?
cannam@86 281 if test "$my_status" -ne 0 && test ! -d "$my_gentop"; then
cannam@86 282 exit $my_status
cannam@86 283 fi
cannam@86 284
cannam@86 285 for my_xlib in $my_oldlibs; do
cannam@86 286 # Extract the objects.
cannam@86 287 case $my_xlib in
cannam@86 288 [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;;
cannam@86 289 *) my_xabs=`pwd`"/$my_xlib" ;;
cannam@86 290 esac
cannam@86 291 my_xlib=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'`
cannam@86 292 my_xdir="$my_gentop/$my_xlib"
cannam@86 293
cannam@86 294 $show "${rm}r $my_xdir"
cannam@86 295 $run ${rm}r "$my_xdir"
cannam@86 296 $show "$mkdir $my_xdir"
cannam@86 297 $run $mkdir "$my_xdir"
cannam@86 298 status=$?
cannam@86 299 if test "$status" -ne 0 && test ! -d "$my_xdir"; then
cannam@86 300 exit $status
cannam@86 301 fi
cannam@86 302 case $host in
cannam@86 303 *-darwin*)
cannam@86 304 $show "Extracting $my_xabs"
cannam@86 305 # Do not bother doing anything if just a dry run
cannam@86 306 if test -z "$run"; then
cannam@86 307 darwin_orig_dir=`pwd`
cannam@86 308 cd $my_xdir || exit $?
cannam@86 309 darwin_archive=$my_xabs
cannam@86 310 darwin_curdir=`pwd`
cannam@86 311 darwin_base_archive=`$echo "X$darwin_archive" | $Xsed -e 's%^.*/%%'`
cannam@86 312 darwin_arches=`lipo -info "$darwin_archive" 2>/dev/null | $EGREP Architectures 2>/dev/null`
cannam@86 313 if test -n "$darwin_arches"; then
cannam@86 314 darwin_arches=`echo "$darwin_arches" | $SED -e 's/.*are://'`
cannam@86 315 darwin_arch=
cannam@86 316 $show "$darwin_base_archive has multiple architectures $darwin_arches"
cannam@86 317 for darwin_arch in $darwin_arches ; do
cannam@86 318 mkdir -p "unfat-$$/${darwin_base_archive}-${darwin_arch}"
cannam@86 319 lipo -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}"
cannam@86 320 cd "unfat-$$/${darwin_base_archive}-${darwin_arch}"
cannam@86 321 func_extract_an_archive "`pwd`" "${darwin_base_archive}"
cannam@86 322 cd "$darwin_curdir"
cannam@86 323 $rm "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}"
cannam@86 324 done # $darwin_arches
cannam@86 325 ## Okay now we have a bunch of thin objects, gotta fatten them up :)
cannam@86 326 darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print| xargs basename | sort -u | $NL2SP`
cannam@86 327 darwin_file=
cannam@86 328 darwin_files=
cannam@86 329 for darwin_file in $darwin_filelist; do
cannam@86 330 darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP`
cannam@86 331 lipo -create -output "$darwin_file" $darwin_files
cannam@86 332 done # $darwin_filelist
cannam@86 333 ${rm}r unfat-$$
cannam@86 334 cd "$darwin_orig_dir"
cannam@86 335 else
cannam@86 336 cd "$darwin_orig_dir"
cannam@86 337 func_extract_an_archive "$my_xdir" "$my_xabs"
cannam@86 338 fi # $darwin_arches
cannam@86 339 fi # $run
cannam@86 340 ;;
cannam@86 341 *)
cannam@86 342 func_extract_an_archive "$my_xdir" "$my_xabs"
cannam@86 343 ;;
cannam@86 344 esac
cannam@86 345 my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
cannam@86 346 done
cannam@86 347 func_extract_archives_result="$my_oldobjs"
cannam@86 348 }
cannam@86 349 # End of Shell function definitions
cannam@86 350 #####################################
cannam@86 351
cannam@86 352 # Darwin sucks
cannam@86 353 eval std_shrext=\"$shrext_cmds\"
cannam@86 354
cannam@86 355 # Parse our command line options once, thoroughly.
cannam@86 356 while test "$#" -gt 0
cannam@86 357 do
cannam@86 358 arg="$1"
cannam@86 359 shift
cannam@86 360
cannam@86 361 case $arg in
cannam@86 362 -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
cannam@86 363 *) optarg= ;;
cannam@86 364 esac
cannam@86 365
cannam@86 366 # If the previous option needs an argument, assign it.
cannam@86 367 if test -n "$prev"; then
cannam@86 368 case $prev in
cannam@86 369 execute_dlfiles)
cannam@86 370 execute_dlfiles="$execute_dlfiles $arg"
cannam@86 371 ;;
cannam@86 372 tag)
cannam@86 373 tagname="$arg"
cannam@86 374 preserve_args="${preserve_args}=$arg"
cannam@86 375
cannam@86 376 # Check whether tagname contains only valid characters
cannam@86 377 case $tagname in
cannam@86 378 *[!-_A-Za-z0-9,/]*)
cannam@86 379 $echo "$progname: invalid tag name: $tagname" 1>&2
cannam@86 380 exit $EXIT_FAILURE
cannam@86 381 ;;
cannam@86 382 esac
cannam@86 383
cannam@86 384 case $tagname in
cannam@86 385 CC)
cannam@86 386 # Don't test for the "default" C tag, as we know, it's there, but
cannam@86 387 # not specially marked.
cannam@86 388 ;;
cannam@86 389 *)
cannam@86 390 if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev/null; then
cannam@86 391 taglist="$taglist $tagname"
cannam@86 392 # Evaluate the configuration.
cannam@86 393 eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`"
cannam@86 394 else
cannam@86 395 $echo "$progname: ignoring unknown tag $tagname" 1>&2
cannam@86 396 fi
cannam@86 397 ;;
cannam@86 398 esac
cannam@86 399 ;;
cannam@86 400 *)
cannam@86 401 eval "$prev=\$arg"
cannam@86 402 ;;
cannam@86 403 esac
cannam@86 404
cannam@86 405 prev=
cannam@86 406 prevopt=
cannam@86 407 continue
cannam@86 408 fi
cannam@86 409
cannam@86 410 # Have we seen a non-optional argument yet?
cannam@86 411 case $arg in
cannam@86 412 --help)
cannam@86 413 show_help=yes
cannam@86 414 ;;
cannam@86 415
cannam@86 416 --version)
cannam@86 417 $echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"
cannam@86 418 $echo
cannam@86 419 $echo "Copyright (C) 2005 Free Software Foundation, Inc."
cannam@86 420 $echo "This is free software; see the source for copying conditions. There is NO"
cannam@86 421 $echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
cannam@86 422 exit $?
cannam@86 423 ;;
cannam@86 424
cannam@86 425 --config)
cannam@86 426 ${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $progpath
cannam@86 427 # Now print the configurations for the tags.
cannam@86 428 for tagname in $taglist; do
cannam@86 429 ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath"
cannam@86 430 done
cannam@86 431 exit $?
cannam@86 432 ;;
cannam@86 433
cannam@86 434 --debug)
cannam@86 435 $echo "$progname: enabling shell trace mode"
cannam@86 436 set -x
cannam@86 437 preserve_args="$preserve_args $arg"
cannam@86 438 ;;
cannam@86 439
cannam@86 440 --dry-run | -n)
cannam@86 441 run=:
cannam@86 442 ;;
cannam@86 443
cannam@86 444 --features)
cannam@86 445 $echo "host: $host"
cannam@86 446 if test "$build_libtool_libs" = yes; then
cannam@86 447 $echo "enable shared libraries"
cannam@86 448 else
cannam@86 449 $echo "disable shared libraries"
cannam@86 450 fi
cannam@86 451 if test "$build_old_libs" = yes; then
cannam@86 452 $echo "enable static libraries"
cannam@86 453 else
cannam@86 454 $echo "disable static libraries"
cannam@86 455 fi
cannam@86 456 exit $?
cannam@86 457 ;;
cannam@86 458
cannam@86 459 --finish) mode="finish" ;;
cannam@86 460
cannam@86 461 --mode) prevopt="--mode" prev=mode ;;
cannam@86 462 --mode=*) mode="$optarg" ;;
cannam@86 463
cannam@86 464 --preserve-dup-deps) duplicate_deps="yes" ;;
cannam@86 465
cannam@86 466 --quiet | --silent)
cannam@86 467 show=:
cannam@86 468 preserve_args="$preserve_args $arg"
cannam@86 469 ;;
cannam@86 470
cannam@86 471 --tag) prevopt="--tag" prev=tag ;;
cannam@86 472 --tag=*)
cannam@86 473 set tag "$optarg" ${1+"$@"}
cannam@86 474 shift
cannam@86 475 prev=tag
cannam@86 476 preserve_args="$preserve_args --tag"
cannam@86 477 ;;
cannam@86 478
cannam@86 479 -dlopen)
cannam@86 480 prevopt="-dlopen"
cannam@86 481 prev=execute_dlfiles
cannam@86 482 ;;
cannam@86 483
cannam@86 484 -*)
cannam@86 485 $echo "$modename: unrecognized option \`$arg'" 1>&2
cannam@86 486 $echo "$help" 1>&2
cannam@86 487 exit $EXIT_FAILURE
cannam@86 488 ;;
cannam@86 489
cannam@86 490 *)
cannam@86 491 nonopt="$arg"
cannam@86 492 break
cannam@86 493 ;;
cannam@86 494 esac
cannam@86 495 done
cannam@86 496
cannam@86 497 if test -n "$prevopt"; then
cannam@86 498 $echo "$modename: option \`$prevopt' requires an argument" 1>&2
cannam@86 499 $echo "$help" 1>&2
cannam@86 500 exit $EXIT_FAILURE
cannam@86 501 fi
cannam@86 502
cannam@86 503 # If this variable is set in any of the actions, the command in it
cannam@86 504 # will be execed at the end. This prevents here-documents from being
cannam@86 505 # left over by shells.
cannam@86 506 exec_cmd=
cannam@86 507
cannam@86 508 if test -z "$show_help"; then
cannam@86 509
cannam@86 510 # Infer the operation mode.
cannam@86 511 if test -z "$mode"; then
cannam@86 512 $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2
cannam@86 513 $echo "*** Future versions of Libtool will require --mode=MODE be specified." 1>&2
cannam@86 514 case $nonopt in
cannam@86 515 *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*)
cannam@86 516 mode=link
cannam@86 517 for arg
cannam@86 518 do
cannam@86 519 case $arg in
cannam@86 520 -c)
cannam@86 521 mode=compile
cannam@86 522 break
cannam@86 523 ;;
cannam@86 524 esac
cannam@86 525 done
cannam@86 526 ;;
cannam@86 527 *db | *dbx | *strace | *truss)
cannam@86 528 mode=execute
cannam@86 529 ;;
cannam@86 530 *install*|cp|mv)
cannam@86 531 mode=install
cannam@86 532 ;;
cannam@86 533 *rm)
cannam@86 534 mode=uninstall
cannam@86 535 ;;
cannam@86 536 *)
cannam@86 537 # If we have no mode, but dlfiles were specified, then do execute mode.
cannam@86 538 test -n "$execute_dlfiles" && mode=execute
cannam@86 539
cannam@86 540 # Just use the default operation mode.
cannam@86 541 if test -z "$mode"; then
cannam@86 542 if test -n "$nonopt"; then
cannam@86 543 $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2
cannam@86 544 else
cannam@86 545 $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2
cannam@86 546 fi
cannam@86 547 fi
cannam@86 548 ;;
cannam@86 549 esac
cannam@86 550 fi
cannam@86 551
cannam@86 552 # Only execute mode is allowed to have -dlopen flags.
cannam@86 553 if test -n "$execute_dlfiles" && test "$mode" != execute; then
cannam@86 554 $echo "$modename: unrecognized option \`-dlopen'" 1>&2
cannam@86 555 $echo "$help" 1>&2
cannam@86 556 exit $EXIT_FAILURE
cannam@86 557 fi
cannam@86 558
cannam@86 559 # Change the help message to a mode-specific one.
cannam@86 560 generic_help="$help"
cannam@86 561 help="Try \`$modename --help --mode=$mode' for more information."
cannam@86 562
cannam@86 563 # These modes are in order of execution frequency so that they run quickly.
cannam@86 564 case $mode in
cannam@86 565 # libtool compile mode
cannam@86 566 compile)
cannam@86 567 modename="$modename: compile"
cannam@86 568 # Get the compilation command and the source file.
cannam@86 569 base_compile=
cannam@86 570 srcfile="$nonopt" # always keep a non-empty value in "srcfile"
cannam@86 571 suppress_opt=yes
cannam@86 572 suppress_output=
cannam@86 573 arg_mode=normal
cannam@86 574 libobj=
cannam@86 575 later=
cannam@86 576
cannam@86 577 for arg
cannam@86 578 do
cannam@86 579 case "$arg_mode" in
cannam@86 580 arg )
cannam@86 581 # do not "continue". Instead, add this to base_compile
cannam@86 582 lastarg="$arg"
cannam@86 583 arg_mode=normal
cannam@86 584 ;;
cannam@86 585
cannam@86 586 target )
cannam@86 587 libobj="$arg"
cannam@86 588 arg_mode=normal
cannam@86 589 continue
cannam@86 590 ;;
cannam@86 591
cannam@86 592 normal )
cannam@86 593 # Accept any command-line options.
cannam@86 594 case $arg in
cannam@86 595 -o)
cannam@86 596 if test -n "$libobj" ; then
cannam@86 597 $echo "$modename: you cannot specify \`-o' more than once" 1>&2
cannam@86 598 exit $EXIT_FAILURE
cannam@86 599 fi
cannam@86 600 arg_mode=target
cannam@86 601 continue
cannam@86 602 ;;
cannam@86 603
cannam@86 604 -static | -prefer-pic | -prefer-non-pic)
cannam@86 605 later="$later $arg"
cannam@86 606 continue
cannam@86 607 ;;
cannam@86 608
cannam@86 609 -no-suppress)
cannam@86 610 suppress_opt=no
cannam@86 611 continue
cannam@86 612 ;;
cannam@86 613
cannam@86 614 -Xcompiler)
cannam@86 615 arg_mode=arg # the next one goes into the "base_compile" arg list
cannam@86 616 continue # The current "srcfile" will either be retained or
cannam@86 617 ;; # replaced later. I would guess that would be a bug.
cannam@86 618
cannam@86 619 -Wc,*)
cannam@86 620 args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
cannam@86 621 lastarg=
cannam@86 622 save_ifs="$IFS"; IFS=','
cannam@86 623 for arg in $args; do
cannam@86 624 IFS="$save_ifs"
cannam@86 625
cannam@86 626 # Double-quote args containing other shell metacharacters.
cannam@86 627 # Many Bourne shells cannot handle close brackets correctly
cannam@86 628 # in scan sets, so we specify it separately.
cannam@86 629 case $arg in
cannam@86 630 *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")
cannam@86 631 arg="\"$arg\""
cannam@86 632 ;;
cannam@86 633 esac
cannam@86 634 lastarg="$lastarg $arg"
cannam@86 635 done
cannam@86 636 IFS="$save_ifs"
cannam@86 637 lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`
cannam@86 638
cannam@86 639 # Add the arguments to base_compile.
cannam@86 640 base_compile="$base_compile $lastarg"
cannam@86 641 continue
cannam@86 642 ;;
cannam@86 643
cannam@86 644 * )
cannam@86 645 # Accept the current argument as the source file.
cannam@86 646 # The previous "srcfile" becomes the current argument.
cannam@86 647 #
cannam@86 648 lastarg="$srcfile"
cannam@86 649 srcfile="$arg"
cannam@86 650 ;;
cannam@86 651 esac # case $arg
cannam@86 652 ;;
cannam@86 653 esac # case $arg_mode
cannam@86 654
cannam@86 655 # Aesthetically quote the previous argument.
cannam@86 656 lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`
cannam@86 657
cannam@86 658 case $lastarg in
cannam@86 659 # Double-quote args containing other shell metacharacters.
cannam@86 660 # Many Bourne shells cannot handle close brackets correctly
cannam@86 661 # in scan sets, and some SunOS ksh mistreat backslash-escaping
cannam@86 662 # in scan sets (worked around with variable expansion),
cannam@86 663 # and furthermore cannot handle '|' '&' '(' ')' in scan sets
cannam@86 664 # at all, so we specify them separately.
cannam@86 665 *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")
cannam@86 666 lastarg="\"$lastarg\""
cannam@86 667 ;;
cannam@86 668 esac
cannam@86 669
cannam@86 670 base_compile="$base_compile $lastarg"
cannam@86 671 done # for arg
cannam@86 672
cannam@86 673 case $arg_mode in
cannam@86 674 arg)
cannam@86 675 $echo "$modename: you must specify an argument for -Xcompile"
cannam@86 676 exit $EXIT_FAILURE
cannam@86 677 ;;
cannam@86 678 target)
cannam@86 679 $echo "$modename: you must specify a target with \`-o'" 1>&2
cannam@86 680 exit $EXIT_FAILURE
cannam@86 681 ;;
cannam@86 682 *)
cannam@86 683 # Get the name of the library object.
cannam@86 684 [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
cannam@86 685 ;;
cannam@86 686 esac
cannam@86 687
cannam@86 688 # Recognize several different file suffixes.
cannam@86 689 # If the user specifies -o file.o, it is replaced with file.lo
cannam@86 690 xform='[cCFSifmso]'
cannam@86 691 case $libobj in
cannam@86 692 *.ada) xform=ada ;;
cannam@86 693 *.adb) xform=adb ;;
cannam@86 694 *.ads) xform=ads ;;
cannam@86 695 *.asm) xform=asm ;;
cannam@86 696 *.c++) xform=c++ ;;
cannam@86 697 *.cc) xform=cc ;;
cannam@86 698 *.ii) xform=ii ;;
cannam@86 699 *.class) xform=class ;;
cannam@86 700 *.cpp) xform=cpp ;;
cannam@86 701 *.cxx) xform=cxx ;;
cannam@86 702 *.f90) xform=f90 ;;
cannam@86 703 *.for) xform=for ;;
cannam@86 704 *.java) xform=java ;;
cannam@86 705 esac
cannam@86 706
cannam@86 707 libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`
cannam@86 708
cannam@86 709 case $libobj in
cannam@86 710 *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
cannam@86 711 *)
cannam@86 712 $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2
cannam@86 713 exit $EXIT_FAILURE
cannam@86 714 ;;
cannam@86 715 esac
cannam@86 716
cannam@86 717 func_infer_tag $base_compile
cannam@86 718
cannam@86 719 for arg in $later; do
cannam@86 720 case $arg in
cannam@86 721 -static)
cannam@86 722 build_old_libs=yes
cannam@86 723 continue
cannam@86 724 ;;
cannam@86 725
cannam@86 726 -prefer-pic)
cannam@86 727 pic_mode=yes
cannam@86 728 continue
cannam@86 729 ;;
cannam@86 730
cannam@86 731 -prefer-non-pic)
cannam@86 732 pic_mode=no
cannam@86 733 continue
cannam@86 734 ;;
cannam@86 735 esac
cannam@86 736 done
cannam@86 737
cannam@86 738 qlibobj=`$echo "X$libobj" | $Xsed -e "$sed_quote_subst"`
cannam@86 739 case $qlibobj in
cannam@86 740 *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")
cannam@86 741 qlibobj="\"$qlibobj\"" ;;
cannam@86 742 esac
cannam@86 743 if test "X$libobj" != "X$qlibobj"; then
cannam@86 744 $echo "$modename: libobj name \`$libobj' may not contain shell special characters."
cannam@86 745 exit $EXIT_FAILURE
cannam@86 746 fi
cannam@86 747 objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
cannam@86 748 xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
cannam@86 749 if test "X$xdir" = "X$obj"; then
cannam@86 750 xdir=
cannam@86 751 else
cannam@86 752 xdir=$xdir/
cannam@86 753 fi
cannam@86 754 lobj=${xdir}$objdir/$objname
cannam@86 755
cannam@86 756 if test -z "$base_compile"; then
cannam@86 757 $echo "$modename: you must specify a compilation command" 1>&2
cannam@86 758 $echo "$help" 1>&2
cannam@86 759 exit $EXIT_FAILURE
cannam@86 760 fi
cannam@86 761
cannam@86 762 # Delete any leftover library objects.
cannam@86 763 if test "$build_old_libs" = yes; then
cannam@86 764 removelist="$obj $lobj $libobj ${libobj}T"
cannam@86 765 else
cannam@86 766 removelist="$lobj $libobj ${libobj}T"
cannam@86 767 fi
cannam@86 768
cannam@86 769 $run $rm $removelist
cannam@86 770 trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15
cannam@86 771
cannam@86 772 # On Cygwin there's no "real" PIC flag so we must build both object types
cannam@86 773 case $host_os in
cannam@86 774 cygwin* | mingw* | pw32* | os2*)
cannam@86 775 pic_mode=default
cannam@86 776 ;;
cannam@86 777 esac
cannam@86 778 if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then
cannam@86 779 # non-PIC code in shared libraries is not supported
cannam@86 780 pic_mode=default
cannam@86 781 fi
cannam@86 782
cannam@86 783 # Calculate the filename of the output object if compiler does
cannam@86 784 # not support -o with -c
cannam@86 785 if test "$compiler_c_o" = no; then
cannam@86 786 output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}
cannam@86 787 lockfile="$output_obj.lock"
cannam@86 788 removelist="$removelist $output_obj $lockfile"
cannam@86 789 trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15
cannam@86 790 else
cannam@86 791 output_obj=
cannam@86 792 need_locks=no
cannam@86 793 lockfile=
cannam@86 794 fi
cannam@86 795
cannam@86 796 # Lock this critical section if it is needed
cannam@86 797 # We use this script file to make the link, it avoids creating a new file
cannam@86 798 if test "$need_locks" = yes; then
cannam@86 799 until $run ln "$progpath" "$lockfile" 2>/dev/null; do
cannam@86 800 $show "Waiting for $lockfile to be removed"
cannam@86 801 sleep 2
cannam@86 802 done
cannam@86 803 elif test "$need_locks" = warn; then
cannam@86 804 if test -f "$lockfile"; then
cannam@86 805 $echo "\
cannam@86 806 *** ERROR, $lockfile exists and contains:
cannam@86 807 `cat $lockfile 2>/dev/null`
cannam@86 808
cannam@86 809 This indicates that another process is trying to use the same
cannam@86 810 temporary object file, and libtool could not work around it because
cannam@86 811 your compiler does not support \`-c' and \`-o' together. If you
cannam@86 812 repeat this compilation, it may succeed, by chance, but you had better
cannam@86 813 avoid parallel builds (make -j) in this platform, or get a better
cannam@86 814 compiler."
cannam@86 815
cannam@86 816 $run $rm $removelist
cannam@86 817 exit $EXIT_FAILURE
cannam@86 818 fi
cannam@86 819 $echo "$srcfile" > "$lockfile"
cannam@86 820 fi
cannam@86 821
cannam@86 822 if test -n "$fix_srcfile_path"; then
cannam@86 823 eval srcfile=\"$fix_srcfile_path\"
cannam@86 824 fi
cannam@86 825 qsrcfile=`$echo "X$srcfile" | $Xsed -e "$sed_quote_subst"`
cannam@86 826 case $qsrcfile in
cannam@86 827 *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")
cannam@86 828 qsrcfile="\"$qsrcfile\"" ;;
cannam@86 829 esac
cannam@86 830
cannam@86 831 $run $rm "$libobj" "${libobj}T"
cannam@86 832
cannam@86 833 # Create a libtool object file (analogous to a ".la" file),
cannam@86 834 # but don't create it if we're doing a dry run.
cannam@86 835 test -z "$run" && cat > ${libobj}T <<EOF
cannam@86 836 # $libobj - a libtool object file
cannam@86 837 # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
cannam@86 838 #
cannam@86 839 # Please DO NOT delete this file!
cannam@86 840 # It is necessary for linking the library.
cannam@86 841
cannam@86 842 # Name of the PIC object.
cannam@86 843 EOF
cannam@86 844
cannam@86 845 # Only build a PIC object if we are building libtool libraries.
cannam@86 846 if test "$build_libtool_libs" = yes; then
cannam@86 847 # Without this assignment, base_compile gets emptied.
cannam@86 848 fbsd_hideous_sh_bug=$base_compile
cannam@86 849
cannam@86 850 if test "$pic_mode" != no; then
cannam@86 851 command="$base_compile $qsrcfile $pic_flag"
cannam@86 852 else
cannam@86 853 # Don't build PIC code
cannam@86 854 command="$base_compile $qsrcfile"
cannam@86 855 fi
cannam@86 856
cannam@86 857 if test ! -d "${xdir}$objdir"; then
cannam@86 858 $show "$mkdir ${xdir}$objdir"
cannam@86 859 $run $mkdir ${xdir}$objdir
cannam@86 860 status=$?
cannam@86 861 if test "$status" -ne 0 && test ! -d "${xdir}$objdir"; then
cannam@86 862 exit $status
cannam@86 863 fi
cannam@86 864 fi
cannam@86 865
cannam@86 866 if test -z "$output_obj"; then
cannam@86 867 # Place PIC objects in $objdir
cannam@86 868 command="$command -o $lobj"
cannam@86 869 fi
cannam@86 870
cannam@86 871 $run $rm "$lobj" "$output_obj"
cannam@86 872
cannam@86 873 $show "$command"
cannam@86 874 if $run eval "$command"; then :
cannam@86 875 else
cannam@86 876 test -n "$output_obj" && $run $rm $removelist
cannam@86 877 exit $EXIT_FAILURE
cannam@86 878 fi
cannam@86 879
cannam@86 880 if test "$need_locks" = warn &&
cannam@86 881 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
cannam@86 882 $echo "\
cannam@86 883 *** ERROR, $lockfile contains:
cannam@86 884 `cat $lockfile 2>/dev/null`
cannam@86 885
cannam@86 886 but it should contain:
cannam@86 887 $srcfile
cannam@86 888
cannam@86 889 This indicates that another process is trying to use the same
cannam@86 890 temporary object file, and libtool could not work around it because
cannam@86 891 your compiler does not support \`-c' and \`-o' together. If you
cannam@86 892 repeat this compilation, it may succeed, by chance, but you had better
cannam@86 893 avoid parallel builds (make -j) in this platform, or get a better
cannam@86 894 compiler."
cannam@86 895
cannam@86 896 $run $rm $removelist
cannam@86 897 exit $EXIT_FAILURE
cannam@86 898 fi
cannam@86 899
cannam@86 900 # Just move the object if needed, then go on to compile the next one
cannam@86 901 if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then
cannam@86 902 $show "$mv $output_obj $lobj"
cannam@86 903 if $run $mv $output_obj $lobj; then :
cannam@86 904 else
cannam@86 905 error=$?
cannam@86 906 $run $rm $removelist
cannam@86 907 exit $error
cannam@86 908 fi
cannam@86 909 fi
cannam@86 910
cannam@86 911 # Append the name of the PIC object to the libtool object file.
cannam@86 912 test -z "$run" && cat >> ${libobj}T <<EOF
cannam@86 913 pic_object='$objdir/$objname'
cannam@86 914
cannam@86 915 EOF
cannam@86 916
cannam@86 917 # Allow error messages only from the first compilation.
cannam@86 918 if test "$suppress_opt" = yes; then
cannam@86 919 suppress_output=' >/dev/null 2>&1'
cannam@86 920 fi
cannam@86 921 else
cannam@86 922 # No PIC object so indicate it doesn't exist in the libtool
cannam@86 923 # object file.
cannam@86 924 test -z "$run" && cat >> ${libobj}T <<EOF
cannam@86 925 pic_object=none
cannam@86 926
cannam@86 927 EOF
cannam@86 928 fi
cannam@86 929
cannam@86 930 # Only build a position-dependent object if we build old libraries.
cannam@86 931 if test "$build_old_libs" = yes; then
cannam@86 932 if test "$pic_mode" != yes; then
cannam@86 933 # Don't build PIC code
cannam@86 934 command="$base_compile $qsrcfile"
cannam@86 935 else
cannam@86 936 command="$base_compile $qsrcfile $pic_flag"
cannam@86 937 fi
cannam@86 938 if test "$compiler_c_o" = yes; then
cannam@86 939 command="$command -o $obj"
cannam@86 940 fi
cannam@86 941
cannam@86 942 # Suppress compiler output if we already did a PIC compilation.
cannam@86 943 command="$command$suppress_output"
cannam@86 944 $run $rm "$obj" "$output_obj"
cannam@86 945 $show "$command"
cannam@86 946 if $run eval "$command"; then :
cannam@86 947 else
cannam@86 948 $run $rm $removelist
cannam@86 949 exit $EXIT_FAILURE
cannam@86 950 fi
cannam@86 951
cannam@86 952 if test "$need_locks" = warn &&
cannam@86 953 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
cannam@86 954 $echo "\
cannam@86 955 *** ERROR, $lockfile contains:
cannam@86 956 `cat $lockfile 2>/dev/null`
cannam@86 957
cannam@86 958 but it should contain:
cannam@86 959 $srcfile
cannam@86 960
cannam@86 961 This indicates that another process is trying to use the same
cannam@86 962 temporary object file, and libtool could not work around it because
cannam@86 963 your compiler does not support \`-c' and \`-o' together. If you
cannam@86 964 repeat this compilation, it may succeed, by chance, but you had better
cannam@86 965 avoid parallel builds (make -j) in this platform, or get a better
cannam@86 966 compiler."
cannam@86 967
cannam@86 968 $run $rm $removelist
cannam@86 969 exit $EXIT_FAILURE
cannam@86 970 fi
cannam@86 971
cannam@86 972 # Just move the object if needed
cannam@86 973 if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then
cannam@86 974 $show "$mv $output_obj $obj"
cannam@86 975 if $run $mv $output_obj $obj; then :
cannam@86 976 else
cannam@86 977 error=$?
cannam@86 978 $run $rm $removelist
cannam@86 979 exit $error
cannam@86 980 fi
cannam@86 981 fi
cannam@86 982
cannam@86 983 # Append the name of the non-PIC object the libtool object file.
cannam@86 984 # Only append if the libtool object file exists.
cannam@86 985 test -z "$run" && cat >> ${libobj}T <<EOF
cannam@86 986 # Name of the non-PIC object.
cannam@86 987 non_pic_object='$objname'
cannam@86 988
cannam@86 989 EOF
cannam@86 990 else
cannam@86 991 # Append the name of the non-PIC object the libtool object file.
cannam@86 992 # Only append if the libtool object file exists.
cannam@86 993 test -z "$run" && cat >> ${libobj}T <<EOF
cannam@86 994 # Name of the non-PIC object.
cannam@86 995 non_pic_object=none
cannam@86 996
cannam@86 997 EOF
cannam@86 998 fi
cannam@86 999
cannam@86 1000 $run $mv "${libobj}T" "${libobj}"
cannam@86 1001
cannam@86 1002 # Unlock the critical section if it was locked
cannam@86 1003 if test "$need_locks" != no; then
cannam@86 1004 $run $rm "$lockfile"
cannam@86 1005 fi
cannam@86 1006
cannam@86 1007 exit $EXIT_SUCCESS
cannam@86 1008 ;;
cannam@86 1009
cannam@86 1010 # libtool link mode
cannam@86 1011 link | relink)
cannam@86 1012 modename="$modename: link"
cannam@86 1013 case $host in
cannam@86 1014 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
cannam@86 1015 # It is impossible to link a dll without this setting, and
cannam@86 1016 # we shouldn't force the makefile maintainer to figure out
cannam@86 1017 # which system we are compiling for in order to pass an extra
cannam@86 1018 # flag for every libtool invocation.
cannam@86 1019 # allow_undefined=no
cannam@86 1020
cannam@86 1021 # FIXME: Unfortunately, there are problems with the above when trying
cannam@86 1022 # to make a dll which has undefined symbols, in which case not
cannam@86 1023 # even a static library is built. For now, we need to specify
cannam@86 1024 # -no-undefined on the libtool link line when we can be certain
cannam@86 1025 # that all symbols are satisfied, otherwise we get a static library.
cannam@86 1026 allow_undefined=yes
cannam@86 1027 ;;
cannam@86 1028 *)
cannam@86 1029 allow_undefined=yes
cannam@86 1030 ;;
cannam@86 1031 esac
cannam@86 1032 libtool_args="$nonopt"
cannam@86 1033 base_compile="$nonopt $@"
cannam@86 1034 compile_command="$nonopt"
cannam@86 1035 finalize_command="$nonopt"
cannam@86 1036
cannam@86 1037 compile_rpath=
cannam@86 1038 finalize_rpath=
cannam@86 1039 compile_shlibpath=
cannam@86 1040 finalize_shlibpath=
cannam@86 1041 convenience=
cannam@86 1042 old_convenience=
cannam@86 1043 deplibs=
cannam@86 1044 old_deplibs=
cannam@86 1045 compiler_flags=
cannam@86 1046 linker_flags=
cannam@86 1047 dllsearchpath=
cannam@86 1048 lib_search_path=`pwd`
cannam@86 1049 inst_prefix_dir=
cannam@86 1050
cannam@86 1051 avoid_version=no
cannam@86 1052 dlfiles=
cannam@86 1053 dlprefiles=
cannam@86 1054 dlself=no
cannam@86 1055 export_dynamic=no
cannam@86 1056 export_symbols=
cannam@86 1057 export_symbols_regex=
cannam@86 1058 generated=
cannam@86 1059 libobjs=
cannam@86 1060 ltlibs=
cannam@86 1061 module=no
cannam@86 1062 no_install=no
cannam@86 1063 objs=
cannam@86 1064 non_pic_objects=
cannam@86 1065 precious_files_regex=
cannam@86 1066 prefer_static_libs=no
cannam@86 1067 preload=no
cannam@86 1068 prev=
cannam@86 1069 prevarg=
cannam@86 1070 release=
cannam@86 1071 rpath=
cannam@86 1072 xrpath=
cannam@86 1073 perm_rpath=
cannam@86 1074 temp_rpath=
cannam@86 1075 thread_safe=no
cannam@86 1076 vinfo=
cannam@86 1077 vinfo_number=no
cannam@86 1078
cannam@86 1079 func_infer_tag $base_compile
cannam@86 1080
cannam@86 1081 # We need to know -static, to get the right output filenames.
cannam@86 1082 for arg
cannam@86 1083 do
cannam@86 1084 case $arg in
cannam@86 1085 -all-static | -static)
cannam@86 1086 if test "X$arg" = "X-all-static"; then
cannam@86 1087 if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
cannam@86 1088 $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2
cannam@86 1089 fi
cannam@86 1090 if test -n "$link_static_flag"; then
cannam@86 1091 dlopen_self=$dlopen_self_static
cannam@86 1092 fi
cannam@86 1093 else
cannam@86 1094 if test -z "$pic_flag" && test -n "$link_static_flag"; then
cannam@86 1095 dlopen_self=$dlopen_self_static
cannam@86 1096 fi
cannam@86 1097 fi
cannam@86 1098 build_libtool_libs=no
cannam@86 1099 build_old_libs=yes
cannam@86 1100 prefer_static_libs=yes
cannam@86 1101 break
cannam@86 1102 ;;
cannam@86 1103 esac
cannam@86 1104 done
cannam@86 1105
cannam@86 1106 # See if our shared archives depend on static archives.
cannam@86 1107 test -n "$old_archive_from_new_cmds" && build_old_libs=yes
cannam@86 1108
cannam@86 1109 # Go through the arguments, transforming them on the way.
cannam@86 1110 while test "$#" -gt 0; do
cannam@86 1111 arg="$1"
cannam@86 1112 shift
cannam@86 1113 case $arg in
cannam@86 1114 *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")
cannam@86 1115 qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test
cannam@86 1116 ;;
cannam@86 1117 *) qarg=$arg ;;
cannam@86 1118 esac
cannam@86 1119 libtool_args="$libtool_args $qarg"
cannam@86 1120
cannam@86 1121 # If the previous option needs an argument, assign it.
cannam@86 1122 if test -n "$prev"; then
cannam@86 1123 case $prev in
cannam@86 1124 output)
cannam@86 1125 compile_command="$compile_command @OUTPUT@"
cannam@86 1126 finalize_command="$finalize_command @OUTPUT@"
cannam@86 1127 ;;
cannam@86 1128 esac
cannam@86 1129
cannam@86 1130 case $prev in
cannam@86 1131 dlfiles|dlprefiles)
cannam@86 1132 if test "$preload" = no; then
cannam@86 1133 # Add the symbol object into the linking commands.
cannam@86 1134 compile_command="$compile_command @SYMFILE@"
cannam@86 1135 finalize_command="$finalize_command @SYMFILE@"
cannam@86 1136 preload=yes
cannam@86 1137 fi
cannam@86 1138 case $arg in
cannam@86 1139 *.la | *.lo) ;; # We handle these cases below.
cannam@86 1140 force)
cannam@86 1141 if test "$dlself" = no; then
cannam@86 1142 dlself=needless
cannam@86 1143 export_dynamic=yes
cannam@86 1144 fi
cannam@86 1145 prev=
cannam@86 1146 continue
cannam@86 1147 ;;
cannam@86 1148 self)
cannam@86 1149 if test "$prev" = dlprefiles; then
cannam@86 1150 dlself=yes
cannam@86 1151 elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
cannam@86 1152 dlself=yes
cannam@86 1153 else
cannam@86 1154 dlself=needless
cannam@86 1155 export_dynamic=yes
cannam@86 1156 fi
cannam@86 1157 prev=
cannam@86 1158 continue
cannam@86 1159 ;;
cannam@86 1160 *)
cannam@86 1161 if test "$prev" = dlfiles; then
cannam@86 1162 dlfiles="$dlfiles $arg"
cannam@86 1163 else
cannam@86 1164 dlprefiles="$dlprefiles $arg"
cannam@86 1165 fi
cannam@86 1166 prev=
cannam@86 1167 continue
cannam@86 1168 ;;
cannam@86 1169 esac
cannam@86 1170 ;;
cannam@86 1171 expsyms)
cannam@86 1172 export_symbols="$arg"
cannam@86 1173 if test ! -f "$arg"; then
cannam@86 1174 $echo "$modename: symbol file \`$arg' does not exist"
cannam@86 1175 exit $EXIT_FAILURE
cannam@86 1176 fi
cannam@86 1177 prev=
cannam@86 1178 continue
cannam@86 1179 ;;
cannam@86 1180 expsyms_regex)
cannam@86 1181 export_symbols_regex="$arg"
cannam@86 1182 prev=
cannam@86 1183 continue
cannam@86 1184 ;;
cannam@86 1185 inst_prefix)
cannam@86 1186 inst_prefix_dir="$arg"
cannam@86 1187 prev=
cannam@86 1188 continue
cannam@86 1189 ;;
cannam@86 1190 precious_regex)
cannam@86 1191 precious_files_regex="$arg"
cannam@86 1192 prev=
cannam@86 1193 continue
cannam@86 1194 ;;
cannam@86 1195 release)
cannam@86 1196 release="-$arg"
cannam@86 1197 prev=
cannam@86 1198 continue
cannam@86 1199 ;;
cannam@86 1200 objectlist)
cannam@86 1201 if test -f "$arg"; then
cannam@86 1202 save_arg=$arg
cannam@86 1203 moreargs=
cannam@86 1204 for fil in `cat $save_arg`
cannam@86 1205 do
cannam@86 1206 # moreargs="$moreargs $fil"
cannam@86 1207 arg=$fil
cannam@86 1208 # A libtool-controlled object.
cannam@86 1209
cannam@86 1210 # Check to see that this really is a libtool object.
cannam@86 1211 if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
cannam@86 1212 pic_object=
cannam@86 1213 non_pic_object=
cannam@86 1214
cannam@86 1215 # Read the .lo file
cannam@86 1216 # If there is no directory component, then add one.
cannam@86 1217 case $arg in
cannam@86 1218 */* | *\\*) . $arg ;;
cannam@86 1219 *) . ./$arg ;;
cannam@86 1220 esac
cannam@86 1221
cannam@86 1222 if test -z "$pic_object" || \
cannam@86 1223 test -z "$non_pic_object" ||
cannam@86 1224 test "$pic_object" = none && \
cannam@86 1225 test "$non_pic_object" = none; then
cannam@86 1226 $echo "$modename: cannot find name of object for \`$arg'" 1>&2
cannam@86 1227 exit $EXIT_FAILURE
cannam@86 1228 fi
cannam@86 1229
cannam@86 1230 # Extract subdirectory from the argument.
cannam@86 1231 xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
cannam@86 1232 if test "X$xdir" = "X$arg"; then
cannam@86 1233 xdir=
cannam@86 1234 else
cannam@86 1235 xdir="$xdir/"
cannam@86 1236 fi
cannam@86 1237
cannam@86 1238 if test "$pic_object" != none; then
cannam@86 1239 # Prepend the subdirectory the object is found in.
cannam@86 1240 pic_object="$xdir$pic_object"
cannam@86 1241
cannam@86 1242 if test "$prev" = dlfiles; then
cannam@86 1243 if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
cannam@86 1244 dlfiles="$dlfiles $pic_object"
cannam@86 1245 prev=
cannam@86 1246 continue
cannam@86 1247 else
cannam@86 1248 # If libtool objects are unsupported, then we need to preload.
cannam@86 1249 prev=dlprefiles
cannam@86 1250 fi
cannam@86 1251 fi
cannam@86 1252
cannam@86 1253 # CHECK ME: I think I busted this. -Ossama
cannam@86 1254 if test "$prev" = dlprefiles; then
cannam@86 1255 # Preload the old-style object.
cannam@86 1256 dlprefiles="$dlprefiles $pic_object"
cannam@86 1257 prev=
cannam@86 1258 fi
cannam@86 1259
cannam@86 1260 # A PIC object.
cannam@86 1261 libobjs="$libobjs $pic_object"
cannam@86 1262 arg="$pic_object"
cannam@86 1263 fi
cannam@86 1264
cannam@86 1265 # Non-PIC object.
cannam@86 1266 if test "$non_pic_object" != none; then
cannam@86 1267 # Prepend the subdirectory the object is found in.
cannam@86 1268 non_pic_object="$xdir$non_pic_object"
cannam@86 1269
cannam@86 1270 # A standard non-PIC object
cannam@86 1271 non_pic_objects="$non_pic_objects $non_pic_object"
cannam@86 1272 if test -z "$pic_object" || test "$pic_object" = none ; then
cannam@86 1273 arg="$non_pic_object"
cannam@86 1274 fi
cannam@86 1275 fi
cannam@86 1276 else
cannam@86 1277 # Only an error if not doing a dry-run.
cannam@86 1278 if test -z "$run"; then
cannam@86 1279 $echo "$modename: \`$arg' is not a valid libtool object" 1>&2
cannam@86 1280 exit $EXIT_FAILURE
cannam@86 1281 else
cannam@86 1282 # Dry-run case.
cannam@86 1283
cannam@86 1284 # Extract subdirectory from the argument.
cannam@86 1285 xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
cannam@86 1286 if test "X$xdir" = "X$arg"; then
cannam@86 1287 xdir=
cannam@86 1288 else
cannam@86 1289 xdir="$xdir/"
cannam@86 1290 fi
cannam@86 1291
cannam@86 1292 pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
cannam@86 1293 non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
cannam@86 1294 libobjs="$libobjs $pic_object"
cannam@86 1295 non_pic_objects="$non_pic_objects $non_pic_object"
cannam@86 1296 fi
cannam@86 1297 fi
cannam@86 1298 done
cannam@86 1299 else
cannam@86 1300 $echo "$modename: link input file \`$save_arg' does not exist"
cannam@86 1301 exit $EXIT_FAILURE
cannam@86 1302 fi
cannam@86 1303 arg=$save_arg
cannam@86 1304 prev=
cannam@86 1305 continue
cannam@86 1306 ;;
cannam@86 1307 rpath | xrpath)
cannam@86 1308 # We need an absolute path.
cannam@86 1309 case $arg in
cannam@86 1310 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@86 1311 *)
cannam@86 1312 $echo "$modename: only absolute run-paths are allowed" 1>&2
cannam@86 1313 exit $EXIT_FAILURE
cannam@86 1314 ;;
cannam@86 1315 esac
cannam@86 1316 if test "$prev" = rpath; then
cannam@86 1317 case "$rpath " in
cannam@86 1318 *" $arg "*) ;;
cannam@86 1319 *) rpath="$rpath $arg" ;;
cannam@86 1320 esac
cannam@86 1321 else
cannam@86 1322 case "$xrpath " in
cannam@86 1323 *" $arg "*) ;;
cannam@86 1324 *) xrpath="$xrpath $arg" ;;
cannam@86 1325 esac
cannam@86 1326 fi
cannam@86 1327 prev=
cannam@86 1328 continue
cannam@86 1329 ;;
cannam@86 1330 xcompiler)
cannam@86 1331 compiler_flags="$compiler_flags $qarg"
cannam@86 1332 prev=
cannam@86 1333 compile_command="$compile_command $qarg"
cannam@86 1334 finalize_command="$finalize_command $qarg"
cannam@86 1335 continue
cannam@86 1336 ;;
cannam@86 1337 xlinker)
cannam@86 1338 linker_flags="$linker_flags $qarg"
cannam@86 1339 compiler_flags="$compiler_flags $wl$qarg"
cannam@86 1340 prev=
cannam@86 1341 compile_command="$compile_command $wl$qarg"
cannam@86 1342 finalize_command="$finalize_command $wl$qarg"
cannam@86 1343 continue
cannam@86 1344 ;;
cannam@86 1345 xcclinker)
cannam@86 1346 linker_flags="$linker_flags $qarg"
cannam@86 1347 compiler_flags="$compiler_flags $qarg"
cannam@86 1348 prev=
cannam@86 1349 compile_command="$compile_command $qarg"
cannam@86 1350 finalize_command="$finalize_command $qarg"
cannam@86 1351 continue
cannam@86 1352 ;;
cannam@86 1353 shrext)
cannam@86 1354 shrext_cmds="$arg"
cannam@86 1355 prev=
cannam@86 1356 continue
cannam@86 1357 ;;
cannam@86 1358 darwin_framework)
cannam@86 1359 compiler_flags="$compiler_flags $arg"
cannam@86 1360 prev=
cannam@86 1361 continue
cannam@86 1362 ;;
cannam@86 1363 *)
cannam@86 1364 eval "$prev=\"\$arg\""
cannam@86 1365 prev=
cannam@86 1366 continue
cannam@86 1367 ;;
cannam@86 1368 esac
cannam@86 1369 fi # test -n "$prev"
cannam@86 1370
cannam@86 1371 prevarg="$arg"
cannam@86 1372
cannam@86 1373 case $arg in
cannam@86 1374 -all-static)
cannam@86 1375 if test -n "$link_static_flag"; then
cannam@86 1376 compile_command="$compile_command $link_static_flag"
cannam@86 1377 finalize_command="$finalize_command $link_static_flag"
cannam@86 1378 fi
cannam@86 1379 continue
cannam@86 1380 ;;
cannam@86 1381
cannam@86 1382 -allow-undefined)
cannam@86 1383 # FIXME: remove this flag sometime in the future.
cannam@86 1384 $echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2
cannam@86 1385 continue
cannam@86 1386 ;;
cannam@86 1387
cannam@86 1388 -avoid-version)
cannam@86 1389 avoid_version=yes
cannam@86 1390 continue
cannam@86 1391 ;;
cannam@86 1392
cannam@86 1393 -dlopen)
cannam@86 1394 prev=dlfiles
cannam@86 1395 continue
cannam@86 1396 ;;
cannam@86 1397
cannam@86 1398 -dlpreopen)
cannam@86 1399 prev=dlprefiles
cannam@86 1400 continue
cannam@86 1401 ;;
cannam@86 1402
cannam@86 1403 -export-dynamic)
cannam@86 1404 export_dynamic=yes
cannam@86 1405 continue
cannam@86 1406 ;;
cannam@86 1407
cannam@86 1408 -export-symbols | -export-symbols-regex)
cannam@86 1409 if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
cannam@86 1410 $echo "$modename: more than one -exported-symbols argument is not allowed"
cannam@86 1411 exit $EXIT_FAILURE
cannam@86 1412 fi
cannam@86 1413 if test "X$arg" = "X-export-symbols"; then
cannam@86 1414 prev=expsyms
cannam@86 1415 else
cannam@86 1416 prev=expsyms_regex
cannam@86 1417 fi
cannam@86 1418 continue
cannam@86 1419 ;;
cannam@86 1420
cannam@86 1421 -framework)
cannam@86 1422 prev=darwin_framework
cannam@86 1423 compiler_flags="$compiler_flags $arg"
cannam@86 1424 continue
cannam@86 1425 ;;
cannam@86 1426
cannam@86 1427 -inst-prefix-dir)
cannam@86 1428 prev=inst_prefix
cannam@86 1429 continue
cannam@86 1430 ;;
cannam@86 1431
cannam@86 1432 # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
cannam@86 1433 # so, if we see these flags be careful not to treat them like -L
cannam@86 1434 -L[A-Z][A-Z]*:*)
cannam@86 1435 case $with_gcc/$host in
cannam@86 1436 no/*-*-irix* | /*-*-irix*)
cannam@86 1437 compile_command="$compile_command $arg"
cannam@86 1438 finalize_command="$finalize_command $arg"
cannam@86 1439 ;;
cannam@86 1440 esac
cannam@86 1441 continue
cannam@86 1442 ;;
cannam@86 1443
cannam@86 1444 -L*)
cannam@86 1445 dir=`$echo "X$arg" | $Xsed -e 's/^-L//'`
cannam@86 1446 # We need an absolute path.
cannam@86 1447 case $dir in
cannam@86 1448 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@86 1449 *)
cannam@86 1450 absdir=`cd "$dir" && pwd`
cannam@86 1451 if test -z "$absdir"; then
cannam@86 1452 $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2
cannam@86 1453 exit $EXIT_FAILURE
cannam@86 1454 fi
cannam@86 1455 dir="$absdir"
cannam@86 1456 ;;
cannam@86 1457 esac
cannam@86 1458 case "$deplibs " in
cannam@86 1459 *" -L$dir "*) ;;
cannam@86 1460 *)
cannam@86 1461 deplibs="$deplibs -L$dir"
cannam@86 1462 lib_search_path="$lib_search_path $dir"
cannam@86 1463 ;;
cannam@86 1464 esac
cannam@86 1465 case $host in
cannam@86 1466 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
cannam@86 1467 case :$dllsearchpath: in
cannam@86 1468 *":$dir:"*) ;;
cannam@86 1469 *) dllsearchpath="$dllsearchpath:$dir";;
cannam@86 1470 esac
cannam@86 1471 ;;
cannam@86 1472 esac
cannam@86 1473 continue
cannam@86 1474 ;;
cannam@86 1475
cannam@86 1476 -l*)
cannam@86 1477 if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
cannam@86 1478 case $host in
cannam@86 1479 *-*-cygwin* | *-*-pw32* | *-*-beos*)
cannam@86 1480 # These systems don't actually have a C or math library (as such)
cannam@86 1481 continue
cannam@86 1482 ;;
cannam@86 1483 *-*-mingw* | *-*-os2*)
cannam@86 1484 # These systems don't actually have a C library (as such)
cannam@86 1485 test "X$arg" = "X-lc" && continue
cannam@86 1486 ;;
cannam@86 1487 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@86 1488 # Do not include libc due to us having libc/libc_r.
cannam@86 1489 test "X$arg" = "X-lc" && continue
cannam@86 1490 ;;
cannam@86 1491 *-*-rhapsody* | *-*-darwin1.[012])
cannam@86 1492 # Rhapsody C and math libraries are in the System framework
cannam@86 1493 deplibs="$deplibs -framework System"
cannam@86 1494 continue
cannam@86 1495 esac
cannam@86 1496 elif test "X$arg" = "X-lc_r"; then
cannam@86 1497 case $host in
cannam@86 1498 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@86 1499 # Do not include libc_r directly, use -pthread flag.
cannam@86 1500 continue
cannam@86 1501 ;;
cannam@86 1502 esac
cannam@86 1503 fi
cannam@86 1504 deplibs="$deplibs $arg"
cannam@86 1505 continue
cannam@86 1506 ;;
cannam@86 1507
cannam@86 1508 # Tru64 UNIX uses -model [arg] to determine the layout of C++
cannam@86 1509 # classes, name mangling, and exception handling.
cannam@86 1510 -model)
cannam@86 1511 compile_command="$compile_command $arg"
cannam@86 1512 compiler_flags="$compiler_flags $arg"
cannam@86 1513 finalize_command="$finalize_command $arg"
cannam@86 1514 prev=xcompiler
cannam@86 1515 continue
cannam@86 1516 ;;
cannam@86 1517
cannam@86 1518 -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)
cannam@86 1519 compiler_flags="$compiler_flags $arg"
cannam@86 1520 compile_command="$compile_command $arg"
cannam@86 1521 finalize_command="$finalize_command $arg"
cannam@86 1522 continue
cannam@86 1523 ;;
cannam@86 1524
cannam@86 1525 -module)
cannam@86 1526 module=yes
cannam@86 1527 continue
cannam@86 1528 ;;
cannam@86 1529
cannam@86 1530 # -64, -mips[0-9] enable 64-bit mode on the SGI compiler
cannam@86 1531 # -r[0-9][0-9]* specifies the processor on the SGI compiler
cannam@86 1532 # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler
cannam@86 1533 # +DA*, +DD* enable 64-bit mode on the HP compiler
cannam@86 1534 # -q* pass through compiler args for the IBM compiler
cannam@86 1535 # -m* pass through architecture-specific compiler args for GCC
cannam@86 1536 -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*)
cannam@86 1537
cannam@86 1538 # Unknown arguments in both finalize_command and compile_command need
cannam@86 1539 # to be aesthetically quoted because they are evaled later.
cannam@86 1540 arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
cannam@86 1541 case $arg in
cannam@86 1542 *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")
cannam@86 1543 arg="\"$arg\""
cannam@86 1544 ;;
cannam@86 1545 esac
cannam@86 1546 compile_command="$compile_command $arg"
cannam@86 1547 finalize_command="$finalize_command $arg"
cannam@86 1548 if test "$with_gcc" = "yes" ; then
cannam@86 1549 compiler_flags="$compiler_flags $arg"
cannam@86 1550 fi
cannam@86 1551 continue
cannam@86 1552 ;;
cannam@86 1553
cannam@86 1554 -shrext)
cannam@86 1555 prev=shrext
cannam@86 1556 continue
cannam@86 1557 ;;
cannam@86 1558
cannam@86 1559 -no-fast-install)
cannam@86 1560 fast_install=no
cannam@86 1561 continue
cannam@86 1562 ;;
cannam@86 1563
cannam@86 1564 -no-install)
cannam@86 1565 case $host in
cannam@86 1566 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
cannam@86 1567 # The PATH hackery in wrapper scripts is required on Windows
cannam@86 1568 # in order for the loader to find any dlls it needs.
cannam@86 1569 $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2
cannam@86 1570 $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2
cannam@86 1571 fast_install=no
cannam@86 1572 ;;
cannam@86 1573 *) no_install=yes ;;
cannam@86 1574 esac
cannam@86 1575 continue
cannam@86 1576 ;;
cannam@86 1577
cannam@86 1578 -no-undefined)
cannam@86 1579 allow_undefined=no
cannam@86 1580 continue
cannam@86 1581 ;;
cannam@86 1582
cannam@86 1583 -objectlist)
cannam@86 1584 prev=objectlist
cannam@86 1585 continue
cannam@86 1586 ;;
cannam@86 1587
cannam@86 1588 -o) prev=output ;;
cannam@86 1589
cannam@86 1590 -precious-files-regex)
cannam@86 1591 prev=precious_regex
cannam@86 1592 continue
cannam@86 1593 ;;
cannam@86 1594
cannam@86 1595 -release)
cannam@86 1596 prev=release
cannam@86 1597 continue
cannam@86 1598 ;;
cannam@86 1599
cannam@86 1600 -rpath)
cannam@86 1601 prev=rpath
cannam@86 1602 continue
cannam@86 1603 ;;
cannam@86 1604
cannam@86 1605 -R)
cannam@86 1606 prev=xrpath
cannam@86 1607 continue
cannam@86 1608 ;;
cannam@86 1609
cannam@86 1610 -R*)
cannam@86 1611 dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`
cannam@86 1612 # We need an absolute path.
cannam@86 1613 case $dir in
cannam@86 1614 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@86 1615 *)
cannam@86 1616 $echo "$modename: only absolute run-paths are allowed" 1>&2
cannam@86 1617 exit $EXIT_FAILURE
cannam@86 1618 ;;
cannam@86 1619 esac
cannam@86 1620 case "$xrpath " in
cannam@86 1621 *" $dir "*) ;;
cannam@86 1622 *) xrpath="$xrpath $dir" ;;
cannam@86 1623 esac
cannam@86 1624 continue
cannam@86 1625 ;;
cannam@86 1626
cannam@86 1627 -static)
cannam@86 1628 # The effects of -static are defined in a previous loop.
cannam@86 1629 # We used to do the same as -all-static on platforms that
cannam@86 1630 # didn't have a PIC flag, but the assumption that the effects
cannam@86 1631 # would be equivalent was wrong. It would break on at least
cannam@86 1632 # Digital Unix and AIX.
cannam@86 1633 continue
cannam@86 1634 ;;
cannam@86 1635
cannam@86 1636 -thread-safe)
cannam@86 1637 thread_safe=yes
cannam@86 1638 continue
cannam@86 1639 ;;
cannam@86 1640
cannam@86 1641 -version-info)
cannam@86 1642 prev=vinfo
cannam@86 1643 continue
cannam@86 1644 ;;
cannam@86 1645 -version-number)
cannam@86 1646 prev=vinfo
cannam@86 1647 vinfo_number=yes
cannam@86 1648 continue
cannam@86 1649 ;;
cannam@86 1650
cannam@86 1651 -Wc,*)
cannam@86 1652 args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`
cannam@86 1653 arg=
cannam@86 1654 save_ifs="$IFS"; IFS=','
cannam@86 1655 for flag in $args; do
cannam@86 1656 IFS="$save_ifs"
cannam@86 1657 case $flag in
cannam@86 1658 *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")
cannam@86 1659 flag="\"$flag\""
cannam@86 1660 ;;
cannam@86 1661 esac
cannam@86 1662 arg="$arg $wl$flag"
cannam@86 1663 compiler_flags="$compiler_flags $flag"
cannam@86 1664 done
cannam@86 1665 IFS="$save_ifs"
cannam@86 1666 arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
cannam@86 1667 ;;
cannam@86 1668
cannam@86 1669 -Wl,*)
cannam@86 1670 args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`
cannam@86 1671 arg=
cannam@86 1672 save_ifs="$IFS"; IFS=','
cannam@86 1673 for flag in $args; do
cannam@86 1674 IFS="$save_ifs"
cannam@86 1675 case $flag in
cannam@86 1676 *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")
cannam@86 1677 flag="\"$flag\""
cannam@86 1678 ;;
cannam@86 1679 esac
cannam@86 1680 arg="$arg $wl$flag"
cannam@86 1681 compiler_flags="$compiler_flags $wl$flag"
cannam@86 1682 linker_flags="$linker_flags $flag"
cannam@86 1683 done
cannam@86 1684 IFS="$save_ifs"
cannam@86 1685 arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
cannam@86 1686 ;;
cannam@86 1687
cannam@86 1688 -Xcompiler)
cannam@86 1689 prev=xcompiler
cannam@86 1690 continue
cannam@86 1691 ;;
cannam@86 1692
cannam@86 1693 -Xlinker)
cannam@86 1694 prev=xlinker
cannam@86 1695 continue
cannam@86 1696 ;;
cannam@86 1697
cannam@86 1698 -XCClinker)
cannam@86 1699 prev=xcclinker
cannam@86 1700 continue
cannam@86 1701 ;;
cannam@86 1702
cannam@86 1703 # Some other compiler flag.
cannam@86 1704 -* | +*)
cannam@86 1705 # Unknown arguments in both finalize_command and compile_command need
cannam@86 1706 # to be aesthetically quoted because they are evaled later.
cannam@86 1707 arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
cannam@86 1708 case $arg in
cannam@86 1709 *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")
cannam@86 1710 arg="\"$arg\""
cannam@86 1711 ;;
cannam@86 1712 esac
cannam@86 1713 ;;
cannam@86 1714
cannam@86 1715 *.$objext)
cannam@86 1716 # A standard object.
cannam@86 1717 objs="$objs $arg"
cannam@86 1718 ;;
cannam@86 1719
cannam@86 1720 *.lo)
cannam@86 1721 # A libtool-controlled object.
cannam@86 1722
cannam@86 1723 # Check to see that this really is a libtool object.
cannam@86 1724 if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
cannam@86 1725 pic_object=
cannam@86 1726 non_pic_object=
cannam@86 1727
cannam@86 1728 # Read the .lo file
cannam@86 1729 # If there is no directory component, then add one.
cannam@86 1730 case $arg in
cannam@86 1731 */* | *\\*) . $arg ;;
cannam@86 1732 *) . ./$arg ;;
cannam@86 1733 esac
cannam@86 1734
cannam@86 1735 if test -z "$pic_object" || \
cannam@86 1736 test -z "$non_pic_object" ||
cannam@86 1737 test "$pic_object" = none && \
cannam@86 1738 test "$non_pic_object" = none; then
cannam@86 1739 $echo "$modename: cannot find name of object for \`$arg'" 1>&2
cannam@86 1740 exit $EXIT_FAILURE
cannam@86 1741 fi
cannam@86 1742
cannam@86 1743 # Extract subdirectory from the argument.
cannam@86 1744 xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
cannam@86 1745 if test "X$xdir" = "X$arg"; then
cannam@86 1746 xdir=
cannam@86 1747 else
cannam@86 1748 xdir="$xdir/"
cannam@86 1749 fi
cannam@86 1750
cannam@86 1751 if test "$pic_object" != none; then
cannam@86 1752 # Prepend the subdirectory the object is found in.
cannam@86 1753 pic_object="$xdir$pic_object"
cannam@86 1754
cannam@86 1755 if test "$prev" = dlfiles; then
cannam@86 1756 if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
cannam@86 1757 dlfiles="$dlfiles $pic_object"
cannam@86 1758 prev=
cannam@86 1759 continue
cannam@86 1760 else
cannam@86 1761 # If libtool objects are unsupported, then we need to preload.
cannam@86 1762 prev=dlprefiles
cannam@86 1763 fi
cannam@86 1764 fi
cannam@86 1765
cannam@86 1766 # CHECK ME: I think I busted this. -Ossama
cannam@86 1767 if test "$prev" = dlprefiles; then
cannam@86 1768 # Preload the old-style object.
cannam@86 1769 dlprefiles="$dlprefiles $pic_object"
cannam@86 1770 prev=
cannam@86 1771 fi
cannam@86 1772
cannam@86 1773 # A PIC object.
cannam@86 1774 libobjs="$libobjs $pic_object"
cannam@86 1775 arg="$pic_object"
cannam@86 1776 fi
cannam@86 1777
cannam@86 1778 # Non-PIC object.
cannam@86 1779 if test "$non_pic_object" != none; then
cannam@86 1780 # Prepend the subdirectory the object is found in.
cannam@86 1781 non_pic_object="$xdir$non_pic_object"
cannam@86 1782
cannam@86 1783 # A standard non-PIC object
cannam@86 1784 non_pic_objects="$non_pic_objects $non_pic_object"
cannam@86 1785 if test -z "$pic_object" || test "$pic_object" = none ; then
cannam@86 1786 arg="$non_pic_object"
cannam@86 1787 fi
cannam@86 1788 fi
cannam@86 1789 else
cannam@86 1790 # Only an error if not doing a dry-run.
cannam@86 1791 if test -z "$run"; then
cannam@86 1792 $echo "$modename: \`$arg' is not a valid libtool object" 1>&2
cannam@86 1793 exit $EXIT_FAILURE
cannam@86 1794 else
cannam@86 1795 # Dry-run case.
cannam@86 1796
cannam@86 1797 # Extract subdirectory from the argument.
cannam@86 1798 xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
cannam@86 1799 if test "X$xdir" = "X$arg"; then
cannam@86 1800 xdir=
cannam@86 1801 else
cannam@86 1802 xdir="$xdir/"
cannam@86 1803 fi
cannam@86 1804
cannam@86 1805 pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
cannam@86 1806 non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
cannam@86 1807 libobjs="$libobjs $pic_object"
cannam@86 1808 non_pic_objects="$non_pic_objects $non_pic_object"
cannam@86 1809 fi
cannam@86 1810 fi
cannam@86 1811 ;;
cannam@86 1812
cannam@86 1813 *.$libext)
cannam@86 1814 # An archive.
cannam@86 1815 deplibs="$deplibs $arg"
cannam@86 1816 old_deplibs="$old_deplibs $arg"
cannam@86 1817 continue
cannam@86 1818 ;;
cannam@86 1819
cannam@86 1820 *.la)
cannam@86 1821 # A libtool-controlled library.
cannam@86 1822
cannam@86 1823 if test "$prev" = dlfiles; then
cannam@86 1824 # This library was specified with -dlopen.
cannam@86 1825 dlfiles="$dlfiles $arg"
cannam@86 1826 prev=
cannam@86 1827 elif test "$prev" = dlprefiles; then
cannam@86 1828 # The library was specified with -dlpreopen.
cannam@86 1829 dlprefiles="$dlprefiles $arg"
cannam@86 1830 prev=
cannam@86 1831 else
cannam@86 1832 deplibs="$deplibs $arg"
cannam@86 1833 fi
cannam@86 1834 continue
cannam@86 1835 ;;
cannam@86 1836
cannam@86 1837 # Some other compiler argument.
cannam@86 1838 *)
cannam@86 1839 # Unknown arguments in both finalize_command and compile_command need
cannam@86 1840 # to be aesthetically quoted because they are evaled later.
cannam@86 1841 arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
cannam@86 1842 case $arg in
cannam@86 1843 *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")
cannam@86 1844 arg="\"$arg\""
cannam@86 1845 ;;
cannam@86 1846 esac
cannam@86 1847 ;;
cannam@86 1848 esac # arg
cannam@86 1849
cannam@86 1850 # Now actually substitute the argument into the commands.
cannam@86 1851 if test -n "$arg"; then
cannam@86 1852 compile_command="$compile_command $arg"
cannam@86 1853 finalize_command="$finalize_command $arg"
cannam@86 1854 fi
cannam@86 1855 done # argument parsing loop
cannam@86 1856
cannam@86 1857 if test -n "$prev"; then
cannam@86 1858 $echo "$modename: the \`$prevarg' option requires an argument" 1>&2
cannam@86 1859 $echo "$help" 1>&2
cannam@86 1860 exit $EXIT_FAILURE
cannam@86 1861 fi
cannam@86 1862
cannam@86 1863 if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
cannam@86 1864 eval arg=\"$export_dynamic_flag_spec\"
cannam@86 1865 compile_command="$compile_command $arg"
cannam@86 1866 finalize_command="$finalize_command $arg"
cannam@86 1867 fi
cannam@86 1868
cannam@86 1869 oldlibs=
cannam@86 1870 # calculate the name of the file, without its directory
cannam@86 1871 outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`
cannam@86 1872 libobjs_save="$libobjs"
cannam@86 1873
cannam@86 1874 if test -n "$shlibpath_var"; then
cannam@86 1875 # get the directories listed in $shlibpath_var
cannam@86 1876 eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`
cannam@86 1877 else
cannam@86 1878 shlib_search_path=
cannam@86 1879 fi
cannam@86 1880 eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
cannam@86 1881 eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"
cannam@86 1882
cannam@86 1883 output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`
cannam@86 1884 if test "X$output_objdir" = "X$output"; then
cannam@86 1885 output_objdir="$objdir"
cannam@86 1886 else
cannam@86 1887 output_objdir="$output_objdir/$objdir"
cannam@86 1888 fi
cannam@86 1889 # Create the object directory.
cannam@86 1890 if test ! -d "$output_objdir"; then
cannam@86 1891 $show "$mkdir $output_objdir"
cannam@86 1892 $run $mkdir $output_objdir
cannam@86 1893 status=$?
cannam@86 1894 if test "$status" -ne 0 && test ! -d "$output_objdir"; then
cannam@86 1895 exit $status
cannam@86 1896 fi
cannam@86 1897 fi
cannam@86 1898
cannam@86 1899 # Determine the type of output
cannam@86 1900 case $output in
cannam@86 1901 "")
cannam@86 1902 $echo "$modename: you must specify an output file" 1>&2
cannam@86 1903 $echo "$help" 1>&2
cannam@86 1904 exit $EXIT_FAILURE
cannam@86 1905 ;;
cannam@86 1906 *.$libext) linkmode=oldlib ;;
cannam@86 1907 *.lo | *.$objext) linkmode=obj ;;
cannam@86 1908 *.la) linkmode=lib ;;
cannam@86 1909 *) linkmode=prog ;; # Anything else should be a program.
cannam@86 1910 esac
cannam@86 1911
cannam@86 1912 case $host in
cannam@86 1913 *cygwin* | *mingw* | *pw32*)
cannam@86 1914 # don't eliminate duplications in $postdeps and $predeps
cannam@86 1915 duplicate_compiler_generated_deps=yes
cannam@86 1916 ;;
cannam@86 1917 *)
cannam@86 1918 duplicate_compiler_generated_deps=$duplicate_deps
cannam@86 1919 ;;
cannam@86 1920 esac
cannam@86 1921 specialdeplibs=
cannam@86 1922
cannam@86 1923 libs=
cannam@86 1924 # Find all interdependent deplibs by searching for libraries
cannam@86 1925 # that are linked more than once (e.g. -la -lb -la)
cannam@86 1926 for deplib in $deplibs; do
cannam@86 1927 if test "X$duplicate_deps" = "Xyes" ; then
cannam@86 1928 case "$libs " in
cannam@86 1929 *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
cannam@86 1930 esac
cannam@86 1931 fi
cannam@86 1932 libs="$libs $deplib"
cannam@86 1933 done
cannam@86 1934
cannam@86 1935 if test "$linkmode" = lib; then
cannam@86 1936 libs="$predeps $libs $compiler_lib_search_path $postdeps"
cannam@86 1937
cannam@86 1938 # Compute libraries that are listed more than once in $predeps
cannam@86 1939 # $postdeps and mark them as special (i.e., whose duplicates are
cannam@86 1940 # not to be eliminated).
cannam@86 1941 pre_post_deps=
cannam@86 1942 if test "X$duplicate_compiler_generated_deps" = "Xyes" ; then
cannam@86 1943 for pre_post_dep in $predeps $postdeps; do
cannam@86 1944 case "$pre_post_deps " in
cannam@86 1945 *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;;
cannam@86 1946 esac
cannam@86 1947 pre_post_deps="$pre_post_deps $pre_post_dep"
cannam@86 1948 done
cannam@86 1949 fi
cannam@86 1950 pre_post_deps=
cannam@86 1951 fi
cannam@86 1952
cannam@86 1953 deplibs=
cannam@86 1954 newdependency_libs=
cannam@86 1955 newlib_search_path=
cannam@86 1956 need_relink=no # whether we're linking any uninstalled libtool libraries
cannam@86 1957 notinst_deplibs= # not-installed libtool libraries
cannam@86 1958 notinst_path= # paths that contain not-installed libtool libraries
cannam@86 1959 case $linkmode in
cannam@86 1960 lib)
cannam@86 1961 passes="conv link"
cannam@86 1962 for file in $dlfiles $dlprefiles; do
cannam@86 1963 case $file in
cannam@86 1964 *.la) ;;
cannam@86 1965 *)
cannam@86 1966 $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2
cannam@86 1967 exit $EXIT_FAILURE
cannam@86 1968 ;;
cannam@86 1969 esac
cannam@86 1970 done
cannam@86 1971 ;;
cannam@86 1972 prog)
cannam@86 1973 compile_deplibs=
cannam@86 1974 finalize_deplibs=
cannam@86 1975 alldeplibs=no
cannam@86 1976 newdlfiles=
cannam@86 1977 newdlprefiles=
cannam@86 1978 passes="conv scan dlopen dlpreopen link"
cannam@86 1979 ;;
cannam@86 1980 *) passes="conv"
cannam@86 1981 ;;
cannam@86 1982 esac
cannam@86 1983 for pass in $passes; do
cannam@86 1984 if test "$linkmode,$pass" = "lib,link" ||
cannam@86 1985 test "$linkmode,$pass" = "prog,scan"; then
cannam@86 1986 libs="$deplibs"
cannam@86 1987 deplibs=
cannam@86 1988 fi
cannam@86 1989 if test "$linkmode" = prog; then
cannam@86 1990 case $pass in
cannam@86 1991 dlopen) libs="$dlfiles" ;;
cannam@86 1992 dlpreopen) libs="$dlprefiles" ;;
cannam@86 1993 link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
cannam@86 1994 esac
cannam@86 1995 fi
cannam@86 1996 if test "$pass" = dlopen; then
cannam@86 1997 # Collect dlpreopened libraries
cannam@86 1998 save_deplibs="$deplibs"
cannam@86 1999 deplibs=
cannam@86 2000 fi
cannam@86 2001 for deplib in $libs; do
cannam@86 2002 lib=
cannam@86 2003 found=no
cannam@86 2004 case $deplib in
cannam@86 2005 -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)
cannam@86 2006 if test "$linkmode,$pass" = "prog,link"; then
cannam@86 2007 compile_deplibs="$deplib $compile_deplibs"
cannam@86 2008 finalize_deplibs="$deplib $finalize_deplibs"
cannam@86 2009 else
cannam@86 2010 compiler_flags="$compiler_flags $deplib"
cannam@86 2011 fi
cannam@86 2012 continue
cannam@86 2013 ;;
cannam@86 2014 -l*)
cannam@86 2015 if test "$linkmode" != lib && test "$linkmode" != prog; then
cannam@86 2016 $echo "$modename: warning: \`-l' is ignored for archives/objects" 1>&2
cannam@86 2017 continue
cannam@86 2018 fi
cannam@86 2019 name=`$echo "X$deplib" | $Xsed -e 's/^-l//'`
cannam@86 2020 for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do
cannam@86 2021 for search_ext in .la $std_shrext .so .a; do
cannam@86 2022 # Search the libtool library
cannam@86 2023 lib="$searchdir/lib${name}${search_ext}"
cannam@86 2024 if test -f "$lib"; then
cannam@86 2025 if test "$search_ext" = ".la"; then
cannam@86 2026 found=yes
cannam@86 2027 else
cannam@86 2028 found=no
cannam@86 2029 fi
cannam@86 2030 break 2
cannam@86 2031 fi
cannam@86 2032 done
cannam@86 2033 done
cannam@86 2034 if test "$found" != yes; then
cannam@86 2035 # deplib doesn't seem to be a libtool library
cannam@86 2036 if test "$linkmode,$pass" = "prog,link"; then
cannam@86 2037 compile_deplibs="$deplib $compile_deplibs"
cannam@86 2038 finalize_deplibs="$deplib $finalize_deplibs"
cannam@86 2039 else
cannam@86 2040 deplibs="$deplib $deplibs"
cannam@86 2041 test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
cannam@86 2042 fi
cannam@86 2043 continue
cannam@86 2044 else # deplib is a libtool library
cannam@86 2045 # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,
cannam@86 2046 # We need to do some special things here, and not later.
cannam@86 2047 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@86 2048 case " $predeps $postdeps " in
cannam@86 2049 *" $deplib "*)
cannam@86 2050 if (${SED} -e '2q' $lib |
cannam@86 2051 grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
cannam@86 2052 library_names=
cannam@86 2053 old_library=
cannam@86 2054 case $lib in
cannam@86 2055 */* | *\\*) . $lib ;;
cannam@86 2056 *) . ./$lib ;;
cannam@86 2057 esac
cannam@86 2058 for l in $old_library $library_names; do
cannam@86 2059 ll="$l"
cannam@86 2060 done
cannam@86 2061 if test "X$ll" = "X$old_library" ; then # only static version available
cannam@86 2062 found=no
cannam@86 2063 ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
cannam@86 2064 test "X$ladir" = "X$lib" && ladir="."
cannam@86 2065 lib=$ladir/$old_library
cannam@86 2066 if test "$linkmode,$pass" = "prog,link"; then
cannam@86 2067 compile_deplibs="$deplib $compile_deplibs"
cannam@86 2068 finalize_deplibs="$deplib $finalize_deplibs"
cannam@86 2069 else
cannam@86 2070 deplibs="$deplib $deplibs"
cannam@86 2071 test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
cannam@86 2072 fi
cannam@86 2073 continue
cannam@86 2074 fi
cannam@86 2075 fi
cannam@86 2076 ;;
cannam@86 2077 *) ;;
cannam@86 2078 esac
cannam@86 2079 fi
cannam@86 2080 fi
cannam@86 2081 ;; # -l
cannam@86 2082 -L*)
cannam@86 2083 case $linkmode in
cannam@86 2084 lib)
cannam@86 2085 deplibs="$deplib $deplibs"
cannam@86 2086 test "$pass" = conv && continue
cannam@86 2087 newdependency_libs="$deplib $newdependency_libs"
cannam@86 2088 newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
cannam@86 2089 ;;
cannam@86 2090 prog)
cannam@86 2091 if test "$pass" = conv; then
cannam@86 2092 deplibs="$deplib $deplibs"
cannam@86 2093 continue
cannam@86 2094 fi
cannam@86 2095 if test "$pass" = scan; then
cannam@86 2096 deplibs="$deplib $deplibs"
cannam@86 2097 else
cannam@86 2098 compile_deplibs="$deplib $compile_deplibs"
cannam@86 2099 finalize_deplibs="$deplib $finalize_deplibs"
cannam@86 2100 fi
cannam@86 2101 newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
cannam@86 2102 ;;
cannam@86 2103 *)
cannam@86 2104 $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2
cannam@86 2105 ;;
cannam@86 2106 esac # linkmode
cannam@86 2107 continue
cannam@86 2108 ;; # -L
cannam@86 2109 -R*)
cannam@86 2110 if test "$pass" = link; then
cannam@86 2111 dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`
cannam@86 2112 # Make sure the xrpath contains only unique directories.
cannam@86 2113 case "$xrpath " in
cannam@86 2114 *" $dir "*) ;;
cannam@86 2115 *) xrpath="$xrpath $dir" ;;
cannam@86 2116 esac
cannam@86 2117 fi
cannam@86 2118 deplibs="$deplib $deplibs"
cannam@86 2119 continue
cannam@86 2120 ;;
cannam@86 2121 *.la) lib="$deplib" ;;
cannam@86 2122 *.$libext)
cannam@86 2123 if test "$pass" = conv; then
cannam@86 2124 deplibs="$deplib $deplibs"
cannam@86 2125 continue
cannam@86 2126 fi
cannam@86 2127 case $linkmode in
cannam@86 2128 lib)
cannam@86 2129 valid_a_lib=no
cannam@86 2130 case $deplibs_check_method in
cannam@86 2131 match_pattern*)
cannam@86 2132 set dummy $deplibs_check_method
cannam@86 2133 match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
cannam@86 2134 if eval $echo \"$deplib\" 2>/dev/null \
cannam@86 2135 | $SED 10q \
cannam@86 2136 | $EGREP "$match_pattern_regex" > /dev/null; then
cannam@86 2137 valid_a_lib=yes
cannam@86 2138 fi
cannam@86 2139 ;;
cannam@86 2140 pass_all)
cannam@86 2141 valid_a_lib=yes
cannam@86 2142 ;;
cannam@86 2143 esac
cannam@86 2144 if test "$valid_a_lib" != yes; then
cannam@86 2145 $echo
cannam@86 2146 $echo "*** Warning: Trying to link with static lib archive $deplib."
cannam@86 2147 $echo "*** I have the capability to make that library automatically link in when"
cannam@86 2148 $echo "*** you link to this library. But I can only do this if you have a"
cannam@86 2149 $echo "*** shared version of the library, which you do not appear to have"
cannam@86 2150 $echo "*** because the file extensions .$libext of this argument makes me believe"
cannam@86 2151 $echo "*** that it is just a static archive that I should not used here."
cannam@86 2152 else
cannam@86 2153 $echo
cannam@86 2154 $echo "*** Warning: Linking the shared library $output against the"
cannam@86 2155 $echo "*** static library $deplib is not portable!"
cannam@86 2156 deplibs="$deplib $deplibs"
cannam@86 2157 fi
cannam@86 2158 continue
cannam@86 2159 ;;
cannam@86 2160 prog)
cannam@86 2161 if test "$pass" != link; then
cannam@86 2162 deplibs="$deplib $deplibs"
cannam@86 2163 else
cannam@86 2164 compile_deplibs="$deplib $compile_deplibs"
cannam@86 2165 finalize_deplibs="$deplib $finalize_deplibs"
cannam@86 2166 fi
cannam@86 2167 continue
cannam@86 2168 ;;
cannam@86 2169 esac # linkmode
cannam@86 2170 ;; # *.$libext
cannam@86 2171 *.lo | *.$objext)
cannam@86 2172 if test "$pass" = conv; then
cannam@86 2173 deplibs="$deplib $deplibs"
cannam@86 2174 elif test "$linkmode" = prog; then
cannam@86 2175 if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
cannam@86 2176 # If there is no dlopen support or we're linking statically,
cannam@86 2177 # we need to preload.
cannam@86 2178 newdlprefiles="$newdlprefiles $deplib"
cannam@86 2179 compile_deplibs="$deplib $compile_deplibs"
cannam@86 2180 finalize_deplibs="$deplib $finalize_deplibs"
cannam@86 2181 else
cannam@86 2182 newdlfiles="$newdlfiles $deplib"
cannam@86 2183 fi
cannam@86 2184 fi
cannam@86 2185 continue
cannam@86 2186 ;;
cannam@86 2187 %DEPLIBS%)
cannam@86 2188 alldeplibs=yes
cannam@86 2189 continue
cannam@86 2190 ;;
cannam@86 2191 esac # case $deplib
cannam@86 2192 if test "$found" = yes || test -f "$lib"; then :
cannam@86 2193 else
cannam@86 2194 $echo "$modename: cannot find the library \`$lib'" 1>&2
cannam@86 2195 exit $EXIT_FAILURE
cannam@86 2196 fi
cannam@86 2197
cannam@86 2198 # Check to see that this really is a libtool archive.
cannam@86 2199 if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
cannam@86 2200 else
cannam@86 2201 $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
cannam@86 2202 exit $EXIT_FAILURE
cannam@86 2203 fi
cannam@86 2204
cannam@86 2205 ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
cannam@86 2206 test "X$ladir" = "X$lib" && ladir="."
cannam@86 2207
cannam@86 2208 dlname=
cannam@86 2209 dlopen=
cannam@86 2210 dlpreopen=
cannam@86 2211 libdir=
cannam@86 2212 library_names=
cannam@86 2213 old_library=
cannam@86 2214 # If the library was installed with an old release of libtool,
cannam@86 2215 # it will not redefine variables installed, or shouldnotlink
cannam@86 2216 installed=yes
cannam@86 2217 shouldnotlink=no
cannam@86 2218 avoidtemprpath=
cannam@86 2219
cannam@86 2220
cannam@86 2221 # Read the .la file
cannam@86 2222 case $lib in
cannam@86 2223 */* | *\\*) . $lib ;;
cannam@86 2224 *) . ./$lib ;;
cannam@86 2225 esac
cannam@86 2226
cannam@86 2227 if test "$linkmode,$pass" = "lib,link" ||
cannam@86 2228 test "$linkmode,$pass" = "prog,scan" ||
cannam@86 2229 { test "$linkmode" != prog && test "$linkmode" != lib; }; then
cannam@86 2230 test -n "$dlopen" && dlfiles="$dlfiles $dlopen"
cannam@86 2231 test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen"
cannam@86 2232 fi
cannam@86 2233
cannam@86 2234 if test "$pass" = conv; then
cannam@86 2235 # Only check for convenience libraries
cannam@86 2236 deplibs="$lib $deplibs"
cannam@86 2237 if test -z "$libdir"; then
cannam@86 2238 if test -z "$old_library"; then
cannam@86 2239 $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
cannam@86 2240 exit $EXIT_FAILURE
cannam@86 2241 fi
cannam@86 2242 # It is a libtool convenience library, so add in its objects.
cannam@86 2243 convenience="$convenience $ladir/$objdir/$old_library"
cannam@86 2244 old_convenience="$old_convenience $ladir/$objdir/$old_library"
cannam@86 2245 tmp_libs=
cannam@86 2246 for deplib in $dependency_libs; do
cannam@86 2247 deplibs="$deplib $deplibs"
cannam@86 2248 if test "X$duplicate_deps" = "Xyes" ; then
cannam@86 2249 case "$tmp_libs " in
cannam@86 2250 *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
cannam@86 2251 esac
cannam@86 2252 fi
cannam@86 2253 tmp_libs="$tmp_libs $deplib"
cannam@86 2254 done
cannam@86 2255 elif test "$linkmode" != prog && test "$linkmode" != lib; then
cannam@86 2256 $echo "$modename: \`$lib' is not a convenience library" 1>&2
cannam@86 2257 exit $EXIT_FAILURE
cannam@86 2258 fi
cannam@86 2259 continue
cannam@86 2260 fi # $pass = conv
cannam@86 2261
cannam@86 2262
cannam@86 2263 # Get the name of the library we link against.
cannam@86 2264 linklib=
cannam@86 2265 for l in $old_library $library_names; do
cannam@86 2266 linklib="$l"
cannam@86 2267 done
cannam@86 2268 if test -z "$linklib"; then
cannam@86 2269 $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
cannam@86 2270 exit $EXIT_FAILURE
cannam@86 2271 fi
cannam@86 2272
cannam@86 2273 # This library was specified with -dlopen.
cannam@86 2274 if test "$pass" = dlopen; then
cannam@86 2275 if test -z "$libdir"; then
cannam@86 2276 $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2
cannam@86 2277 exit $EXIT_FAILURE
cannam@86 2278 fi
cannam@86 2279 if test -z "$dlname" ||
cannam@86 2280 test "$dlopen_support" != yes ||
cannam@86 2281 test "$build_libtool_libs" = no; then
cannam@86 2282 # If there is no dlname, no dlopen support or we're linking
cannam@86 2283 # statically, we need to preload. We also need to preload any
cannam@86 2284 # dependent libraries so libltdl's deplib preloader doesn't
cannam@86 2285 # bomb out in the load deplibs phase.
cannam@86 2286 dlprefiles="$dlprefiles $lib $dependency_libs"
cannam@86 2287 else
cannam@86 2288 newdlfiles="$newdlfiles $lib"
cannam@86 2289 fi
cannam@86 2290 continue
cannam@86 2291 fi # $pass = dlopen
cannam@86 2292
cannam@86 2293 # We need an absolute path.
cannam@86 2294 case $ladir in
cannam@86 2295 [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;
cannam@86 2296 *)
cannam@86 2297 abs_ladir=`cd "$ladir" && pwd`
cannam@86 2298 if test -z "$abs_ladir"; then
cannam@86 2299 $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2
cannam@86 2300 $echo "$modename: passing it literally to the linker, although it might fail" 1>&2
cannam@86 2301 abs_ladir="$ladir"
cannam@86 2302 fi
cannam@86 2303 ;;
cannam@86 2304 esac
cannam@86 2305 laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
cannam@86 2306
cannam@86 2307 # Find the relevant object directory and library name.
cannam@86 2308 if test "X$installed" = Xyes; then
cannam@86 2309 if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
cannam@86 2310 $echo "$modename: warning: library \`$lib' was moved." 1>&2
cannam@86 2311 dir="$ladir"
cannam@86 2312 absdir="$abs_ladir"
cannam@86 2313 libdir="$abs_ladir"
cannam@86 2314 else
cannam@86 2315 dir="$libdir"
cannam@86 2316 absdir="$libdir"
cannam@86 2317 fi
cannam@86 2318 test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes
cannam@86 2319 else
cannam@86 2320 if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then
cannam@86 2321 dir="$ladir"
cannam@86 2322 absdir="$abs_ladir"
cannam@86 2323 # Remove this search path later
cannam@86 2324 notinst_path="$notinst_path $abs_ladir"
cannam@86 2325 else
cannam@86 2326 dir="$ladir/$objdir"
cannam@86 2327 absdir="$abs_ladir/$objdir"
cannam@86 2328 # Remove this search path later
cannam@86 2329 notinst_path="$notinst_path $abs_ladir"
cannam@86 2330 fi
cannam@86 2331 fi # $installed = yes
cannam@86 2332 name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
cannam@86 2333
cannam@86 2334 # This library was specified with -dlpreopen.
cannam@86 2335 if test "$pass" = dlpreopen; then
cannam@86 2336 if test -z "$libdir"; then
cannam@86 2337 $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2
cannam@86 2338 exit $EXIT_FAILURE
cannam@86 2339 fi
cannam@86 2340 # Prefer using a static library (so that no silly _DYNAMIC symbols
cannam@86 2341 # are required to link).
cannam@86 2342 if test -n "$old_library"; then
cannam@86 2343 newdlprefiles="$newdlprefiles $dir/$old_library"
cannam@86 2344 # Otherwise, use the dlname, so that lt_dlopen finds it.
cannam@86 2345 elif test -n "$dlname"; then
cannam@86 2346 newdlprefiles="$newdlprefiles $dir/$dlname"
cannam@86 2347 else
cannam@86 2348 newdlprefiles="$newdlprefiles $dir/$linklib"
cannam@86 2349 fi
cannam@86 2350 fi # $pass = dlpreopen
cannam@86 2351
cannam@86 2352 if test -z "$libdir"; then
cannam@86 2353 # Link the convenience library
cannam@86 2354 if test "$linkmode" = lib; then
cannam@86 2355 deplibs="$dir/$old_library $deplibs"
cannam@86 2356 elif test "$linkmode,$pass" = "prog,link"; then
cannam@86 2357 compile_deplibs="$dir/$old_library $compile_deplibs"
cannam@86 2358 finalize_deplibs="$dir/$old_library $finalize_deplibs"
cannam@86 2359 else
cannam@86 2360 deplibs="$lib $deplibs" # used for prog,scan pass
cannam@86 2361 fi
cannam@86 2362 continue
cannam@86 2363 fi
cannam@86 2364
cannam@86 2365
cannam@86 2366 if test "$linkmode" = prog && test "$pass" != link; then
cannam@86 2367 newlib_search_path="$newlib_search_path $ladir"
cannam@86 2368 deplibs="$lib $deplibs"
cannam@86 2369
cannam@86 2370 linkalldeplibs=no
cannam@86 2371 if test "$link_all_deplibs" != no || test -z "$library_names" ||
cannam@86 2372 test "$build_libtool_libs" = no; then
cannam@86 2373 linkalldeplibs=yes
cannam@86 2374 fi
cannam@86 2375
cannam@86 2376 tmp_libs=
cannam@86 2377 for deplib in $dependency_libs; do
cannam@86 2378 case $deplib in
cannam@86 2379 -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test
cannam@86 2380 esac
cannam@86 2381 # Need to link against all dependency_libs?
cannam@86 2382 if test "$linkalldeplibs" = yes; then
cannam@86 2383 deplibs="$deplib $deplibs"
cannam@86 2384 else
cannam@86 2385 # Need to hardcode shared library paths
cannam@86 2386 # or/and link against static libraries
cannam@86 2387 newdependency_libs="$deplib $newdependency_libs"
cannam@86 2388 fi
cannam@86 2389 if test "X$duplicate_deps" = "Xyes" ; then
cannam@86 2390 case "$tmp_libs " in
cannam@86 2391 *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
cannam@86 2392 esac
cannam@86 2393 fi
cannam@86 2394 tmp_libs="$tmp_libs $deplib"
cannam@86 2395 done # for deplib
cannam@86 2396 continue
cannam@86 2397 fi # $linkmode = prog...
cannam@86 2398
cannam@86 2399 if test "$linkmode,$pass" = "prog,link"; then
cannam@86 2400 if test -n "$library_names" &&
cannam@86 2401 { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
cannam@86 2402 # We need to hardcode the library path
cannam@86 2403 if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then
cannam@86 2404 # Make sure the rpath contains only unique directories.
cannam@86 2405 case "$temp_rpath " in
cannam@86 2406 *" $dir "*) ;;
cannam@86 2407 *" $absdir "*) ;;
cannam@86 2408 *) temp_rpath="$temp_rpath $dir" ;;
cannam@86 2409 esac
cannam@86 2410 fi
cannam@86 2411
cannam@86 2412 # Hardcode the library path.
cannam@86 2413 # Skip directories that are in the system default run-time
cannam@86 2414 # search path.
cannam@86 2415 case " $sys_lib_dlsearch_path " in
cannam@86 2416 *" $absdir "*) ;;
cannam@86 2417 *)
cannam@86 2418 case "$compile_rpath " in
cannam@86 2419 *" $absdir "*) ;;
cannam@86 2420 *) compile_rpath="$compile_rpath $absdir"
cannam@86 2421 esac
cannam@86 2422 ;;
cannam@86 2423 esac
cannam@86 2424 case " $sys_lib_dlsearch_path " in
cannam@86 2425 *" $libdir "*) ;;
cannam@86 2426 *)
cannam@86 2427 case "$finalize_rpath " in
cannam@86 2428 *" $libdir "*) ;;
cannam@86 2429 *) finalize_rpath="$finalize_rpath $libdir"
cannam@86 2430 esac
cannam@86 2431 ;;
cannam@86 2432 esac
cannam@86 2433 fi # $linkmode,$pass = prog,link...
cannam@86 2434
cannam@86 2435 if test "$alldeplibs" = yes &&
cannam@86 2436 { test "$deplibs_check_method" = pass_all ||
cannam@86 2437 { test "$build_libtool_libs" = yes &&
cannam@86 2438 test -n "$library_names"; }; }; then
cannam@86 2439 # We only need to search for static libraries
cannam@86 2440 continue
cannam@86 2441 fi
cannam@86 2442 fi
cannam@86 2443
cannam@86 2444 link_static=no # Whether the deplib will be linked statically
cannam@86 2445 if test -n "$library_names" &&
cannam@86 2446 { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
cannam@86 2447 if test "$installed" = no; then
cannam@86 2448 notinst_deplibs="$notinst_deplibs $lib"
cannam@86 2449 need_relink=yes
cannam@86 2450 fi
cannam@86 2451 # This is a shared library
cannam@86 2452
cannam@86 2453 # Warn about portability, can't link against -module's on
cannam@86 2454 # some systems (darwin)
cannam@86 2455 if test "$shouldnotlink" = yes && test "$pass" = link ; then
cannam@86 2456 $echo
cannam@86 2457 if test "$linkmode" = prog; then
cannam@86 2458 $echo "*** Warning: Linking the executable $output against the loadable module"
cannam@86 2459 else
cannam@86 2460 $echo "*** Warning: Linking the shared library $output against the loadable module"
cannam@86 2461 fi
cannam@86 2462 $echo "*** $linklib is not portable!"
cannam@86 2463 fi
cannam@86 2464 if test "$linkmode" = lib &&
cannam@86 2465 test "$hardcode_into_libs" = yes; then
cannam@86 2466 # Hardcode the library path.
cannam@86 2467 # Skip directories that are in the system default run-time
cannam@86 2468 # search path.
cannam@86 2469 case " $sys_lib_dlsearch_path " in
cannam@86 2470 *" $absdir "*) ;;
cannam@86 2471 *)
cannam@86 2472 case "$compile_rpath " in
cannam@86 2473 *" $absdir "*) ;;
cannam@86 2474 *) compile_rpath="$compile_rpath $absdir"
cannam@86 2475 esac
cannam@86 2476 ;;
cannam@86 2477 esac
cannam@86 2478 case " $sys_lib_dlsearch_path " in
cannam@86 2479 *" $libdir "*) ;;
cannam@86 2480 *)
cannam@86 2481 case "$finalize_rpath " in
cannam@86 2482 *" $libdir "*) ;;
cannam@86 2483 *) finalize_rpath="$finalize_rpath $libdir"
cannam@86 2484 esac
cannam@86 2485 ;;
cannam@86 2486 esac
cannam@86 2487 fi
cannam@86 2488
cannam@86 2489 if test -n "$old_archive_from_expsyms_cmds"; then
cannam@86 2490 # figure out the soname
cannam@86 2491 set dummy $library_names
cannam@86 2492 realname="$2"
cannam@86 2493 shift; shift
cannam@86 2494 libname=`eval \\$echo \"$libname_spec\"`
cannam@86 2495 # use dlname if we got it. it's perfectly good, no?
cannam@86 2496 if test -n "$dlname"; then
cannam@86 2497 soname="$dlname"
cannam@86 2498 elif test -n "$soname_spec"; then
cannam@86 2499 # bleh windows
cannam@86 2500 case $host in
cannam@86 2501 *cygwin* | mingw*)
cannam@86 2502 major=`expr $current - $age`
cannam@86 2503 versuffix="-$major"
cannam@86 2504 ;;
cannam@86 2505 esac
cannam@86 2506 eval soname=\"$soname_spec\"
cannam@86 2507 else
cannam@86 2508 soname="$realname"
cannam@86 2509 fi
cannam@86 2510
cannam@86 2511 # Make a new name for the extract_expsyms_cmds to use
cannam@86 2512 soroot="$soname"
cannam@86 2513 soname=`$echo $soroot | ${SED} -e 's/^.*\///'`
cannam@86 2514 newlib="libimp-`$echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a"
cannam@86 2515
cannam@86 2516 # If the library has no export list, then create one now
cannam@86 2517 if test -f "$output_objdir/$soname-def"; then :
cannam@86 2518 else
cannam@86 2519 $show "extracting exported symbol list from \`$soname'"
cannam@86 2520 save_ifs="$IFS"; IFS='~'
cannam@86 2521 cmds=$extract_expsyms_cmds
cannam@86 2522 for cmd in $cmds; do
cannam@86 2523 IFS="$save_ifs"
cannam@86 2524 eval cmd=\"$cmd\"
cannam@86 2525 $show "$cmd"
cannam@86 2526 $run eval "$cmd" || exit $?
cannam@86 2527 done
cannam@86 2528 IFS="$save_ifs"
cannam@86 2529 fi
cannam@86 2530
cannam@86 2531 # Create $newlib
cannam@86 2532 if test -f "$output_objdir/$newlib"; then :; else
cannam@86 2533 $show "generating import library for \`$soname'"
cannam@86 2534 save_ifs="$IFS"; IFS='~'
cannam@86 2535 cmds=$old_archive_from_expsyms_cmds
cannam@86 2536 for cmd in $cmds; do
cannam@86 2537 IFS="$save_ifs"
cannam@86 2538 eval cmd=\"$cmd\"
cannam@86 2539 $show "$cmd"
cannam@86 2540 $run eval "$cmd" || exit $?
cannam@86 2541 done
cannam@86 2542 IFS="$save_ifs"
cannam@86 2543 fi
cannam@86 2544 # make sure the library variables are pointing to the new library
cannam@86 2545 dir=$output_objdir
cannam@86 2546 linklib=$newlib
cannam@86 2547 fi # test -n "$old_archive_from_expsyms_cmds"
cannam@86 2548
cannam@86 2549 if test "$linkmode" = prog || test "$mode" != relink; then
cannam@86 2550 add_shlibpath=
cannam@86 2551 add_dir=
cannam@86 2552 add=
cannam@86 2553 lib_linked=yes
cannam@86 2554 case $hardcode_action in
cannam@86 2555 immediate | unsupported)
cannam@86 2556 if test "$hardcode_direct" = no; then
cannam@86 2557 add="$dir/$linklib"
cannam@86 2558 case $host in
cannam@86 2559 *-*-sco3.2v5* ) add_dir="-L$dir" ;;
cannam@86 2560 *-*-darwin* )
cannam@86 2561 # if the lib is a module then we can not link against
cannam@86 2562 # it, someone is ignoring the new warnings I added
cannam@86 2563 if /usr/bin/file -L $add 2> /dev/null | $EGREP "bundle" >/dev/null ; then
cannam@86 2564 $echo "** Warning, lib $linklib is a module, not a shared library"
cannam@86 2565 if test -z "$old_library" ; then
cannam@86 2566 $echo
cannam@86 2567 $echo "** And there doesn't seem to be a static archive available"
cannam@86 2568 $echo "** The link will probably fail, sorry"
cannam@86 2569 else
cannam@86 2570 add="$dir/$old_library"
cannam@86 2571 fi
cannam@86 2572 fi
cannam@86 2573 esac
cannam@86 2574 elif test "$hardcode_minus_L" = no; then
cannam@86 2575 case $host in
cannam@86 2576 *-*-sunos*) add_shlibpath="$dir" ;;
cannam@86 2577 esac
cannam@86 2578 add_dir="-L$dir"
cannam@86 2579 add="-l$name"
cannam@86 2580 elif test "$hardcode_shlibpath_var" = no; then
cannam@86 2581 add_shlibpath="$dir"
cannam@86 2582 add="-l$name"
cannam@86 2583 else
cannam@86 2584 lib_linked=no
cannam@86 2585 fi
cannam@86 2586 ;;
cannam@86 2587 relink)
cannam@86 2588 if test "$hardcode_direct" = yes; then
cannam@86 2589 add="$dir/$linklib"
cannam@86 2590 elif test "$hardcode_minus_L" = yes; then
cannam@86 2591 add_dir="-L$dir"
cannam@86 2592 # Try looking first in the location we're being installed to.
cannam@86 2593 if test -n "$inst_prefix_dir"; then
cannam@86 2594 case "$libdir" in
cannam@86 2595 [\\/]*)
cannam@86 2596 add_dir="$add_dir -L$inst_prefix_dir$libdir"
cannam@86 2597 ;;
cannam@86 2598 esac
cannam@86 2599 fi
cannam@86 2600 add="-l$name"
cannam@86 2601 elif test "$hardcode_shlibpath_var" = yes; then
cannam@86 2602 add_shlibpath="$dir"
cannam@86 2603 add="-l$name"
cannam@86 2604 else
cannam@86 2605 lib_linked=no
cannam@86 2606 fi
cannam@86 2607 ;;
cannam@86 2608 *) lib_linked=no ;;
cannam@86 2609 esac
cannam@86 2610
cannam@86 2611 if test "$lib_linked" != yes; then
cannam@86 2612 $echo "$modename: configuration error: unsupported hardcode properties"
cannam@86 2613 exit $EXIT_FAILURE
cannam@86 2614 fi
cannam@86 2615
cannam@86 2616 if test -n "$add_shlibpath"; then
cannam@86 2617 case :$compile_shlibpath: in
cannam@86 2618 *":$add_shlibpath:"*) ;;
cannam@86 2619 *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;;
cannam@86 2620 esac
cannam@86 2621 fi
cannam@86 2622 if test "$linkmode" = prog; then
cannam@86 2623 test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
cannam@86 2624 test -n "$add" && compile_deplibs="$add $compile_deplibs"
cannam@86 2625 else
cannam@86 2626 test -n "$add_dir" && deplibs="$add_dir $deplibs"
cannam@86 2627 test -n "$add" && deplibs="$add $deplibs"
cannam@86 2628 if test "$hardcode_direct" != yes && \
cannam@86 2629 test "$hardcode_minus_L" != yes && \
cannam@86 2630 test "$hardcode_shlibpath_var" = yes; then
cannam@86 2631 case :$finalize_shlibpath: in
cannam@86 2632 *":$libdir:"*) ;;
cannam@86 2633 *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
cannam@86 2634 esac
cannam@86 2635 fi
cannam@86 2636 fi
cannam@86 2637 fi
cannam@86 2638
cannam@86 2639 if test "$linkmode" = prog || test "$mode" = relink; then
cannam@86 2640 add_shlibpath=
cannam@86 2641 add_dir=
cannam@86 2642 add=
cannam@86 2643 # Finalize command for both is simple: just hardcode it.
cannam@86 2644 if test "$hardcode_direct" = yes; then
cannam@86 2645 add="$libdir/$linklib"
cannam@86 2646 elif test "$hardcode_minus_L" = yes; then
cannam@86 2647 add_dir="-L$libdir"
cannam@86 2648 add="-l$name"
cannam@86 2649 elif test "$hardcode_shlibpath_var" = yes; then
cannam@86 2650 case :$finalize_shlibpath: in
cannam@86 2651 *":$libdir:"*) ;;
cannam@86 2652 *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
cannam@86 2653 esac
cannam@86 2654 add="-l$name"
cannam@86 2655 elif test "$hardcode_automatic" = yes; then
cannam@86 2656 if test -n "$inst_prefix_dir" &&
cannam@86 2657 test -f "$inst_prefix_dir$libdir/$linklib" ; then
cannam@86 2658 add="$inst_prefix_dir$libdir/$linklib"
cannam@86 2659 else
cannam@86 2660 add="$libdir/$linklib"
cannam@86 2661 fi
cannam@86 2662 else
cannam@86 2663 # We cannot seem to hardcode it, guess we'll fake it.
cannam@86 2664 add_dir="-L$libdir"
cannam@86 2665 # Try looking first in the location we're being installed to.
cannam@86 2666 if test -n "$inst_prefix_dir"; then
cannam@86 2667 case "$libdir" in
cannam@86 2668 [\\/]*)
cannam@86 2669 add_dir="$add_dir -L$inst_prefix_dir$libdir"
cannam@86 2670 ;;
cannam@86 2671 esac
cannam@86 2672 fi
cannam@86 2673 add="-l$name"
cannam@86 2674 fi
cannam@86 2675
cannam@86 2676 if test "$linkmode" = prog; then
cannam@86 2677 test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
cannam@86 2678 test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
cannam@86 2679 else
cannam@86 2680 test -n "$add_dir" && deplibs="$add_dir $deplibs"
cannam@86 2681 test -n "$add" && deplibs="$add $deplibs"
cannam@86 2682 fi
cannam@86 2683 fi
cannam@86 2684 elif test "$linkmode" = prog; then
cannam@86 2685 # Here we assume that one of hardcode_direct or hardcode_minus_L
cannam@86 2686 # is not unsupported. This is valid on all known static and
cannam@86 2687 # shared platforms.
cannam@86 2688 if test "$hardcode_direct" != unsupported; then
cannam@86 2689 test -n "$old_library" && linklib="$old_library"
cannam@86 2690 compile_deplibs="$dir/$linklib $compile_deplibs"
cannam@86 2691 finalize_deplibs="$dir/$linklib $finalize_deplibs"
cannam@86 2692 else
cannam@86 2693 compile_deplibs="-l$name -L$dir $compile_deplibs"
cannam@86 2694 finalize_deplibs="-l$name -L$dir $finalize_deplibs"
cannam@86 2695 fi
cannam@86 2696 elif test "$build_libtool_libs" = yes; then
cannam@86 2697 # Not a shared library
cannam@86 2698 if test "$deplibs_check_method" != pass_all; then
cannam@86 2699 # We're trying link a shared library against a static one
cannam@86 2700 # but the system doesn't support it.
cannam@86 2701
cannam@86 2702 # Just print a warning and add the library to dependency_libs so
cannam@86 2703 # that the program can be linked against the static library.
cannam@86 2704 $echo
cannam@86 2705 $echo "*** Warning: This system can not link to static lib archive $lib."
cannam@86 2706 $echo "*** I have the capability to make that library automatically link in when"
cannam@86 2707 $echo "*** you link to this library. But I can only do this if you have a"
cannam@86 2708 $echo "*** shared version of the library, which you do not appear to have."
cannam@86 2709 if test "$module" = yes; then
cannam@86 2710 $echo "*** But as you try to build a module library, libtool will still create "
cannam@86 2711 $echo "*** a static module, that should work as long as the dlopening application"
cannam@86 2712 $echo "*** is linked with the -dlopen flag to resolve symbols at runtime."
cannam@86 2713 if test -z "$global_symbol_pipe"; then
cannam@86 2714 $echo
cannam@86 2715 $echo "*** However, this would only work if libtool was able to extract symbol"
cannam@86 2716 $echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
cannam@86 2717 $echo "*** not find such a program. So, this module is probably useless."
cannam@86 2718 $echo "*** \`nm' from GNU binutils and a full rebuild may help."
cannam@86 2719 fi
cannam@86 2720 if test "$build_old_libs" = no; then
cannam@86 2721 build_libtool_libs=module
cannam@86 2722 build_old_libs=yes
cannam@86 2723 else
cannam@86 2724 build_libtool_libs=no
cannam@86 2725 fi
cannam@86 2726 fi
cannam@86 2727 else
cannam@86 2728 convenience="$convenience $dir/$old_library"
cannam@86 2729 old_convenience="$old_convenience $dir/$old_library"
cannam@86 2730 deplibs="$dir/$old_library $deplibs"
cannam@86 2731 link_static=yes
cannam@86 2732 fi
cannam@86 2733 fi # link shared/static library?
cannam@86 2734
cannam@86 2735 if test "$linkmode" = lib; then
cannam@86 2736 if test -n "$dependency_libs" &&
cannam@86 2737 { test "$hardcode_into_libs" != yes ||
cannam@86 2738 test "$build_old_libs" = yes ||
cannam@86 2739 test "$link_static" = yes; }; then
cannam@86 2740 # Extract -R from dependency_libs
cannam@86 2741 temp_deplibs=
cannam@86 2742 for libdir in $dependency_libs; do
cannam@86 2743 case $libdir in
cannam@86 2744 -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'`
cannam@86 2745 case " $xrpath " in
cannam@86 2746 *" $temp_xrpath "*) ;;
cannam@86 2747 *) xrpath="$xrpath $temp_xrpath";;
cannam@86 2748 esac;;
cannam@86 2749 *) temp_deplibs="$temp_deplibs $libdir";;
cannam@86 2750 esac
cannam@86 2751 done
cannam@86 2752 dependency_libs="$temp_deplibs"
cannam@86 2753 fi
cannam@86 2754
cannam@86 2755 newlib_search_path="$newlib_search_path $absdir"
cannam@86 2756 # Link against this library
cannam@86 2757 test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
cannam@86 2758 # ... and its dependency_libs
cannam@86 2759 tmp_libs=
cannam@86 2760 for deplib in $dependency_libs; do
cannam@86 2761 newdependency_libs="$deplib $newdependency_libs"
cannam@86 2762 if test "X$duplicate_deps" = "Xyes" ; then
cannam@86 2763 case "$tmp_libs " in
cannam@86 2764 *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
cannam@86 2765 esac
cannam@86 2766 fi
cannam@86 2767 tmp_libs="$tmp_libs $deplib"
cannam@86 2768 done
cannam@86 2769
cannam@86 2770 if test "$link_all_deplibs" != no; then
cannam@86 2771 # Add the search paths of all dependency libraries
cannam@86 2772 for deplib in $dependency_libs; do
cannam@86 2773 case $deplib in
cannam@86 2774 -L*) path="$deplib" ;;
cannam@86 2775 *.la)
cannam@86 2776 dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'`
cannam@86 2777 test "X$dir" = "X$deplib" && dir="."
cannam@86 2778 # We need an absolute path.
cannam@86 2779 case $dir in
cannam@86 2780 [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;
cannam@86 2781 *)
cannam@86 2782 absdir=`cd "$dir" && pwd`
cannam@86 2783 if test -z "$absdir"; then
cannam@86 2784 $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2
cannam@86 2785 absdir="$dir"
cannam@86 2786 fi
cannam@86 2787 ;;
cannam@86 2788 esac
cannam@86 2789 if grep "^installed=no" $deplib > /dev/null; then
cannam@86 2790 path="$absdir/$objdir"
cannam@86 2791 else
cannam@86 2792 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
cannam@86 2793 if test -z "$libdir"; then
cannam@86 2794 $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
cannam@86 2795 exit $EXIT_FAILURE
cannam@86 2796 fi
cannam@86 2797 if test "$absdir" != "$libdir"; then
cannam@86 2798 $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2
cannam@86 2799 fi
cannam@86 2800 path="$absdir"
cannam@86 2801 fi
cannam@86 2802 depdepl=
cannam@86 2803 case $host in
cannam@86 2804 *-*-darwin*)
cannam@86 2805 # we do not want to link against static libs,
cannam@86 2806 # but need to link against shared
cannam@86 2807 eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib`
cannam@86 2808 if test -n "$deplibrary_names" ; then
cannam@86 2809 for tmp in $deplibrary_names ; do
cannam@86 2810 depdepl=$tmp
cannam@86 2811 done
cannam@86 2812 if test -f "$path/$depdepl" ; then
cannam@86 2813 depdepl="$path/$depdepl"
cannam@86 2814 fi
cannam@86 2815 # do not add paths which are already there
cannam@86 2816 case " $newlib_search_path " in
cannam@86 2817 *" $path "*) ;;
cannam@86 2818 *) newlib_search_path="$newlib_search_path $path";;
cannam@86 2819 esac
cannam@86 2820 fi
cannam@86 2821 path=""
cannam@86 2822 ;;
cannam@86 2823 *)
cannam@86 2824 path="-L$path"
cannam@86 2825 ;;
cannam@86 2826 esac
cannam@86 2827 ;;
cannam@86 2828 -l*)
cannam@86 2829 case $host in
cannam@86 2830 *-*-darwin*)
cannam@86 2831 # Again, we only want to link against shared libraries
cannam@86 2832 eval tmp_libs=`$echo "X$deplib" | $Xsed -e "s,^\-l,,"`
cannam@86 2833 for tmp in $newlib_search_path ; do
cannam@86 2834 if test -f "$tmp/lib$tmp_libs.dylib" ; then
cannam@86 2835 eval depdepl="$tmp/lib$tmp_libs.dylib"
cannam@86 2836 break
cannam@86 2837 fi
cannam@86 2838 done
cannam@86 2839 path=""
cannam@86 2840 ;;
cannam@86 2841 *) continue ;;
cannam@86 2842 esac
cannam@86 2843 ;;
cannam@86 2844 *) continue ;;
cannam@86 2845 esac
cannam@86 2846 case " $deplibs " in
cannam@86 2847 *" $path "*) ;;
cannam@86 2848 *) deplibs="$path $deplibs" ;;
cannam@86 2849 esac
cannam@86 2850 case " $deplibs " in
cannam@86 2851 *" $depdepl "*) ;;
cannam@86 2852 *) deplibs="$depdepl $deplibs" ;;
cannam@86 2853 esac
cannam@86 2854 done
cannam@86 2855 fi # link_all_deplibs != no
cannam@86 2856 fi # linkmode = lib
cannam@86 2857 done # for deplib in $libs
cannam@86 2858 dependency_libs="$newdependency_libs"
cannam@86 2859 if test "$pass" = dlpreopen; then
cannam@86 2860 # Link the dlpreopened libraries before other libraries
cannam@86 2861 for deplib in $save_deplibs; do
cannam@86 2862 deplibs="$deplib $deplibs"
cannam@86 2863 done
cannam@86 2864 fi
cannam@86 2865 if test "$pass" != dlopen; then
cannam@86 2866 if test "$pass" != conv; then
cannam@86 2867 # Make sure lib_search_path contains only unique directories.
cannam@86 2868 lib_search_path=
cannam@86 2869 for dir in $newlib_search_path; do
cannam@86 2870 case "$lib_search_path " in
cannam@86 2871 *" $dir "*) ;;
cannam@86 2872 *) lib_search_path="$lib_search_path $dir" ;;
cannam@86 2873 esac
cannam@86 2874 done
cannam@86 2875 newlib_search_path=
cannam@86 2876 fi
cannam@86 2877
cannam@86 2878 if test "$linkmode,$pass" != "prog,link"; then
cannam@86 2879 vars="deplibs"
cannam@86 2880 else
cannam@86 2881 vars="compile_deplibs finalize_deplibs"
cannam@86 2882 fi
cannam@86 2883 for var in $vars dependency_libs; do
cannam@86 2884 # Add libraries to $var in reverse order
cannam@86 2885 eval tmp_libs=\"\$$var\"
cannam@86 2886 new_libs=
cannam@86 2887 for deplib in $tmp_libs; do
cannam@86 2888 # FIXME: Pedantically, this is the right thing to do, so
cannam@86 2889 # that some nasty dependency loop isn't accidentally
cannam@86 2890 # broken:
cannam@86 2891 #new_libs="$deplib $new_libs"
cannam@86 2892 # Pragmatically, this seems to cause very few problems in
cannam@86 2893 # practice:
cannam@86 2894 case $deplib in
cannam@86 2895 -L*) new_libs="$deplib $new_libs" ;;
cannam@86 2896 -R*) ;;
cannam@86 2897 *)
cannam@86 2898 # And here is the reason: when a library appears more
cannam@86 2899 # than once as an explicit dependence of a library, or
cannam@86 2900 # is implicitly linked in more than once by the
cannam@86 2901 # compiler, it is considered special, and multiple
cannam@86 2902 # occurrences thereof are not removed. Compare this
cannam@86 2903 # with having the same library being listed as a
cannam@86 2904 # dependency of multiple other libraries: in this case,
cannam@86 2905 # we know (pedantically, we assume) the library does not
cannam@86 2906 # need to be listed more than once, so we keep only the
cannam@86 2907 # last copy. This is not always right, but it is rare
cannam@86 2908 # enough that we require users that really mean to play
cannam@86 2909 # such unportable linking tricks to link the library
cannam@86 2910 # using -Wl,-lname, so that libtool does not consider it
cannam@86 2911 # for duplicate removal.
cannam@86 2912 case " $specialdeplibs " in
cannam@86 2913 *" $deplib "*) new_libs="$deplib $new_libs" ;;
cannam@86 2914 *)
cannam@86 2915 case " $new_libs " in
cannam@86 2916 *" $deplib "*) ;;
cannam@86 2917 *) new_libs="$deplib $new_libs" ;;
cannam@86 2918 esac
cannam@86 2919 ;;
cannam@86 2920 esac
cannam@86 2921 ;;
cannam@86 2922 esac
cannam@86 2923 done
cannam@86 2924 tmp_libs=
cannam@86 2925 for deplib in $new_libs; do
cannam@86 2926 case $deplib in
cannam@86 2927 -L*)
cannam@86 2928 case " $tmp_libs " in
cannam@86 2929 *" $deplib "*) ;;
cannam@86 2930 *) tmp_libs="$tmp_libs $deplib" ;;
cannam@86 2931 esac
cannam@86 2932 ;;
cannam@86 2933 *) tmp_libs="$tmp_libs $deplib" ;;
cannam@86 2934 esac
cannam@86 2935 done
cannam@86 2936 eval $var=\"$tmp_libs\"
cannam@86 2937 done # for var
cannam@86 2938 fi
cannam@86 2939 # Last step: remove runtime libs from dependency_libs
cannam@86 2940 # (they stay in deplibs)
cannam@86 2941 tmp_libs=
cannam@86 2942 for i in $dependency_libs ; do
cannam@86 2943 case " $predeps $postdeps $compiler_lib_search_path " in
cannam@86 2944 *" $i "*)
cannam@86 2945 i=""
cannam@86 2946 ;;
cannam@86 2947 esac
cannam@86 2948 if test -n "$i" ; then
cannam@86 2949 tmp_libs="$tmp_libs $i"
cannam@86 2950 fi
cannam@86 2951 done
cannam@86 2952 dependency_libs=$tmp_libs
cannam@86 2953 done # for pass
cannam@86 2954 if test "$linkmode" = prog; then
cannam@86 2955 dlfiles="$newdlfiles"
cannam@86 2956 dlprefiles="$newdlprefiles"
cannam@86 2957 fi
cannam@86 2958
cannam@86 2959 case $linkmode in
cannam@86 2960 oldlib)
cannam@86 2961 if test -n "$deplibs"; then
cannam@86 2962 $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2
cannam@86 2963 fi
cannam@86 2964
cannam@86 2965 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@86 2966 $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2
cannam@86 2967 fi
cannam@86 2968
cannam@86 2969 if test -n "$rpath"; then
cannam@86 2970 $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2
cannam@86 2971 fi
cannam@86 2972
cannam@86 2973 if test -n "$xrpath"; then
cannam@86 2974 $echo "$modename: warning: \`-R' is ignored for archives" 1>&2
cannam@86 2975 fi
cannam@86 2976
cannam@86 2977 if test -n "$vinfo"; then
cannam@86 2978 $echo "$modename: warning: \`-version-info/-version-number' is ignored for archives" 1>&2
cannam@86 2979 fi
cannam@86 2980
cannam@86 2981 if test -n "$release"; then
cannam@86 2982 $echo "$modename: warning: \`-release' is ignored for archives" 1>&2
cannam@86 2983 fi
cannam@86 2984
cannam@86 2985 if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
cannam@86 2986 $echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2
cannam@86 2987 fi
cannam@86 2988
cannam@86 2989 # Now set the variables for building old libraries.
cannam@86 2990 build_libtool_libs=no
cannam@86 2991 oldlibs="$output"
cannam@86 2992 objs="$objs$old_deplibs"
cannam@86 2993 ;;
cannam@86 2994
cannam@86 2995 lib)
cannam@86 2996 # Make sure we only generate libraries of the form `libNAME.la'.
cannam@86 2997 case $outputname in
cannam@86 2998 lib*)
cannam@86 2999 name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
cannam@86 3000 eval shared_ext=\"$shrext_cmds\"
cannam@86 3001 eval libname=\"$libname_spec\"
cannam@86 3002 ;;
cannam@86 3003 *)
cannam@86 3004 if test "$module" = no; then
cannam@86 3005 $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2
cannam@86 3006 $echo "$help" 1>&2
cannam@86 3007 exit $EXIT_FAILURE
cannam@86 3008 fi
cannam@86 3009 if test "$need_lib_prefix" != no; then
cannam@86 3010 # Add the "lib" prefix for modules if required
cannam@86 3011 name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
cannam@86 3012 eval shared_ext=\"$shrext_cmds\"
cannam@86 3013 eval libname=\"$libname_spec\"
cannam@86 3014 else
cannam@86 3015 libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
cannam@86 3016 fi
cannam@86 3017 ;;
cannam@86 3018 esac
cannam@86 3019
cannam@86 3020 if test -n "$objs"; then
cannam@86 3021 if test "$deplibs_check_method" != pass_all; then
cannam@86 3022 $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1
cannam@86 3023 exit $EXIT_FAILURE
cannam@86 3024 else
cannam@86 3025 $echo
cannam@86 3026 $echo "*** Warning: Linking the shared library $output against the non-libtool"
cannam@86 3027 $echo "*** objects $objs is not portable!"
cannam@86 3028 libobjs="$libobjs $objs"
cannam@86 3029 fi
cannam@86 3030 fi
cannam@86 3031
cannam@86 3032 if test "$dlself" != no; then
cannam@86 3033 $echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2
cannam@86 3034 fi
cannam@86 3035
cannam@86 3036 set dummy $rpath
cannam@86 3037 if test "$#" -gt 2; then
cannam@86 3038 $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2
cannam@86 3039 fi
cannam@86 3040 install_libdir="$2"
cannam@86 3041
cannam@86 3042 oldlibs=
cannam@86 3043 if test -z "$rpath"; then
cannam@86 3044 if test "$build_libtool_libs" = yes; then
cannam@86 3045 # Building a libtool convenience library.
cannam@86 3046 # Some compilers have problems with a `.al' extension so
cannam@86 3047 # convenience libraries should have the same extension an
cannam@86 3048 # archive normally would.
cannam@86 3049 oldlibs="$output_objdir/$libname.$libext $oldlibs"
cannam@86 3050 build_libtool_libs=convenience
cannam@86 3051 build_old_libs=yes
cannam@86 3052 fi
cannam@86 3053
cannam@86 3054 if test -n "$vinfo"; then
cannam@86 3055 $echo "$modename: warning: \`-version-info/-version-number' is ignored for convenience libraries" 1>&2
cannam@86 3056 fi
cannam@86 3057
cannam@86 3058 if test -n "$release"; then
cannam@86 3059 $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2
cannam@86 3060 fi
cannam@86 3061 else
cannam@86 3062
cannam@86 3063 # Parse the version information argument.
cannam@86 3064 save_ifs="$IFS"; IFS=':'
cannam@86 3065 set dummy $vinfo 0 0 0
cannam@86 3066 IFS="$save_ifs"
cannam@86 3067
cannam@86 3068 if test -n "$8"; then
cannam@86 3069 $echo "$modename: too many parameters to \`-version-info'" 1>&2
cannam@86 3070 $echo "$help" 1>&2
cannam@86 3071 exit $EXIT_FAILURE
cannam@86 3072 fi
cannam@86 3073
cannam@86 3074 # convert absolute version numbers to libtool ages
cannam@86 3075 # this retains compatibility with .la files and attempts
cannam@86 3076 # to make the code below a bit more comprehensible
cannam@86 3077
cannam@86 3078 case $vinfo_number in
cannam@86 3079 yes)
cannam@86 3080 number_major="$2"
cannam@86 3081 number_minor="$3"
cannam@86 3082 number_revision="$4"
cannam@86 3083 #
cannam@86 3084 # There are really only two kinds -- those that
cannam@86 3085 # use the current revision as the major version
cannam@86 3086 # and those that subtract age and use age as
cannam@86 3087 # a minor version. But, then there is irix
cannam@86 3088 # which has an extra 1 added just for fun
cannam@86 3089 #
cannam@86 3090 case $version_type in
cannam@86 3091 darwin|linux|osf|windows)
cannam@86 3092 current=`expr $number_major + $number_minor`
cannam@86 3093 age="$number_minor"
cannam@86 3094 revision="$number_revision"
cannam@86 3095 ;;
cannam@86 3096 freebsd-aout|freebsd-elf|sunos)
cannam@86 3097 current="$number_major"
cannam@86 3098 revision="$number_minor"
cannam@86 3099 age="0"
cannam@86 3100 ;;
cannam@86 3101 irix|nonstopux)
cannam@86 3102 current=`expr $number_major + $number_minor - 1`
cannam@86 3103 age="$number_minor"
cannam@86 3104 revision="$number_minor"
cannam@86 3105 ;;
cannam@86 3106 esac
cannam@86 3107 ;;
cannam@86 3108 no)
cannam@86 3109 current="$2"
cannam@86 3110 revision="$3"
cannam@86 3111 age="$4"
cannam@86 3112 ;;
cannam@86 3113 esac
cannam@86 3114
cannam@86 3115 # Check that each of the things are valid numbers.
cannam@86 3116 case $current in
cannam@86 3117 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
cannam@86 3118 *)
cannam@86 3119 $echo "$modename: CURRENT \`$current' must be a nonnegative integer" 1>&2
cannam@86 3120 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
cannam@86 3121 exit $EXIT_FAILURE
cannam@86 3122 ;;
cannam@86 3123 esac
cannam@86 3124
cannam@86 3125 case $revision in
cannam@86 3126 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
cannam@86 3127 *)
cannam@86 3128 $echo "$modename: REVISION \`$revision' must be a nonnegative integer" 1>&2
cannam@86 3129 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
cannam@86 3130 exit $EXIT_FAILURE
cannam@86 3131 ;;
cannam@86 3132 esac
cannam@86 3133
cannam@86 3134 case $age in
cannam@86 3135 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;;
cannam@86 3136 *)
cannam@86 3137 $echo "$modename: AGE \`$age' must be a nonnegative integer" 1>&2
cannam@86 3138 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
cannam@86 3139 exit $EXIT_FAILURE
cannam@86 3140 ;;
cannam@86 3141 esac
cannam@86 3142
cannam@86 3143 if test "$age" -gt "$current"; then
cannam@86 3144 $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
cannam@86 3145 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
cannam@86 3146 exit $EXIT_FAILURE
cannam@86 3147 fi
cannam@86 3148
cannam@86 3149 # Calculate the version variables.
cannam@86 3150 major=
cannam@86 3151 versuffix=
cannam@86 3152 verstring=
cannam@86 3153 case $version_type in
cannam@86 3154 none) ;;
cannam@86 3155
cannam@86 3156 darwin)
cannam@86 3157 # Like Linux, but with the current version available in
cannam@86 3158 # verstring for coding it into the library header
cannam@86 3159 major=.`expr $current - $age`
cannam@86 3160 versuffix="$major.$age.$revision"
cannam@86 3161 # Darwin ld doesn't like 0 for these options...
cannam@86 3162 minor_current=`expr $current + 1`
cannam@86 3163 verstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
cannam@86 3164 ;;
cannam@86 3165
cannam@86 3166 freebsd-aout)
cannam@86 3167 major=".$current"
cannam@86 3168 versuffix=".$current.$revision";
cannam@86 3169 ;;
cannam@86 3170
cannam@86 3171 freebsd-elf)
cannam@86 3172 major=".$current"
cannam@86 3173 versuffix=".$current";
cannam@86 3174 ;;
cannam@86 3175
cannam@86 3176 irix | nonstopux)
cannam@86 3177 major=`expr $current - $age + 1`
cannam@86 3178
cannam@86 3179 case $version_type in
cannam@86 3180 nonstopux) verstring_prefix=nonstopux ;;
cannam@86 3181 *) verstring_prefix=sgi ;;
cannam@86 3182 esac
cannam@86 3183 verstring="$verstring_prefix$major.$revision"
cannam@86 3184
cannam@86 3185 # Add in all the interfaces that we are compatible with.
cannam@86 3186 loop=$revision
cannam@86 3187 while test "$loop" -ne 0; do
cannam@86 3188 iface=`expr $revision - $loop`
cannam@86 3189 loop=`expr $loop - 1`
cannam@86 3190 verstring="$verstring_prefix$major.$iface:$verstring"
cannam@86 3191 done
cannam@86 3192
cannam@86 3193 # Before this point, $major must not contain `.'.
cannam@86 3194 major=.$major
cannam@86 3195 versuffix="$major.$revision"
cannam@86 3196 ;;
cannam@86 3197
cannam@86 3198 linux)
cannam@86 3199 major=.`expr $current - $age`
cannam@86 3200 versuffix="$major.$age.$revision"
cannam@86 3201 ;;
cannam@86 3202
cannam@86 3203 osf)
cannam@86 3204 major=.`expr $current - $age`
cannam@86 3205 versuffix=".$current.$age.$revision"
cannam@86 3206 verstring="$current.$age.$revision"
cannam@86 3207
cannam@86 3208 # Add in all the interfaces that we are compatible with.
cannam@86 3209 loop=$age
cannam@86 3210 while test "$loop" -ne 0; do
cannam@86 3211 iface=`expr $current - $loop`
cannam@86 3212 loop=`expr $loop - 1`
cannam@86 3213 verstring="$verstring:${iface}.0"
cannam@86 3214 done
cannam@86 3215
cannam@86 3216 # Make executables depend on our current version.
cannam@86 3217 verstring="$verstring:${current}.0"
cannam@86 3218 ;;
cannam@86 3219
cannam@86 3220 sunos)
cannam@86 3221 major=".$current"
cannam@86 3222 versuffix=".$current.$revision"
cannam@86 3223 ;;
cannam@86 3224
cannam@86 3225 windows)
cannam@86 3226 # Use '-' rather than '.', since we only want one
cannam@86 3227 # extension on DOS 8.3 filesystems.
cannam@86 3228 major=`expr $current - $age`
cannam@86 3229 versuffix="-$major"
cannam@86 3230 ;;
cannam@86 3231
cannam@86 3232 *)
cannam@86 3233 $echo "$modename: unknown library version type \`$version_type'" 1>&2
cannam@86 3234 $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2
cannam@86 3235 exit $EXIT_FAILURE
cannam@86 3236 ;;
cannam@86 3237 esac
cannam@86 3238
cannam@86 3239 # Clear the version info if we defaulted, and they specified a release.
cannam@86 3240 if test -z "$vinfo" && test -n "$release"; then
cannam@86 3241 major=
cannam@86 3242 case $version_type in
cannam@86 3243 darwin)
cannam@86 3244 # we can't check for "0.0" in archive_cmds due to quoting
cannam@86 3245 # problems, so we reset it completely
cannam@86 3246 verstring=
cannam@86 3247 ;;
cannam@86 3248 *)
cannam@86 3249 verstring="0.0"
cannam@86 3250 ;;
cannam@86 3251 esac
cannam@86 3252 if test "$need_version" = no; then
cannam@86 3253 versuffix=
cannam@86 3254 else
cannam@86 3255 versuffix=".0.0"
cannam@86 3256 fi
cannam@86 3257 fi
cannam@86 3258
cannam@86 3259 # Remove version info from name if versioning should be avoided
cannam@86 3260 if test "$avoid_version" = yes && test "$need_version" = no; then
cannam@86 3261 major=
cannam@86 3262 versuffix=
cannam@86 3263 verstring=""
cannam@86 3264 fi
cannam@86 3265
cannam@86 3266 # Check to see if the archive will have undefined symbols.
cannam@86 3267 if test "$allow_undefined" = yes; then
cannam@86 3268 if test "$allow_undefined_flag" = unsupported; then
cannam@86 3269 $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2
cannam@86 3270 build_libtool_libs=no
cannam@86 3271 build_old_libs=yes
cannam@86 3272 fi
cannam@86 3273 else
cannam@86 3274 # Don't allow undefined symbols.
cannam@86 3275 allow_undefined_flag="$no_undefined_flag"
cannam@86 3276 fi
cannam@86 3277 fi
cannam@86 3278
cannam@86 3279 if test "$mode" != relink; then
cannam@86 3280 # Remove our outputs, but don't remove object files since they
cannam@86 3281 # may have been created when compiling PIC objects.
cannam@86 3282 removelist=
cannam@86 3283 tempremovelist=`$echo "$output_objdir/*"`
cannam@86 3284 for p in $tempremovelist; do
cannam@86 3285 case $p in
cannam@86 3286 *.$objext)
cannam@86 3287 ;;
cannam@86 3288 $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
cannam@86 3289 if test "X$precious_files_regex" != "X"; then
cannam@86 3290 if echo $p | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
cannam@86 3291 then
cannam@86 3292 continue
cannam@86 3293 fi
cannam@86 3294 fi
cannam@86 3295 removelist="$removelist $p"
cannam@86 3296 ;;
cannam@86 3297 *) ;;
cannam@86 3298 esac
cannam@86 3299 done
cannam@86 3300 if test -n "$removelist"; then
cannam@86 3301 $show "${rm}r $removelist"
cannam@86 3302 $run ${rm}r $removelist
cannam@86 3303 fi
cannam@86 3304 fi
cannam@86 3305
cannam@86 3306 # Now set the variables for building old libraries.
cannam@86 3307 if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
cannam@86 3308 oldlibs="$oldlibs $output_objdir/$libname.$libext"
cannam@86 3309
cannam@86 3310 # Transform .lo files to .o files.
cannam@86 3311 oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP`
cannam@86 3312 fi
cannam@86 3313
cannam@86 3314 # Eliminate all temporary directories.
cannam@86 3315 for path in $notinst_path; do
cannam@86 3316 lib_search_path=`$echo "$lib_search_path " | ${SED} -e 's% $path % %g'`
cannam@86 3317 deplibs=`$echo "$deplibs " | ${SED} -e 's% -L$path % %g'`
cannam@86 3318 dependency_libs=`$echo "$dependency_libs " | ${SED} -e 's% -L$path % %g'`
cannam@86 3319 done
cannam@86 3320
cannam@86 3321 if test -n "$xrpath"; then
cannam@86 3322 # If the user specified any rpath flags, then add them.
cannam@86 3323 temp_xrpath=
cannam@86 3324 for libdir in $xrpath; do
cannam@86 3325 temp_xrpath="$temp_xrpath -R$libdir"
cannam@86 3326 case "$finalize_rpath " in
cannam@86 3327 *" $libdir "*) ;;
cannam@86 3328 *) finalize_rpath="$finalize_rpath $libdir" ;;
cannam@86 3329 esac
cannam@86 3330 done
cannam@86 3331 if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then
cannam@86 3332 dependency_libs="$temp_xrpath $dependency_libs"
cannam@86 3333 fi
cannam@86 3334 fi
cannam@86 3335
cannam@86 3336 # Make sure dlfiles contains only unique files that won't be dlpreopened
cannam@86 3337 old_dlfiles="$dlfiles"
cannam@86 3338 dlfiles=
cannam@86 3339 for lib in $old_dlfiles; do
cannam@86 3340 case " $dlprefiles $dlfiles " in
cannam@86 3341 *" $lib "*) ;;
cannam@86 3342 *) dlfiles="$dlfiles $lib" ;;
cannam@86 3343 esac
cannam@86 3344 done
cannam@86 3345
cannam@86 3346 # Make sure dlprefiles contains only unique files
cannam@86 3347 old_dlprefiles="$dlprefiles"
cannam@86 3348 dlprefiles=
cannam@86 3349 for lib in $old_dlprefiles; do
cannam@86 3350 case "$dlprefiles " in
cannam@86 3351 *" $lib "*) ;;
cannam@86 3352 *) dlprefiles="$dlprefiles $lib" ;;
cannam@86 3353 esac
cannam@86 3354 done
cannam@86 3355
cannam@86 3356 if test "$build_libtool_libs" = yes; then
cannam@86 3357 if test -n "$rpath"; then
cannam@86 3358 case $host in
cannam@86 3359 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*)
cannam@86 3360 # these systems don't actually have a c library (as such)!
cannam@86 3361 ;;
cannam@86 3362 *-*-rhapsody* | *-*-darwin1.[012])
cannam@86 3363 # Rhapsody C library is in the System framework
cannam@86 3364 deplibs="$deplibs -framework System"
cannam@86 3365 ;;
cannam@86 3366 *-*-netbsd*)
cannam@86 3367 # Don't link with libc until the a.out ld.so is fixed.
cannam@86 3368 ;;
cannam@86 3369 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@86 3370 # Do not include libc due to us having libc/libc_r.
cannam@86 3371 test "X$arg" = "X-lc" && continue
cannam@86 3372 ;;
cannam@86 3373 *)
cannam@86 3374 # Add libc to deplibs on all other systems if necessary.
cannam@86 3375 if test "$build_libtool_need_lc" = "yes"; then
cannam@86 3376 deplibs="$deplibs -lc"
cannam@86 3377 fi
cannam@86 3378 ;;
cannam@86 3379 esac
cannam@86 3380 fi
cannam@86 3381
cannam@86 3382 # Transform deplibs into only deplibs that can be linked in shared.
cannam@86 3383 name_save=$name
cannam@86 3384 libname_save=$libname
cannam@86 3385 release_save=$release
cannam@86 3386 versuffix_save=$versuffix
cannam@86 3387 major_save=$major
cannam@86 3388 # I'm not sure if I'm treating the release correctly. I think
cannam@86 3389 # release should show up in the -l (ie -lgmp5) so we don't want to
cannam@86 3390 # add it in twice. Is that correct?
cannam@86 3391 release=""
cannam@86 3392 versuffix=""
cannam@86 3393 major=""
cannam@86 3394 newdeplibs=
cannam@86 3395 droppeddeps=no
cannam@86 3396 case $deplibs_check_method in
cannam@86 3397 pass_all)
cannam@86 3398 # Don't check for shared/static. Everything works.
cannam@86 3399 # This might be a little naive. We might want to check
cannam@86 3400 # whether the library exists or not. But this is on
cannam@86 3401 # osf3 & osf4 and I'm not really sure... Just
cannam@86 3402 # implementing what was already the behavior.
cannam@86 3403 newdeplibs=$deplibs
cannam@86 3404 ;;
cannam@86 3405 test_compile)
cannam@86 3406 # This code stresses the "libraries are programs" paradigm to its
cannam@86 3407 # limits. Maybe even breaks it. We compile a program, linking it
cannam@86 3408 # against the deplibs as a proxy for the library. Then we can check
cannam@86 3409 # whether they linked in statically or dynamically with ldd.
cannam@86 3410 $rm conftest.c
cannam@86 3411 cat > conftest.c <<EOF
cannam@86 3412 int main() { return 0; }
cannam@86 3413 EOF
cannam@86 3414 $rm conftest
cannam@86 3415 $LTCC -o conftest conftest.c $deplibs
cannam@86 3416 if test "$?" -eq 0 ; then
cannam@86 3417 ldd_output=`ldd conftest`
cannam@86 3418 for i in $deplibs; do
cannam@86 3419 name="`expr $i : '-l\(.*\)'`"
cannam@86 3420 # If $name is empty we are operating on a -L argument.
cannam@86 3421 if test "$name" != "" && test "$name" -ne "0"; then
cannam@86 3422 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@86 3423 case " $predeps $postdeps " in
cannam@86 3424 *" $i "*)
cannam@86 3425 newdeplibs="$newdeplibs $i"
cannam@86 3426 i=""
cannam@86 3427 ;;
cannam@86 3428 esac
cannam@86 3429 fi
cannam@86 3430 if test -n "$i" ; then
cannam@86 3431 libname=`eval \\$echo \"$libname_spec\"`
cannam@86 3432 deplib_matches=`eval \\$echo \"$library_names_spec\"`
cannam@86 3433 set dummy $deplib_matches
cannam@86 3434 deplib_match=$2
cannam@86 3435 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
cannam@86 3436 newdeplibs="$newdeplibs $i"
cannam@86 3437 else
cannam@86 3438 droppeddeps=yes
cannam@86 3439 $echo
cannam@86 3440 $echo "*** Warning: dynamic linker does not accept needed library $i."
cannam@86 3441 $echo "*** I have the capability to make that library automatically link in when"
cannam@86 3442 $echo "*** you link to this library. But I can only do this if you have a"
cannam@86 3443 $echo "*** shared version of the library, which I believe you do not have"
cannam@86 3444 $echo "*** because a test_compile did reveal that the linker did not use it for"
cannam@86 3445 $echo "*** its dynamic dependency list that programs get resolved with at runtime."
cannam@86 3446 fi
cannam@86 3447 fi
cannam@86 3448 else
cannam@86 3449 newdeplibs="$newdeplibs $i"
cannam@86 3450 fi
cannam@86 3451 done
cannam@86 3452 else
cannam@86 3453 # Error occurred in the first compile. Let's try to salvage
cannam@86 3454 # the situation: Compile a separate program for each library.
cannam@86 3455 for i in $deplibs; do
cannam@86 3456 name="`expr $i : '-l\(.*\)'`"
cannam@86 3457 # If $name is empty we are operating on a -L argument.
cannam@86 3458 if test "$name" != "" && test "$name" != "0"; then
cannam@86 3459 $rm conftest
cannam@86 3460 $LTCC -o conftest conftest.c $i
cannam@86 3461 # Did it work?
cannam@86 3462 if test "$?" -eq 0 ; then
cannam@86 3463 ldd_output=`ldd conftest`
cannam@86 3464 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@86 3465 case " $predeps $postdeps " in
cannam@86 3466 *" $i "*)
cannam@86 3467 newdeplibs="$newdeplibs $i"
cannam@86 3468 i=""
cannam@86 3469 ;;
cannam@86 3470 esac
cannam@86 3471 fi
cannam@86 3472 if test -n "$i" ; then
cannam@86 3473 libname=`eval \\$echo \"$libname_spec\"`
cannam@86 3474 deplib_matches=`eval \\$echo \"$library_names_spec\"`
cannam@86 3475 set dummy $deplib_matches
cannam@86 3476 deplib_match=$2
cannam@86 3477 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
cannam@86 3478 newdeplibs="$newdeplibs $i"
cannam@86 3479 else
cannam@86 3480 droppeddeps=yes
cannam@86 3481 $echo
cannam@86 3482 $echo "*** Warning: dynamic linker does not accept needed library $i."
cannam@86 3483 $echo "*** I have the capability to make that library automatically link in when"
cannam@86 3484 $echo "*** you link to this library. But I can only do this if you have a"
cannam@86 3485 $echo "*** shared version of the library, which you do not appear to have"
cannam@86 3486 $echo "*** because a test_compile did reveal that the linker did not use this one"
cannam@86 3487 $echo "*** as a dynamic dependency that programs can get resolved with at runtime."
cannam@86 3488 fi
cannam@86 3489 fi
cannam@86 3490 else
cannam@86 3491 droppeddeps=yes
cannam@86 3492 $echo
cannam@86 3493 $echo "*** Warning! Library $i is needed by this library but I was not able to"
cannam@86 3494 $echo "*** make it link in! You will probably need to install it or some"
cannam@86 3495 $echo "*** library that it depends on before this library will be fully"
cannam@86 3496 $echo "*** functional. Installing it before continuing would be even better."
cannam@86 3497 fi
cannam@86 3498 else
cannam@86 3499 newdeplibs="$newdeplibs $i"
cannam@86 3500 fi
cannam@86 3501 done
cannam@86 3502 fi
cannam@86 3503 ;;
cannam@86 3504 file_magic*)
cannam@86 3505 set dummy $deplibs_check_method
cannam@86 3506 file_magic_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
cannam@86 3507 for a_deplib in $deplibs; do
cannam@86 3508 name="`expr $a_deplib : '-l\(.*\)'`"
cannam@86 3509 # If $name is empty we are operating on a -L argument.
cannam@86 3510 if test "$name" != "" && test "$name" != "0"; then
cannam@86 3511 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@86 3512 case " $predeps $postdeps " in
cannam@86 3513 *" $a_deplib "*)
cannam@86 3514 newdeplibs="$newdeplibs $a_deplib"
cannam@86 3515 a_deplib=""
cannam@86 3516 ;;
cannam@86 3517 esac
cannam@86 3518 fi
cannam@86 3519 if test -n "$a_deplib" ; then
cannam@86 3520 libname=`eval \\$echo \"$libname_spec\"`
cannam@86 3521 for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
cannam@86 3522 potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
cannam@86 3523 for potent_lib in $potential_libs; do
cannam@86 3524 # Follow soft links.
cannam@86 3525 if ls -lLd "$potent_lib" 2>/dev/null \
cannam@86 3526 | grep " -> " >/dev/null; then
cannam@86 3527 continue
cannam@86 3528 fi
cannam@86 3529 # The statement above tries to avoid entering an
cannam@86 3530 # endless loop below, in case of cyclic links.
cannam@86 3531 # We might still enter an endless loop, since a link
cannam@86 3532 # loop can be closed while we follow links,
cannam@86 3533 # but so what?
cannam@86 3534 potlib="$potent_lib"
cannam@86 3535 while test -h "$potlib" 2>/dev/null; do
cannam@86 3536 potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'`
cannam@86 3537 case $potliblink in
cannam@86 3538 [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
cannam@86 3539 *) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;
cannam@86 3540 esac
cannam@86 3541 done
cannam@86 3542 if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \
cannam@86 3543 | ${SED} 10q \
cannam@86 3544 | $EGREP "$file_magic_regex" > /dev/null; then
cannam@86 3545 newdeplibs="$newdeplibs $a_deplib"
cannam@86 3546 a_deplib=""
cannam@86 3547 break 2
cannam@86 3548 fi
cannam@86 3549 done
cannam@86 3550 done
cannam@86 3551 fi
cannam@86 3552 if test -n "$a_deplib" ; then
cannam@86 3553 droppeddeps=yes
cannam@86 3554 $echo
cannam@86 3555 $echo "*** Warning: linker path does not have real file for library $a_deplib."
cannam@86 3556 $echo "*** I have the capability to make that library automatically link in when"
cannam@86 3557 $echo "*** you link to this library. But I can only do this if you have a"
cannam@86 3558 $echo "*** shared version of the library, which you do not appear to have"
cannam@86 3559 $echo "*** because I did check the linker path looking for a file starting"
cannam@86 3560 if test -z "$potlib" ; then
cannam@86 3561 $echo "*** with $libname but no candidates were found. (...for file magic test)"
cannam@86 3562 else
cannam@86 3563 $echo "*** with $libname and none of the candidates passed a file format test"
cannam@86 3564 $echo "*** using a file magic. Last file checked: $potlib"
cannam@86 3565 fi
cannam@86 3566 fi
cannam@86 3567 else
cannam@86 3568 # Add a -L argument.
cannam@86 3569 newdeplibs="$newdeplibs $a_deplib"
cannam@86 3570 fi
cannam@86 3571 done # Gone through all deplibs.
cannam@86 3572 ;;
cannam@86 3573 match_pattern*)
cannam@86 3574 set dummy $deplibs_check_method
cannam@86 3575 match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
cannam@86 3576 for a_deplib in $deplibs; do
cannam@86 3577 name="`expr $a_deplib : '-l\(.*\)'`"
cannam@86 3578 # If $name is empty we are operating on a -L argument.
cannam@86 3579 if test -n "$name" && test "$name" != "0"; then
cannam@86 3580 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@86 3581 case " $predeps $postdeps " in
cannam@86 3582 *" $a_deplib "*)
cannam@86 3583 newdeplibs="$newdeplibs $a_deplib"
cannam@86 3584 a_deplib=""
cannam@86 3585 ;;
cannam@86 3586 esac
cannam@86 3587 fi
cannam@86 3588 if test -n "$a_deplib" ; then
cannam@86 3589 libname=`eval \\$echo \"$libname_spec\"`
cannam@86 3590 for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
cannam@86 3591 potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
cannam@86 3592 for potent_lib in $potential_libs; do
cannam@86 3593 potlib="$potent_lib" # see symlink-check above in file_magic test
cannam@86 3594 if eval $echo \"$potent_lib\" 2>/dev/null \
cannam@86 3595 | ${SED} 10q \
cannam@86 3596 | $EGREP "$match_pattern_regex" > /dev/null; then
cannam@86 3597 newdeplibs="$newdeplibs $a_deplib"
cannam@86 3598 a_deplib=""
cannam@86 3599 break 2
cannam@86 3600 fi
cannam@86 3601 done
cannam@86 3602 done
cannam@86 3603 fi
cannam@86 3604 if test -n "$a_deplib" ; then
cannam@86 3605 droppeddeps=yes
cannam@86 3606 $echo
cannam@86 3607 $echo "*** Warning: linker path does not have real file for library $a_deplib."
cannam@86 3608 $echo "*** I have the capability to make that library automatically link in when"
cannam@86 3609 $echo "*** you link to this library. But I can only do this if you have a"
cannam@86 3610 $echo "*** shared version of the library, which you do not appear to have"
cannam@86 3611 $echo "*** because I did check the linker path looking for a file starting"
cannam@86 3612 if test -z "$potlib" ; then
cannam@86 3613 $echo "*** with $libname but no candidates were found. (...for regex pattern test)"
cannam@86 3614 else
cannam@86 3615 $echo "*** with $libname and none of the candidates passed a file format test"
cannam@86 3616 $echo "*** using a regex pattern. Last file checked: $potlib"
cannam@86 3617 fi
cannam@86 3618 fi
cannam@86 3619 else
cannam@86 3620 # Add a -L argument.
cannam@86 3621 newdeplibs="$newdeplibs $a_deplib"
cannam@86 3622 fi
cannam@86 3623 done # Gone through all deplibs.
cannam@86 3624 ;;
cannam@86 3625 none | unknown | *)
cannam@86 3626 newdeplibs=""
cannam@86 3627 tmp_deplibs=`$echo "X $deplibs" | $Xsed -e 's/ -lc$//' \
cannam@86 3628 -e 's/ -[LR][^ ]*//g'`
cannam@86 3629 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@86 3630 for i in $predeps $postdeps ; do
cannam@86 3631 # can't use Xsed below, because $i might contain '/'
cannam@86 3632 tmp_deplibs=`$echo "X $tmp_deplibs" | ${SED} -e "1s,^X,," -e "s,$i,,"`
cannam@86 3633 done
cannam@86 3634 fi
cannam@86 3635 if $echo "X $tmp_deplibs" | $Xsed -e 's/[ ]//g' \
cannam@86 3636 | grep . >/dev/null; then
cannam@86 3637 $echo
cannam@86 3638 if test "X$deplibs_check_method" = "Xnone"; then
cannam@86 3639 $echo "*** Warning: inter-library dependencies are not supported in this platform."
cannam@86 3640 else
cannam@86 3641 $echo "*** Warning: inter-library dependencies are not known to be supported."
cannam@86 3642 fi
cannam@86 3643 $echo "*** All declared inter-library dependencies are being dropped."
cannam@86 3644 droppeddeps=yes
cannam@86 3645 fi
cannam@86 3646 ;;
cannam@86 3647 esac
cannam@86 3648 versuffix=$versuffix_save
cannam@86 3649 major=$major_save
cannam@86 3650 release=$release_save
cannam@86 3651 libname=$libname_save
cannam@86 3652 name=$name_save
cannam@86 3653
cannam@86 3654 case $host in
cannam@86 3655 *-*-rhapsody* | *-*-darwin1.[012])
cannam@86 3656 # On Rhapsody replace the C library is the System framework
cannam@86 3657 newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'`
cannam@86 3658 ;;
cannam@86 3659 esac
cannam@86 3660
cannam@86 3661 if test "$droppeddeps" = yes; then
cannam@86 3662 if test "$module" = yes; then
cannam@86 3663 $echo
cannam@86 3664 $echo "*** Warning: libtool could not satisfy all declared inter-library"
cannam@86 3665 $echo "*** dependencies of module $libname. Therefore, libtool will create"
cannam@86 3666 $echo "*** a static module, that should work as long as the dlopening"
cannam@86 3667 $echo "*** application is linked with the -dlopen flag."
cannam@86 3668 if test -z "$global_symbol_pipe"; then
cannam@86 3669 $echo
cannam@86 3670 $echo "*** However, this would only work if libtool was able to extract symbol"
cannam@86 3671 $echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
cannam@86 3672 $echo "*** not find such a program. So, this module is probably useless."
cannam@86 3673 $echo "*** \`nm' from GNU binutils and a full rebuild may help."
cannam@86 3674 fi
cannam@86 3675 if test "$build_old_libs" = no; then
cannam@86 3676 oldlibs="$output_objdir/$libname.$libext"
cannam@86 3677 build_libtool_libs=module
cannam@86 3678 build_old_libs=yes
cannam@86 3679 else
cannam@86 3680 build_libtool_libs=no
cannam@86 3681 fi
cannam@86 3682 else
cannam@86 3683 $echo "*** The inter-library dependencies that have been dropped here will be"
cannam@86 3684 $echo "*** automatically added whenever a program is linked with this library"
cannam@86 3685 $echo "*** or is declared to -dlopen it."
cannam@86 3686
cannam@86 3687 if test "$allow_undefined" = no; then
cannam@86 3688 $echo
cannam@86 3689 $echo "*** Since this library must not contain undefined symbols,"
cannam@86 3690 $echo "*** because either the platform does not support them or"
cannam@86 3691 $echo "*** it was explicitly requested with -no-undefined,"
cannam@86 3692 $echo "*** libtool will only create a static version of it."
cannam@86 3693 if test "$build_old_libs" = no; then
cannam@86 3694 oldlibs="$output_objdir/$libname.$libext"
cannam@86 3695 build_libtool_libs=module
cannam@86 3696 build_old_libs=yes
cannam@86 3697 else
cannam@86 3698 build_libtool_libs=no
cannam@86 3699 fi
cannam@86 3700 fi
cannam@86 3701 fi
cannam@86 3702 fi
cannam@86 3703 # Done checking deplibs!
cannam@86 3704 deplibs=$newdeplibs
cannam@86 3705 fi
cannam@86 3706
cannam@86 3707 # All the library-specific variables (install_libdir is set above).
cannam@86 3708 library_names=
cannam@86 3709 old_library=
cannam@86 3710 dlname=
cannam@86 3711
cannam@86 3712 # Test again, we may have decided not to build it any more
cannam@86 3713 if test "$build_libtool_libs" = yes; then
cannam@86 3714 if test "$hardcode_into_libs" = yes; then
cannam@86 3715 # Hardcode the library paths
cannam@86 3716 hardcode_libdirs=
cannam@86 3717 dep_rpath=
cannam@86 3718 rpath="$finalize_rpath"
cannam@86 3719 test "$mode" != relink && rpath="$compile_rpath$rpath"
cannam@86 3720 for libdir in $rpath; do
cannam@86 3721 if test -n "$hardcode_libdir_flag_spec"; then
cannam@86 3722 if test -n "$hardcode_libdir_separator"; then
cannam@86 3723 if test -z "$hardcode_libdirs"; then
cannam@86 3724 hardcode_libdirs="$libdir"
cannam@86 3725 else
cannam@86 3726 # Just accumulate the unique libdirs.
cannam@86 3727 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@86 3728 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@86 3729 ;;
cannam@86 3730 *)
cannam@86 3731 hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
cannam@86 3732 ;;
cannam@86 3733 esac
cannam@86 3734 fi
cannam@86 3735 else
cannam@86 3736 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@86 3737 dep_rpath="$dep_rpath $flag"
cannam@86 3738 fi
cannam@86 3739 elif test -n "$runpath_var"; then
cannam@86 3740 case "$perm_rpath " in
cannam@86 3741 *" $libdir "*) ;;
cannam@86 3742 *) perm_rpath="$perm_rpath $libdir" ;;
cannam@86 3743 esac
cannam@86 3744 fi
cannam@86 3745 done
cannam@86 3746 # Substitute the hardcoded libdirs into the rpath.
cannam@86 3747 if test -n "$hardcode_libdir_separator" &&
cannam@86 3748 test -n "$hardcode_libdirs"; then
cannam@86 3749 libdir="$hardcode_libdirs"
cannam@86 3750 if test -n "$hardcode_libdir_flag_spec_ld"; then
cannam@86 3751 eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\"
cannam@86 3752 else
cannam@86 3753 eval dep_rpath=\"$hardcode_libdir_flag_spec\"
cannam@86 3754 fi
cannam@86 3755 fi
cannam@86 3756 if test -n "$runpath_var" && test -n "$perm_rpath"; then
cannam@86 3757 # We should set the runpath_var.
cannam@86 3758 rpath=
cannam@86 3759 for dir in $perm_rpath; do
cannam@86 3760 rpath="$rpath$dir:"
cannam@86 3761 done
cannam@86 3762 eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var"
cannam@86 3763 fi
cannam@86 3764 test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs"
cannam@86 3765 fi
cannam@86 3766
cannam@86 3767 shlibpath="$finalize_shlibpath"
cannam@86 3768 test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath"
cannam@86 3769 if test -n "$shlibpath"; then
cannam@86 3770 eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var"
cannam@86 3771 fi
cannam@86 3772
cannam@86 3773 # Get the real and link names of the library.
cannam@86 3774 eval shared_ext=\"$shrext_cmds\"
cannam@86 3775 eval library_names=\"$library_names_spec\"
cannam@86 3776 set dummy $library_names
cannam@86 3777 realname="$2"
cannam@86 3778 shift; shift
cannam@86 3779
cannam@86 3780 if test -n "$soname_spec"; then
cannam@86 3781 eval soname=\"$soname_spec\"
cannam@86 3782 else
cannam@86 3783 soname="$realname"
cannam@86 3784 fi
cannam@86 3785 if test -z "$dlname"; then
cannam@86 3786 dlname=$soname
cannam@86 3787 fi
cannam@86 3788
cannam@86 3789 lib="$output_objdir/$realname"
cannam@86 3790 for link
cannam@86 3791 do
cannam@86 3792 linknames="$linknames $link"
cannam@86 3793 done
cannam@86 3794
cannam@86 3795 # Use standard objects if they are pic
cannam@86 3796 test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
cannam@86 3797
cannam@86 3798 # Prepare the list of exported symbols
cannam@86 3799 if test -z "$export_symbols"; then
cannam@86 3800 if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
cannam@86 3801 $show "generating symbol list for \`$libname.la'"
cannam@86 3802 export_symbols="$output_objdir/$libname.exp"
cannam@86 3803 $run $rm $export_symbols
cannam@86 3804 cmds=$export_symbols_cmds
cannam@86 3805 save_ifs="$IFS"; IFS='~'
cannam@86 3806 for cmd in $cmds; do
cannam@86 3807 IFS="$save_ifs"
cannam@86 3808 eval cmd=\"$cmd\"
cannam@86 3809 if len=`expr "X$cmd" : ".*"` &&
cannam@86 3810 test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
cannam@86 3811 $show "$cmd"
cannam@86 3812 $run eval "$cmd" || exit $?
cannam@86 3813 skipped_export=false
cannam@86 3814 else
cannam@86 3815 # The command line is too long to execute in one step.
cannam@86 3816 $show "using reloadable object file for export list..."
cannam@86 3817 skipped_export=:
cannam@86 3818 fi
cannam@86 3819 done
cannam@86 3820 IFS="$save_ifs"
cannam@86 3821 if test -n "$export_symbols_regex"; then
cannam@86 3822 $show "$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\""
cannam@86 3823 $run eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
cannam@86 3824 $show "$mv \"${export_symbols}T\" \"$export_symbols\""
cannam@86 3825 $run eval '$mv "${export_symbols}T" "$export_symbols"'
cannam@86 3826 fi
cannam@86 3827 fi
cannam@86 3828 fi
cannam@86 3829
cannam@86 3830 if test -n "$export_symbols" && test -n "$include_expsyms"; then
cannam@86 3831 $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"'
cannam@86 3832 fi
cannam@86 3833
cannam@86 3834 tmp_deplibs=
cannam@86 3835 for test_deplib in $deplibs; do
cannam@86 3836 case " $convenience " in
cannam@86 3837 *" $test_deplib "*) ;;
cannam@86 3838 *)
cannam@86 3839 tmp_deplibs="$tmp_deplibs $test_deplib"
cannam@86 3840 ;;
cannam@86 3841 esac
cannam@86 3842 done
cannam@86 3843 deplibs="$tmp_deplibs"
cannam@86 3844
cannam@86 3845 if test -n "$convenience"; then
cannam@86 3846 if test -n "$whole_archive_flag_spec"; then
cannam@86 3847 save_libobjs=$libobjs
cannam@86 3848 eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
cannam@86 3849 else
cannam@86 3850 gentop="$output_objdir/${outputname}x"
cannam@86 3851 generated="$generated $gentop"
cannam@86 3852
cannam@86 3853 func_extract_archives $gentop $convenience
cannam@86 3854 libobjs="$libobjs $func_extract_archives_result"
cannam@86 3855 fi
cannam@86 3856 fi
cannam@86 3857
cannam@86 3858 if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
cannam@86 3859 eval flag=\"$thread_safe_flag_spec\"
cannam@86 3860 linker_flags="$linker_flags $flag"
cannam@86 3861 fi
cannam@86 3862
cannam@86 3863 # Make a backup of the uninstalled library when relinking
cannam@86 3864 if test "$mode" = relink; then
cannam@86 3865 $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $?
cannam@86 3866 fi
cannam@86 3867
cannam@86 3868 # Do each of the archive commands.
cannam@86 3869 if test "$module" = yes && test -n "$module_cmds" ; then
cannam@86 3870 if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
cannam@86 3871 eval test_cmds=\"$module_expsym_cmds\"
cannam@86 3872 cmds=$module_expsym_cmds
cannam@86 3873 else
cannam@86 3874 eval test_cmds=\"$module_cmds\"
cannam@86 3875 cmds=$module_cmds
cannam@86 3876 fi
cannam@86 3877 else
cannam@86 3878 if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
cannam@86 3879 eval test_cmds=\"$archive_expsym_cmds\"
cannam@86 3880 cmds=$archive_expsym_cmds
cannam@86 3881 else
cannam@86 3882 eval test_cmds=\"$archive_cmds\"
cannam@86 3883 cmds=$archive_cmds
cannam@86 3884 fi
cannam@86 3885 fi
cannam@86 3886
cannam@86 3887 if test "X$skipped_export" != "X:" && len=`expr "X$test_cmds" : ".*"` &&
cannam@86 3888 test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
cannam@86 3889 :
cannam@86 3890 else
cannam@86 3891 # The command line is too long to link in one step, link piecewise.
cannam@86 3892 $echo "creating reloadable object files..."
cannam@86 3893
cannam@86 3894 # Save the value of $output and $libobjs because we want to
cannam@86 3895 # use them later. If we have whole_archive_flag_spec, we
cannam@86 3896 # want to use save_libobjs as it was before
cannam@86 3897 # whole_archive_flag_spec was expanded, because we can't
cannam@86 3898 # assume the linker understands whole_archive_flag_spec.
cannam@86 3899 # This may have to be revisited, in case too many
cannam@86 3900 # convenience libraries get linked in and end up exceeding
cannam@86 3901 # the spec.
cannam@86 3902 if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then
cannam@86 3903 save_libobjs=$libobjs
cannam@86 3904 fi
cannam@86 3905 save_output=$output
cannam@86 3906 output_la=`$echo "X$output" | $Xsed -e "$basename"`
cannam@86 3907
cannam@86 3908 # Clear the reloadable object creation command queue and
cannam@86 3909 # initialize k to one.
cannam@86 3910 test_cmds=
cannam@86 3911 concat_cmds=
cannam@86 3912 objlist=
cannam@86 3913 delfiles=
cannam@86 3914 last_robj=
cannam@86 3915 k=1
cannam@86 3916 output=$output_objdir/$output_la-${k}.$objext
cannam@86 3917 # Loop over the list of objects to be linked.
cannam@86 3918 for obj in $save_libobjs
cannam@86 3919 do
cannam@86 3920 eval test_cmds=\"$reload_cmds $objlist $last_robj\"
cannam@86 3921 if test "X$objlist" = X ||
cannam@86 3922 { len=`expr "X$test_cmds" : ".*"` &&
cannam@86 3923 test "$len" -le "$max_cmd_len"; }; then
cannam@86 3924 objlist="$objlist $obj"
cannam@86 3925 else
cannam@86 3926 # The command $test_cmds is almost too long, add a
cannam@86 3927 # command to the queue.
cannam@86 3928 if test "$k" -eq 1 ; then
cannam@86 3929 # The first file doesn't have a previous command to add.
cannam@86 3930 eval concat_cmds=\"$reload_cmds $objlist $last_robj\"
cannam@86 3931 else
cannam@86 3932 # All subsequent reloadable object files will link in
cannam@86 3933 # the last one created.
cannam@86 3934 eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj\"
cannam@86 3935 fi
cannam@86 3936 last_robj=$output_objdir/$output_la-${k}.$objext
cannam@86 3937 k=`expr $k + 1`
cannam@86 3938 output=$output_objdir/$output_la-${k}.$objext
cannam@86 3939 objlist=$obj
cannam@86 3940 len=1
cannam@86 3941 fi
cannam@86 3942 done
cannam@86 3943 # Handle the remaining objects by creating one last
cannam@86 3944 # reloadable object file. All subsequent reloadable object
cannam@86 3945 # files will link in the last one created.
cannam@86 3946 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
cannam@86 3947 eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\"
cannam@86 3948
cannam@86 3949 if ${skipped_export-false}; then
cannam@86 3950 $show "generating symbol list for \`$libname.la'"
cannam@86 3951 export_symbols="$output_objdir/$libname.exp"
cannam@86 3952 $run $rm $export_symbols
cannam@86 3953 libobjs=$output
cannam@86 3954 # Append the command to create the export file.
cannam@86 3955 eval concat_cmds=\"\$concat_cmds~$export_symbols_cmds\"
cannam@86 3956 fi
cannam@86 3957
cannam@86 3958 # Set up a command to remove the reloadable object files
cannam@86 3959 # after they are used.
cannam@86 3960 i=0
cannam@86 3961 while test "$i" -lt "$k"
cannam@86 3962 do
cannam@86 3963 i=`expr $i + 1`
cannam@86 3964 delfiles="$delfiles $output_objdir/$output_la-${i}.$objext"
cannam@86 3965 done
cannam@86 3966
cannam@86 3967 $echo "creating a temporary reloadable object file: $output"
cannam@86 3968
cannam@86 3969 # Loop through the commands generated above and execute them.
cannam@86 3970 save_ifs="$IFS"; IFS='~'
cannam@86 3971 for cmd in $concat_cmds; do
cannam@86 3972 IFS="$save_ifs"
cannam@86 3973 $show "$cmd"
cannam@86 3974 $run eval "$cmd" || exit $?
cannam@86 3975 done
cannam@86 3976 IFS="$save_ifs"
cannam@86 3977
cannam@86 3978 libobjs=$output
cannam@86 3979 # Restore the value of output.
cannam@86 3980 output=$save_output
cannam@86 3981
cannam@86 3982 if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then
cannam@86 3983 eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
cannam@86 3984 fi
cannam@86 3985 # Expand the library linking commands again to reset the
cannam@86 3986 # value of $libobjs for piecewise linking.
cannam@86 3987
cannam@86 3988 # Do each of the archive commands.
cannam@86 3989 if test "$module" = yes && test -n "$module_cmds" ; then
cannam@86 3990 if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
cannam@86 3991 cmds=$module_expsym_cmds
cannam@86 3992 else
cannam@86 3993 cmds=$module_cmds
cannam@86 3994 fi
cannam@86 3995 else
cannam@86 3996 if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
cannam@86 3997 cmds=$archive_expsym_cmds
cannam@86 3998 else
cannam@86 3999 cmds=$archive_cmds
cannam@86 4000 fi
cannam@86 4001 fi
cannam@86 4002
cannam@86 4003 # Append the command to remove the reloadable object files
cannam@86 4004 # to the just-reset $cmds.
cannam@86 4005 eval cmds=\"\$cmds~\$rm $delfiles\"
cannam@86 4006 fi
cannam@86 4007 save_ifs="$IFS"; IFS='~'
cannam@86 4008 for cmd in $cmds; do
cannam@86 4009 IFS="$save_ifs"
cannam@86 4010 eval cmd=\"$cmd\"
cannam@86 4011 $show "$cmd"
cannam@86 4012 $run eval "$cmd" || exit $?
cannam@86 4013 done
cannam@86 4014 IFS="$save_ifs"
cannam@86 4015
cannam@86 4016 # Restore the uninstalled library and exit
cannam@86 4017 if test "$mode" = relink; then
cannam@86 4018 $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $?
cannam@86 4019 exit $EXIT_SUCCESS
cannam@86 4020 fi
cannam@86 4021
cannam@86 4022 # Create links to the real library.
cannam@86 4023 for linkname in $linknames; do
cannam@86 4024 if test "$realname" != "$linkname"; then
cannam@86 4025 $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)"
cannam@86 4026 $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $?
cannam@86 4027 fi
cannam@86 4028 done
cannam@86 4029
cannam@86 4030 # If -module or -export-dynamic was specified, set the dlname.
cannam@86 4031 if test "$module" = yes || test "$export_dynamic" = yes; then
cannam@86 4032 # On all known operating systems, these are identical.
cannam@86 4033 dlname="$soname"
cannam@86 4034 fi
cannam@86 4035 fi
cannam@86 4036 ;;
cannam@86 4037
cannam@86 4038 obj)
cannam@86 4039 if test -n "$deplibs"; then
cannam@86 4040 $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2
cannam@86 4041 fi
cannam@86 4042
cannam@86 4043 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@86 4044 $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2
cannam@86 4045 fi
cannam@86 4046
cannam@86 4047 if test -n "$rpath"; then
cannam@86 4048 $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2
cannam@86 4049 fi
cannam@86 4050
cannam@86 4051 if test -n "$xrpath"; then
cannam@86 4052 $echo "$modename: warning: \`-R' is ignored for objects" 1>&2
cannam@86 4053 fi
cannam@86 4054
cannam@86 4055 if test -n "$vinfo"; then
cannam@86 4056 $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2
cannam@86 4057 fi
cannam@86 4058
cannam@86 4059 if test -n "$release"; then
cannam@86 4060 $echo "$modename: warning: \`-release' is ignored for objects" 1>&2
cannam@86 4061 fi
cannam@86 4062
cannam@86 4063 case $output in
cannam@86 4064 *.lo)
cannam@86 4065 if test -n "$objs$old_deplibs"; then
cannam@86 4066 $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2
cannam@86 4067 exit $EXIT_FAILURE
cannam@86 4068 fi
cannam@86 4069 libobj="$output"
cannam@86 4070 obj=`$echo "X$output" | $Xsed -e "$lo2o"`
cannam@86 4071 ;;
cannam@86 4072 *)
cannam@86 4073 libobj=
cannam@86 4074 obj="$output"
cannam@86 4075 ;;
cannam@86 4076 esac
cannam@86 4077
cannam@86 4078 # Delete the old objects.
cannam@86 4079 $run $rm $obj $libobj
cannam@86 4080
cannam@86 4081 # Objects from convenience libraries. This assumes
cannam@86 4082 # single-version convenience libraries. Whenever we create
cannam@86 4083 # different ones for PIC/non-PIC, this we'll have to duplicate
cannam@86 4084 # the extraction.
cannam@86 4085 reload_conv_objs=
cannam@86 4086 gentop=
cannam@86 4087 # reload_cmds runs $LD directly, so let us get rid of
cannam@86 4088 # -Wl from whole_archive_flag_spec
cannam@86 4089 wl=
cannam@86 4090
cannam@86 4091 if test -n "$convenience"; then
cannam@86 4092 if test -n "$whole_archive_flag_spec"; then
cannam@86 4093 eval reload_conv_objs=\"\$reload_objs $whole_archive_flag_spec\"
cannam@86 4094 else
cannam@86 4095 gentop="$output_objdir/${obj}x"
cannam@86 4096 generated="$generated $gentop"
cannam@86 4097
cannam@86 4098 func_extract_archives $gentop $convenience
cannam@86 4099 reload_conv_objs="$reload_objs $func_extract_archives_result"
cannam@86 4100 fi
cannam@86 4101 fi
cannam@86 4102
cannam@86 4103 # Create the old-style object.
cannam@86 4104 reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test
cannam@86 4105
cannam@86 4106 output="$obj"
cannam@86 4107 cmds=$reload_cmds
cannam@86 4108 save_ifs="$IFS"; IFS='~'
cannam@86 4109 for cmd in $cmds; do
cannam@86 4110 IFS="$save_ifs"
cannam@86 4111 eval cmd=\"$cmd\"
cannam@86 4112 $show "$cmd"
cannam@86 4113 $run eval "$cmd" || exit $?
cannam@86 4114 done
cannam@86 4115 IFS="$save_ifs"
cannam@86 4116
cannam@86 4117 # Exit if we aren't doing a library object file.
cannam@86 4118 if test -z "$libobj"; then
cannam@86 4119 if test -n "$gentop"; then
cannam@86 4120 $show "${rm}r $gentop"
cannam@86 4121 $run ${rm}r $gentop
cannam@86 4122 fi
cannam@86 4123
cannam@86 4124 exit $EXIT_SUCCESS
cannam@86 4125 fi
cannam@86 4126
cannam@86 4127 if test "$build_libtool_libs" != yes; then
cannam@86 4128 if test -n "$gentop"; then
cannam@86 4129 $show "${rm}r $gentop"
cannam@86 4130 $run ${rm}r $gentop
cannam@86 4131 fi
cannam@86 4132
cannam@86 4133 # Create an invalid libtool object if no PIC, so that we don't
cannam@86 4134 # accidentally link it into a program.
cannam@86 4135 # $show "echo timestamp > $libobj"
cannam@86 4136 # $run eval "echo timestamp > $libobj" || exit $?
cannam@86 4137 exit $EXIT_SUCCESS
cannam@86 4138 fi
cannam@86 4139
cannam@86 4140 if test -n "$pic_flag" || test "$pic_mode" != default; then
cannam@86 4141 # Only do commands if we really have different PIC objects.
cannam@86 4142 reload_objs="$libobjs $reload_conv_objs"
cannam@86 4143 output="$libobj"
cannam@86 4144 cmds=$reload_cmds
cannam@86 4145 save_ifs="$IFS"; IFS='~'
cannam@86 4146 for cmd in $cmds; do
cannam@86 4147 IFS="$save_ifs"
cannam@86 4148 eval cmd=\"$cmd\"
cannam@86 4149 $show "$cmd"
cannam@86 4150 $run eval "$cmd" || exit $?
cannam@86 4151 done
cannam@86 4152 IFS="$save_ifs"
cannam@86 4153 fi
cannam@86 4154
cannam@86 4155 if test -n "$gentop"; then
cannam@86 4156 $show "${rm}r $gentop"
cannam@86 4157 $run ${rm}r $gentop
cannam@86 4158 fi
cannam@86 4159
cannam@86 4160 exit $EXIT_SUCCESS
cannam@86 4161 ;;
cannam@86 4162
cannam@86 4163 prog)
cannam@86 4164 case $host in
cannam@86 4165 *cygwin*) output=`$echo $output | ${SED} -e 's,.exe$,,;s,$,.exe,'` ;;
cannam@86 4166 esac
cannam@86 4167 if test -n "$vinfo"; then
cannam@86 4168 $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2
cannam@86 4169 fi
cannam@86 4170
cannam@86 4171 if test -n "$release"; then
cannam@86 4172 $echo "$modename: warning: \`-release' is ignored for programs" 1>&2
cannam@86 4173 fi
cannam@86 4174
cannam@86 4175 if test "$preload" = yes; then
cannam@86 4176 if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown &&
cannam@86 4177 test "$dlopen_self_static" = unknown; then
cannam@86 4178 $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support."
cannam@86 4179 fi
cannam@86 4180 fi
cannam@86 4181
cannam@86 4182 case $host in
cannam@86 4183 *-*-rhapsody* | *-*-darwin1.[012])
cannam@86 4184 # On Rhapsody replace the C library is the System framework
cannam@86 4185 compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
cannam@86 4186 finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
cannam@86 4187 ;;
cannam@86 4188 esac
cannam@86 4189
cannam@86 4190 case $host in
cannam@86 4191 *darwin*)
cannam@86 4192 # Don't allow lazy linking, it breaks C++ global constructors
cannam@86 4193 if test "$tagname" = CXX ; then
cannam@86 4194 compile_command="$compile_command ${wl}-bind_at_load"
cannam@86 4195 finalize_command="$finalize_command ${wl}-bind_at_load"
cannam@86 4196 fi
cannam@86 4197 ;;
cannam@86 4198 esac
cannam@86 4199
cannam@86 4200 compile_command="$compile_command $compile_deplibs"
cannam@86 4201 finalize_command="$finalize_command $finalize_deplibs"
cannam@86 4202
cannam@86 4203 if test -n "$rpath$xrpath"; then
cannam@86 4204 # If the user specified any rpath flags, then add them.
cannam@86 4205 for libdir in $rpath $xrpath; do
cannam@86 4206 # This is the magic to use -rpath.
cannam@86 4207 case "$finalize_rpath " in
cannam@86 4208 *" $libdir "*) ;;
cannam@86 4209 *) finalize_rpath="$finalize_rpath $libdir" ;;
cannam@86 4210 esac
cannam@86 4211 done
cannam@86 4212 fi
cannam@86 4213
cannam@86 4214 # Now hardcode the library paths
cannam@86 4215 rpath=
cannam@86 4216 hardcode_libdirs=
cannam@86 4217 for libdir in $compile_rpath $finalize_rpath; do
cannam@86 4218 if test -n "$hardcode_libdir_flag_spec"; then
cannam@86 4219 if test -n "$hardcode_libdir_separator"; then
cannam@86 4220 if test -z "$hardcode_libdirs"; then
cannam@86 4221 hardcode_libdirs="$libdir"
cannam@86 4222 else
cannam@86 4223 # Just accumulate the unique libdirs.
cannam@86 4224 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@86 4225 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@86 4226 ;;
cannam@86 4227 *)
cannam@86 4228 hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
cannam@86 4229 ;;
cannam@86 4230 esac
cannam@86 4231 fi
cannam@86 4232 else
cannam@86 4233 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@86 4234 rpath="$rpath $flag"
cannam@86 4235 fi
cannam@86 4236 elif test -n "$runpath_var"; then
cannam@86 4237 case "$perm_rpath " in
cannam@86 4238 *" $libdir "*) ;;
cannam@86 4239 *) perm_rpath="$perm_rpath $libdir" ;;
cannam@86 4240 esac
cannam@86 4241 fi
cannam@86 4242 case $host in
cannam@86 4243 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
cannam@86 4244 case :$dllsearchpath: in
cannam@86 4245 *":$libdir:"*) ;;
cannam@86 4246 *) dllsearchpath="$dllsearchpath:$libdir";;
cannam@86 4247 esac
cannam@86 4248 ;;
cannam@86 4249 esac
cannam@86 4250 done
cannam@86 4251 # Substitute the hardcoded libdirs into the rpath.
cannam@86 4252 if test -n "$hardcode_libdir_separator" &&
cannam@86 4253 test -n "$hardcode_libdirs"; then
cannam@86 4254 libdir="$hardcode_libdirs"
cannam@86 4255 eval rpath=\" $hardcode_libdir_flag_spec\"
cannam@86 4256 fi
cannam@86 4257 compile_rpath="$rpath"
cannam@86 4258
cannam@86 4259 rpath=
cannam@86 4260 hardcode_libdirs=
cannam@86 4261 for libdir in $finalize_rpath; do
cannam@86 4262 if test -n "$hardcode_libdir_flag_spec"; then
cannam@86 4263 if test -n "$hardcode_libdir_separator"; then
cannam@86 4264 if test -z "$hardcode_libdirs"; then
cannam@86 4265 hardcode_libdirs="$libdir"
cannam@86 4266 else
cannam@86 4267 # Just accumulate the unique libdirs.
cannam@86 4268 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@86 4269 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@86 4270 ;;
cannam@86 4271 *)
cannam@86 4272 hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
cannam@86 4273 ;;
cannam@86 4274 esac
cannam@86 4275 fi
cannam@86 4276 else
cannam@86 4277 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@86 4278 rpath="$rpath $flag"
cannam@86 4279 fi
cannam@86 4280 elif test -n "$runpath_var"; then
cannam@86 4281 case "$finalize_perm_rpath " in
cannam@86 4282 *" $libdir "*) ;;
cannam@86 4283 *) finalize_perm_rpath="$finalize_perm_rpath $libdir" ;;
cannam@86 4284 esac
cannam@86 4285 fi
cannam@86 4286 done
cannam@86 4287 # Substitute the hardcoded libdirs into the rpath.
cannam@86 4288 if test -n "$hardcode_libdir_separator" &&
cannam@86 4289 test -n "$hardcode_libdirs"; then
cannam@86 4290 libdir="$hardcode_libdirs"
cannam@86 4291 eval rpath=\" $hardcode_libdir_flag_spec\"
cannam@86 4292 fi
cannam@86 4293 finalize_rpath="$rpath"
cannam@86 4294
cannam@86 4295 if test -n "$libobjs" && test "$build_old_libs" = yes; then
cannam@86 4296 # Transform all the library objects into standard objects.
cannam@86 4297 compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
cannam@86 4298 finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
cannam@86 4299 fi
cannam@86 4300
cannam@86 4301 dlsyms=
cannam@86 4302 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@86 4303 if test -n "$NM" && test -n "$global_symbol_pipe"; then
cannam@86 4304 dlsyms="${outputname}S.c"
cannam@86 4305 else
cannam@86 4306 $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2
cannam@86 4307 fi
cannam@86 4308 fi
cannam@86 4309
cannam@86 4310 if test -n "$dlsyms"; then
cannam@86 4311 case $dlsyms in
cannam@86 4312 "") ;;
cannam@86 4313 *.c)
cannam@86 4314 # Discover the nlist of each of the dlfiles.
cannam@86 4315 nlist="$output_objdir/${outputname}.nm"
cannam@86 4316
cannam@86 4317 $show "$rm $nlist ${nlist}S ${nlist}T"
cannam@86 4318 $run $rm "$nlist" "${nlist}S" "${nlist}T"
cannam@86 4319
cannam@86 4320 # Parse the name list into a source file.
cannam@86 4321 $show "creating $output_objdir/$dlsyms"
cannam@86 4322
cannam@86 4323 test -z "$run" && $echo > "$output_objdir/$dlsyms" "\
cannam@86 4324 /* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */
cannam@86 4325 /* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */
cannam@86 4326
cannam@86 4327 #ifdef __cplusplus
cannam@86 4328 extern \"C\" {
cannam@86 4329 #endif
cannam@86 4330
cannam@86 4331 /* Prevent the only kind of declaration conflicts we can make. */
cannam@86 4332 #define lt_preloaded_symbols some_other_symbol
cannam@86 4333
cannam@86 4334 /* External symbol declarations for the compiler. */\
cannam@86 4335 "
cannam@86 4336
cannam@86 4337 if test "$dlself" = yes; then
cannam@86 4338 $show "generating symbol list for \`$output'"
cannam@86 4339
cannam@86 4340 test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist"
cannam@86 4341
cannam@86 4342 # Add our own program objects to the symbol list.
cannam@86 4343 progfiles=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
cannam@86 4344 for arg in $progfiles; do
cannam@86 4345 $show "extracting global C symbols from \`$arg'"
cannam@86 4346 $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
cannam@86 4347 done
cannam@86 4348
cannam@86 4349 if test -n "$exclude_expsyms"; then
cannam@86 4350 $run eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
cannam@86 4351 $run eval '$mv "$nlist"T "$nlist"'
cannam@86 4352 fi
cannam@86 4353
cannam@86 4354 if test -n "$export_symbols_regex"; then
cannam@86 4355 $run eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T'
cannam@86 4356 $run eval '$mv "$nlist"T "$nlist"'
cannam@86 4357 fi
cannam@86 4358
cannam@86 4359 # Prepare the list of exported symbols
cannam@86 4360 if test -z "$export_symbols"; then
cannam@86 4361 export_symbols="$output_objdir/$outputname.exp"
cannam@86 4362 $run $rm $export_symbols
cannam@86 4363 $run eval "${SED} -n -e '/^: @PROGRAM@$/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
cannam@86 4364 else
cannam@86 4365 $run eval "${SED} -e 's/\([ ][.*^$]\)/\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"'
cannam@86 4366 $run eval 'grep -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T'
cannam@86 4367 $run eval 'mv "$nlist"T "$nlist"'
cannam@86 4368 fi
cannam@86 4369 fi
cannam@86 4370
cannam@86 4371 for arg in $dlprefiles; do
cannam@86 4372 $show "extracting global C symbols from \`$arg'"
cannam@86 4373 name=`$echo "$arg" | ${SED} -e 's%^.*/%%'`
cannam@86 4374 $run eval '$echo ": $name " >> "$nlist"'
cannam@86 4375 $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
cannam@86 4376 done
cannam@86 4377
cannam@86 4378 if test -z "$run"; then
cannam@86 4379 # Make sure we have at least an empty file.
cannam@86 4380 test -f "$nlist" || : > "$nlist"
cannam@86 4381
cannam@86 4382 if test -n "$exclude_expsyms"; then
cannam@86 4383 $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
cannam@86 4384 $mv "$nlist"T "$nlist"
cannam@86 4385 fi
cannam@86 4386
cannam@86 4387 # Try sorting and uniquifying the output.
cannam@86 4388 if grep -v "^: " < "$nlist" |
cannam@86 4389 if sort -k 3 </dev/null >/dev/null 2>&1; then
cannam@86 4390 sort -k 3
cannam@86 4391 else
cannam@86 4392 sort +2
cannam@86 4393 fi |
cannam@86 4394 uniq > "$nlist"S; then
cannam@86 4395 :
cannam@86 4396 else
cannam@86 4397 grep -v "^: " < "$nlist" > "$nlist"S
cannam@86 4398 fi
cannam@86 4399
cannam@86 4400 if test -f "$nlist"S; then
cannam@86 4401 eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"'
cannam@86 4402 else
cannam@86 4403 $echo '/* NONE */' >> "$output_objdir/$dlsyms"
cannam@86 4404 fi
cannam@86 4405
cannam@86 4406 $echo >> "$output_objdir/$dlsyms" "\
cannam@86 4407
cannam@86 4408 #undef lt_preloaded_symbols
cannam@86 4409
cannam@86 4410 #if defined (__STDC__) && __STDC__
cannam@86 4411 # define lt_ptr void *
cannam@86 4412 #else
cannam@86 4413 # define lt_ptr char *
cannam@86 4414 # define const
cannam@86 4415 #endif
cannam@86 4416
cannam@86 4417 /* The mapping between symbol names and symbols. */
cannam@86 4418 "
cannam@86 4419
cannam@86 4420 case $host in
cannam@86 4421 *cygwin* | *mingw* )
cannam@86 4422 $echo >> "$output_objdir/$dlsyms" "\
cannam@86 4423 /* DATA imports from DLLs on WIN32 can't be const, because
cannam@86 4424 runtime relocations are performed -- see ld's documentation
cannam@86 4425 on pseudo-relocs */
cannam@86 4426 struct {
cannam@86 4427 "
cannam@86 4428 ;;
cannam@86 4429 * )
cannam@86 4430 $echo >> "$output_objdir/$dlsyms" "\
cannam@86 4431 const struct {
cannam@86 4432 "
cannam@86 4433 ;;
cannam@86 4434 esac
cannam@86 4435
cannam@86 4436
cannam@86 4437 $echo >> "$output_objdir/$dlsyms" "\
cannam@86 4438 const char *name;
cannam@86 4439 lt_ptr address;
cannam@86 4440 }
cannam@86 4441 lt_preloaded_symbols[] =
cannam@86 4442 {\
cannam@86 4443 "
cannam@86 4444
cannam@86 4445 eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$dlsyms"
cannam@86 4446
cannam@86 4447 $echo >> "$output_objdir/$dlsyms" "\
cannam@86 4448 {0, (lt_ptr) 0}
cannam@86 4449 };
cannam@86 4450
cannam@86 4451 /* This works around a problem in FreeBSD linker */
cannam@86 4452 #ifdef FREEBSD_WORKAROUND
cannam@86 4453 static const void *lt_preloaded_setup() {
cannam@86 4454 return lt_preloaded_symbols;
cannam@86 4455 }
cannam@86 4456 #endif
cannam@86 4457
cannam@86 4458 #ifdef __cplusplus
cannam@86 4459 }
cannam@86 4460 #endif\
cannam@86 4461 "
cannam@86 4462 fi
cannam@86 4463
cannam@86 4464 pic_flag_for_symtable=
cannam@86 4465 case $host in
cannam@86 4466 # compiling the symbol table file with pic_flag works around
cannam@86 4467 # a FreeBSD bug that causes programs to crash when -lm is
cannam@86 4468 # linked before any other PIC object. But we must not use
cannam@86 4469 # pic_flag when linking with -static. The problem exists in
cannam@86 4470 # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
cannam@86 4471 *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
cannam@86 4472 case "$compile_command " in
cannam@86 4473 *" -static "*) ;;
cannam@86 4474 *) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND";;
cannam@86 4475 esac;;
cannam@86 4476 *-*-hpux*)
cannam@86 4477 case "$compile_command " in
cannam@86 4478 *" -static "*) ;;
cannam@86 4479 *) pic_flag_for_symtable=" $pic_flag";;
cannam@86 4480 esac
cannam@86 4481 esac
cannam@86 4482
cannam@86 4483 # Now compile the dynamic symbol file.
cannam@86 4484 $show "(cd $output_objdir && $LTCC -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")"
cannam@86 4485 $run eval '(cd $output_objdir && $LTCC -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $?
cannam@86 4486
cannam@86 4487 # Clean up the generated files.
cannam@86 4488 $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T"
cannam@86 4489 $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T"
cannam@86 4490
cannam@86 4491 # Transform the symbol file into the correct name.
cannam@86 4492 compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
cannam@86 4493 finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
cannam@86 4494 ;;
cannam@86 4495 *)
cannam@86 4496 $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2
cannam@86 4497 exit $EXIT_FAILURE
cannam@86 4498 ;;
cannam@86 4499 esac
cannam@86 4500 else
cannam@86 4501 # We keep going just in case the user didn't refer to
cannam@86 4502 # lt_preloaded_symbols. The linker will fail if global_symbol_pipe
cannam@86 4503 # really was required.
cannam@86 4504
cannam@86 4505 # Nullify the symbol file.
cannam@86 4506 compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
cannam@86 4507 finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
cannam@86 4508 fi
cannam@86 4509
cannam@86 4510 if test "$need_relink" = no || test "$build_libtool_libs" != yes; then
cannam@86 4511 # Replace the output file specification.
cannam@86 4512 compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
cannam@86 4513 link_command="$compile_command$compile_rpath"
cannam@86 4514
cannam@86 4515 # We have no uninstalled library dependencies, so finalize right now.
cannam@86 4516 $show "$link_command"
cannam@86 4517 $run eval "$link_command"
cannam@86 4518 status=$?
cannam@86 4519
cannam@86 4520 # Delete the generated files.
cannam@86 4521 if test -n "$dlsyms"; then
cannam@86 4522 $show "$rm $output_objdir/${outputname}S.${objext}"
cannam@86 4523 $run $rm "$output_objdir/${outputname}S.${objext}"
cannam@86 4524 fi
cannam@86 4525
cannam@86 4526 exit $status
cannam@86 4527 fi
cannam@86 4528
cannam@86 4529 if test -n "$shlibpath_var"; then
cannam@86 4530 # We should set the shlibpath_var
cannam@86 4531 rpath=
cannam@86 4532 for dir in $temp_rpath; do
cannam@86 4533 case $dir in
cannam@86 4534 [\\/]* | [A-Za-z]:[\\/]*)
cannam@86 4535 # Absolute path.
cannam@86 4536 rpath="$rpath$dir:"
cannam@86 4537 ;;
cannam@86 4538 *)
cannam@86 4539 # Relative path: add a thisdir entry.
cannam@86 4540 rpath="$rpath\$thisdir/$dir:"
cannam@86 4541 ;;
cannam@86 4542 esac
cannam@86 4543 done
cannam@86 4544 temp_rpath="$rpath"
cannam@86 4545 fi
cannam@86 4546
cannam@86 4547 if test -n "$compile_shlibpath$finalize_shlibpath"; then
cannam@86 4548 compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command"
cannam@86 4549 fi
cannam@86 4550 if test -n "$finalize_shlibpath"; then
cannam@86 4551 finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
cannam@86 4552 fi
cannam@86 4553
cannam@86 4554 compile_var=
cannam@86 4555 finalize_var=
cannam@86 4556 if test -n "$runpath_var"; then
cannam@86 4557 if test -n "$perm_rpath"; then
cannam@86 4558 # We should set the runpath_var.
cannam@86 4559 rpath=
cannam@86 4560 for dir in $perm_rpath; do
cannam@86 4561 rpath="$rpath$dir:"
cannam@86 4562 done
cannam@86 4563 compile_var="$runpath_var=\"$rpath\$$runpath_var\" "
cannam@86 4564 fi
cannam@86 4565 if test -n "$finalize_perm_rpath"; then
cannam@86 4566 # We should set the runpath_var.
cannam@86 4567 rpath=
cannam@86 4568 for dir in $finalize_perm_rpath; do
cannam@86 4569 rpath="$rpath$dir:"
cannam@86 4570 done
cannam@86 4571 finalize_var="$runpath_var=\"$rpath\$$runpath_var\" "
cannam@86 4572 fi
cannam@86 4573 fi
cannam@86 4574
cannam@86 4575 if test "$no_install" = yes; then
cannam@86 4576 # We don't need to create a wrapper script.
cannam@86 4577 link_command="$compile_var$compile_command$compile_rpath"
cannam@86 4578 # Replace the output file specification.
cannam@86 4579 link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
cannam@86 4580 # Delete the old output file.
cannam@86 4581 $run $rm $output
cannam@86 4582 # Link the executable and exit
cannam@86 4583 $show "$link_command"
cannam@86 4584 $run eval "$link_command" || exit $?
cannam@86 4585 exit $EXIT_SUCCESS
cannam@86 4586 fi
cannam@86 4587
cannam@86 4588 if test "$hardcode_action" = relink; then
cannam@86 4589 # Fast installation is not supported
cannam@86 4590 link_command="$compile_var$compile_command$compile_rpath"
cannam@86 4591 relink_command="$finalize_var$finalize_command$finalize_rpath"
cannam@86 4592
cannam@86 4593 $echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2
cannam@86 4594 $echo "$modename: \`$output' will be relinked during installation" 1>&2
cannam@86 4595 else
cannam@86 4596 if test "$fast_install" != no; then
cannam@86 4597 link_command="$finalize_var$compile_command$finalize_rpath"
cannam@86 4598 if test "$fast_install" = yes; then
cannam@86 4599 relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'`
cannam@86 4600 else
cannam@86 4601 # fast_install is set to needless
cannam@86 4602 relink_command=
cannam@86 4603 fi
cannam@86 4604 else
cannam@86 4605 link_command="$compile_var$compile_command$compile_rpath"
cannam@86 4606 relink_command="$finalize_var$finalize_command$finalize_rpath"
cannam@86 4607 fi
cannam@86 4608 fi
cannam@86 4609
cannam@86 4610 # Replace the output file specification.
cannam@86 4611 link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
cannam@86 4612
cannam@86 4613 # Delete the old output files.
cannam@86 4614 $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname
cannam@86 4615
cannam@86 4616 $show "$link_command"
cannam@86 4617 $run eval "$link_command" || exit $?
cannam@86 4618
cannam@86 4619 # Now create the wrapper script.
cannam@86 4620 $show "creating $output"
cannam@86 4621
cannam@86 4622 # Quote the relink command for shipping.
cannam@86 4623 if test -n "$relink_command"; then
cannam@86 4624 # Preserve any variables that may affect compiler behavior
cannam@86 4625 for var in $variables_saved_for_relink; do
cannam@86 4626 if eval test -z \"\${$var+set}\"; then
cannam@86 4627 relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
cannam@86 4628 elif eval var_value=\$$var; test -z "$var_value"; then
cannam@86 4629 relink_command="$var=; export $var; $relink_command"
cannam@86 4630 else
cannam@86 4631 var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
cannam@86 4632 relink_command="$var=\"$var_value\"; export $var; $relink_command"
cannam@86 4633 fi
cannam@86 4634 done
cannam@86 4635 relink_command="(cd `pwd`; $relink_command)"
cannam@86 4636 relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
cannam@86 4637 fi
cannam@86 4638
cannam@86 4639 # Quote $echo for shipping.
cannam@86 4640 if test "X$echo" = "X$SHELL $progpath --fallback-echo"; then
cannam@86 4641 case $progpath in
cannam@86 4642 [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $progpath --fallback-echo";;
cannam@86 4643 *) qecho="$SHELL `pwd`/$progpath --fallback-echo";;
cannam@86 4644 esac
cannam@86 4645 qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"`
cannam@86 4646 else
cannam@86 4647 qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"`
cannam@86 4648 fi
cannam@86 4649
cannam@86 4650 # Only actually do things if our run command is non-null.
cannam@86 4651 if test -z "$run"; then
cannam@86 4652 # win32 will think the script is a binary if it has
cannam@86 4653 # a .exe suffix, so we strip it off here.
cannam@86 4654 case $output in
cannam@86 4655 *.exe) output=`$echo $output|${SED} 's,.exe$,,'` ;;
cannam@86 4656 esac
cannam@86 4657 # test for cygwin because mv fails w/o .exe extensions
cannam@86 4658 case $host in
cannam@86 4659 *cygwin*)
cannam@86 4660 exeext=.exe
cannam@86 4661 outputname=`$echo $outputname|${SED} 's,.exe$,,'` ;;
cannam@86 4662 *) exeext= ;;
cannam@86 4663 esac
cannam@86 4664 case $host in
cannam@86 4665 *cygwin* | *mingw* )
cannam@86 4666 cwrappersource=`$echo ${objdir}/lt-${outputname}.c`
cannam@86 4667 cwrapper=`$echo ${output}.exe`
cannam@86 4668 $rm $cwrappersource $cwrapper
cannam@86 4669 trap "$rm $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
cannam@86 4670
cannam@86 4671 cat > $cwrappersource <<EOF
cannam@86 4672
cannam@86 4673 /* $cwrappersource - temporary wrapper executable for $objdir/$outputname
cannam@86 4674 Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
cannam@86 4675
cannam@86 4676 The $output program cannot be directly executed until all the libtool
cannam@86 4677 libraries that it depends on are installed.
cannam@86 4678
cannam@86 4679 This wrapper executable should never be moved out of the build directory.
cannam@86 4680 If it is, it will not operate correctly.
cannam@86 4681
cannam@86 4682 Currently, it simply execs the wrapper *script* "/bin/sh $output",
cannam@86 4683 but could eventually absorb all of the scripts functionality and
cannam@86 4684 exec $objdir/$outputname directly.
cannam@86 4685 */
cannam@86 4686 EOF
cannam@86 4687 cat >> $cwrappersource<<"EOF"
cannam@86 4688 #include <stdio.h>
cannam@86 4689 #include <stdlib.h>
cannam@86 4690 #include <unistd.h>
cannam@86 4691 #include <malloc.h>
cannam@86 4692 #include <stdarg.h>
cannam@86 4693 #include <assert.h>
cannam@86 4694
cannam@86 4695 #if defined(PATH_MAX)
cannam@86 4696 # define LT_PATHMAX PATH_MAX
cannam@86 4697 #elif defined(MAXPATHLEN)
cannam@86 4698 # define LT_PATHMAX MAXPATHLEN
cannam@86 4699 #else
cannam@86 4700 # define LT_PATHMAX 1024
cannam@86 4701 #endif
cannam@86 4702
cannam@86 4703 #ifndef DIR_SEPARATOR
cannam@86 4704 #define DIR_SEPARATOR '/'
cannam@86 4705 #endif
cannam@86 4706
cannam@86 4707 #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \
cannam@86 4708 defined (__OS2__)
cannam@86 4709 #define HAVE_DOS_BASED_FILE_SYSTEM
cannam@86 4710 #ifndef DIR_SEPARATOR_2
cannam@86 4711 #define DIR_SEPARATOR_2 '\\'
cannam@86 4712 #endif
cannam@86 4713 #endif
cannam@86 4714
cannam@86 4715 #ifndef DIR_SEPARATOR_2
cannam@86 4716 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
cannam@86 4717 #else /* DIR_SEPARATOR_2 */
cannam@86 4718 # define IS_DIR_SEPARATOR(ch) \
cannam@86 4719 (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
cannam@86 4720 #endif /* DIR_SEPARATOR_2 */
cannam@86 4721
cannam@86 4722 #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type)))
cannam@86 4723 #define XFREE(stale) do { \
cannam@86 4724 if (stale) { free ((void *) stale); stale = 0; } \
cannam@86 4725 } while (0)
cannam@86 4726
cannam@86 4727 const char *program_name = NULL;
cannam@86 4728
cannam@86 4729 void * xmalloc (size_t num);
cannam@86 4730 char * xstrdup (const char *string);
cannam@86 4731 char * basename (const char *name);
cannam@86 4732 char * fnqualify(const char *path);
cannam@86 4733 char * strendzap(char *str, const char *pat);
cannam@86 4734 void lt_fatal (const char *message, ...);
cannam@86 4735
cannam@86 4736 int
cannam@86 4737 main (int argc, char *argv[])
cannam@86 4738 {
cannam@86 4739 char **newargz;
cannam@86 4740 int i;
cannam@86 4741
cannam@86 4742 program_name = (char *) xstrdup ((char *) basename (argv[0]));
cannam@86 4743 newargz = XMALLOC(char *, argc+2);
cannam@86 4744 EOF
cannam@86 4745
cannam@86 4746 cat >> $cwrappersource <<EOF
cannam@86 4747 newargz[0] = "$SHELL";
cannam@86 4748 EOF
cannam@86 4749
cannam@86 4750 cat >> $cwrappersource <<"EOF"
cannam@86 4751 newargz[1] = fnqualify(argv[0]);
cannam@86 4752 /* we know the script has the same name, without the .exe */
cannam@86 4753 /* so make sure newargz[1] doesn't end in .exe */
cannam@86 4754 strendzap(newargz[1],".exe");
cannam@86 4755 for (i = 1; i < argc; i++)
cannam@86 4756 newargz[i+1] = xstrdup(argv[i]);
cannam@86 4757 newargz[argc+1] = NULL;
cannam@86 4758 EOF
cannam@86 4759
cannam@86 4760 cat >> $cwrappersource <<EOF
cannam@86 4761 execv("$SHELL",newargz);
cannam@86 4762 EOF
cannam@86 4763
cannam@86 4764 cat >> $cwrappersource <<"EOF"
cannam@86 4765 }
cannam@86 4766
cannam@86 4767 void *
cannam@86 4768 xmalloc (size_t num)
cannam@86 4769 {
cannam@86 4770 void * p = (void *) malloc (num);
cannam@86 4771 if (!p)
cannam@86 4772 lt_fatal ("Memory exhausted");
cannam@86 4773
cannam@86 4774 return p;
cannam@86 4775 }
cannam@86 4776
cannam@86 4777 char *
cannam@86 4778 xstrdup (const char *string)
cannam@86 4779 {
cannam@86 4780 return string ? strcpy ((char *) xmalloc (strlen (string) + 1), string) : NULL
cannam@86 4781 ;
cannam@86 4782 }
cannam@86 4783
cannam@86 4784 char *
cannam@86 4785 basename (const char *name)
cannam@86 4786 {
cannam@86 4787 const char *base;
cannam@86 4788
cannam@86 4789 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
cannam@86 4790 /* Skip over the disk name in MSDOS pathnames. */
cannam@86 4791 if (isalpha (name[0]) && name[1] == ':')
cannam@86 4792 name += 2;
cannam@86 4793 #endif
cannam@86 4794
cannam@86 4795 for (base = name; *name; name++)
cannam@86 4796 if (IS_DIR_SEPARATOR (*name))
cannam@86 4797 base = name + 1;
cannam@86 4798 return (char *) base;
cannam@86 4799 }
cannam@86 4800
cannam@86 4801 char *
cannam@86 4802 fnqualify(const char *path)
cannam@86 4803 {
cannam@86 4804 size_t size;
cannam@86 4805 char *p;
cannam@86 4806 char tmp[LT_PATHMAX + 1];
cannam@86 4807
cannam@86 4808 assert(path != NULL);
cannam@86 4809
cannam@86 4810 /* Is it qualified already? */
cannam@86 4811 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
cannam@86 4812 if (isalpha (path[0]) && path[1] == ':')
cannam@86 4813 return xstrdup (path);
cannam@86 4814 #endif
cannam@86 4815 if (IS_DIR_SEPARATOR (path[0]))
cannam@86 4816 return xstrdup (path);
cannam@86 4817
cannam@86 4818 /* prepend the current directory */
cannam@86 4819 /* doesn't handle '~' */
cannam@86 4820 if (getcwd (tmp, LT_PATHMAX) == NULL)
cannam@86 4821 lt_fatal ("getcwd failed");
cannam@86 4822 size = strlen(tmp) + 1 + strlen(path) + 1; /* +2 for '/' and '\0' */
cannam@86 4823 p = XMALLOC(char, size);
cannam@86 4824 sprintf(p, "%s%c%s", tmp, DIR_SEPARATOR, path);
cannam@86 4825 return p;
cannam@86 4826 }
cannam@86 4827
cannam@86 4828 char *
cannam@86 4829 strendzap(char *str, const char *pat)
cannam@86 4830 {
cannam@86 4831 size_t len, patlen;
cannam@86 4832
cannam@86 4833 assert(str != NULL);
cannam@86 4834 assert(pat != NULL);
cannam@86 4835
cannam@86 4836 len = strlen(str);
cannam@86 4837 patlen = strlen(pat);
cannam@86 4838
cannam@86 4839 if (patlen <= len)
cannam@86 4840 {
cannam@86 4841 str += len - patlen;
cannam@86 4842 if (strcmp(str, pat) == 0)
cannam@86 4843 *str = '\0';
cannam@86 4844 }
cannam@86 4845 return str;
cannam@86 4846 }
cannam@86 4847
cannam@86 4848 static void
cannam@86 4849 lt_error_core (int exit_status, const char * mode,
cannam@86 4850 const char * message, va_list ap)
cannam@86 4851 {
cannam@86 4852 fprintf (stderr, "%s: %s: ", program_name, mode);
cannam@86 4853 vfprintf (stderr, message, ap);
cannam@86 4854 fprintf (stderr, ".\n");
cannam@86 4855
cannam@86 4856 if (exit_status >= 0)
cannam@86 4857 exit (exit_status);
cannam@86 4858 }
cannam@86 4859
cannam@86 4860 void
cannam@86 4861 lt_fatal (const char *message, ...)
cannam@86 4862 {
cannam@86 4863 va_list ap;
cannam@86 4864 va_start (ap, message);
cannam@86 4865 lt_error_core (EXIT_FAILURE, "FATAL", message, ap);
cannam@86 4866 va_end (ap);
cannam@86 4867 }
cannam@86 4868 EOF
cannam@86 4869 # we should really use a build-platform specific compiler
cannam@86 4870 # here, but OTOH, the wrappers (shell script and this C one)
cannam@86 4871 # are only useful if you want to execute the "real" binary.
cannam@86 4872 # Since the "real" binary is built for $host, then this
cannam@86 4873 # wrapper might as well be built for $host, too.
cannam@86 4874 $run $LTCC -s -o $cwrapper $cwrappersource
cannam@86 4875 ;;
cannam@86 4876 esac
cannam@86 4877 $rm $output
cannam@86 4878 trap "$rm $output; exit $EXIT_FAILURE" 1 2 15
cannam@86 4879
cannam@86 4880 $echo > $output "\
cannam@86 4881 #! $SHELL
cannam@86 4882
cannam@86 4883 # $output - temporary wrapper script for $objdir/$outputname
cannam@86 4884 # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
cannam@86 4885 #
cannam@86 4886 # The $output program cannot be directly executed until all the libtool
cannam@86 4887 # libraries that it depends on are installed.
cannam@86 4888 #
cannam@86 4889 # This wrapper script should never be moved out of the build directory.
cannam@86 4890 # If it is, it will not operate correctly.
cannam@86 4891
cannam@86 4892 # Sed substitution that helps us do robust quoting. It backslashifies
cannam@86 4893 # metacharacters that are still active within double-quoted strings.
cannam@86 4894 Xsed='${SED} -e 1s/^X//'
cannam@86 4895 sed_quote_subst='$sed_quote_subst'
cannam@86 4896
cannam@86 4897 # The HP-UX ksh and POSIX shell print the target directory to stdout
cannam@86 4898 # if CDPATH is set.
cannam@86 4899 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
cannam@86 4900
cannam@86 4901 relink_command=\"$relink_command\"
cannam@86 4902
cannam@86 4903 # This environment variable determines our operation mode.
cannam@86 4904 if test \"\$libtool_install_magic\" = \"$magic\"; then
cannam@86 4905 # install mode needs the following variable:
cannam@86 4906 notinst_deplibs='$notinst_deplibs'
cannam@86 4907 else
cannam@86 4908 # When we are sourced in execute mode, \$file and \$echo are already set.
cannam@86 4909 if test \"\$libtool_execute_magic\" != \"$magic\"; then
cannam@86 4910 echo=\"$qecho\"
cannam@86 4911 file=\"\$0\"
cannam@86 4912 # Make sure echo works.
cannam@86 4913 if test \"X\$1\" = X--no-reexec; then
cannam@86 4914 # Discard the --no-reexec flag, and continue.
cannam@86 4915 shift
cannam@86 4916 elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then
cannam@86 4917 # Yippee, \$echo works!
cannam@86 4918 :
cannam@86 4919 else
cannam@86 4920 # Restart under the correct shell, and then maybe \$echo will work.
cannam@86 4921 exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"}
cannam@86 4922 fi
cannam@86 4923 fi\
cannam@86 4924 "
cannam@86 4925 $echo >> $output "\
cannam@86 4926
cannam@86 4927 # Find the directory that this script lives in.
cannam@86 4928 thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
cannam@86 4929 test \"x\$thisdir\" = \"x\$file\" && thisdir=.
cannam@86 4930
cannam@86 4931 # Follow symbolic links until we get to the real thisdir.
cannam@86 4932 file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\`
cannam@86 4933 while test -n \"\$file\"; do
cannam@86 4934 destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`
cannam@86 4935
cannam@86 4936 # If there was a directory component, then change thisdir.
cannam@86 4937 if test \"x\$destdir\" != \"x\$file\"; then
cannam@86 4938 case \"\$destdir\" in
cannam@86 4939 [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
cannam@86 4940 *) thisdir=\"\$thisdir/\$destdir\" ;;
cannam@86 4941 esac
cannam@86 4942 fi
cannam@86 4943
cannam@86 4944 file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\`
cannam@86 4945 file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\`
cannam@86 4946 done
cannam@86 4947
cannam@86 4948 # Try to get the absolute directory name.
cannam@86 4949 absdir=\`cd \"\$thisdir\" && pwd\`
cannam@86 4950 test -n \"\$absdir\" && thisdir=\"\$absdir\"
cannam@86 4951 "
cannam@86 4952
cannam@86 4953 if test "$fast_install" = yes; then
cannam@86 4954 $echo >> $output "\
cannam@86 4955 program=lt-'$outputname'$exeext
cannam@86 4956 progdir=\"\$thisdir/$objdir\"
cannam@86 4957
cannam@86 4958 if test ! -f \"\$progdir/\$program\" || \\
cannam@86 4959 { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\
cannam@86 4960 test \"X\$file\" != \"X\$progdir/\$program\"; }; then
cannam@86 4961
cannam@86 4962 file=\"\$\$-\$program\"
cannam@86 4963
cannam@86 4964 if test ! -d \"\$progdir\"; then
cannam@86 4965 $mkdir \"\$progdir\"
cannam@86 4966 else
cannam@86 4967 $rm \"\$progdir/\$file\"
cannam@86 4968 fi"
cannam@86 4969
cannam@86 4970 $echo >> $output "\
cannam@86 4971
cannam@86 4972 # relink executable if necessary
cannam@86 4973 if test -n \"\$relink_command\"; then
cannam@86 4974 if relink_command_output=\`eval \$relink_command 2>&1\`; then :
cannam@86 4975 else
cannam@86 4976 $echo \"\$relink_command_output\" >&2
cannam@86 4977 $rm \"\$progdir/\$file\"
cannam@86 4978 exit $EXIT_FAILURE
cannam@86 4979 fi
cannam@86 4980 fi
cannam@86 4981
cannam@86 4982 $mv \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
cannam@86 4983 { $rm \"\$progdir/\$program\";
cannam@86 4984 $mv \"\$progdir/\$file\" \"\$progdir/\$program\"; }
cannam@86 4985 $rm \"\$progdir/\$file\"
cannam@86 4986 fi"
cannam@86 4987 else
cannam@86 4988 $echo >> $output "\
cannam@86 4989 program='$outputname'
cannam@86 4990 progdir=\"\$thisdir/$objdir\"
cannam@86 4991 "
cannam@86 4992 fi
cannam@86 4993
cannam@86 4994 $echo >> $output "\
cannam@86 4995
cannam@86 4996 if test -f \"\$progdir/\$program\"; then"
cannam@86 4997
cannam@86 4998 # Export our shlibpath_var if we have one.
cannam@86 4999 if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
cannam@86 5000 $echo >> $output "\
cannam@86 5001 # Add our own library path to $shlibpath_var
cannam@86 5002 $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
cannam@86 5003
cannam@86 5004 # Some systems cannot cope with colon-terminated $shlibpath_var
cannam@86 5005 # The second colon is a workaround for a bug in BeOS R4 sed
cannam@86 5006 $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\`
cannam@86 5007
cannam@86 5008 export $shlibpath_var
cannam@86 5009 "
cannam@86 5010 fi
cannam@86 5011
cannam@86 5012 # fixup the dll searchpath if we need to.
cannam@86 5013 if test -n "$dllsearchpath"; then
cannam@86 5014 $echo >> $output "\
cannam@86 5015 # Add the dll search path components to the executable PATH
cannam@86 5016 PATH=$dllsearchpath:\$PATH
cannam@86 5017 "
cannam@86 5018 fi
cannam@86 5019
cannam@86 5020 $echo >> $output "\
cannam@86 5021 if test \"\$libtool_execute_magic\" != \"$magic\"; then
cannam@86 5022 # Run the actual program with our arguments.
cannam@86 5023 "
cannam@86 5024 case $host in
cannam@86 5025 # Backslashes separate directories on plain windows
cannam@86 5026 *-*-mingw | *-*-os2*)
cannam@86 5027 $echo >> $output "\
cannam@86 5028 exec \$progdir\\\\\$program \${1+\"\$@\"}
cannam@86 5029 "
cannam@86 5030 ;;
cannam@86 5031
cannam@86 5032 *)
cannam@86 5033 $echo >> $output "\
cannam@86 5034 exec \$progdir/\$program \${1+\"\$@\"}
cannam@86 5035 "
cannam@86 5036 ;;
cannam@86 5037 esac
cannam@86 5038 $echo >> $output "\
cannam@86 5039 \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\"
cannam@86 5040 exit $EXIT_FAILURE
cannam@86 5041 fi
cannam@86 5042 else
cannam@86 5043 # The program doesn't exist.
cannam@86 5044 \$echo \"\$0: error: \$progdir/\$program does not exist\" 1>&2
cannam@86 5045 \$echo \"This script is just a wrapper for \$program.\" 1>&2
cannam@86 5046 $echo \"See the $PACKAGE documentation for more information.\" 1>&2
cannam@86 5047 exit $EXIT_FAILURE
cannam@86 5048 fi
cannam@86 5049 fi\
cannam@86 5050 "
cannam@86 5051 chmod +x $output
cannam@86 5052 fi
cannam@86 5053 exit $EXIT_SUCCESS
cannam@86 5054 ;;
cannam@86 5055 esac
cannam@86 5056
cannam@86 5057 # See if we need to build an old-fashioned archive.
cannam@86 5058 for oldlib in $oldlibs; do
cannam@86 5059
cannam@86 5060 if test "$build_libtool_libs" = convenience; then
cannam@86 5061 oldobjs="$libobjs_save"
cannam@86 5062 addlibs="$convenience"
cannam@86 5063 build_libtool_libs=no
cannam@86 5064 else
cannam@86 5065 if test "$build_libtool_libs" = module; then
cannam@86 5066 oldobjs="$libobjs_save"
cannam@86 5067 build_libtool_libs=no
cannam@86 5068 else
cannam@86 5069 oldobjs="$old_deplibs $non_pic_objects"
cannam@86 5070 fi
cannam@86 5071 addlibs="$old_convenience"
cannam@86 5072 fi
cannam@86 5073
cannam@86 5074 if test -n "$addlibs"; then
cannam@86 5075 gentop="$output_objdir/${outputname}x"
cannam@86 5076 generated="$generated $gentop"
cannam@86 5077
cannam@86 5078 func_extract_archives $gentop $addlibs
cannam@86 5079 oldobjs="$oldobjs $func_extract_archives_result"
cannam@86 5080 fi
cannam@86 5081
cannam@86 5082 # Do each command in the archive commands.
cannam@86 5083 if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
cannam@86 5084 cmds=$old_archive_from_new_cmds
cannam@86 5085 else
cannam@86 5086 # POSIX demands no paths to be encoded in archives. We have
cannam@86 5087 # to avoid creating archives with duplicate basenames if we
cannam@86 5088 # might have to extract them afterwards, e.g., when creating a
cannam@86 5089 # static archive out of a convenience library, or when linking
cannam@86 5090 # the entirety of a libtool archive into another (currently
cannam@86 5091 # not supported by libtool).
cannam@86 5092 if (for obj in $oldobjs
cannam@86 5093 do
cannam@86 5094 $echo "X$obj" | $Xsed -e 's%^.*/%%'
cannam@86 5095 done | sort | sort -uc >/dev/null 2>&1); then
cannam@86 5096 :
cannam@86 5097 else
cannam@86 5098 $echo "copying selected object files to avoid basename conflicts..."
cannam@86 5099
cannam@86 5100 if test -z "$gentop"; then
cannam@86 5101 gentop="$output_objdir/${outputname}x"
cannam@86 5102 generated="$generated $gentop"
cannam@86 5103
cannam@86 5104 $show "${rm}r $gentop"
cannam@86 5105 $run ${rm}r "$gentop"
cannam@86 5106 $show "$mkdir $gentop"
cannam@86 5107 $run $mkdir "$gentop"
cannam@86 5108 status=$?
cannam@86 5109 if test "$status" -ne 0 && test ! -d "$gentop"; then
cannam@86 5110 exit $status
cannam@86 5111 fi
cannam@86 5112 fi
cannam@86 5113
cannam@86 5114 save_oldobjs=$oldobjs
cannam@86 5115 oldobjs=
cannam@86 5116 counter=1
cannam@86 5117 for obj in $save_oldobjs
cannam@86 5118 do
cannam@86 5119 objbase=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
cannam@86 5120 case " $oldobjs " in
cannam@86 5121 " ") oldobjs=$obj ;;
cannam@86 5122 *[\ /]"$objbase "*)
cannam@86 5123 while :; do
cannam@86 5124 # Make sure we don't pick an alternate name that also
cannam@86 5125 # overlaps.
cannam@86 5126 newobj=lt$counter-$objbase
cannam@86 5127 counter=`expr $counter + 1`
cannam@86 5128 case " $oldobjs " in
cannam@86 5129 *[\ /]"$newobj "*) ;;
cannam@86 5130 *) if test ! -f "$gentop/$newobj"; then break; fi ;;
cannam@86 5131 esac
cannam@86 5132 done
cannam@86 5133 $show "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj"
cannam@86 5134 $run ln "$obj" "$gentop/$newobj" ||
cannam@86 5135 $run cp "$obj" "$gentop/$newobj"
cannam@86 5136 oldobjs="$oldobjs $gentop/$newobj"
cannam@86 5137 ;;
cannam@86 5138 *) oldobjs="$oldobjs $obj" ;;
cannam@86 5139 esac
cannam@86 5140 done
cannam@86 5141 fi
cannam@86 5142
cannam@86 5143 eval cmds=\"$old_archive_cmds\"
cannam@86 5144
cannam@86 5145 if len=`expr "X$cmds" : ".*"` &&
cannam@86 5146 test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
cannam@86 5147 cmds=$old_archive_cmds
cannam@86 5148 else
cannam@86 5149 # the command line is too long to link in one step, link in parts
cannam@86 5150 $echo "using piecewise archive linking..."
cannam@86 5151 save_RANLIB=$RANLIB
cannam@86 5152 RANLIB=:
cannam@86 5153 objlist=
cannam@86 5154 concat_cmds=
cannam@86 5155 save_oldobjs=$oldobjs
cannam@86 5156
cannam@86 5157 # Is there a better way of finding the last object in the list?
cannam@86 5158 for obj in $save_oldobjs
cannam@86 5159 do
cannam@86 5160 last_oldobj=$obj
cannam@86 5161 done
cannam@86 5162 for obj in $save_oldobjs
cannam@86 5163 do
cannam@86 5164 oldobjs="$objlist $obj"
cannam@86 5165 objlist="$objlist $obj"
cannam@86 5166 eval test_cmds=\"$old_archive_cmds\"
cannam@86 5167 if len=`expr "X$test_cmds" : ".*"` &&
cannam@86 5168 test "$len" -le "$max_cmd_len"; then
cannam@86 5169 :
cannam@86 5170 else
cannam@86 5171 # the above command should be used before it gets too long
cannam@86 5172 oldobjs=$objlist
cannam@86 5173 if test "$obj" = "$last_oldobj" ; then
cannam@86 5174 RANLIB=$save_RANLIB
cannam@86 5175 fi
cannam@86 5176 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
cannam@86 5177 eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\"
cannam@86 5178 objlist=
cannam@86 5179 fi
cannam@86 5180 done
cannam@86 5181 RANLIB=$save_RANLIB
cannam@86 5182 oldobjs=$objlist
cannam@86 5183 if test "X$oldobjs" = "X" ; then
cannam@86 5184 eval cmds=\"\$concat_cmds\"
cannam@86 5185 else
cannam@86 5186 eval cmds=\"\$concat_cmds~\$old_archive_cmds\"
cannam@86 5187 fi
cannam@86 5188 fi
cannam@86 5189 fi
cannam@86 5190 save_ifs="$IFS"; IFS='~'
cannam@86 5191 for cmd in $cmds; do
cannam@86 5192 eval cmd=\"$cmd\"
cannam@86 5193 IFS="$save_ifs"
cannam@86 5194 $show "$cmd"
cannam@86 5195 $run eval "$cmd" || exit $?
cannam@86 5196 done
cannam@86 5197 IFS="$save_ifs"
cannam@86 5198 done
cannam@86 5199
cannam@86 5200 if test -n "$generated"; then
cannam@86 5201 $show "${rm}r$generated"
cannam@86 5202 $run ${rm}r$generated
cannam@86 5203 fi
cannam@86 5204
cannam@86 5205 # Now create the libtool archive.
cannam@86 5206 case $output in
cannam@86 5207 *.la)
cannam@86 5208 old_library=
cannam@86 5209 test "$build_old_libs" = yes && old_library="$libname.$libext"
cannam@86 5210 $show "creating $output"
cannam@86 5211
cannam@86 5212 # Preserve any variables that may affect compiler behavior
cannam@86 5213 for var in $variables_saved_for_relink; do
cannam@86 5214 if eval test -z \"\${$var+set}\"; then
cannam@86 5215 relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
cannam@86 5216 elif eval var_value=\$$var; test -z "$var_value"; then
cannam@86 5217 relink_command="$var=; export $var; $relink_command"
cannam@86 5218 else
cannam@86 5219 var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
cannam@86 5220 relink_command="$var=\"$var_value\"; export $var; $relink_command"
cannam@86 5221 fi
cannam@86 5222 done
cannam@86 5223 # Quote the link command for shipping.
cannam@86 5224 relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
cannam@86 5225 relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
cannam@86 5226 if test "$hardcode_automatic" = yes ; then
cannam@86 5227 relink_command=
cannam@86 5228 fi
cannam@86 5229
cannam@86 5230
cannam@86 5231 # Only create the output if not a dry run.
cannam@86 5232 if test -z "$run"; then
cannam@86 5233 for installed in no yes; do
cannam@86 5234 if test "$installed" = yes; then
cannam@86 5235 if test -z "$install_libdir"; then
cannam@86 5236 break
cannam@86 5237 fi
cannam@86 5238 output="$output_objdir/$outputname"i
cannam@86 5239 # Replace all uninstalled libtool libraries with the installed ones
cannam@86 5240 newdependency_libs=
cannam@86 5241 for deplib in $dependency_libs; do
cannam@86 5242 case $deplib in
cannam@86 5243 *.la)
cannam@86 5244 name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'`
cannam@86 5245 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
cannam@86 5246 if test -z "$libdir"; then
cannam@86 5247 $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
cannam@86 5248 exit $EXIT_FAILURE
cannam@86 5249 fi
cannam@86 5250 newdependency_libs="$newdependency_libs $libdir/$name"
cannam@86 5251 ;;
cannam@86 5252 *) newdependency_libs="$newdependency_libs $deplib" ;;
cannam@86 5253 esac
cannam@86 5254 done
cannam@86 5255 dependency_libs="$newdependency_libs"
cannam@86 5256 newdlfiles=
cannam@86 5257 for lib in $dlfiles; do
cannam@86 5258 name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
cannam@86 5259 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
cannam@86 5260 if test -z "$libdir"; then
cannam@86 5261 $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
cannam@86 5262 exit $EXIT_FAILURE
cannam@86 5263 fi
cannam@86 5264 newdlfiles="$newdlfiles $libdir/$name"
cannam@86 5265 done
cannam@86 5266 dlfiles="$newdlfiles"
cannam@86 5267 newdlprefiles=
cannam@86 5268 for lib in $dlprefiles; do
cannam@86 5269 name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
cannam@86 5270 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
cannam@86 5271 if test -z "$libdir"; then
cannam@86 5272 $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
cannam@86 5273 exit $EXIT_FAILURE
cannam@86 5274 fi
cannam@86 5275 newdlprefiles="$newdlprefiles $libdir/$name"
cannam@86 5276 done
cannam@86 5277 dlprefiles="$newdlprefiles"
cannam@86 5278 else
cannam@86 5279 newdlfiles=
cannam@86 5280 for lib in $dlfiles; do
cannam@86 5281 case $lib in
cannam@86 5282 [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
cannam@86 5283 *) abs=`pwd`"/$lib" ;;
cannam@86 5284 esac
cannam@86 5285 newdlfiles="$newdlfiles $abs"
cannam@86 5286 done
cannam@86 5287 dlfiles="$newdlfiles"
cannam@86 5288 newdlprefiles=
cannam@86 5289 for lib in $dlprefiles; do
cannam@86 5290 case $lib in
cannam@86 5291 [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
cannam@86 5292 *) abs=`pwd`"/$lib" ;;
cannam@86 5293 esac
cannam@86 5294 newdlprefiles="$newdlprefiles $abs"
cannam@86 5295 done
cannam@86 5296 dlprefiles="$newdlprefiles"
cannam@86 5297 fi
cannam@86 5298 $rm $output
cannam@86 5299 # place dlname in correct position for cygwin
cannam@86 5300 tdlname=$dlname
cannam@86 5301 case $host,$output,$installed,$module,$dlname in
cannam@86 5302 *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;;
cannam@86 5303 esac
cannam@86 5304 $echo > $output "\
cannam@86 5305 # $outputname - a libtool library file
cannam@86 5306 # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
cannam@86 5307 #
cannam@86 5308 # Please DO NOT delete this file!
cannam@86 5309 # It is necessary for linking the library.
cannam@86 5310
cannam@86 5311 # The name that we can dlopen(3).
cannam@86 5312 dlname='$tdlname'
cannam@86 5313
cannam@86 5314 # Names of this library.
cannam@86 5315 library_names='$library_names'
cannam@86 5316
cannam@86 5317 # The name of the static archive.
cannam@86 5318 old_library='$old_library'
cannam@86 5319
cannam@86 5320 # Libraries that this one depends upon.
cannam@86 5321 dependency_libs='$dependency_libs'
cannam@86 5322
cannam@86 5323 # Version information for $libname.
cannam@86 5324 current=$current
cannam@86 5325 age=$age
cannam@86 5326 revision=$revision
cannam@86 5327
cannam@86 5328 # Is this an already installed library?
cannam@86 5329 installed=$installed
cannam@86 5330
cannam@86 5331 # Should we warn about portability when linking against -modules?
cannam@86 5332 shouldnotlink=$module
cannam@86 5333
cannam@86 5334 # Files to dlopen/dlpreopen
cannam@86 5335 dlopen='$dlfiles'
cannam@86 5336 dlpreopen='$dlprefiles'
cannam@86 5337
cannam@86 5338 # Directory that this library needs to be installed in:
cannam@86 5339 libdir='$install_libdir'"
cannam@86 5340 if test "$installed" = no && test "$need_relink" = yes; then
cannam@86 5341 $echo >> $output "\
cannam@86 5342 relink_command=\"$relink_command\""
cannam@86 5343 fi
cannam@86 5344 done
cannam@86 5345 fi
cannam@86 5346
cannam@86 5347 # Do a symbolic link so that the libtool archive can be found in
cannam@86 5348 # LD_LIBRARY_PATH before the program is installed.
cannam@86 5349 $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)"
cannam@86 5350 $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $?
cannam@86 5351 ;;
cannam@86 5352 esac
cannam@86 5353 exit $EXIT_SUCCESS
cannam@86 5354 ;;
cannam@86 5355
cannam@86 5356 # libtool install mode
cannam@86 5357 install)
cannam@86 5358 modename="$modename: install"
cannam@86 5359
cannam@86 5360 # There may be an optional sh(1) argument at the beginning of
cannam@86 5361 # install_prog (especially on Windows NT).
cannam@86 5362 if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
cannam@86 5363 # Allow the use of GNU shtool's install command.
cannam@86 5364 $echo "X$nonopt" | $Xsed | grep shtool > /dev/null; then
cannam@86 5365 # Aesthetically quote it.
cannam@86 5366 arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
cannam@86 5367 case $arg in
cannam@86 5368 *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")
cannam@86 5369 arg="\"$arg\""
cannam@86 5370 ;;
cannam@86 5371 esac
cannam@86 5372 install_prog="$arg "
cannam@86 5373 arg="$1"
cannam@86 5374 shift
cannam@86 5375 else
cannam@86 5376 install_prog=
cannam@86 5377 arg="$nonopt"
cannam@86 5378 fi
cannam@86 5379
cannam@86 5380 # The real first argument should be the name of the installation program.
cannam@86 5381 # Aesthetically quote it.
cannam@86 5382 arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
cannam@86 5383 case $arg in
cannam@86 5384 *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")
cannam@86 5385 arg="\"$arg\""
cannam@86 5386 ;;
cannam@86 5387 esac
cannam@86 5388 install_prog="$install_prog$arg"
cannam@86 5389
cannam@86 5390 # We need to accept at least all the BSD install flags.
cannam@86 5391 dest=
cannam@86 5392 files=
cannam@86 5393 opts=
cannam@86 5394 prev=
cannam@86 5395 install_type=
cannam@86 5396 isdir=no
cannam@86 5397 stripme=
cannam@86 5398 for arg
cannam@86 5399 do
cannam@86 5400 if test -n "$dest"; then
cannam@86 5401 files="$files $dest"
cannam@86 5402 dest="$arg"
cannam@86 5403 continue
cannam@86 5404 fi
cannam@86 5405
cannam@86 5406 case $arg in
cannam@86 5407 -d) isdir=yes ;;
cannam@86 5408 -f) prev="-f" ;;
cannam@86 5409 -g) prev="-g" ;;
cannam@86 5410 -m) prev="-m" ;;
cannam@86 5411 -o) prev="-o" ;;
cannam@86 5412 -s)
cannam@86 5413 stripme=" -s"
cannam@86 5414 continue
cannam@86 5415 ;;
cannam@86 5416 -*) ;;
cannam@86 5417
cannam@86 5418 *)
cannam@86 5419 # If the previous option needed an argument, then skip it.
cannam@86 5420 if test -n "$prev"; then
cannam@86 5421 prev=
cannam@86 5422 else
cannam@86 5423 dest="$arg"
cannam@86 5424 continue
cannam@86 5425 fi
cannam@86 5426 ;;
cannam@86 5427 esac
cannam@86 5428
cannam@86 5429 # Aesthetically quote the argument.
cannam@86 5430 arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
cannam@86 5431 case $arg in
cannam@86 5432 *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")
cannam@86 5433 arg="\"$arg\""
cannam@86 5434 ;;
cannam@86 5435 esac
cannam@86 5436 install_prog="$install_prog $arg"
cannam@86 5437 done
cannam@86 5438
cannam@86 5439 if test -z "$install_prog"; then
cannam@86 5440 $echo "$modename: you must specify an install program" 1>&2
cannam@86 5441 $echo "$help" 1>&2
cannam@86 5442 exit $EXIT_FAILURE
cannam@86 5443 fi
cannam@86 5444
cannam@86 5445 if test -n "$prev"; then
cannam@86 5446 $echo "$modename: the \`$prev' option requires an argument" 1>&2
cannam@86 5447 $echo "$help" 1>&2
cannam@86 5448 exit $EXIT_FAILURE
cannam@86 5449 fi
cannam@86 5450
cannam@86 5451 if test -z "$files"; then
cannam@86 5452 if test -z "$dest"; then
cannam@86 5453 $echo "$modename: no file or destination specified" 1>&2
cannam@86 5454 else
cannam@86 5455 $echo "$modename: you must specify a destination" 1>&2
cannam@86 5456 fi
cannam@86 5457 $echo "$help" 1>&2
cannam@86 5458 exit $EXIT_FAILURE
cannam@86 5459 fi
cannam@86 5460
cannam@86 5461 # Strip any trailing slash from the destination.
cannam@86 5462 dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`
cannam@86 5463
cannam@86 5464 # Check to see that the destination is a directory.
cannam@86 5465 test -d "$dest" && isdir=yes
cannam@86 5466 if test "$isdir" = yes; then
cannam@86 5467 destdir="$dest"
cannam@86 5468 destname=
cannam@86 5469 else
cannam@86 5470 destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
cannam@86 5471 test "X$destdir" = "X$dest" && destdir=.
cannam@86 5472 destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`
cannam@86 5473
cannam@86 5474 # Not a directory, so check to see that there is only one file specified.
cannam@86 5475 set dummy $files
cannam@86 5476 if test "$#" -gt 2; then
cannam@86 5477 $echo "$modename: \`$dest' is not a directory" 1>&2
cannam@86 5478 $echo "$help" 1>&2
cannam@86 5479 exit $EXIT_FAILURE
cannam@86 5480 fi
cannam@86 5481 fi
cannam@86 5482 case $destdir in
cannam@86 5483 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@86 5484 *)
cannam@86 5485 for file in $files; do
cannam@86 5486 case $file in
cannam@86 5487 *.lo) ;;
cannam@86 5488 *)
cannam@86 5489 $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2
cannam@86 5490 $echo "$help" 1>&2
cannam@86 5491 exit $EXIT_FAILURE
cannam@86 5492 ;;
cannam@86 5493 esac
cannam@86 5494 done
cannam@86 5495 ;;
cannam@86 5496 esac
cannam@86 5497
cannam@86 5498 # This variable tells wrapper scripts just to set variables rather
cannam@86 5499 # than running their programs.
cannam@86 5500 libtool_install_magic="$magic"
cannam@86 5501
cannam@86 5502 staticlibs=
cannam@86 5503 future_libdirs=
cannam@86 5504 current_libdirs=
cannam@86 5505 for file in $files; do
cannam@86 5506
cannam@86 5507 # Do each installation.
cannam@86 5508 case $file in
cannam@86 5509 *.$libext)
cannam@86 5510 # Do the static libraries later.
cannam@86 5511 staticlibs="$staticlibs $file"
cannam@86 5512 ;;
cannam@86 5513
cannam@86 5514 *.la)
cannam@86 5515 # Check to see that this really is a libtool archive.
cannam@86 5516 if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
cannam@86 5517 else
cannam@86 5518 $echo "$modename: \`$file' is not a valid libtool archive" 1>&2
cannam@86 5519 $echo "$help" 1>&2
cannam@86 5520 exit $EXIT_FAILURE
cannam@86 5521 fi
cannam@86 5522
cannam@86 5523 library_names=
cannam@86 5524 old_library=
cannam@86 5525 relink_command=
cannam@86 5526 # If there is no directory component, then add one.
cannam@86 5527 case $file in
cannam@86 5528 */* | *\\*) . $file ;;
cannam@86 5529 *) . ./$file ;;
cannam@86 5530 esac
cannam@86 5531
cannam@86 5532 # Add the libdir to current_libdirs if it is the destination.
cannam@86 5533 if test "X$destdir" = "X$libdir"; then
cannam@86 5534 case "$current_libdirs " in
cannam@86 5535 *" $libdir "*) ;;
cannam@86 5536 *) current_libdirs="$current_libdirs $libdir" ;;
cannam@86 5537 esac
cannam@86 5538 else
cannam@86 5539 # Note the libdir as a future libdir.
cannam@86 5540 case "$future_libdirs " in
cannam@86 5541 *" $libdir "*) ;;
cannam@86 5542 *) future_libdirs="$future_libdirs $libdir" ;;
cannam@86 5543 esac
cannam@86 5544 fi
cannam@86 5545
cannam@86 5546 dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/
cannam@86 5547 test "X$dir" = "X$file/" && dir=
cannam@86 5548 dir="$dir$objdir"
cannam@86 5549
cannam@86 5550 if test -n "$relink_command"; then
cannam@86 5551 # Determine the prefix the user has applied to our future dir.
cannam@86 5552 inst_prefix_dir=`$echo "$destdir" | $SED "s%$libdir\$%%"`
cannam@86 5553
cannam@86 5554 # Don't allow the user to place us outside of our expected
cannam@86 5555 # location b/c this prevents finding dependent libraries that
cannam@86 5556 # are installed to the same prefix.
cannam@86 5557 # At present, this check doesn't affect windows .dll's that
cannam@86 5558 # are installed into $libdir/../bin (currently, that works fine)
cannam@86 5559 # but it's something to keep an eye on.
cannam@86 5560 if test "$inst_prefix_dir" = "$destdir"; then
cannam@86 5561 $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2
cannam@86 5562 exit $EXIT_FAILURE
cannam@86 5563 fi
cannam@86 5564
cannam@86 5565 if test -n "$inst_prefix_dir"; then
cannam@86 5566 # Stick the inst_prefix_dir data into the link command.
cannam@86 5567 relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
cannam@86 5568 else
cannam@86 5569 relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
cannam@86 5570 fi
cannam@86 5571
cannam@86 5572 $echo "$modename: warning: relinking \`$file'" 1>&2
cannam@86 5573 $show "$relink_command"
cannam@86 5574 if $run eval "$relink_command"; then :
cannam@86 5575 else
cannam@86 5576 $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
cannam@86 5577 exit $EXIT_FAILURE
cannam@86 5578 fi
cannam@86 5579 fi
cannam@86 5580
cannam@86 5581 # See the names of the shared library.
cannam@86 5582 set dummy $library_names
cannam@86 5583 if test -n "$2"; then
cannam@86 5584 realname="$2"
cannam@86 5585 shift
cannam@86 5586 shift
cannam@86 5587
cannam@86 5588 srcname="$realname"
cannam@86 5589 test -n "$relink_command" && srcname="$realname"T
cannam@86 5590
cannam@86 5591 # Install the shared library and build the symlinks.
cannam@86 5592 $show "$install_prog $dir/$srcname $destdir/$realname"
cannam@86 5593 $run eval "$install_prog $dir/$srcname $destdir/$realname" || exit $?
cannam@86 5594 if test -n "$stripme" && test -n "$striplib"; then
cannam@86 5595 $show "$striplib $destdir/$realname"
cannam@86 5596 $run eval "$striplib $destdir/$realname" || exit $?
cannam@86 5597 fi
cannam@86 5598
cannam@86 5599 if test "$#" -gt 0; then
cannam@86 5600 # Delete the old symlinks, and create new ones.
cannam@86 5601 for linkname
cannam@86 5602 do
cannam@86 5603 if test "$linkname" != "$realname"; then
cannam@86 5604 $show "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
cannam@86 5605 $run eval "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
cannam@86 5606 fi
cannam@86 5607 done
cannam@86 5608 fi
cannam@86 5609
cannam@86 5610 # Do each command in the postinstall commands.
cannam@86 5611 lib="$destdir/$realname"
cannam@86 5612 cmds=$postinstall_cmds
cannam@86 5613 save_ifs="$IFS"; IFS='~'
cannam@86 5614 for cmd in $cmds; do
cannam@86 5615 IFS="$save_ifs"
cannam@86 5616 eval cmd=\"$cmd\"
cannam@86 5617 $show "$cmd"
cannam@86 5618 $run eval "$cmd" || exit $?
cannam@86 5619 done
cannam@86 5620 IFS="$save_ifs"
cannam@86 5621 fi
cannam@86 5622
cannam@86 5623 # Install the pseudo-library for information purposes.
cannam@86 5624 name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
cannam@86 5625 instname="$dir/$name"i
cannam@86 5626 $show "$install_prog $instname $destdir/$name"
cannam@86 5627 $run eval "$install_prog $instname $destdir/$name" || exit $?
cannam@86 5628
cannam@86 5629 # Maybe install the static library, too.
cannam@86 5630 test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
cannam@86 5631 ;;
cannam@86 5632
cannam@86 5633 *.lo)
cannam@86 5634 # Install (i.e. copy) a libtool object.
cannam@86 5635
cannam@86 5636 # Figure out destination file name, if it wasn't already specified.
cannam@86 5637 if test -n "$destname"; then
cannam@86 5638 destfile="$destdir/$destname"
cannam@86 5639 else
cannam@86 5640 destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
cannam@86 5641 destfile="$destdir/$destfile"
cannam@86 5642 fi
cannam@86 5643
cannam@86 5644 # Deduce the name of the destination old-style object file.
cannam@86 5645 case $destfile in
cannam@86 5646 *.lo)
cannam@86 5647 staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"`
cannam@86 5648 ;;
cannam@86 5649 *.$objext)
cannam@86 5650 staticdest="$destfile"
cannam@86 5651 destfile=
cannam@86 5652 ;;
cannam@86 5653 *)
cannam@86 5654 $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2
cannam@86 5655 $echo "$help" 1>&2
cannam@86 5656 exit $EXIT_FAILURE
cannam@86 5657 ;;
cannam@86 5658 esac
cannam@86 5659
cannam@86 5660 # Install the libtool object if requested.
cannam@86 5661 if test -n "$destfile"; then
cannam@86 5662 $show "$install_prog $file $destfile"
cannam@86 5663 $run eval "$install_prog $file $destfile" || exit $?
cannam@86 5664 fi
cannam@86 5665
cannam@86 5666 # Install the old object if enabled.
cannam@86 5667 if test "$build_old_libs" = yes; then
cannam@86 5668 # Deduce the name of the old-style object file.
cannam@86 5669 staticobj=`$echo "X$file" | $Xsed -e "$lo2o"`
cannam@86 5670
cannam@86 5671 $show "$install_prog $staticobj $staticdest"
cannam@86 5672 $run eval "$install_prog \$staticobj \$staticdest" || exit $?
cannam@86 5673 fi
cannam@86 5674 exit $EXIT_SUCCESS
cannam@86 5675 ;;
cannam@86 5676
cannam@86 5677 *)
cannam@86 5678 # Figure out destination file name, if it wasn't already specified.
cannam@86 5679 if test -n "$destname"; then
cannam@86 5680 destfile="$destdir/$destname"
cannam@86 5681 else
cannam@86 5682 destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
cannam@86 5683 destfile="$destdir/$destfile"
cannam@86 5684 fi
cannam@86 5685
cannam@86 5686 # If the file is missing, and there is a .exe on the end, strip it
cannam@86 5687 # because it is most likely a libtool script we actually want to
cannam@86 5688 # install
cannam@86 5689 stripped_ext=""
cannam@86 5690 case $file in
cannam@86 5691 *.exe)
cannam@86 5692 if test ! -f "$file"; then
cannam@86 5693 file=`$echo $file|${SED} 's,.exe$,,'`
cannam@86 5694 stripped_ext=".exe"
cannam@86 5695 fi
cannam@86 5696 ;;
cannam@86 5697 esac
cannam@86 5698
cannam@86 5699 # Do a test to see if this is really a libtool program.
cannam@86 5700 case $host in
cannam@86 5701 *cygwin*|*mingw*)
cannam@86 5702 wrapper=`$echo $file | ${SED} -e 's,.exe$,,'`
cannam@86 5703 ;;
cannam@86 5704 *)
cannam@86 5705 wrapper=$file
cannam@86 5706 ;;
cannam@86 5707 esac
cannam@86 5708 if (${SED} -e '4q' $wrapper | grep "^# Generated by .*$PACKAGE")>/dev/null 2>&1; then
cannam@86 5709 notinst_deplibs=
cannam@86 5710 relink_command=
cannam@86 5711
cannam@86 5712 # To insure that "foo" is sourced, and not "foo.exe",
cannam@86 5713 # finese the cygwin/MSYS system by explicitly sourcing "foo."
cannam@86 5714 # which disallows the automatic-append-.exe behavior.
cannam@86 5715 case $build in
cannam@86 5716 *cygwin* | *mingw*) wrapperdot=${wrapper}. ;;
cannam@86 5717 *) wrapperdot=${wrapper} ;;
cannam@86 5718 esac
cannam@86 5719 # If there is no directory component, then add one.
cannam@86 5720 case $file in
cannam@86 5721 */* | *\\*) . ${wrapperdot} ;;
cannam@86 5722 *) . ./${wrapperdot} ;;
cannam@86 5723 esac
cannam@86 5724
cannam@86 5725 # Check the variables that should have been set.
cannam@86 5726 if test -z "$notinst_deplibs"; then
cannam@86 5727 $echo "$modename: invalid libtool wrapper script \`$wrapper'" 1>&2
cannam@86 5728 exit $EXIT_FAILURE
cannam@86 5729 fi
cannam@86 5730
cannam@86 5731 finalize=yes
cannam@86 5732 for lib in $notinst_deplibs; do
cannam@86 5733 # Check to see that each library is installed.
cannam@86 5734 libdir=
cannam@86 5735 if test -f "$lib"; then
cannam@86 5736 # If there is no directory component, then add one.
cannam@86 5737 case $lib in
cannam@86 5738 */* | *\\*) . $lib ;;
cannam@86 5739 *) . ./$lib ;;
cannam@86 5740 esac
cannam@86 5741 fi
cannam@86 5742 libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test
cannam@86 5743 if test -n "$libdir" && test ! -f "$libfile"; then
cannam@86 5744 $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
cannam@86 5745 finalize=no
cannam@86 5746 fi
cannam@86 5747 done
cannam@86 5748
cannam@86 5749 relink_command=
cannam@86 5750 # To insure that "foo" is sourced, and not "foo.exe",
cannam@86 5751 # finese the cygwin/MSYS system by explicitly sourcing "foo."
cannam@86 5752 # which disallows the automatic-append-.exe behavior.
cannam@86 5753 case $build in
cannam@86 5754 *cygwin* | *mingw*) wrapperdot=${wrapper}. ;;
cannam@86 5755 *) wrapperdot=${wrapper} ;;
cannam@86 5756 esac
cannam@86 5757 # If there is no directory component, then add one.
cannam@86 5758 case $file in
cannam@86 5759 */* | *\\*) . ${wrapperdot} ;;
cannam@86 5760 *) . ./${wrapperdot} ;;
cannam@86 5761 esac
cannam@86 5762
cannam@86 5763 outputname=
cannam@86 5764 if test "$fast_install" = no && test -n "$relink_command"; then
cannam@86 5765 if test "$finalize" = yes && test -z "$run"; then
cannam@86 5766 tmpdir="/tmp"
cannam@86 5767 test -n "$TMPDIR" && tmpdir="$TMPDIR"
cannam@86 5768 tmpdir="$tmpdir/libtool-$$"
cannam@86 5769 save_umask=`umask`
cannam@86 5770 umask 0077
cannam@86 5771 if $mkdir "$tmpdir"; then
cannam@86 5772 umask $save_umask
cannam@86 5773 else
cannam@86 5774 umask $save_umask
cannam@86 5775 $echo "$modename: error: cannot create temporary directory \`$tmpdir'" 1>&2
cannam@86 5776 continue
cannam@86 5777 fi
cannam@86 5778 file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'`
cannam@86 5779 outputname="$tmpdir/$file"
cannam@86 5780 # Replace the output file specification.
cannam@86 5781 relink_command=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'`
cannam@86 5782
cannam@86 5783 $show "$relink_command"
cannam@86 5784 if $run eval "$relink_command"; then :
cannam@86 5785 else
cannam@86 5786 $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
cannam@86 5787 ${rm}r "$tmpdir"
cannam@86 5788 continue
cannam@86 5789 fi
cannam@86 5790 file="$outputname"
cannam@86 5791 else
cannam@86 5792 $echo "$modename: warning: cannot relink \`$file'" 1>&2
cannam@86 5793 fi
cannam@86 5794 else
cannam@86 5795 # Install the binary that we compiled earlier.
cannam@86 5796 file=`$echo "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
cannam@86 5797 fi
cannam@86 5798 fi
cannam@86 5799
cannam@86 5800 # remove .exe since cygwin /usr/bin/install will append another
cannam@86 5801 # one anyways
cannam@86 5802 case $install_prog,$host in
cannam@86 5803 */usr/bin/install*,*cygwin*)
cannam@86 5804 case $file:$destfile in
cannam@86 5805 *.exe:*.exe)
cannam@86 5806 # this is ok
cannam@86 5807 ;;
cannam@86 5808 *.exe:*)
cannam@86 5809 destfile=$destfile.exe
cannam@86 5810 ;;
cannam@86 5811 *:*.exe)
cannam@86 5812 destfile=`$echo $destfile | ${SED} -e 's,.exe$,,'`
cannam@86 5813 ;;
cannam@86 5814 esac
cannam@86 5815 ;;
cannam@86 5816 esac
cannam@86 5817 $show "$install_prog$stripme $file $destfile"
cannam@86 5818 $run eval "$install_prog\$stripme \$file \$destfile" || exit $?
cannam@86 5819 test -n "$outputname" && ${rm}r "$tmpdir"
cannam@86 5820 ;;
cannam@86 5821 esac
cannam@86 5822 done
cannam@86 5823
cannam@86 5824 for file in $staticlibs; do
cannam@86 5825 name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
cannam@86 5826
cannam@86 5827 # Set up the ranlib parameters.
cannam@86 5828 oldlib="$destdir/$name"
cannam@86 5829
cannam@86 5830 $show "$install_prog $file $oldlib"
cannam@86 5831 $run eval "$install_prog \$file \$oldlib" || exit $?
cannam@86 5832
cannam@86 5833 if test -n "$stripme" && test -n "$old_striplib"; then
cannam@86 5834 $show "$old_striplib $oldlib"
cannam@86 5835 $run eval "$old_striplib $oldlib" || exit $?
cannam@86 5836 fi
cannam@86 5837
cannam@86 5838 # Do each command in the postinstall commands.
cannam@86 5839 cmds=$old_postinstall_cmds
cannam@86 5840 save_ifs="$IFS"; IFS='~'
cannam@86 5841 for cmd in $cmds; do
cannam@86 5842 IFS="$save_ifs"
cannam@86 5843 eval cmd=\"$cmd\"
cannam@86 5844 $show "$cmd"
cannam@86 5845 $run eval "$cmd" || exit $?
cannam@86 5846 done
cannam@86 5847 IFS="$save_ifs"
cannam@86 5848 done
cannam@86 5849
cannam@86 5850 if test -n "$future_libdirs"; then
cannam@86 5851 $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2
cannam@86 5852 fi
cannam@86 5853
cannam@86 5854 if test -n "$current_libdirs"; then
cannam@86 5855 # Maybe just do a dry run.
cannam@86 5856 test -n "$run" && current_libdirs=" -n$current_libdirs"
cannam@86 5857 exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs'
cannam@86 5858 else
cannam@86 5859 exit $EXIT_SUCCESS
cannam@86 5860 fi
cannam@86 5861 ;;
cannam@86 5862
cannam@86 5863 # libtool finish mode
cannam@86 5864 finish)
cannam@86 5865 modename="$modename: finish"
cannam@86 5866 libdirs="$nonopt"
cannam@86 5867 admincmds=
cannam@86 5868
cannam@86 5869 if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
cannam@86 5870 for dir
cannam@86 5871 do
cannam@86 5872 libdirs="$libdirs $dir"
cannam@86 5873 done
cannam@86 5874
cannam@86 5875 for libdir in $libdirs; do
cannam@86 5876 if test -n "$finish_cmds"; then
cannam@86 5877 # Do each command in the finish commands.
cannam@86 5878 cmds=$finish_cmds
cannam@86 5879 save_ifs="$IFS"; IFS='~'
cannam@86 5880 for cmd in $cmds; do
cannam@86 5881 IFS="$save_ifs"
cannam@86 5882 eval cmd=\"$cmd\"
cannam@86 5883 $show "$cmd"
cannam@86 5884 $run eval "$cmd" || admincmds="$admincmds
cannam@86 5885 $cmd"
cannam@86 5886 done
cannam@86 5887 IFS="$save_ifs"
cannam@86 5888 fi
cannam@86 5889 if test -n "$finish_eval"; then
cannam@86 5890 # Do the single finish_eval.
cannam@86 5891 eval cmds=\"$finish_eval\"
cannam@86 5892 $run eval "$cmds" || admincmds="$admincmds
cannam@86 5893 $cmds"
cannam@86 5894 fi
cannam@86 5895 done
cannam@86 5896 fi
cannam@86 5897
cannam@86 5898 # Exit here if they wanted silent mode.
cannam@86 5899 test "$show" = : && exit $EXIT_SUCCESS
cannam@86 5900
cannam@86 5901 $echo "----------------------------------------------------------------------"
cannam@86 5902 $echo "Libraries have been installed in:"
cannam@86 5903 for libdir in $libdirs; do
cannam@86 5904 $echo " $libdir"
cannam@86 5905 done
cannam@86 5906 $echo
cannam@86 5907 $echo "If you ever happen to want to link against installed libraries"
cannam@86 5908 $echo "in a given directory, LIBDIR, you must either use libtool, and"
cannam@86 5909 $echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
cannam@86 5910 $echo "flag during linking and do at least one of the following:"
cannam@86 5911 if test -n "$shlibpath_var"; then
cannam@86 5912 $echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
cannam@86 5913 $echo " during execution"
cannam@86 5914 fi
cannam@86 5915 if test -n "$runpath_var"; then
cannam@86 5916 $echo " - add LIBDIR to the \`$runpath_var' environment variable"
cannam@86 5917 $echo " during linking"
cannam@86 5918 fi
cannam@86 5919 if test -n "$hardcode_libdir_flag_spec"; then
cannam@86 5920 libdir=LIBDIR
cannam@86 5921 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@86 5922
cannam@86 5923 $echo " - use the \`$flag' linker flag"
cannam@86 5924 fi
cannam@86 5925 if test -n "$admincmds"; then
cannam@86 5926 $echo " - have your system administrator run these commands:$admincmds"
cannam@86 5927 fi
cannam@86 5928 if test -f /etc/ld.so.conf; then
cannam@86 5929 $echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
cannam@86 5930 fi
cannam@86 5931 $echo
cannam@86 5932 $echo "See any operating system documentation about shared libraries for"
cannam@86 5933 $echo "more information, such as the ld(1) and ld.so(8) manual pages."
cannam@86 5934 $echo "----------------------------------------------------------------------"
cannam@86 5935 exit $EXIT_SUCCESS
cannam@86 5936 ;;
cannam@86 5937
cannam@86 5938 # libtool execute mode
cannam@86 5939 execute)
cannam@86 5940 modename="$modename: execute"
cannam@86 5941
cannam@86 5942 # The first argument is the command name.
cannam@86 5943 cmd="$nonopt"
cannam@86 5944 if test -z "$cmd"; then
cannam@86 5945 $echo "$modename: you must specify a COMMAND" 1>&2
cannam@86 5946 $echo "$help"
cannam@86 5947 exit $EXIT_FAILURE
cannam@86 5948 fi
cannam@86 5949
cannam@86 5950 # Handle -dlopen flags immediately.
cannam@86 5951 for file in $execute_dlfiles; do
cannam@86 5952 if test ! -f "$file"; then
cannam@86 5953 $echo "$modename: \`$file' is not a file" 1>&2
cannam@86 5954 $echo "$help" 1>&2
cannam@86 5955 exit $EXIT_FAILURE
cannam@86 5956 fi
cannam@86 5957
cannam@86 5958 dir=
cannam@86 5959 case $file in
cannam@86 5960 *.la)
cannam@86 5961 # Check to see that this really is a libtool archive.
cannam@86 5962 if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
cannam@86 5963 else
cannam@86 5964 $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
cannam@86 5965 $echo "$help" 1>&2
cannam@86 5966 exit $EXIT_FAILURE
cannam@86 5967 fi
cannam@86 5968
cannam@86 5969 # Read the libtool library.
cannam@86 5970 dlname=
cannam@86 5971 library_names=
cannam@86 5972
cannam@86 5973 # If there is no directory component, then add one.
cannam@86 5974 case $file in
cannam@86 5975 */* | *\\*) . $file ;;
cannam@86 5976 *) . ./$file ;;
cannam@86 5977 esac
cannam@86 5978
cannam@86 5979 # Skip this library if it cannot be dlopened.
cannam@86 5980 if test -z "$dlname"; then
cannam@86 5981 # Warn if it was a shared library.
cannam@86 5982 test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'"
cannam@86 5983 continue
cannam@86 5984 fi
cannam@86 5985
cannam@86 5986 dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
cannam@86 5987 test "X$dir" = "X$file" && dir=.
cannam@86 5988
cannam@86 5989 if test -f "$dir/$objdir/$dlname"; then
cannam@86 5990 dir="$dir/$objdir"
cannam@86 5991 else
cannam@86 5992 $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2
cannam@86 5993 exit $EXIT_FAILURE
cannam@86 5994 fi
cannam@86 5995 ;;
cannam@86 5996
cannam@86 5997 *.lo)
cannam@86 5998 # Just add the directory containing the .lo file.
cannam@86 5999 dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
cannam@86 6000 test "X$dir" = "X$file" && dir=.
cannam@86 6001 ;;
cannam@86 6002
cannam@86 6003 *)
cannam@86 6004 $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2
cannam@86 6005 continue
cannam@86 6006 ;;
cannam@86 6007 esac
cannam@86 6008
cannam@86 6009 # Get the absolute pathname.
cannam@86 6010 absdir=`cd "$dir" && pwd`
cannam@86 6011 test -n "$absdir" && dir="$absdir"
cannam@86 6012
cannam@86 6013 # Now add the directory to shlibpath_var.
cannam@86 6014 if eval "test -z \"\$$shlibpath_var\""; then
cannam@86 6015 eval "$shlibpath_var=\"\$dir\""
cannam@86 6016 else
cannam@86 6017 eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
cannam@86 6018 fi
cannam@86 6019 done
cannam@86 6020
cannam@86 6021 # This variable tells wrapper scripts just to set shlibpath_var
cannam@86 6022 # rather than running their programs.
cannam@86 6023 libtool_execute_magic="$magic"
cannam@86 6024
cannam@86 6025 # Check if any of the arguments is a wrapper script.
cannam@86 6026 args=
cannam@86 6027 for file
cannam@86 6028 do
cannam@86 6029 case $file in
cannam@86 6030 -*) ;;
cannam@86 6031 *)
cannam@86 6032 # Do a test to see if this is really a libtool program.
cannam@86 6033 if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
cannam@86 6034 # If there is no directory component, then add one.
cannam@86 6035 case $file in
cannam@86 6036 */* | *\\*) . $file ;;
cannam@86 6037 *) . ./$file ;;
cannam@86 6038 esac
cannam@86 6039
cannam@86 6040 # Transform arg to wrapped name.
cannam@86 6041 file="$progdir/$program"
cannam@86 6042 fi
cannam@86 6043 ;;
cannam@86 6044 esac
cannam@86 6045 # Quote arguments (to preserve shell metacharacters).
cannam@86 6046 file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
cannam@86 6047 args="$args \"$file\""
cannam@86 6048 done
cannam@86 6049
cannam@86 6050 if test -z "$run"; then
cannam@86 6051 if test -n "$shlibpath_var"; then
cannam@86 6052 # Export the shlibpath_var.
cannam@86 6053 eval "export $shlibpath_var"
cannam@86 6054 fi
cannam@86 6055
cannam@86 6056 # Restore saved environment variables
cannam@86 6057 if test "${save_LC_ALL+set}" = set; then
cannam@86 6058 LC_ALL="$save_LC_ALL"; export LC_ALL
cannam@86 6059 fi
cannam@86 6060 if test "${save_LANG+set}" = set; then
cannam@86 6061 LANG="$save_LANG"; export LANG
cannam@86 6062 fi
cannam@86 6063
cannam@86 6064 # Now prepare to actually exec the command.
cannam@86 6065 exec_cmd="\$cmd$args"
cannam@86 6066 else
cannam@86 6067 # Display what would be done.
cannam@86 6068 if test -n "$shlibpath_var"; then
cannam@86 6069 eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\""
cannam@86 6070 $echo "export $shlibpath_var"
cannam@86 6071 fi
cannam@86 6072 $echo "$cmd$args"
cannam@86 6073 exit $EXIT_SUCCESS
cannam@86 6074 fi
cannam@86 6075 ;;
cannam@86 6076
cannam@86 6077 # libtool clean and uninstall mode
cannam@86 6078 clean | uninstall)
cannam@86 6079 modename="$modename: $mode"
cannam@86 6080 rm="$nonopt"
cannam@86 6081 files=
cannam@86 6082 rmforce=
cannam@86 6083 exit_status=0
cannam@86 6084
cannam@86 6085 # This variable tells wrapper scripts just to set variables rather
cannam@86 6086 # than running their programs.
cannam@86 6087 libtool_install_magic="$magic"
cannam@86 6088
cannam@86 6089 for arg
cannam@86 6090 do
cannam@86 6091 case $arg in
cannam@86 6092 -f) rm="$rm $arg"; rmforce=yes ;;
cannam@86 6093 -*) rm="$rm $arg" ;;
cannam@86 6094 *) files="$files $arg" ;;
cannam@86 6095 esac
cannam@86 6096 done
cannam@86 6097
cannam@86 6098 if test -z "$rm"; then
cannam@86 6099 $echo "$modename: you must specify an RM program" 1>&2
cannam@86 6100 $echo "$help" 1>&2
cannam@86 6101 exit $EXIT_FAILURE
cannam@86 6102 fi
cannam@86 6103
cannam@86 6104 rmdirs=
cannam@86 6105
cannam@86 6106 origobjdir="$objdir"
cannam@86 6107 for file in $files; do
cannam@86 6108 dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
cannam@86 6109 if test "X$dir" = "X$file"; then
cannam@86 6110 dir=.
cannam@86 6111 objdir="$origobjdir"
cannam@86 6112 else
cannam@86 6113 objdir="$dir/$origobjdir"
cannam@86 6114 fi
cannam@86 6115 name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
cannam@86 6116 test "$mode" = uninstall && objdir="$dir"
cannam@86 6117
cannam@86 6118 # Remember objdir for removal later, being careful to avoid duplicates
cannam@86 6119 if test "$mode" = clean; then
cannam@86 6120 case " $rmdirs " in
cannam@86 6121 *" $objdir "*) ;;
cannam@86 6122 *) rmdirs="$rmdirs $objdir" ;;
cannam@86 6123 esac
cannam@86 6124 fi
cannam@86 6125
cannam@86 6126 # Don't error if the file doesn't exist and rm -f was used.
cannam@86 6127 if (test -L "$file") >/dev/null 2>&1 \
cannam@86 6128 || (test -h "$file") >/dev/null 2>&1 \
cannam@86 6129 || test -f "$file"; then
cannam@86 6130 :
cannam@86 6131 elif test -d "$file"; then
cannam@86 6132 exit_status=1
cannam@86 6133 continue
cannam@86 6134 elif test "$rmforce" = yes; then
cannam@86 6135 continue
cannam@86 6136 fi
cannam@86 6137
cannam@86 6138 rmfiles="$file"
cannam@86 6139
cannam@86 6140 case $name in
cannam@86 6141 *.la)
cannam@86 6142 # Possibly a libtool archive, so verify it.
cannam@86 6143 if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
cannam@86 6144 . $dir/$name
cannam@86 6145
cannam@86 6146 # Delete the libtool libraries and symlinks.
cannam@86 6147 for n in $library_names; do
cannam@86 6148 rmfiles="$rmfiles $objdir/$n"
cannam@86 6149 done
cannam@86 6150 test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library"
cannam@86 6151 test "$mode" = clean && rmfiles="$rmfiles $objdir/$name $objdir/${name}i"
cannam@86 6152
cannam@86 6153 if test "$mode" = uninstall; then
cannam@86 6154 if test -n "$library_names"; then
cannam@86 6155 # Do each command in the postuninstall commands.
cannam@86 6156 cmds=$postuninstall_cmds
cannam@86 6157 save_ifs="$IFS"; IFS='~'
cannam@86 6158 for cmd in $cmds; do
cannam@86 6159 IFS="$save_ifs"
cannam@86 6160 eval cmd=\"$cmd\"
cannam@86 6161 $show "$cmd"
cannam@86 6162 $run eval "$cmd"
cannam@86 6163 if test "$?" -ne 0 && test "$rmforce" != yes; then
cannam@86 6164 exit_status=1
cannam@86 6165 fi
cannam@86 6166 done
cannam@86 6167 IFS="$save_ifs"
cannam@86 6168 fi
cannam@86 6169
cannam@86 6170 if test -n "$old_library"; then
cannam@86 6171 # Do each command in the old_postuninstall commands.
cannam@86 6172 cmds=$old_postuninstall_cmds
cannam@86 6173 save_ifs="$IFS"; IFS='~'
cannam@86 6174 for cmd in $cmds; do
cannam@86 6175 IFS="$save_ifs"
cannam@86 6176 eval cmd=\"$cmd\"
cannam@86 6177 $show "$cmd"
cannam@86 6178 $run eval "$cmd"
cannam@86 6179 if test "$?" -ne 0 && test "$rmforce" != yes; then
cannam@86 6180 exit_status=1
cannam@86 6181 fi
cannam@86 6182 done
cannam@86 6183 IFS="$save_ifs"
cannam@86 6184 fi
cannam@86 6185 # FIXME: should reinstall the best remaining shared library.
cannam@86 6186 fi
cannam@86 6187 fi
cannam@86 6188 ;;
cannam@86 6189
cannam@86 6190 *.lo)
cannam@86 6191 # Possibly a libtool object, so verify it.
cannam@86 6192 if (${SED} -e '2q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
cannam@86 6193
cannam@86 6194 # Read the .lo file
cannam@86 6195 . $dir/$name
cannam@86 6196
cannam@86 6197 # Add PIC object to the list of files to remove.
cannam@86 6198 if test -n "$pic_object" \
cannam@86 6199 && test "$pic_object" != none; then
cannam@86 6200 rmfiles="$rmfiles $dir/$pic_object"
cannam@86 6201 fi
cannam@86 6202
cannam@86 6203 # Add non-PIC object to the list of files to remove.
cannam@86 6204 if test -n "$non_pic_object" \
cannam@86 6205 && test "$non_pic_object" != none; then
cannam@86 6206 rmfiles="$rmfiles $dir/$non_pic_object"
cannam@86 6207 fi
cannam@86 6208 fi
cannam@86 6209 ;;
cannam@86 6210
cannam@86 6211 *)
cannam@86 6212 if test "$mode" = clean ; then
cannam@86 6213 noexename=$name
cannam@86 6214 case $file in
cannam@86 6215 *.exe)
cannam@86 6216 file=`$echo $file|${SED} 's,.exe$,,'`
cannam@86 6217 noexename=`$echo $name|${SED} 's,.exe$,,'`
cannam@86 6218 # $file with .exe has already been added to rmfiles,
cannam@86 6219 # add $file without .exe
cannam@86 6220 rmfiles="$rmfiles $file"
cannam@86 6221 ;;
cannam@86 6222 esac
cannam@86 6223 # Do a test to see if this is a libtool program.
cannam@86 6224 if (${SED} -e '4q' $file | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
cannam@86 6225 relink_command=
cannam@86 6226 . $dir/$noexename
cannam@86 6227
cannam@86 6228 # note $name still contains .exe if it was in $file originally
cannam@86 6229 # as does the version of $file that was added into $rmfiles
cannam@86 6230 rmfiles="$rmfiles $objdir/$name $objdir/${name}S.${objext}"
cannam@86 6231 if test "$fast_install" = yes && test -n "$relink_command"; then
cannam@86 6232 rmfiles="$rmfiles $objdir/lt-$name"
cannam@86 6233 fi
cannam@86 6234 if test "X$noexename" != "X$name" ; then
cannam@86 6235 rmfiles="$rmfiles $objdir/lt-${noexename}.c"
cannam@86 6236 fi
cannam@86 6237 fi
cannam@86 6238 fi
cannam@86 6239 ;;
cannam@86 6240 esac
cannam@86 6241 $show "$rm $rmfiles"
cannam@86 6242 $run $rm $rmfiles || exit_status=1
cannam@86 6243 done
cannam@86 6244 objdir="$origobjdir"
cannam@86 6245
cannam@86 6246 # Try to remove the ${objdir}s in the directories where we deleted files
cannam@86 6247 for dir in $rmdirs; do
cannam@86 6248 if test -d "$dir"; then
cannam@86 6249 $show "rmdir $dir"
cannam@86 6250 $run rmdir $dir >/dev/null 2>&1
cannam@86 6251 fi
cannam@86 6252 done
cannam@86 6253
cannam@86 6254 exit $exit_status
cannam@86 6255 ;;
cannam@86 6256
cannam@86 6257 "")
cannam@86 6258 $echo "$modename: you must specify a MODE" 1>&2
cannam@86 6259 $echo "$generic_help" 1>&2
cannam@86 6260 exit $EXIT_FAILURE
cannam@86 6261 ;;
cannam@86 6262 esac
cannam@86 6263
cannam@86 6264 if test -z "$exec_cmd"; then
cannam@86 6265 $echo "$modename: invalid operation mode \`$mode'" 1>&2
cannam@86 6266 $echo "$generic_help" 1>&2
cannam@86 6267 exit $EXIT_FAILURE
cannam@86 6268 fi
cannam@86 6269 fi # test -z "$show_help"
cannam@86 6270
cannam@86 6271 if test -n "$exec_cmd"; then
cannam@86 6272 eval exec $exec_cmd
cannam@86 6273 exit $EXIT_FAILURE
cannam@86 6274 fi
cannam@86 6275
cannam@86 6276 # We need to display help for each of the modes.
cannam@86 6277 case $mode in
cannam@86 6278 "") $echo \
cannam@86 6279 "Usage: $modename [OPTION]... [MODE-ARG]...
cannam@86 6280
cannam@86 6281 Provide generalized library-building support services.
cannam@86 6282
cannam@86 6283 --config show all configuration variables
cannam@86 6284 --debug enable verbose shell tracing
cannam@86 6285 -n, --dry-run display commands without modifying any files
cannam@86 6286 --features display basic configuration information and exit
cannam@86 6287 --finish same as \`--mode=finish'
cannam@86 6288 --help display this help message and exit
cannam@86 6289 --mode=MODE use operation mode MODE [default=inferred from MODE-ARGS]
cannam@86 6290 --quiet same as \`--silent'
cannam@86 6291 --silent don't print informational messages
cannam@86 6292 --tag=TAG use configuration variables from tag TAG
cannam@86 6293 --version print version information
cannam@86 6294
cannam@86 6295 MODE must be one of the following:
cannam@86 6296
cannam@86 6297 clean remove files from the build directory
cannam@86 6298 compile compile a source file into a libtool object
cannam@86 6299 execute automatically set library path, then run a program
cannam@86 6300 finish complete the installation of libtool libraries
cannam@86 6301 install install libraries or executables
cannam@86 6302 link create a library or an executable
cannam@86 6303 uninstall remove libraries from an installed directory
cannam@86 6304
cannam@86 6305 MODE-ARGS vary depending on the MODE. Try \`$modename --help --mode=MODE' for
cannam@86 6306 a more detailed description of MODE.
cannam@86 6307
cannam@86 6308 Report bugs to <bug-libtool@gnu.org>."
cannam@86 6309 exit $EXIT_SUCCESS
cannam@86 6310 ;;
cannam@86 6311
cannam@86 6312 clean)
cannam@86 6313 $echo \
cannam@86 6314 "Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
cannam@86 6315
cannam@86 6316 Remove files from the build directory.
cannam@86 6317
cannam@86 6318 RM is the name of the program to use to delete files associated with each FILE
cannam@86 6319 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
cannam@86 6320 to RM.
cannam@86 6321
cannam@86 6322 If FILE is a libtool library, object or program, all the files associated
cannam@86 6323 with it are deleted. Otherwise, only FILE itself is deleted using RM."
cannam@86 6324 ;;
cannam@86 6325
cannam@86 6326 compile)
cannam@86 6327 $echo \
cannam@86 6328 "Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
cannam@86 6329
cannam@86 6330 Compile a source file into a libtool library object.
cannam@86 6331
cannam@86 6332 This mode accepts the following additional options:
cannam@86 6333
cannam@86 6334 -o OUTPUT-FILE set the output file name to OUTPUT-FILE
cannam@86 6335 -prefer-pic try to building PIC objects only
cannam@86 6336 -prefer-non-pic try to building non-PIC objects only
cannam@86 6337 -static always build a \`.o' file suitable for static linking
cannam@86 6338
cannam@86 6339 COMPILE-COMMAND is a command to be used in creating a \`standard' object file
cannam@86 6340 from the given SOURCEFILE.
cannam@86 6341
cannam@86 6342 The output file name is determined by removing the directory component from
cannam@86 6343 SOURCEFILE, then substituting the C source code suffix \`.c' with the
cannam@86 6344 library object suffix, \`.lo'."
cannam@86 6345 ;;
cannam@86 6346
cannam@86 6347 execute)
cannam@86 6348 $echo \
cannam@86 6349 "Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]...
cannam@86 6350
cannam@86 6351 Automatically set library path, then run a program.
cannam@86 6352
cannam@86 6353 This mode accepts the following additional options:
cannam@86 6354
cannam@86 6355 -dlopen FILE add the directory containing FILE to the library path
cannam@86 6356
cannam@86 6357 This mode sets the library path environment variable according to \`-dlopen'
cannam@86 6358 flags.
cannam@86 6359
cannam@86 6360 If any of the ARGS are libtool executable wrappers, then they are translated
cannam@86 6361 into their corresponding uninstalled binary, and any of their required library
cannam@86 6362 directories are added to the library path.
cannam@86 6363
cannam@86 6364 Then, COMMAND is executed, with ARGS as arguments."
cannam@86 6365 ;;
cannam@86 6366
cannam@86 6367 finish)
cannam@86 6368 $echo \
cannam@86 6369 "Usage: $modename [OPTION]... --mode=finish [LIBDIR]...
cannam@86 6370
cannam@86 6371 Complete the installation of libtool libraries.
cannam@86 6372
cannam@86 6373 Each LIBDIR is a directory that contains libtool libraries.
cannam@86 6374
cannam@86 6375 The commands that this mode executes may require superuser privileges. Use
cannam@86 6376 the \`--dry-run' option if you just want to see what would be executed."
cannam@86 6377 ;;
cannam@86 6378
cannam@86 6379 install)
cannam@86 6380 $echo \
cannam@86 6381 "Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND...
cannam@86 6382
cannam@86 6383 Install executables or libraries.
cannam@86 6384
cannam@86 6385 INSTALL-COMMAND is the installation command. The first component should be
cannam@86 6386 either the \`install' or \`cp' program.
cannam@86 6387
cannam@86 6388 The rest of the components are interpreted as arguments to that command (only
cannam@86 6389 BSD-compatible install options are recognized)."
cannam@86 6390 ;;
cannam@86 6391
cannam@86 6392 link)
cannam@86 6393 $echo \
cannam@86 6394 "Usage: $modename [OPTION]... --mode=link LINK-COMMAND...
cannam@86 6395
cannam@86 6396 Link object files or libraries together to form another library, or to
cannam@86 6397 create an executable program.
cannam@86 6398
cannam@86 6399 LINK-COMMAND is a command using the C compiler that you would use to create
cannam@86 6400 a program from several object files.
cannam@86 6401
cannam@86 6402 The following components of LINK-COMMAND are treated specially:
cannam@86 6403
cannam@86 6404 -all-static do not do any dynamic linking at all
cannam@86 6405 -avoid-version do not add a version suffix if possible
cannam@86 6406 -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
cannam@86 6407 -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols
cannam@86 6408 -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
cannam@86 6409 -export-symbols SYMFILE
cannam@86 6410 try to export only the symbols listed in SYMFILE
cannam@86 6411 -export-symbols-regex REGEX
cannam@86 6412 try to export only the symbols matching REGEX
cannam@86 6413 -LLIBDIR search LIBDIR for required installed libraries
cannam@86 6414 -lNAME OUTPUT-FILE requires the installed library libNAME
cannam@86 6415 -module build a library that can dlopened
cannam@86 6416 -no-fast-install disable the fast-install mode
cannam@86 6417 -no-install link a not-installable executable
cannam@86 6418 -no-undefined declare that a library does not refer to external symbols
cannam@86 6419 -o OUTPUT-FILE create OUTPUT-FILE from the specified objects
cannam@86 6420 -objectlist FILE Use a list of object files found in FILE to specify objects
cannam@86 6421 -precious-files-regex REGEX
cannam@86 6422 don't remove output files matching REGEX
cannam@86 6423 -release RELEASE specify package release information
cannam@86 6424 -rpath LIBDIR the created library will eventually be installed in LIBDIR
cannam@86 6425 -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries
cannam@86 6426 -static do not do any dynamic linking of libtool libraries
cannam@86 6427 -version-info CURRENT[:REVISION[:AGE]]
cannam@86 6428 specify library version info [each variable defaults to 0]
cannam@86 6429
cannam@86 6430 All other options (arguments beginning with \`-') are ignored.
cannam@86 6431
cannam@86 6432 Every other argument is treated as a filename. Files ending in \`.la' are
cannam@86 6433 treated as uninstalled libtool libraries, other files are standard or library
cannam@86 6434 object files.
cannam@86 6435
cannam@86 6436 If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
cannam@86 6437 only library objects (\`.lo' files) may be specified, and \`-rpath' is
cannam@86 6438 required, except when creating a convenience library.
cannam@86 6439
cannam@86 6440 If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
cannam@86 6441 using \`ar' and \`ranlib', or on Windows using \`lib'.
cannam@86 6442
cannam@86 6443 If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
cannam@86 6444 is created, otherwise an executable program is created."
cannam@86 6445 ;;
cannam@86 6446
cannam@86 6447 uninstall)
cannam@86 6448 $echo \
cannam@86 6449 "Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
cannam@86 6450
cannam@86 6451 Remove libraries from an installation directory.
cannam@86 6452
cannam@86 6453 RM is the name of the program to use to delete files associated with each FILE
cannam@86 6454 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
cannam@86 6455 to RM.
cannam@86 6456
cannam@86 6457 If FILE is a libtool library, all the files associated with it are deleted.
cannam@86 6458 Otherwise, only FILE itself is deleted using RM."
cannam@86 6459 ;;
cannam@86 6460
cannam@86 6461 *)
cannam@86 6462 $echo "$modename: invalid operation mode \`$mode'" 1>&2
cannam@86 6463 $echo "$help" 1>&2
cannam@86 6464 exit $EXIT_FAILURE
cannam@86 6465 ;;
cannam@86 6466 esac
cannam@86 6467
cannam@86 6468 $echo
cannam@86 6469 $echo "Try \`$modename --help' for more information about other modes."
cannam@86 6470
cannam@86 6471 exit $?
cannam@86 6472
cannam@86 6473 # The TAGs below are defined such that we never get into a situation
cannam@86 6474 # in which we disable both kinds of libraries. Given conflicting
cannam@86 6475 # choices, we go for a static library, that is the most portable,
cannam@86 6476 # since we can't tell whether shared libraries were disabled because
cannam@86 6477 # the user asked for that or because the platform doesn't support
cannam@86 6478 # them. This is particularly important on AIX, because we don't
cannam@86 6479 # support having both static and shared libraries enabled at the same
cannam@86 6480 # time on that platform, so we default to a shared-only configuration.
cannam@86 6481 # If a disable-shared tag is given, we'll fallback to a static-only
cannam@86 6482 # configuration. But we'll never go from static-only to shared-only.
cannam@86 6483
cannam@86 6484 # ### BEGIN LIBTOOL TAG CONFIG: disable-shared
cannam@86 6485 build_libtool_libs=no
cannam@86 6486 build_old_libs=yes
cannam@86 6487 # ### END LIBTOOL TAG CONFIG: disable-shared
cannam@86 6488
cannam@86 6489 # ### BEGIN LIBTOOL TAG CONFIG: disable-static
cannam@86 6490 build_old_libs=`case $build_libtool_libs in yes) $echo no;; *) $echo yes;; esac`
cannam@86 6491 # ### END LIBTOOL TAG CONFIG: disable-static
cannam@86 6492
cannam@86 6493 # Local Variables:
cannam@86 6494 # mode:shell-script
cannam@86 6495 # sh-indentation:2
cannam@86 6496 # End: