annotate src/portaudio_20140130/ltmain.sh @ 79:91c729825bca pa_catalina

Update build for AUDIO_COMPONENT_FIX
author Chris Cannam
date Wed, 30 Oct 2019 12:40:34 +0000
parents 7ddb4fc30dac
children
rev   line source
Chris@39 1
Chris@39 2 # libtool (GNU libtool) 2.4
Chris@39 3 # Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
Chris@39 4
Chris@39 5 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006,
Chris@39 6 # 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
Chris@39 7 # This is free software; see the source for copying conditions. There is NO
Chris@39 8 # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Chris@39 9
Chris@39 10 # GNU Libtool is free software; you can redistribute it and/or modify
Chris@39 11 # it under the terms of the GNU General Public License as published by
Chris@39 12 # the Free Software Foundation; either version 2 of the License, or
Chris@39 13 # (at your option) any later version.
Chris@39 14 #
Chris@39 15 # As a special exception to the GNU General Public License,
Chris@39 16 # if you distribute this file as part of a program or library that
Chris@39 17 # is built using GNU Libtool, you may include this file under the
Chris@39 18 # same distribution terms that you use for the rest of that program.
Chris@39 19 #
Chris@39 20 # GNU Libtool is distributed in the hope that it will be useful, but
Chris@39 21 # WITHOUT ANY WARRANTY; without even the implied warranty of
Chris@39 22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Chris@39 23 # General Public License for more details.
Chris@39 24 #
Chris@39 25 # You should have received a copy of the GNU General Public License
Chris@39 26 # along with GNU Libtool; see the file COPYING. If not, a copy
Chris@39 27 # can be downloaded from http://www.gnu.org/licenses/gpl.html,
Chris@39 28 # or obtained by writing to the Free Software Foundation, Inc.,
Chris@39 29 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Chris@39 30
Chris@39 31 # Usage: $progname [OPTION]... [MODE-ARG]...
Chris@39 32 #
Chris@39 33 # Provide generalized library-building support services.
Chris@39 34 #
Chris@39 35 # --config show all configuration variables
Chris@39 36 # --debug enable verbose shell tracing
Chris@39 37 # -n, --dry-run display commands without modifying any files
Chris@39 38 # --features display basic configuration information and exit
Chris@39 39 # --mode=MODE use operation mode MODE
Chris@39 40 # --preserve-dup-deps don't remove duplicate dependency libraries
Chris@39 41 # --quiet, --silent don't print informational messages
Chris@39 42 # --no-quiet, --no-silent
Chris@39 43 # print informational messages (default)
Chris@39 44 # --tag=TAG use configuration variables from tag TAG
Chris@39 45 # -v, --verbose print more informational messages than default
Chris@39 46 # --no-verbose don't print the extra informational messages
Chris@39 47 # --version print version information
Chris@39 48 # -h, --help, --help-all print short, long, or detailed help message
Chris@39 49 #
Chris@39 50 # MODE must be one of the following:
Chris@39 51 #
Chris@39 52 # clean remove files from the build directory
Chris@39 53 # compile compile a source file into a libtool object
Chris@39 54 # execute automatically set library path, then run a program
Chris@39 55 # finish complete the installation of libtool libraries
Chris@39 56 # install install libraries or executables
Chris@39 57 # link create a library or an executable
Chris@39 58 # uninstall remove libraries from an installed directory
Chris@39 59 #
Chris@39 60 # MODE-ARGS vary depending on the MODE. When passed as first option,
Chris@39 61 # `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that.
Chris@39 62 # Try `$progname --help --mode=MODE' for a more detailed description of MODE.
Chris@39 63 #
Chris@39 64 # When reporting a bug, please describe a test case to reproduce it and
Chris@39 65 # include the following information:
Chris@39 66 #
Chris@39 67 # host-triplet: $host
Chris@39 68 # shell: $SHELL
Chris@39 69 # compiler: $LTCC
Chris@39 70 # compiler flags: $LTCFLAGS
Chris@39 71 # linker: $LD (gnu? $with_gnu_ld)
Chris@39 72 # $progname: (GNU libtool) 2.4 Debian-2.4-2ubuntu1
Chris@39 73 # automake: $automake_version
Chris@39 74 # autoconf: $autoconf_version
Chris@39 75 #
Chris@39 76 # Report bugs to <bug-libtool@gnu.org>.
Chris@39 77 # GNU libtool home page: <http://www.gnu.org/software/libtool/>.
Chris@39 78 # General help using GNU software: <http://www.gnu.org/gethelp/>.
Chris@39 79
Chris@39 80 PROGRAM=libtool
Chris@39 81 PACKAGE=libtool
Chris@39 82 VERSION="2.4 Debian-2.4-2ubuntu1"
Chris@39 83 TIMESTAMP=""
Chris@39 84 package_revision=1.3293
Chris@39 85
Chris@39 86 # Be Bourne compatible
Chris@39 87 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
Chris@39 88 emulate sh
Chris@39 89 NULLCMD=:
Chris@39 90 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
Chris@39 91 # is contrary to our usage. Disable this feature.
Chris@39 92 alias -g '${1+"$@"}'='"$@"'
Chris@39 93 setopt NO_GLOB_SUBST
Chris@39 94 else
Chris@39 95 case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
Chris@39 96 fi
Chris@39 97 BIN_SH=xpg4; export BIN_SH # for Tru64
Chris@39 98 DUALCASE=1; export DUALCASE # for MKS sh
Chris@39 99
Chris@39 100 # A function that is used when there is no print builtin or printf.
Chris@39 101 func_fallback_echo ()
Chris@39 102 {
Chris@39 103 eval 'cat <<_LTECHO_EOF
Chris@39 104 $1
Chris@39 105 _LTECHO_EOF'
Chris@39 106 }
Chris@39 107
Chris@39 108 # NLS nuisances: We save the old values to restore during execute mode.
Chris@39 109 lt_user_locale=
Chris@39 110 lt_safe_locale=
Chris@39 111 for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
Chris@39 112 do
Chris@39 113 eval "if test \"\${$lt_var+set}\" = set; then
Chris@39 114 save_$lt_var=\$$lt_var
Chris@39 115 $lt_var=C
Chris@39 116 export $lt_var
Chris@39 117 lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\"
Chris@39 118 lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\"
Chris@39 119 fi"
Chris@39 120 done
Chris@39 121 LC_ALL=C
Chris@39 122 LANGUAGE=C
Chris@39 123 export LANGUAGE LC_ALL
Chris@39 124
Chris@39 125 $lt_unset CDPATH
Chris@39 126
Chris@39 127
Chris@39 128 # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
Chris@39 129 # is ksh but when the shell is invoked as "sh" and the current value of
Chris@39 130 # the _XPG environment variable is not equal to 1 (one), the special
Chris@39 131 # positional parameter $0, within a function call, is the name of the
Chris@39 132 # function.
Chris@39 133 progpath="$0"
Chris@39 134
Chris@39 135
Chris@39 136
Chris@39 137 : ${CP="cp -f"}
Chris@39 138 test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'}
Chris@39 139 : ${EGREP="/bin/grep -E"}
Chris@39 140 : ${FGREP="/bin/grep -F"}
Chris@39 141 : ${GREP="/bin/grep"}
Chris@39 142 : ${LN_S="ln -s"}
Chris@39 143 : ${MAKE="make"}
Chris@39 144 : ${MKDIR="mkdir"}
Chris@39 145 : ${MV="mv -f"}
Chris@39 146 : ${RM="rm -f"}
Chris@39 147 : ${SED="/bin/sed"}
Chris@39 148 : ${SHELL="${CONFIG_SHELL-/bin/sh}"}
Chris@39 149 : ${Xsed="$SED -e 1s/^X//"}
Chris@39 150
Chris@39 151 # Global variables:
Chris@39 152 EXIT_SUCCESS=0
Chris@39 153 EXIT_FAILURE=1
Chris@39 154 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing.
Chris@39 155 EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake.
Chris@39 156
Chris@39 157 exit_status=$EXIT_SUCCESS
Chris@39 158
Chris@39 159 # Make sure IFS has a sensible default
Chris@39 160 lt_nl='
Chris@39 161 '
Chris@39 162 IFS=" $lt_nl"
Chris@39 163
Chris@39 164 dirname="s,/[^/]*$,,"
Chris@39 165 basename="s,^.*/,,"
Chris@39 166
Chris@39 167 # func_dirname file append nondir_replacement
Chris@39 168 # Compute the dirname of FILE. If nonempty, add APPEND to the result,
Chris@39 169 # otherwise set result to NONDIR_REPLACEMENT.
Chris@39 170 func_dirname ()
Chris@39 171 {
Chris@39 172 func_dirname_result=`$ECHO "${1}" | $SED "$dirname"`
Chris@39 173 if test "X$func_dirname_result" = "X${1}"; then
Chris@39 174 func_dirname_result="${3}"
Chris@39 175 else
Chris@39 176 func_dirname_result="$func_dirname_result${2}"
Chris@39 177 fi
Chris@39 178 } # func_dirname may be replaced by extended shell implementation
Chris@39 179
Chris@39 180
Chris@39 181 # func_basename file
Chris@39 182 func_basename ()
Chris@39 183 {
Chris@39 184 func_basename_result=`$ECHO "${1}" | $SED "$basename"`
Chris@39 185 } # func_basename may be replaced by extended shell implementation
Chris@39 186
Chris@39 187
Chris@39 188 # func_dirname_and_basename file append nondir_replacement
Chris@39 189 # perform func_basename and func_dirname in a single function
Chris@39 190 # call:
Chris@39 191 # dirname: Compute the dirname of FILE. If nonempty,
Chris@39 192 # add APPEND to the result, otherwise set result
Chris@39 193 # to NONDIR_REPLACEMENT.
Chris@39 194 # value returned in "$func_dirname_result"
Chris@39 195 # basename: Compute filename of FILE.
Chris@39 196 # value retuned in "$func_basename_result"
Chris@39 197 # Implementation must be kept synchronized with func_dirname
Chris@39 198 # and func_basename. For efficiency, we do not delegate to
Chris@39 199 # those functions but instead duplicate the functionality here.
Chris@39 200 func_dirname_and_basename ()
Chris@39 201 {
Chris@39 202 # Extract subdirectory from the argument.
Chris@39 203 func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"`
Chris@39 204 if test "X$func_dirname_result" = "X${1}"; then
Chris@39 205 func_dirname_result="${3}"
Chris@39 206 else
Chris@39 207 func_dirname_result="$func_dirname_result${2}"
Chris@39 208 fi
Chris@39 209 func_basename_result=`$ECHO "${1}" | $SED -e "$basename"`
Chris@39 210 } # func_dirname_and_basename may be replaced by extended shell implementation
Chris@39 211
Chris@39 212
Chris@39 213 # func_stripname prefix suffix name
Chris@39 214 # strip PREFIX and SUFFIX off of NAME.
Chris@39 215 # PREFIX and SUFFIX must not contain globbing or regex special
Chris@39 216 # characters, hashes, percent signs, but SUFFIX may contain a leading
Chris@39 217 # dot (in which case that matches only a dot).
Chris@39 218 # func_strip_suffix prefix name
Chris@39 219 func_stripname ()
Chris@39 220 {
Chris@39 221 case ${2} in
Chris@39 222 .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;;
Chris@39 223 *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;;
Chris@39 224 esac
Chris@39 225 } # func_stripname may be replaced by extended shell implementation
Chris@39 226
Chris@39 227
Chris@39 228 # These SED scripts presuppose an absolute path with a trailing slash.
Chris@39 229 pathcar='s,^/\([^/]*\).*$,\1,'
Chris@39 230 pathcdr='s,^/[^/]*,,'
Chris@39 231 removedotparts=':dotsl
Chris@39 232 s@/\./@/@g
Chris@39 233 t dotsl
Chris@39 234 s,/\.$,/,'
Chris@39 235 collapseslashes='s@/\{1,\}@/@g'
Chris@39 236 finalslash='s,/*$,/,'
Chris@39 237
Chris@39 238 # func_normal_abspath PATH
Chris@39 239 # Remove doubled-up and trailing slashes, "." path components,
Chris@39 240 # and cancel out any ".." path components in PATH after making
Chris@39 241 # it an absolute path.
Chris@39 242 # value returned in "$func_normal_abspath_result"
Chris@39 243 func_normal_abspath ()
Chris@39 244 {
Chris@39 245 # Start from root dir and reassemble the path.
Chris@39 246 func_normal_abspath_result=
Chris@39 247 func_normal_abspath_tpath=$1
Chris@39 248 func_normal_abspath_altnamespace=
Chris@39 249 case $func_normal_abspath_tpath in
Chris@39 250 "")
Chris@39 251 # Empty path, that just means $cwd.
Chris@39 252 func_stripname '' '/' "`pwd`"
Chris@39 253 func_normal_abspath_result=$func_stripname_result
Chris@39 254 return
Chris@39 255 ;;
Chris@39 256 # The next three entries are used to spot a run of precisely
Chris@39 257 # two leading slashes without using negated character classes;
Chris@39 258 # we take advantage of case's first-match behaviour.
Chris@39 259 ///*)
Chris@39 260 # Unusual form of absolute path, do nothing.
Chris@39 261 ;;
Chris@39 262 //*)
Chris@39 263 # Not necessarily an ordinary path; POSIX reserves leading '//'
Chris@39 264 # and for example Cygwin uses it to access remote file shares
Chris@39 265 # over CIFS/SMB, so we conserve a leading double slash if found.
Chris@39 266 func_normal_abspath_altnamespace=/
Chris@39 267 ;;
Chris@39 268 /*)
Chris@39 269 # Absolute path, do nothing.
Chris@39 270 ;;
Chris@39 271 *)
Chris@39 272 # Relative path, prepend $cwd.
Chris@39 273 func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath
Chris@39 274 ;;
Chris@39 275 esac
Chris@39 276 # Cancel out all the simple stuff to save iterations. We also want
Chris@39 277 # the path to end with a slash for ease of parsing, so make sure
Chris@39 278 # there is one (and only one) here.
Chris@39 279 func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
Chris@39 280 -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"`
Chris@39 281 while :; do
Chris@39 282 # Processed it all yet?
Chris@39 283 if test "$func_normal_abspath_tpath" = / ; then
Chris@39 284 # If we ascended to the root using ".." the result may be empty now.
Chris@39 285 if test -z "$func_normal_abspath_result" ; then
Chris@39 286 func_normal_abspath_result=/
Chris@39 287 fi
Chris@39 288 break
Chris@39 289 fi
Chris@39 290 func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \
Chris@39 291 -e "$pathcar"`
Chris@39 292 func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
Chris@39 293 -e "$pathcdr"`
Chris@39 294 # Figure out what to do with it
Chris@39 295 case $func_normal_abspath_tcomponent in
Chris@39 296 "")
Chris@39 297 # Trailing empty path component, ignore it.
Chris@39 298 ;;
Chris@39 299 ..)
Chris@39 300 # Parent dir; strip last assembled component from result.
Chris@39 301 func_dirname "$func_normal_abspath_result"
Chris@39 302 func_normal_abspath_result=$func_dirname_result
Chris@39 303 ;;
Chris@39 304 *)
Chris@39 305 # Actual path component, append it.
Chris@39 306 func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent
Chris@39 307 ;;
Chris@39 308 esac
Chris@39 309 done
Chris@39 310 # Restore leading double-slash if one was found on entry.
Chris@39 311 func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result
Chris@39 312 }
Chris@39 313
Chris@39 314 # func_relative_path SRCDIR DSTDIR
Chris@39 315 # generates a relative path from SRCDIR to DSTDIR, with a trailing
Chris@39 316 # slash if non-empty, suitable for immediately appending a filename
Chris@39 317 # without needing to append a separator.
Chris@39 318 # value returned in "$func_relative_path_result"
Chris@39 319 func_relative_path ()
Chris@39 320 {
Chris@39 321 func_relative_path_result=
Chris@39 322 func_normal_abspath "$1"
Chris@39 323 func_relative_path_tlibdir=$func_normal_abspath_result
Chris@39 324 func_normal_abspath "$2"
Chris@39 325 func_relative_path_tbindir=$func_normal_abspath_result
Chris@39 326
Chris@39 327 # Ascend the tree starting from libdir
Chris@39 328 while :; do
Chris@39 329 # check if we have found a prefix of bindir
Chris@39 330 case $func_relative_path_tbindir in
Chris@39 331 $func_relative_path_tlibdir)
Chris@39 332 # found an exact match
Chris@39 333 func_relative_path_tcancelled=
Chris@39 334 break
Chris@39 335 ;;
Chris@39 336 $func_relative_path_tlibdir*)
Chris@39 337 # found a matching prefix
Chris@39 338 func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir"
Chris@39 339 func_relative_path_tcancelled=$func_stripname_result
Chris@39 340 if test -z "$func_relative_path_result"; then
Chris@39 341 func_relative_path_result=.
Chris@39 342 fi
Chris@39 343 break
Chris@39 344 ;;
Chris@39 345 *)
Chris@39 346 func_dirname $func_relative_path_tlibdir
Chris@39 347 func_relative_path_tlibdir=${func_dirname_result}
Chris@39 348 if test "x$func_relative_path_tlibdir" = x ; then
Chris@39 349 # Have to descend all the way to the root!
Chris@39 350 func_relative_path_result=../$func_relative_path_result
Chris@39 351 func_relative_path_tcancelled=$func_relative_path_tbindir
Chris@39 352 break
Chris@39 353 fi
Chris@39 354 func_relative_path_result=../$func_relative_path_result
Chris@39 355 ;;
Chris@39 356 esac
Chris@39 357 done
Chris@39 358
Chris@39 359 # Now calculate path; take care to avoid doubling-up slashes.
Chris@39 360 func_stripname '' '/' "$func_relative_path_result"
Chris@39 361 func_relative_path_result=$func_stripname_result
Chris@39 362 func_stripname '/' '/' "$func_relative_path_tcancelled"
Chris@39 363 if test "x$func_stripname_result" != x ; then
Chris@39 364 func_relative_path_result=${func_relative_path_result}/${func_stripname_result}
Chris@39 365 fi
Chris@39 366
Chris@39 367 # Normalisation. If bindir is libdir, return empty string,
Chris@39 368 # else relative path ending with a slash; either way, target
Chris@39 369 # file name can be directly appended.
Chris@39 370 if test ! -z "$func_relative_path_result"; then
Chris@39 371 func_stripname './' '' "$func_relative_path_result/"
Chris@39 372 func_relative_path_result=$func_stripname_result
Chris@39 373 fi
Chris@39 374 }
Chris@39 375
Chris@39 376 # The name of this program:
Chris@39 377 func_dirname_and_basename "$progpath"
Chris@39 378 progname=$func_basename_result
Chris@39 379
Chris@39 380 # Make sure we have an absolute path for reexecution:
Chris@39 381 case $progpath in
Chris@39 382 [\\/]*|[A-Za-z]:\\*) ;;
Chris@39 383 *[\\/]*)
Chris@39 384 progdir=$func_dirname_result
Chris@39 385 progdir=`cd "$progdir" && pwd`
Chris@39 386 progpath="$progdir/$progname"
Chris@39 387 ;;
Chris@39 388 *)
Chris@39 389 save_IFS="$IFS"
Chris@39 390 IFS=:
Chris@39 391 for progdir in $PATH; do
Chris@39 392 IFS="$save_IFS"
Chris@39 393 test -x "$progdir/$progname" && break
Chris@39 394 done
Chris@39 395 IFS="$save_IFS"
Chris@39 396 test -n "$progdir" || progdir=`pwd`
Chris@39 397 progpath="$progdir/$progname"
Chris@39 398 ;;
Chris@39 399 esac
Chris@39 400
Chris@39 401 # Sed substitution that helps us do robust quoting. It backslashifies
Chris@39 402 # metacharacters that are still active within double-quoted strings.
Chris@39 403 Xsed="${SED}"' -e 1s/^X//'
Chris@39 404 sed_quote_subst='s/\([`"$\\]\)/\\\1/g'
Chris@39 405
Chris@39 406 # Same as above, but do not quote variable references.
Chris@39 407 double_quote_subst='s/\(["`\\]\)/\\\1/g'
Chris@39 408
Chris@39 409 # Sed substitution that turns a string into a regex matching for the
Chris@39 410 # string literally.
Chris@39 411 sed_make_literal_regex='s,[].[^$\\*\/],\\&,g'
Chris@39 412
Chris@39 413 # Sed substitution that converts a w32 file name or path
Chris@39 414 # which contains forward slashes, into one that contains
Chris@39 415 # (escaped) backslashes. A very naive implementation.
Chris@39 416 lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g'
Chris@39 417
Chris@39 418 # Re-`\' parameter expansions in output of double_quote_subst that were
Chris@39 419 # `\'-ed in input to the same. If an odd number of `\' preceded a '$'
Chris@39 420 # in input to double_quote_subst, that '$' was protected from expansion.
Chris@39 421 # Since each input `\' is now two `\'s, look for any number of runs of
Chris@39 422 # four `\'s followed by two `\'s and then a '$'. `\' that '$'.
Chris@39 423 bs='\\'
Chris@39 424 bs2='\\\\'
Chris@39 425 bs4='\\\\\\\\'
Chris@39 426 dollar='\$'
Chris@39 427 sed_double_backslash="\
Chris@39 428 s/$bs4/&\\
Chris@39 429 /g
Chris@39 430 s/^$bs2$dollar/$bs&/
Chris@39 431 s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g
Chris@39 432 s/\n//g"
Chris@39 433
Chris@39 434 # Standard options:
Chris@39 435 opt_dry_run=false
Chris@39 436 opt_help=false
Chris@39 437 opt_quiet=false
Chris@39 438 opt_verbose=false
Chris@39 439 opt_warning=:
Chris@39 440
Chris@39 441 # func_echo arg...
Chris@39 442 # Echo program name prefixed message, along with the current mode
Chris@39 443 # name if it has been set yet.
Chris@39 444 func_echo ()
Chris@39 445 {
Chris@39 446 $ECHO "$progname: ${opt_mode+$opt_mode: }$*"
Chris@39 447 }
Chris@39 448
Chris@39 449 # func_verbose arg...
Chris@39 450 # Echo program name prefixed message in verbose mode only.
Chris@39 451 func_verbose ()
Chris@39 452 {
Chris@39 453 $opt_verbose && func_echo ${1+"$@"}
Chris@39 454
Chris@39 455 # A bug in bash halts the script if the last line of a function
Chris@39 456 # fails when set -e is in force, so we need another command to
Chris@39 457 # work around that:
Chris@39 458 :
Chris@39 459 }
Chris@39 460
Chris@39 461 # func_echo_all arg...
Chris@39 462 # Invoke $ECHO with all args, space-separated.
Chris@39 463 func_echo_all ()
Chris@39 464 {
Chris@39 465 $ECHO "$*"
Chris@39 466 }
Chris@39 467
Chris@39 468 # func_error arg...
Chris@39 469 # Echo program name prefixed message to standard error.
Chris@39 470 func_error ()
Chris@39 471 {
Chris@39 472 $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2
Chris@39 473 }
Chris@39 474
Chris@39 475 # func_warning arg...
Chris@39 476 # Echo program name prefixed warning message to standard error.
Chris@39 477 func_warning ()
Chris@39 478 {
Chris@39 479 $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2
Chris@39 480
Chris@39 481 # bash bug again:
Chris@39 482 :
Chris@39 483 }
Chris@39 484
Chris@39 485 # func_fatal_error arg...
Chris@39 486 # Echo program name prefixed message to standard error, and exit.
Chris@39 487 func_fatal_error ()
Chris@39 488 {
Chris@39 489 func_error ${1+"$@"}
Chris@39 490 exit $EXIT_FAILURE
Chris@39 491 }
Chris@39 492
Chris@39 493 # func_fatal_help arg...
Chris@39 494 # Echo program name prefixed message to standard error, followed by
Chris@39 495 # a help hint, and exit.
Chris@39 496 func_fatal_help ()
Chris@39 497 {
Chris@39 498 func_error ${1+"$@"}
Chris@39 499 func_fatal_error "$help"
Chris@39 500 }
Chris@39 501 help="Try \`$progname --help' for more information." ## default
Chris@39 502
Chris@39 503
Chris@39 504 # func_grep expression filename
Chris@39 505 # Check whether EXPRESSION matches any line of FILENAME, without output.
Chris@39 506 func_grep ()
Chris@39 507 {
Chris@39 508 $GREP "$1" "$2" >/dev/null 2>&1
Chris@39 509 }
Chris@39 510
Chris@39 511
Chris@39 512 # func_mkdir_p directory-path
Chris@39 513 # Make sure the entire path to DIRECTORY-PATH is available.
Chris@39 514 func_mkdir_p ()
Chris@39 515 {
Chris@39 516 my_directory_path="$1"
Chris@39 517 my_dir_list=
Chris@39 518
Chris@39 519 if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then
Chris@39 520
Chris@39 521 # Protect directory names starting with `-'
Chris@39 522 case $my_directory_path in
Chris@39 523 -*) my_directory_path="./$my_directory_path" ;;
Chris@39 524 esac
Chris@39 525
Chris@39 526 # While some portion of DIR does not yet exist...
Chris@39 527 while test ! -d "$my_directory_path"; do
Chris@39 528 # ...make a list in topmost first order. Use a colon delimited
Chris@39 529 # list incase some portion of path contains whitespace.
Chris@39 530 my_dir_list="$my_directory_path:$my_dir_list"
Chris@39 531
Chris@39 532 # If the last portion added has no slash in it, the list is done
Chris@39 533 case $my_directory_path in */*) ;; *) break ;; esac
Chris@39 534
Chris@39 535 # ...otherwise throw away the child directory and loop
Chris@39 536 my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"`
Chris@39 537 done
Chris@39 538 my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'`
Chris@39 539
Chris@39 540 save_mkdir_p_IFS="$IFS"; IFS=':'
Chris@39 541 for my_dir in $my_dir_list; do
Chris@39 542 IFS="$save_mkdir_p_IFS"
Chris@39 543 # mkdir can fail with a `File exist' error if two processes
Chris@39 544 # try to create one of the directories concurrently. Don't
Chris@39 545 # stop in that case!
Chris@39 546 $MKDIR "$my_dir" 2>/dev/null || :
Chris@39 547 done
Chris@39 548 IFS="$save_mkdir_p_IFS"
Chris@39 549
Chris@39 550 # Bail out if we (or some other process) failed to create a directory.
Chris@39 551 test -d "$my_directory_path" || \
Chris@39 552 func_fatal_error "Failed to create \`$1'"
Chris@39 553 fi
Chris@39 554 }
Chris@39 555
Chris@39 556
Chris@39 557 # func_mktempdir [string]
Chris@39 558 # Make a temporary directory that won't clash with other running
Chris@39 559 # libtool processes, and avoids race conditions if possible. If
Chris@39 560 # given, STRING is the basename for that directory.
Chris@39 561 func_mktempdir ()
Chris@39 562 {
Chris@39 563 my_template="${TMPDIR-/tmp}/${1-$progname}"
Chris@39 564
Chris@39 565 if test "$opt_dry_run" = ":"; then
Chris@39 566 # Return a directory name, but don't create it in dry-run mode
Chris@39 567 my_tmpdir="${my_template}-$$"
Chris@39 568 else
Chris@39 569
Chris@39 570 # If mktemp works, use that first and foremost
Chris@39 571 my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null`
Chris@39 572
Chris@39 573 if test ! -d "$my_tmpdir"; then
Chris@39 574 # Failing that, at least try and use $RANDOM to avoid a race
Chris@39 575 my_tmpdir="${my_template}-${RANDOM-0}$$"
Chris@39 576
Chris@39 577 save_mktempdir_umask=`umask`
Chris@39 578 umask 0077
Chris@39 579 $MKDIR "$my_tmpdir"
Chris@39 580 umask $save_mktempdir_umask
Chris@39 581 fi
Chris@39 582
Chris@39 583 # If we're not in dry-run mode, bomb out on failure
Chris@39 584 test -d "$my_tmpdir" || \
Chris@39 585 func_fatal_error "cannot create temporary directory \`$my_tmpdir'"
Chris@39 586 fi
Chris@39 587
Chris@39 588 $ECHO "$my_tmpdir"
Chris@39 589 }
Chris@39 590
Chris@39 591
Chris@39 592 # func_quote_for_eval arg
Chris@39 593 # Aesthetically quote ARG to be evaled later.
Chris@39 594 # This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT
Chris@39 595 # is double-quoted, suitable for a subsequent eval, whereas
Chris@39 596 # FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters
Chris@39 597 # which are still active within double quotes backslashified.
Chris@39 598 func_quote_for_eval ()
Chris@39 599 {
Chris@39 600 case $1 in
Chris@39 601 *[\\\`\"\$]*)
Chris@39 602 func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;;
Chris@39 603 *)
Chris@39 604 func_quote_for_eval_unquoted_result="$1" ;;
Chris@39 605 esac
Chris@39 606
Chris@39 607 case $func_quote_for_eval_unquoted_result in
Chris@39 608 # Double-quote args containing shell metacharacters to delay
Chris@39 609 # word splitting, command substitution and and variable
Chris@39 610 # expansion for a subsequent eval.
Chris@39 611 # Many Bourne shells cannot handle close brackets correctly
Chris@39 612 # in scan sets, so we specify it separately.
Chris@39 613 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
Chris@39 614 func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\""
Chris@39 615 ;;
Chris@39 616 *)
Chris@39 617 func_quote_for_eval_result="$func_quote_for_eval_unquoted_result"
Chris@39 618 esac
Chris@39 619 }
Chris@39 620
Chris@39 621
Chris@39 622 # func_quote_for_expand arg
Chris@39 623 # Aesthetically quote ARG to be evaled later; same as above,
Chris@39 624 # but do not quote variable references.
Chris@39 625 func_quote_for_expand ()
Chris@39 626 {
Chris@39 627 case $1 in
Chris@39 628 *[\\\`\"]*)
Chris@39 629 my_arg=`$ECHO "$1" | $SED \
Chris@39 630 -e "$double_quote_subst" -e "$sed_double_backslash"` ;;
Chris@39 631 *)
Chris@39 632 my_arg="$1" ;;
Chris@39 633 esac
Chris@39 634
Chris@39 635 case $my_arg in
Chris@39 636 # Double-quote args containing shell metacharacters to delay
Chris@39 637 # word splitting and command substitution for a subsequent eval.
Chris@39 638 # Many Bourne shells cannot handle close brackets correctly
Chris@39 639 # in scan sets, so we specify it separately.
Chris@39 640 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
Chris@39 641 my_arg="\"$my_arg\""
Chris@39 642 ;;
Chris@39 643 esac
Chris@39 644
Chris@39 645 func_quote_for_expand_result="$my_arg"
Chris@39 646 }
Chris@39 647
Chris@39 648
Chris@39 649 # func_show_eval cmd [fail_exp]
Chris@39 650 # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is
Chris@39 651 # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP
Chris@39 652 # is given, then evaluate it.
Chris@39 653 func_show_eval ()
Chris@39 654 {
Chris@39 655 my_cmd="$1"
Chris@39 656 my_fail_exp="${2-:}"
Chris@39 657
Chris@39 658 ${opt_silent-false} || {
Chris@39 659 func_quote_for_expand "$my_cmd"
Chris@39 660 eval "func_echo $func_quote_for_expand_result"
Chris@39 661 }
Chris@39 662
Chris@39 663 if ${opt_dry_run-false}; then :; else
Chris@39 664 eval "$my_cmd"
Chris@39 665 my_status=$?
Chris@39 666 if test "$my_status" -eq 0; then :; else
Chris@39 667 eval "(exit $my_status); $my_fail_exp"
Chris@39 668 fi
Chris@39 669 fi
Chris@39 670 }
Chris@39 671
Chris@39 672
Chris@39 673 # func_show_eval_locale cmd [fail_exp]
Chris@39 674 # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is
Chris@39 675 # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP
Chris@39 676 # is given, then evaluate it. Use the saved locale for evaluation.
Chris@39 677 func_show_eval_locale ()
Chris@39 678 {
Chris@39 679 my_cmd="$1"
Chris@39 680 my_fail_exp="${2-:}"
Chris@39 681
Chris@39 682 ${opt_silent-false} || {
Chris@39 683 func_quote_for_expand "$my_cmd"
Chris@39 684 eval "func_echo $func_quote_for_expand_result"
Chris@39 685 }
Chris@39 686
Chris@39 687 if ${opt_dry_run-false}; then :; else
Chris@39 688 eval "$lt_user_locale
Chris@39 689 $my_cmd"
Chris@39 690 my_status=$?
Chris@39 691 eval "$lt_safe_locale"
Chris@39 692 if test "$my_status" -eq 0; then :; else
Chris@39 693 eval "(exit $my_status); $my_fail_exp"
Chris@39 694 fi
Chris@39 695 fi
Chris@39 696 }
Chris@39 697
Chris@39 698 # func_tr_sh
Chris@39 699 # Turn $1 into a string suitable for a shell variable name.
Chris@39 700 # Result is stored in $func_tr_sh_result. All characters
Chris@39 701 # not in the set a-zA-Z0-9_ are replaced with '_'. Further,
Chris@39 702 # if $1 begins with a digit, a '_' is prepended as well.
Chris@39 703 func_tr_sh ()
Chris@39 704 {
Chris@39 705 case $1 in
Chris@39 706 [0-9]* | *[!a-zA-Z0-9_]*)
Chris@39 707 func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'`
Chris@39 708 ;;
Chris@39 709 * )
Chris@39 710 func_tr_sh_result=$1
Chris@39 711 ;;
Chris@39 712 esac
Chris@39 713 }
Chris@39 714
Chris@39 715
Chris@39 716 # func_version
Chris@39 717 # Echo version message to standard output and exit.
Chris@39 718 func_version ()
Chris@39 719 {
Chris@39 720 $opt_debug
Chris@39 721
Chris@39 722 $SED -n '/(C)/!b go
Chris@39 723 :more
Chris@39 724 /\./!{
Chris@39 725 N
Chris@39 726 s/\n# / /
Chris@39 727 b more
Chris@39 728 }
Chris@39 729 :go
Chris@39 730 /^# '$PROGRAM' (GNU /,/# warranty; / {
Chris@39 731 s/^# //
Chris@39 732 s/^# *$//
Chris@39 733 s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/
Chris@39 734 p
Chris@39 735 }' < "$progpath"
Chris@39 736 exit $?
Chris@39 737 }
Chris@39 738
Chris@39 739 # func_usage
Chris@39 740 # Echo short help message to standard output and exit.
Chris@39 741 func_usage ()
Chris@39 742 {
Chris@39 743 $opt_debug
Chris@39 744
Chris@39 745 $SED -n '/^# Usage:/,/^# *.*--help/ {
Chris@39 746 s/^# //
Chris@39 747 s/^# *$//
Chris@39 748 s/\$progname/'$progname'/
Chris@39 749 p
Chris@39 750 }' < "$progpath"
Chris@39 751 echo
Chris@39 752 $ECHO "run \`$progname --help | more' for full usage"
Chris@39 753 exit $?
Chris@39 754 }
Chris@39 755
Chris@39 756 # func_help [NOEXIT]
Chris@39 757 # Echo long help message to standard output and exit,
Chris@39 758 # unless 'noexit' is passed as argument.
Chris@39 759 func_help ()
Chris@39 760 {
Chris@39 761 $opt_debug
Chris@39 762
Chris@39 763 $SED -n '/^# Usage:/,/# Report bugs to/ {
Chris@39 764 :print
Chris@39 765 s/^# //
Chris@39 766 s/^# *$//
Chris@39 767 s*\$progname*'$progname'*
Chris@39 768 s*\$host*'"$host"'*
Chris@39 769 s*\$SHELL*'"$SHELL"'*
Chris@39 770 s*\$LTCC*'"$LTCC"'*
Chris@39 771 s*\$LTCFLAGS*'"$LTCFLAGS"'*
Chris@39 772 s*\$LD*'"$LD"'*
Chris@39 773 s/\$with_gnu_ld/'"$with_gnu_ld"'/
Chris@39 774 s/\$automake_version/'"`(automake --version) 2>/dev/null |$SED 1q`"'/
Chris@39 775 s/\$autoconf_version/'"`(autoconf --version) 2>/dev/null |$SED 1q`"'/
Chris@39 776 p
Chris@39 777 d
Chris@39 778 }
Chris@39 779 /^# .* home page:/b print
Chris@39 780 /^# General help using/b print
Chris@39 781 ' < "$progpath"
Chris@39 782 ret=$?
Chris@39 783 if test -z "$1"; then
Chris@39 784 exit $ret
Chris@39 785 fi
Chris@39 786 }
Chris@39 787
Chris@39 788 # func_missing_arg argname
Chris@39 789 # Echo program name prefixed message to standard error and set global
Chris@39 790 # exit_cmd.
Chris@39 791 func_missing_arg ()
Chris@39 792 {
Chris@39 793 $opt_debug
Chris@39 794
Chris@39 795 func_error "missing argument for $1."
Chris@39 796 exit_cmd=exit
Chris@39 797 }
Chris@39 798
Chris@39 799
Chris@39 800 # func_split_short_opt shortopt
Chris@39 801 # Set func_split_short_opt_name and func_split_short_opt_arg shell
Chris@39 802 # variables after splitting SHORTOPT after the 2nd character.
Chris@39 803 func_split_short_opt ()
Chris@39 804 {
Chris@39 805 my_sed_short_opt='1s/^\(..\).*$/\1/;q'
Chris@39 806 my_sed_short_rest='1s/^..\(.*\)$/\1/;q'
Chris@39 807
Chris@39 808 func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"`
Chris@39 809 func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"`
Chris@39 810 } # func_split_short_opt may be replaced by extended shell implementation
Chris@39 811
Chris@39 812
Chris@39 813 # func_split_long_opt longopt
Chris@39 814 # Set func_split_long_opt_name and func_split_long_opt_arg shell
Chris@39 815 # variables after splitting LONGOPT at the `=' sign.
Chris@39 816 func_split_long_opt ()
Chris@39 817 {
Chris@39 818 my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q'
Chris@39 819 my_sed_long_arg='1s/^--[^=]*=//'
Chris@39 820
Chris@39 821 func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"`
Chris@39 822 func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"`
Chris@39 823 } # func_split_long_opt may be replaced by extended shell implementation
Chris@39 824
Chris@39 825 exit_cmd=:
Chris@39 826
Chris@39 827
Chris@39 828
Chris@39 829
Chris@39 830
Chris@39 831 magic="%%%MAGIC variable%%%"
Chris@39 832 magic_exe="%%%MAGIC EXE variable%%%"
Chris@39 833
Chris@39 834 # Global variables.
Chris@39 835 nonopt=
Chris@39 836 preserve_args=
Chris@39 837 lo2o="s/\\.lo\$/.${objext}/"
Chris@39 838 o2lo="s/\\.${objext}\$/.lo/"
Chris@39 839 extracted_archives=
Chris@39 840 extracted_serial=0
Chris@39 841
Chris@39 842 # If this variable is set in any of the actions, the command in it
Chris@39 843 # will be execed at the end. This prevents here-documents from being
Chris@39 844 # left over by shells.
Chris@39 845 exec_cmd=
Chris@39 846
Chris@39 847 # func_append var value
Chris@39 848 # Append VALUE to the end of shell variable VAR.
Chris@39 849 func_append ()
Chris@39 850 {
Chris@39 851 eval "${1}=\$${1}\${2}"
Chris@39 852 } # func_append may be replaced by extended shell implementation
Chris@39 853
Chris@39 854 # func_append_quoted var value
Chris@39 855 # Quote VALUE and append to the end of shell variable VAR, separated
Chris@39 856 # by a space.
Chris@39 857 func_append_quoted ()
Chris@39 858 {
Chris@39 859 func_quote_for_eval "${2}"
Chris@39 860 eval "${1}=\$${1}\\ \$func_quote_for_eval_result"
Chris@39 861 } # func_append_quoted may be replaced by extended shell implementation
Chris@39 862
Chris@39 863
Chris@39 864 # func_arith arithmetic-term...
Chris@39 865 func_arith ()
Chris@39 866 {
Chris@39 867 func_arith_result=`expr "${@}"`
Chris@39 868 } # func_arith may be replaced by extended shell implementation
Chris@39 869
Chris@39 870
Chris@39 871 # func_len string
Chris@39 872 # STRING may not start with a hyphen.
Chris@39 873 func_len ()
Chris@39 874 {
Chris@39 875 func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len`
Chris@39 876 } # func_len may be replaced by extended shell implementation
Chris@39 877
Chris@39 878
Chris@39 879 # func_lo2o object
Chris@39 880 func_lo2o ()
Chris@39 881 {
Chris@39 882 func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"`
Chris@39 883 } # func_lo2o may be replaced by extended shell implementation
Chris@39 884
Chris@39 885
Chris@39 886 # func_xform libobj-or-source
Chris@39 887 func_xform ()
Chris@39 888 {
Chris@39 889 func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'`
Chris@39 890 } # func_xform may be replaced by extended shell implementation
Chris@39 891
Chris@39 892
Chris@39 893 # func_fatal_configuration arg...
Chris@39 894 # Echo program name prefixed message to standard error, followed by
Chris@39 895 # a configuration failure hint, and exit.
Chris@39 896 func_fatal_configuration ()
Chris@39 897 {
Chris@39 898 func_error ${1+"$@"}
Chris@39 899 func_error "See the $PACKAGE documentation for more information."
Chris@39 900 func_fatal_error "Fatal configuration error."
Chris@39 901 }
Chris@39 902
Chris@39 903
Chris@39 904 # func_config
Chris@39 905 # Display the configuration for all the tags in this script.
Chris@39 906 func_config ()
Chris@39 907 {
Chris@39 908 re_begincf='^# ### BEGIN LIBTOOL'
Chris@39 909 re_endcf='^# ### END LIBTOOL'
Chris@39 910
Chris@39 911 # Default configuration.
Chris@39 912 $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath"
Chris@39 913
Chris@39 914 # Now print the configurations for the tags.
Chris@39 915 for tagname in $taglist; do
Chris@39 916 $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath"
Chris@39 917 done
Chris@39 918
Chris@39 919 exit $?
Chris@39 920 }
Chris@39 921
Chris@39 922 # func_features
Chris@39 923 # Display the features supported by this script.
Chris@39 924 func_features ()
Chris@39 925 {
Chris@39 926 echo "host: $host"
Chris@39 927 if test "$build_libtool_libs" = yes; then
Chris@39 928 echo "enable shared libraries"
Chris@39 929 else
Chris@39 930 echo "disable shared libraries"
Chris@39 931 fi
Chris@39 932 if test "$build_old_libs" = yes; then
Chris@39 933 echo "enable static libraries"
Chris@39 934 else
Chris@39 935 echo "disable static libraries"
Chris@39 936 fi
Chris@39 937
Chris@39 938 exit $?
Chris@39 939 }
Chris@39 940
Chris@39 941 # func_enable_tag tagname
Chris@39 942 # Verify that TAGNAME is valid, and either flag an error and exit, or
Chris@39 943 # enable the TAGNAME tag. We also add TAGNAME to the global $taglist
Chris@39 944 # variable here.
Chris@39 945 func_enable_tag ()
Chris@39 946 {
Chris@39 947 # Global variable:
Chris@39 948 tagname="$1"
Chris@39 949
Chris@39 950 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
Chris@39 951 re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
Chris@39 952 sed_extractcf="/$re_begincf/,/$re_endcf/p"
Chris@39 953
Chris@39 954 # Validate tagname.
Chris@39 955 case $tagname in
Chris@39 956 *[!-_A-Za-z0-9,/]*)
Chris@39 957 func_fatal_error "invalid tag name: $tagname"
Chris@39 958 ;;
Chris@39 959 esac
Chris@39 960
Chris@39 961 # Don't test for the "default" C tag, as we know it's
Chris@39 962 # there but not specially marked.
Chris@39 963 case $tagname in
Chris@39 964 CC) ;;
Chris@39 965 *)
Chris@39 966 if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then
Chris@39 967 taglist="$taglist $tagname"
Chris@39 968
Chris@39 969 # Evaluate the configuration. Be careful to quote the path
Chris@39 970 # and the sed script, to avoid splitting on whitespace, but
Chris@39 971 # also don't use non-portable quotes within backquotes within
Chris@39 972 # quotes we have to do it in 2 steps:
Chris@39 973 extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"`
Chris@39 974 eval "$extractedcf"
Chris@39 975 else
Chris@39 976 func_error "ignoring unknown tag $tagname"
Chris@39 977 fi
Chris@39 978 ;;
Chris@39 979 esac
Chris@39 980 }
Chris@39 981
Chris@39 982 # func_check_version_match
Chris@39 983 # Ensure that we are using m4 macros, and libtool script from the same
Chris@39 984 # release of libtool.
Chris@39 985 func_check_version_match ()
Chris@39 986 {
Chris@39 987 if test "$package_revision" != "$macro_revision"; then
Chris@39 988 if test "$VERSION" != "$macro_version"; then
Chris@39 989 if test -z "$macro_version"; then
Chris@39 990 cat >&2 <<_LT_EOF
Chris@39 991 $progname: Version mismatch error. This is $PACKAGE $VERSION, but the
Chris@39 992 $progname: definition of this LT_INIT comes from an older release.
Chris@39 993 $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
Chris@39 994 $progname: and run autoconf again.
Chris@39 995 _LT_EOF
Chris@39 996 else
Chris@39 997 cat >&2 <<_LT_EOF
Chris@39 998 $progname: Version mismatch error. This is $PACKAGE $VERSION, but the
Chris@39 999 $progname: definition of this LT_INIT comes from $PACKAGE $macro_version.
Chris@39 1000 $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
Chris@39 1001 $progname: and run autoconf again.
Chris@39 1002 _LT_EOF
Chris@39 1003 fi
Chris@39 1004 else
Chris@39 1005 cat >&2 <<_LT_EOF
Chris@39 1006 $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision,
Chris@39 1007 $progname: but the definition of this LT_INIT comes from revision $macro_revision.
Chris@39 1008 $progname: You should recreate aclocal.m4 with macros from revision $package_revision
Chris@39 1009 $progname: of $PACKAGE $VERSION and run autoconf again.
Chris@39 1010 _LT_EOF
Chris@39 1011 fi
Chris@39 1012
Chris@39 1013 exit $EXIT_MISMATCH
Chris@39 1014 fi
Chris@39 1015 }
Chris@39 1016
Chris@39 1017
Chris@39 1018 # Shorthand for --mode=foo, only valid as the first argument
Chris@39 1019 case $1 in
Chris@39 1020 clean|clea|cle|cl)
Chris@39 1021 shift; set dummy --mode clean ${1+"$@"}; shift
Chris@39 1022 ;;
Chris@39 1023 compile|compil|compi|comp|com|co|c)
Chris@39 1024 shift; set dummy --mode compile ${1+"$@"}; shift
Chris@39 1025 ;;
Chris@39 1026 execute|execut|execu|exec|exe|ex|e)
Chris@39 1027 shift; set dummy --mode execute ${1+"$@"}; shift
Chris@39 1028 ;;
Chris@39 1029 finish|finis|fini|fin|fi|f)
Chris@39 1030 shift; set dummy --mode finish ${1+"$@"}; shift
Chris@39 1031 ;;
Chris@39 1032 install|instal|insta|inst|ins|in|i)
Chris@39 1033 shift; set dummy --mode install ${1+"$@"}; shift
Chris@39 1034 ;;
Chris@39 1035 link|lin|li|l)
Chris@39 1036 shift; set dummy --mode link ${1+"$@"}; shift
Chris@39 1037 ;;
Chris@39 1038 uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)
Chris@39 1039 shift; set dummy --mode uninstall ${1+"$@"}; shift
Chris@39 1040 ;;
Chris@39 1041 esac
Chris@39 1042
Chris@39 1043
Chris@39 1044
Chris@39 1045 # Option defaults:
Chris@39 1046 opt_debug=:
Chris@39 1047 opt_dry_run=false
Chris@39 1048 opt_config=false
Chris@39 1049 opt_preserve_dup_deps=false
Chris@39 1050 opt_features=false
Chris@39 1051 opt_finish=false
Chris@39 1052 opt_help=false
Chris@39 1053 opt_help_all=false
Chris@39 1054 opt_silent=:
Chris@39 1055 opt_verbose=:
Chris@39 1056 opt_silent=false
Chris@39 1057 opt_verbose=false
Chris@39 1058
Chris@39 1059
Chris@39 1060 # Parse options once, thoroughly. This comes as soon as possible in the
Chris@39 1061 # script to make things like `--version' happen as quickly as we can.
Chris@39 1062 {
Chris@39 1063 # this just eases exit handling
Chris@39 1064 while test $# -gt 0; do
Chris@39 1065 opt="$1"
Chris@39 1066 shift
Chris@39 1067 case $opt in
Chris@39 1068 --debug|-x) opt_debug='set -x'
Chris@39 1069 func_echo "enabling shell trace mode"
Chris@39 1070 $opt_debug
Chris@39 1071 ;;
Chris@39 1072 --dry-run|--dryrun|-n)
Chris@39 1073 opt_dry_run=:
Chris@39 1074 ;;
Chris@39 1075 --config)
Chris@39 1076 opt_config=:
Chris@39 1077 func_config
Chris@39 1078 ;;
Chris@39 1079 --dlopen|-dlopen)
Chris@39 1080 optarg="$1"
Chris@39 1081 opt_dlopen="${opt_dlopen+$opt_dlopen
Chris@39 1082 }$optarg"
Chris@39 1083 shift
Chris@39 1084 ;;
Chris@39 1085 --preserve-dup-deps)
Chris@39 1086 opt_preserve_dup_deps=:
Chris@39 1087 ;;
Chris@39 1088 --features)
Chris@39 1089 opt_features=:
Chris@39 1090 func_features
Chris@39 1091 ;;
Chris@39 1092 --finish)
Chris@39 1093 opt_finish=:
Chris@39 1094 set dummy --mode finish ${1+"$@"}; shift
Chris@39 1095 ;;
Chris@39 1096 --help)
Chris@39 1097 opt_help=:
Chris@39 1098 ;;
Chris@39 1099 --help-all)
Chris@39 1100 opt_help_all=:
Chris@39 1101 opt_help=': help-all'
Chris@39 1102 ;;
Chris@39 1103 --mode)
Chris@39 1104 test $# = 0 && func_missing_arg $opt && break
Chris@39 1105 optarg="$1"
Chris@39 1106 opt_mode="$optarg"
Chris@39 1107 case $optarg in
Chris@39 1108 # Valid mode arguments:
Chris@39 1109 clean|compile|execute|finish|install|link|relink|uninstall) ;;
Chris@39 1110
Chris@39 1111 # Catch anything else as an error
Chris@39 1112 *) func_error "invalid argument for $opt"
Chris@39 1113 exit_cmd=exit
Chris@39 1114 break
Chris@39 1115 ;;
Chris@39 1116 esac
Chris@39 1117 shift
Chris@39 1118 ;;
Chris@39 1119 --no-silent|--no-quiet)
Chris@39 1120 opt_silent=false
Chris@39 1121 func_append preserve_args " $opt"
Chris@39 1122 ;;
Chris@39 1123 --no-verbose)
Chris@39 1124 opt_verbose=false
Chris@39 1125 func_append preserve_args " $opt"
Chris@39 1126 ;;
Chris@39 1127 --silent|--quiet)
Chris@39 1128 opt_silent=:
Chris@39 1129 func_append preserve_args " $opt"
Chris@39 1130 opt_verbose=false
Chris@39 1131 ;;
Chris@39 1132 --verbose|-v)
Chris@39 1133 opt_verbose=:
Chris@39 1134 func_append preserve_args " $opt"
Chris@39 1135 opt_silent=false
Chris@39 1136 ;;
Chris@39 1137 --tag)
Chris@39 1138 test $# = 0 && func_missing_arg $opt && break
Chris@39 1139 optarg="$1"
Chris@39 1140 opt_tag="$optarg"
Chris@39 1141 func_append preserve_args " $opt $optarg"
Chris@39 1142 func_enable_tag "$optarg"
Chris@39 1143 shift
Chris@39 1144 ;;
Chris@39 1145
Chris@39 1146 -\?|-h) func_usage ;;
Chris@39 1147 --help) func_help ;;
Chris@39 1148 --version) func_version ;;
Chris@39 1149
Chris@39 1150 # Separate optargs to long options:
Chris@39 1151 --*=*)
Chris@39 1152 func_split_long_opt "$opt"
Chris@39 1153 set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"}
Chris@39 1154 shift
Chris@39 1155 ;;
Chris@39 1156
Chris@39 1157 # Separate non-argument short options:
Chris@39 1158 -\?*|-h*|-n*|-v*)
Chris@39 1159 func_split_short_opt "$opt"
Chris@39 1160 set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"}
Chris@39 1161 shift
Chris@39 1162 ;;
Chris@39 1163
Chris@39 1164 --) break ;;
Chris@39 1165 -*) func_fatal_help "unrecognized option \`$opt'" ;;
Chris@39 1166 *) set dummy "$opt" ${1+"$@"}; shift; break ;;
Chris@39 1167 esac
Chris@39 1168 done
Chris@39 1169
Chris@39 1170 # Validate options:
Chris@39 1171
Chris@39 1172 # save first non-option argument
Chris@39 1173 if test "$#" -gt 0; then
Chris@39 1174 nonopt="$opt"
Chris@39 1175 shift
Chris@39 1176 fi
Chris@39 1177
Chris@39 1178 # preserve --debug
Chris@39 1179 test "$opt_debug" = : || func_append preserve_args " --debug"
Chris@39 1180
Chris@39 1181 case $host in
Chris@39 1182 *cygwin* | *mingw* | *pw32* | *cegcc*)
Chris@39 1183 # don't eliminate duplications in $postdeps and $predeps
Chris@39 1184 opt_duplicate_compiler_generated_deps=:
Chris@39 1185 ;;
Chris@39 1186 *)
Chris@39 1187 opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps
Chris@39 1188 ;;
Chris@39 1189 esac
Chris@39 1190
Chris@39 1191 $opt_help || {
Chris@39 1192 # Sanity checks first:
Chris@39 1193 func_check_version_match
Chris@39 1194
Chris@39 1195 if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
Chris@39 1196 func_fatal_configuration "not configured to build any kind of library"
Chris@39 1197 fi
Chris@39 1198
Chris@39 1199 # Darwin sucks
Chris@39 1200 eval std_shrext=\"$shrext_cmds\"
Chris@39 1201
Chris@39 1202 # Only execute mode is allowed to have -dlopen flags.
Chris@39 1203 if test -n "$opt_dlopen" && test "$opt_mode" != execute; then
Chris@39 1204 func_error "unrecognized option \`-dlopen'"
Chris@39 1205 $ECHO "$help" 1>&2
Chris@39 1206 exit $EXIT_FAILURE
Chris@39 1207 fi
Chris@39 1208
Chris@39 1209 # Change the help message to a mode-specific one.
Chris@39 1210 generic_help="$help"
Chris@39 1211 help="Try \`$progname --help --mode=$opt_mode' for more information."
Chris@39 1212 }
Chris@39 1213
Chris@39 1214
Chris@39 1215 # Bail if the options were screwed
Chris@39 1216 $exit_cmd $EXIT_FAILURE
Chris@39 1217 }
Chris@39 1218
Chris@39 1219
Chris@39 1220
Chris@39 1221
Chris@39 1222 ## ----------- ##
Chris@39 1223 ## Main. ##
Chris@39 1224 ## ----------- ##
Chris@39 1225
Chris@39 1226 # func_lalib_p file
Chris@39 1227 # True iff FILE is a libtool `.la' library or `.lo' object file.
Chris@39 1228 # This function is only a basic sanity check; it will hardly flush out
Chris@39 1229 # determined imposters.
Chris@39 1230 func_lalib_p ()
Chris@39 1231 {
Chris@39 1232 test -f "$1" &&
Chris@39 1233 $SED -e 4q "$1" 2>/dev/null \
Chris@39 1234 | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1
Chris@39 1235 }
Chris@39 1236
Chris@39 1237 # func_lalib_unsafe_p file
Chris@39 1238 # True iff FILE is a libtool `.la' library or `.lo' object file.
Chris@39 1239 # This function implements the same check as func_lalib_p without
Chris@39 1240 # resorting to external programs. To this end, it redirects stdin and
Chris@39 1241 # closes it afterwards, without saving the original file descriptor.
Chris@39 1242 # As a safety measure, use it only where a negative result would be
Chris@39 1243 # fatal anyway. Works if `file' does not exist.
Chris@39 1244 func_lalib_unsafe_p ()
Chris@39 1245 {
Chris@39 1246 lalib_p=no
Chris@39 1247 if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then
Chris@39 1248 for lalib_p_l in 1 2 3 4
Chris@39 1249 do
Chris@39 1250 read lalib_p_line
Chris@39 1251 case "$lalib_p_line" in
Chris@39 1252 \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;;
Chris@39 1253 esac
Chris@39 1254 done
Chris@39 1255 exec 0<&5 5<&-
Chris@39 1256 fi
Chris@39 1257 test "$lalib_p" = yes
Chris@39 1258 }
Chris@39 1259
Chris@39 1260 # func_ltwrapper_script_p file
Chris@39 1261 # True iff FILE is a libtool wrapper script
Chris@39 1262 # This function is only a basic sanity check; it will hardly flush out
Chris@39 1263 # determined imposters.
Chris@39 1264 func_ltwrapper_script_p ()
Chris@39 1265 {
Chris@39 1266 func_lalib_p "$1"
Chris@39 1267 }
Chris@39 1268
Chris@39 1269 # func_ltwrapper_executable_p file
Chris@39 1270 # True iff FILE is a libtool wrapper executable
Chris@39 1271 # This function is only a basic sanity check; it will hardly flush out
Chris@39 1272 # determined imposters.
Chris@39 1273 func_ltwrapper_executable_p ()
Chris@39 1274 {
Chris@39 1275 func_ltwrapper_exec_suffix=
Chris@39 1276 case $1 in
Chris@39 1277 *.exe) ;;
Chris@39 1278 *) func_ltwrapper_exec_suffix=.exe ;;
Chris@39 1279 esac
Chris@39 1280 $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1
Chris@39 1281 }
Chris@39 1282
Chris@39 1283 # func_ltwrapper_scriptname file
Chris@39 1284 # Assumes file is an ltwrapper_executable
Chris@39 1285 # uses $file to determine the appropriate filename for a
Chris@39 1286 # temporary ltwrapper_script.
Chris@39 1287 func_ltwrapper_scriptname ()
Chris@39 1288 {
Chris@39 1289 func_dirname_and_basename "$1" "" "."
Chris@39 1290 func_stripname '' '.exe' "$func_basename_result"
Chris@39 1291 func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper"
Chris@39 1292 }
Chris@39 1293
Chris@39 1294 # func_ltwrapper_p file
Chris@39 1295 # True iff FILE is a libtool wrapper script or wrapper executable
Chris@39 1296 # This function is only a basic sanity check; it will hardly flush out
Chris@39 1297 # determined imposters.
Chris@39 1298 func_ltwrapper_p ()
Chris@39 1299 {
Chris@39 1300 func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1"
Chris@39 1301 }
Chris@39 1302
Chris@39 1303
Chris@39 1304 # func_execute_cmds commands fail_cmd
Chris@39 1305 # Execute tilde-delimited COMMANDS.
Chris@39 1306 # If FAIL_CMD is given, eval that upon failure.
Chris@39 1307 # FAIL_CMD may read-access the current command in variable CMD!
Chris@39 1308 func_execute_cmds ()
Chris@39 1309 {
Chris@39 1310 $opt_debug
Chris@39 1311 save_ifs=$IFS; IFS='~'
Chris@39 1312 for cmd in $1; do
Chris@39 1313 IFS=$save_ifs
Chris@39 1314 eval cmd=\"$cmd\"
Chris@39 1315 func_show_eval "$cmd" "${2-:}"
Chris@39 1316 done
Chris@39 1317 IFS=$save_ifs
Chris@39 1318 }
Chris@39 1319
Chris@39 1320
Chris@39 1321 # func_source file
Chris@39 1322 # Source FILE, adding directory component if necessary.
Chris@39 1323 # Note that it is not necessary on cygwin/mingw to append a dot to
Chris@39 1324 # FILE even if both FILE and FILE.exe exist: automatic-append-.exe
Chris@39 1325 # behavior happens only for exec(3), not for open(2)! Also, sourcing
Chris@39 1326 # `FILE.' does not work on cygwin managed mounts.
Chris@39 1327 func_source ()
Chris@39 1328 {
Chris@39 1329 $opt_debug
Chris@39 1330 case $1 in
Chris@39 1331 */* | *\\*) . "$1" ;;
Chris@39 1332 *) . "./$1" ;;
Chris@39 1333 esac
Chris@39 1334 }
Chris@39 1335
Chris@39 1336
Chris@39 1337 # func_resolve_sysroot PATH
Chris@39 1338 # Replace a leading = in PATH with a sysroot. Store the result into
Chris@39 1339 # func_resolve_sysroot_result
Chris@39 1340 func_resolve_sysroot ()
Chris@39 1341 {
Chris@39 1342 func_resolve_sysroot_result=$1
Chris@39 1343 case $func_resolve_sysroot_result in
Chris@39 1344 =*)
Chris@39 1345 func_stripname '=' '' "$func_resolve_sysroot_result"
Chris@39 1346 func_resolve_sysroot_result=$lt_sysroot$func_stripname_result
Chris@39 1347 ;;
Chris@39 1348 esac
Chris@39 1349 }
Chris@39 1350
Chris@39 1351 # func_replace_sysroot PATH
Chris@39 1352 # If PATH begins with the sysroot, replace it with = and
Chris@39 1353 # store the result into func_replace_sysroot_result.
Chris@39 1354 func_replace_sysroot ()
Chris@39 1355 {
Chris@39 1356 case "$lt_sysroot:$1" in
Chris@39 1357 ?*:"$lt_sysroot"*)
Chris@39 1358 func_stripname "$lt_sysroot" '' "$1"
Chris@39 1359 func_replace_sysroot_result="=$func_stripname_result"
Chris@39 1360 ;;
Chris@39 1361 *)
Chris@39 1362 # Including no sysroot.
Chris@39 1363 func_replace_sysroot_result=$1
Chris@39 1364 ;;
Chris@39 1365 esac
Chris@39 1366 }
Chris@39 1367
Chris@39 1368 # func_infer_tag arg
Chris@39 1369 # Infer tagged configuration to use if any are available and
Chris@39 1370 # if one wasn't chosen via the "--tag" command line option.
Chris@39 1371 # Only attempt this if the compiler in the base compile
Chris@39 1372 # command doesn't match the default compiler.
Chris@39 1373 # arg is usually of the form 'gcc ...'
Chris@39 1374 func_infer_tag ()
Chris@39 1375 {
Chris@39 1376 $opt_debug
Chris@39 1377 if test -n "$available_tags" && test -z "$tagname"; then
Chris@39 1378 CC_quoted=
Chris@39 1379 for arg in $CC; do
Chris@39 1380 func_append_quoted CC_quoted "$arg"
Chris@39 1381 done
Chris@39 1382 CC_expanded=`func_echo_all $CC`
Chris@39 1383 CC_quoted_expanded=`func_echo_all $CC_quoted`
Chris@39 1384 case $@ in
Chris@39 1385 # Blanks in the command may have been stripped by the calling shell,
Chris@39 1386 # but not from the CC environment variable when configure was run.
Chris@39 1387 " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \
Chris@39 1388 " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;;
Chris@39 1389 # Blanks at the start of $base_compile will cause this to fail
Chris@39 1390 # if we don't check for them as well.
Chris@39 1391 *)
Chris@39 1392 for z in $available_tags; do
Chris@39 1393 if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then
Chris@39 1394 # Evaluate the configuration.
Chris@39 1395 eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
Chris@39 1396 CC_quoted=
Chris@39 1397 for arg in $CC; do
Chris@39 1398 # Double-quote args containing other shell metacharacters.
Chris@39 1399 func_append_quoted CC_quoted "$arg"
Chris@39 1400 done
Chris@39 1401 CC_expanded=`func_echo_all $CC`
Chris@39 1402 CC_quoted_expanded=`func_echo_all $CC_quoted`
Chris@39 1403 case "$@ " in
Chris@39 1404 " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \
Chris@39 1405 " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*)
Chris@39 1406 # The compiler in the base compile command matches
Chris@39 1407 # the one in the tagged configuration.
Chris@39 1408 # Assume this is the tagged configuration we want.
Chris@39 1409 tagname=$z
Chris@39 1410 break
Chris@39 1411 ;;
Chris@39 1412 esac
Chris@39 1413 fi
Chris@39 1414 done
Chris@39 1415 # If $tagname still isn't set, then no tagged configuration
Chris@39 1416 # was found and let the user know that the "--tag" command
Chris@39 1417 # line option must be used.
Chris@39 1418 if test -z "$tagname"; then
Chris@39 1419 func_echo "unable to infer tagged configuration"
Chris@39 1420 func_fatal_error "specify a tag with \`--tag'"
Chris@39 1421 # else
Chris@39 1422 # func_verbose "using $tagname tagged configuration"
Chris@39 1423 fi
Chris@39 1424 ;;
Chris@39 1425 esac
Chris@39 1426 fi
Chris@39 1427 }
Chris@39 1428
Chris@39 1429
Chris@39 1430
Chris@39 1431 # func_write_libtool_object output_name pic_name nonpic_name
Chris@39 1432 # Create a libtool object file (analogous to a ".la" file),
Chris@39 1433 # but don't create it if we're doing a dry run.
Chris@39 1434 func_write_libtool_object ()
Chris@39 1435 {
Chris@39 1436 write_libobj=${1}
Chris@39 1437 if test "$build_libtool_libs" = yes; then
Chris@39 1438 write_lobj=\'${2}\'
Chris@39 1439 else
Chris@39 1440 write_lobj=none
Chris@39 1441 fi
Chris@39 1442
Chris@39 1443 if test "$build_old_libs" = yes; then
Chris@39 1444 write_oldobj=\'${3}\'
Chris@39 1445 else
Chris@39 1446 write_oldobj=none
Chris@39 1447 fi
Chris@39 1448
Chris@39 1449 $opt_dry_run || {
Chris@39 1450 cat >${write_libobj}T <<EOF
Chris@39 1451 # $write_libobj - a libtool object file
Chris@39 1452 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
Chris@39 1453 #
Chris@39 1454 # Please DO NOT delete this file!
Chris@39 1455 # It is necessary for linking the library.
Chris@39 1456
Chris@39 1457 # Name of the PIC object.
Chris@39 1458 pic_object=$write_lobj
Chris@39 1459
Chris@39 1460 # Name of the non-PIC object
Chris@39 1461 non_pic_object=$write_oldobj
Chris@39 1462
Chris@39 1463 EOF
Chris@39 1464 $MV "${write_libobj}T" "${write_libobj}"
Chris@39 1465 }
Chris@39 1466 }
Chris@39 1467
Chris@39 1468
Chris@39 1469 ##################################################
Chris@39 1470 # FILE NAME AND PATH CONVERSION HELPER FUNCTIONS #
Chris@39 1471 ##################################################
Chris@39 1472
Chris@39 1473 # func_convert_core_file_wine_to_w32 ARG
Chris@39 1474 # Helper function used by file name conversion functions when $build is *nix,
Chris@39 1475 # and $host is mingw, cygwin, or some other w32 environment. Relies on a
Chris@39 1476 # correctly configured wine environment available, with the winepath program
Chris@39 1477 # in $build's $PATH.
Chris@39 1478 #
Chris@39 1479 # ARG is the $build file name to be converted to w32 format.
Chris@39 1480 # Result is available in $func_convert_core_file_wine_to_w32_result, and will
Chris@39 1481 # be empty on error (or when ARG is empty)
Chris@39 1482 func_convert_core_file_wine_to_w32 ()
Chris@39 1483 {
Chris@39 1484 $opt_debug
Chris@39 1485 func_convert_core_file_wine_to_w32_result="$1"
Chris@39 1486 if test -n "$1"; then
Chris@39 1487 # Unfortunately, winepath does not exit with a non-zero error code, so we
Chris@39 1488 # are forced to check the contents of stdout. On the other hand, if the
Chris@39 1489 # command is not found, the shell will set an exit code of 127 and print
Chris@39 1490 # *an error message* to stdout. So we must check for both error code of
Chris@39 1491 # zero AND non-empty stdout, which explains the odd construction:
Chris@39 1492 func_convert_core_file_wine_to_w32_tmp=`winepath -w "$1" 2>/dev/null`
Chris@39 1493 if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then
Chris@39 1494 func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" |
Chris@39 1495 $SED -e "$lt_sed_naive_backslashify"`
Chris@39 1496 else
Chris@39 1497 func_convert_core_file_wine_to_w32_result=
Chris@39 1498 fi
Chris@39 1499 fi
Chris@39 1500 }
Chris@39 1501 # end: func_convert_core_file_wine_to_w32
Chris@39 1502
Chris@39 1503
Chris@39 1504 # func_convert_core_path_wine_to_w32 ARG
Chris@39 1505 # Helper function used by path conversion functions when $build is *nix, and
Chris@39 1506 # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly
Chris@39 1507 # configured wine environment available, with the winepath program in $build's
Chris@39 1508 # $PATH. Assumes ARG has no leading or trailing path separator characters.
Chris@39 1509 #
Chris@39 1510 # ARG is path to be converted from $build format to win32.
Chris@39 1511 # Result is available in $func_convert_core_path_wine_to_w32_result.
Chris@39 1512 # Unconvertible file (directory) names in ARG are skipped; if no directory names
Chris@39 1513 # are convertible, then the result may be empty.
Chris@39 1514 func_convert_core_path_wine_to_w32 ()
Chris@39 1515 {
Chris@39 1516 $opt_debug
Chris@39 1517 # unfortunately, winepath doesn't convert paths, only file names
Chris@39 1518 func_convert_core_path_wine_to_w32_result=""
Chris@39 1519 if test -n "$1"; then
Chris@39 1520 oldIFS=$IFS
Chris@39 1521 IFS=:
Chris@39 1522 for func_convert_core_path_wine_to_w32_f in $1; do
Chris@39 1523 IFS=$oldIFS
Chris@39 1524 func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f"
Chris@39 1525 if test -n "$func_convert_core_file_wine_to_w32_result" ; then
Chris@39 1526 if test -z "$func_convert_core_path_wine_to_w32_result"; then
Chris@39 1527 func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result"
Chris@39 1528 else
Chris@39 1529 func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result"
Chris@39 1530 fi
Chris@39 1531 fi
Chris@39 1532 done
Chris@39 1533 IFS=$oldIFS
Chris@39 1534 fi
Chris@39 1535 }
Chris@39 1536 # end: func_convert_core_path_wine_to_w32
Chris@39 1537
Chris@39 1538
Chris@39 1539 # func_cygpath ARGS...
Chris@39 1540 # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when
Chris@39 1541 # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2)
Chris@39 1542 # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or
Chris@39 1543 # (2), returns the Cygwin file name or path in func_cygpath_result (input
Chris@39 1544 # file name or path is assumed to be in w32 format, as previously converted
Chris@39 1545 # from $build's *nix or MSYS format). In case (3), returns the w32 file name
Chris@39 1546 # or path in func_cygpath_result (input file name or path is assumed to be in
Chris@39 1547 # Cygwin format). Returns an empty string on error.
Chris@39 1548 #
Chris@39 1549 # ARGS are passed to cygpath, with the last one being the file name or path to
Chris@39 1550 # be converted.
Chris@39 1551 #
Chris@39 1552 # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH
Chris@39 1553 # environment variable; do not put it in $PATH.
Chris@39 1554 func_cygpath ()
Chris@39 1555 {
Chris@39 1556 $opt_debug
Chris@39 1557 if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then
Chris@39 1558 func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null`
Chris@39 1559 if test "$?" -ne 0; then
Chris@39 1560 # on failure, ensure result is empty
Chris@39 1561 func_cygpath_result=
Chris@39 1562 fi
Chris@39 1563 else
Chris@39 1564 func_cygpath_result=
Chris@39 1565 func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'"
Chris@39 1566 fi
Chris@39 1567 }
Chris@39 1568 #end: func_cygpath
Chris@39 1569
Chris@39 1570
Chris@39 1571 # func_convert_core_msys_to_w32 ARG
Chris@39 1572 # Convert file name or path ARG from MSYS format to w32 format. Return
Chris@39 1573 # result in func_convert_core_msys_to_w32_result.
Chris@39 1574 func_convert_core_msys_to_w32 ()
Chris@39 1575 {
Chris@39 1576 $opt_debug
Chris@39 1577 # awkward: cmd appends spaces to result
Chris@39 1578 func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null |
Chris@39 1579 $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"`
Chris@39 1580 }
Chris@39 1581 #end: func_convert_core_msys_to_w32
Chris@39 1582
Chris@39 1583
Chris@39 1584 # func_convert_file_check ARG1 ARG2
Chris@39 1585 # Verify that ARG1 (a file name in $build format) was converted to $host
Chris@39 1586 # format in ARG2. Otherwise, emit an error message, but continue (resetting
Chris@39 1587 # func_to_host_file_result to ARG1).
Chris@39 1588 func_convert_file_check ()
Chris@39 1589 {
Chris@39 1590 $opt_debug
Chris@39 1591 if test -z "$2" && test -n "$1" ; then
Chris@39 1592 func_error "Could not determine host file name corresponding to"
Chris@39 1593 func_error " \`$1'"
Chris@39 1594 func_error "Continuing, but uninstalled executables may not work."
Chris@39 1595 # Fallback:
Chris@39 1596 func_to_host_file_result="$1"
Chris@39 1597 fi
Chris@39 1598 }
Chris@39 1599 # end func_convert_file_check
Chris@39 1600
Chris@39 1601
Chris@39 1602 # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH
Chris@39 1603 # Verify that FROM_PATH (a path in $build format) was converted to $host
Chris@39 1604 # format in TO_PATH. Otherwise, emit an error message, but continue, resetting
Chris@39 1605 # func_to_host_file_result to a simplistic fallback value (see below).
Chris@39 1606 func_convert_path_check ()
Chris@39 1607 {
Chris@39 1608 $opt_debug
Chris@39 1609 if test -z "$4" && test -n "$3"; then
Chris@39 1610 func_error "Could not determine the host path corresponding to"
Chris@39 1611 func_error " \`$3'"
Chris@39 1612 func_error "Continuing, but uninstalled executables may not work."
Chris@39 1613 # Fallback. This is a deliberately simplistic "conversion" and
Chris@39 1614 # should not be "improved". See libtool.info.
Chris@39 1615 if test "x$1" != "x$2"; then
Chris@39 1616 lt_replace_pathsep_chars="s|$1|$2|g"
Chris@39 1617 func_to_host_path_result=`echo "$3" |
Chris@39 1618 $SED -e "$lt_replace_pathsep_chars"`
Chris@39 1619 else
Chris@39 1620 func_to_host_path_result="$3"
Chris@39 1621 fi
Chris@39 1622 fi
Chris@39 1623 }
Chris@39 1624 # end func_convert_path_check
Chris@39 1625
Chris@39 1626
Chris@39 1627 # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG
Chris@39 1628 # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT
Chris@39 1629 # and appending REPL if ORIG matches BACKPAT.
Chris@39 1630 func_convert_path_front_back_pathsep ()
Chris@39 1631 {
Chris@39 1632 $opt_debug
Chris@39 1633 case $4 in
Chris@39 1634 $1 ) func_to_host_path_result="$3$func_to_host_path_result"
Chris@39 1635 ;;
Chris@39 1636 esac
Chris@39 1637 case $4 in
Chris@39 1638 $2 ) func_append func_to_host_path_result "$3"
Chris@39 1639 ;;
Chris@39 1640 esac
Chris@39 1641 }
Chris@39 1642 # end func_convert_path_front_back_pathsep
Chris@39 1643
Chris@39 1644
Chris@39 1645 ##################################################
Chris@39 1646 # $build to $host FILE NAME CONVERSION FUNCTIONS #
Chris@39 1647 ##################################################
Chris@39 1648 # invoked via `$to_host_file_cmd ARG'
Chris@39 1649 #
Chris@39 1650 # In each case, ARG is the path to be converted from $build to $host format.
Chris@39 1651 # Result will be available in $func_to_host_file_result.
Chris@39 1652
Chris@39 1653
Chris@39 1654 # func_to_host_file ARG
Chris@39 1655 # Converts the file name ARG from $build format to $host format. Return result
Chris@39 1656 # in func_to_host_file_result.
Chris@39 1657 func_to_host_file ()
Chris@39 1658 {
Chris@39 1659 $opt_debug
Chris@39 1660 $to_host_file_cmd "$1"
Chris@39 1661 }
Chris@39 1662 # end func_to_host_file
Chris@39 1663
Chris@39 1664
Chris@39 1665 # func_to_tool_file ARG LAZY
Chris@39 1666 # converts the file name ARG from $build format to toolchain format. Return
Chris@39 1667 # result in func_to_tool_file_result. If the conversion in use is listed
Chris@39 1668 # in (the comma separated) LAZY, no conversion takes place.
Chris@39 1669 func_to_tool_file ()
Chris@39 1670 {
Chris@39 1671 $opt_debug
Chris@39 1672 case ,$2, in
Chris@39 1673 *,"$to_tool_file_cmd",*)
Chris@39 1674 func_to_tool_file_result=$1
Chris@39 1675 ;;
Chris@39 1676 *)
Chris@39 1677 $to_tool_file_cmd "$1"
Chris@39 1678 func_to_tool_file_result=$func_to_host_file_result
Chris@39 1679 ;;
Chris@39 1680 esac
Chris@39 1681 }
Chris@39 1682 # end func_to_tool_file
Chris@39 1683
Chris@39 1684
Chris@39 1685 # func_convert_file_noop ARG
Chris@39 1686 # Copy ARG to func_to_host_file_result.
Chris@39 1687 func_convert_file_noop ()
Chris@39 1688 {
Chris@39 1689 func_to_host_file_result="$1"
Chris@39 1690 }
Chris@39 1691 # end func_convert_file_noop
Chris@39 1692
Chris@39 1693
Chris@39 1694 # func_convert_file_msys_to_w32 ARG
Chris@39 1695 # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic
Chris@39 1696 # conversion to w32 is not available inside the cwrapper. Returns result in
Chris@39 1697 # func_to_host_file_result.
Chris@39 1698 func_convert_file_msys_to_w32 ()
Chris@39 1699 {
Chris@39 1700 $opt_debug
Chris@39 1701 func_to_host_file_result="$1"
Chris@39 1702 if test -n "$1"; then
Chris@39 1703 func_convert_core_msys_to_w32 "$1"
Chris@39 1704 func_to_host_file_result="$func_convert_core_msys_to_w32_result"
Chris@39 1705 fi
Chris@39 1706 func_convert_file_check "$1" "$func_to_host_file_result"
Chris@39 1707 }
Chris@39 1708 # end func_convert_file_msys_to_w32
Chris@39 1709
Chris@39 1710
Chris@39 1711 # func_convert_file_cygwin_to_w32 ARG
Chris@39 1712 # Convert file name ARG from Cygwin to w32 format. Returns result in
Chris@39 1713 # func_to_host_file_result.
Chris@39 1714 func_convert_file_cygwin_to_w32 ()
Chris@39 1715 {
Chris@39 1716 $opt_debug
Chris@39 1717 func_to_host_file_result="$1"
Chris@39 1718 if test -n "$1"; then
Chris@39 1719 # because $build is cygwin, we call "the" cygpath in $PATH; no need to use
Chris@39 1720 # LT_CYGPATH in this case.
Chris@39 1721 func_to_host_file_result=`cygpath -m "$1"`
Chris@39 1722 fi
Chris@39 1723 func_convert_file_check "$1" "$func_to_host_file_result"
Chris@39 1724 }
Chris@39 1725 # end func_convert_file_cygwin_to_w32
Chris@39 1726
Chris@39 1727
Chris@39 1728 # func_convert_file_nix_to_w32 ARG
Chris@39 1729 # Convert file name ARG from *nix to w32 format. Requires a wine environment
Chris@39 1730 # and a working winepath. Returns result in func_to_host_file_result.
Chris@39 1731 func_convert_file_nix_to_w32 ()
Chris@39 1732 {
Chris@39 1733 $opt_debug
Chris@39 1734 func_to_host_file_result="$1"
Chris@39 1735 if test -n "$1"; then
Chris@39 1736 func_convert_core_file_wine_to_w32 "$1"
Chris@39 1737 func_to_host_file_result="$func_convert_core_file_wine_to_w32_result"
Chris@39 1738 fi
Chris@39 1739 func_convert_file_check "$1" "$func_to_host_file_result"
Chris@39 1740 }
Chris@39 1741 # end func_convert_file_nix_to_w32
Chris@39 1742
Chris@39 1743
Chris@39 1744 # func_convert_file_msys_to_cygwin ARG
Chris@39 1745 # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set.
Chris@39 1746 # Returns result in func_to_host_file_result.
Chris@39 1747 func_convert_file_msys_to_cygwin ()
Chris@39 1748 {
Chris@39 1749 $opt_debug
Chris@39 1750 func_to_host_file_result="$1"
Chris@39 1751 if test -n "$1"; then
Chris@39 1752 func_convert_core_msys_to_w32 "$1"
Chris@39 1753 func_cygpath -u "$func_convert_core_msys_to_w32_result"
Chris@39 1754 func_to_host_file_result="$func_cygpath_result"
Chris@39 1755 fi
Chris@39 1756 func_convert_file_check "$1" "$func_to_host_file_result"
Chris@39 1757 }
Chris@39 1758 # end func_convert_file_msys_to_cygwin
Chris@39 1759
Chris@39 1760
Chris@39 1761 # func_convert_file_nix_to_cygwin ARG
Chris@39 1762 # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed
Chris@39 1763 # in a wine environment, working winepath, and LT_CYGPATH set. Returns result
Chris@39 1764 # in func_to_host_file_result.
Chris@39 1765 func_convert_file_nix_to_cygwin ()
Chris@39 1766 {
Chris@39 1767 $opt_debug
Chris@39 1768 func_to_host_file_result="$1"
Chris@39 1769 if test -n "$1"; then
Chris@39 1770 # convert from *nix to w32, then use cygpath to convert from w32 to cygwin.
Chris@39 1771 func_convert_core_file_wine_to_w32 "$1"
Chris@39 1772 func_cygpath -u "$func_convert_core_file_wine_to_w32_result"
Chris@39 1773 func_to_host_file_result="$func_cygpath_result"
Chris@39 1774 fi
Chris@39 1775 func_convert_file_check "$1" "$func_to_host_file_result"
Chris@39 1776 }
Chris@39 1777 # end func_convert_file_nix_to_cygwin
Chris@39 1778
Chris@39 1779
Chris@39 1780 #############################################
Chris@39 1781 # $build to $host PATH CONVERSION FUNCTIONS #
Chris@39 1782 #############################################
Chris@39 1783 # invoked via `$to_host_path_cmd ARG'
Chris@39 1784 #
Chris@39 1785 # In each case, ARG is the path to be converted from $build to $host format.
Chris@39 1786 # The result will be available in $func_to_host_path_result.
Chris@39 1787 #
Chris@39 1788 # Path separators are also converted from $build format to $host format. If
Chris@39 1789 # ARG begins or ends with a path separator character, it is preserved (but
Chris@39 1790 # converted to $host format) on output.
Chris@39 1791 #
Chris@39 1792 # All path conversion functions are named using the following convention:
Chris@39 1793 # file name conversion function : func_convert_file_X_to_Y ()
Chris@39 1794 # path conversion function : func_convert_path_X_to_Y ()
Chris@39 1795 # where, for any given $build/$host combination the 'X_to_Y' value is the
Chris@39 1796 # same. If conversion functions are added for new $build/$host combinations,
Chris@39 1797 # the two new functions must follow this pattern, or func_init_to_host_path_cmd
Chris@39 1798 # will break.
Chris@39 1799
Chris@39 1800
Chris@39 1801 # func_init_to_host_path_cmd
Chris@39 1802 # Ensures that function "pointer" variable $to_host_path_cmd is set to the
Chris@39 1803 # appropriate value, based on the value of $to_host_file_cmd.
Chris@39 1804 to_host_path_cmd=
Chris@39 1805 func_init_to_host_path_cmd ()
Chris@39 1806 {
Chris@39 1807 $opt_debug
Chris@39 1808 if test -z "$to_host_path_cmd"; then
Chris@39 1809 func_stripname 'func_convert_file_' '' "$to_host_file_cmd"
Chris@39 1810 to_host_path_cmd="func_convert_path_${func_stripname_result}"
Chris@39 1811 fi
Chris@39 1812 }
Chris@39 1813
Chris@39 1814
Chris@39 1815 # func_to_host_path ARG
Chris@39 1816 # Converts the path ARG from $build format to $host format. Return result
Chris@39 1817 # in func_to_host_path_result.
Chris@39 1818 func_to_host_path ()
Chris@39 1819 {
Chris@39 1820 $opt_debug
Chris@39 1821 func_init_to_host_path_cmd
Chris@39 1822 $to_host_path_cmd "$1"
Chris@39 1823 }
Chris@39 1824 # end func_to_host_path
Chris@39 1825
Chris@39 1826
Chris@39 1827 # func_convert_path_noop ARG
Chris@39 1828 # Copy ARG to func_to_host_path_result.
Chris@39 1829 func_convert_path_noop ()
Chris@39 1830 {
Chris@39 1831 func_to_host_path_result="$1"
Chris@39 1832 }
Chris@39 1833 # end func_convert_path_noop
Chris@39 1834
Chris@39 1835
Chris@39 1836 # func_convert_path_msys_to_w32 ARG
Chris@39 1837 # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic
Chris@39 1838 # conversion to w32 is not available inside the cwrapper. Returns result in
Chris@39 1839 # func_to_host_path_result.
Chris@39 1840 func_convert_path_msys_to_w32 ()
Chris@39 1841 {
Chris@39 1842 $opt_debug
Chris@39 1843 func_to_host_path_result="$1"
Chris@39 1844 if test -n "$1"; then
Chris@39 1845 # Remove leading and trailing path separator characters from ARG. MSYS
Chris@39 1846 # behavior is inconsistent here; cygpath turns them into '.;' and ';.';
Chris@39 1847 # and winepath ignores them completely.
Chris@39 1848 func_stripname : : "$1"
Chris@39 1849 func_to_host_path_tmp1=$func_stripname_result
Chris@39 1850 func_convert_core_msys_to_w32 "$func_to_host_path_tmp1"
Chris@39 1851 func_to_host_path_result="$func_convert_core_msys_to_w32_result"
Chris@39 1852 func_convert_path_check : ";" \
Chris@39 1853 "$func_to_host_path_tmp1" "$func_to_host_path_result"
Chris@39 1854 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
Chris@39 1855 fi
Chris@39 1856 }
Chris@39 1857 # end func_convert_path_msys_to_w32
Chris@39 1858
Chris@39 1859
Chris@39 1860 # func_convert_path_cygwin_to_w32 ARG
Chris@39 1861 # Convert path ARG from Cygwin to w32 format. Returns result in
Chris@39 1862 # func_to_host_file_result.
Chris@39 1863 func_convert_path_cygwin_to_w32 ()
Chris@39 1864 {
Chris@39 1865 $opt_debug
Chris@39 1866 func_to_host_path_result="$1"
Chris@39 1867 if test -n "$1"; then
Chris@39 1868 # See func_convert_path_msys_to_w32:
Chris@39 1869 func_stripname : : "$1"
Chris@39 1870 func_to_host_path_tmp1=$func_stripname_result
Chris@39 1871 func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"`
Chris@39 1872 func_convert_path_check : ";" \
Chris@39 1873 "$func_to_host_path_tmp1" "$func_to_host_path_result"
Chris@39 1874 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
Chris@39 1875 fi
Chris@39 1876 }
Chris@39 1877 # end func_convert_path_cygwin_to_w32
Chris@39 1878
Chris@39 1879
Chris@39 1880 # func_convert_path_nix_to_w32 ARG
Chris@39 1881 # Convert path ARG from *nix to w32 format. Requires a wine environment and
Chris@39 1882 # a working winepath. Returns result in func_to_host_file_result.
Chris@39 1883 func_convert_path_nix_to_w32 ()
Chris@39 1884 {
Chris@39 1885 $opt_debug
Chris@39 1886 func_to_host_path_result="$1"
Chris@39 1887 if test -n "$1"; then
Chris@39 1888 # See func_convert_path_msys_to_w32:
Chris@39 1889 func_stripname : : "$1"
Chris@39 1890 func_to_host_path_tmp1=$func_stripname_result
Chris@39 1891 func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1"
Chris@39 1892 func_to_host_path_result="$func_convert_core_path_wine_to_w32_result"
Chris@39 1893 func_convert_path_check : ";" \
Chris@39 1894 "$func_to_host_path_tmp1" "$func_to_host_path_result"
Chris@39 1895 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
Chris@39 1896 fi
Chris@39 1897 }
Chris@39 1898 # end func_convert_path_nix_to_w32
Chris@39 1899
Chris@39 1900
Chris@39 1901 # func_convert_path_msys_to_cygwin ARG
Chris@39 1902 # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set.
Chris@39 1903 # Returns result in func_to_host_file_result.
Chris@39 1904 func_convert_path_msys_to_cygwin ()
Chris@39 1905 {
Chris@39 1906 $opt_debug
Chris@39 1907 func_to_host_path_result="$1"
Chris@39 1908 if test -n "$1"; then
Chris@39 1909 # See func_convert_path_msys_to_w32:
Chris@39 1910 func_stripname : : "$1"
Chris@39 1911 func_to_host_path_tmp1=$func_stripname_result
Chris@39 1912 func_convert_core_msys_to_w32 "$func_to_host_path_tmp1"
Chris@39 1913 func_cygpath -u -p "$func_convert_core_msys_to_w32_result"
Chris@39 1914 func_to_host_path_result="$func_cygpath_result"
Chris@39 1915 func_convert_path_check : : \
Chris@39 1916 "$func_to_host_path_tmp1" "$func_to_host_path_result"
Chris@39 1917 func_convert_path_front_back_pathsep ":*" "*:" : "$1"
Chris@39 1918 fi
Chris@39 1919 }
Chris@39 1920 # end func_convert_path_msys_to_cygwin
Chris@39 1921
Chris@39 1922
Chris@39 1923 # func_convert_path_nix_to_cygwin ARG
Chris@39 1924 # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a
Chris@39 1925 # a wine environment, working winepath, and LT_CYGPATH set. Returns result in
Chris@39 1926 # func_to_host_file_result.
Chris@39 1927 func_convert_path_nix_to_cygwin ()
Chris@39 1928 {
Chris@39 1929 $opt_debug
Chris@39 1930 func_to_host_path_result="$1"
Chris@39 1931 if test -n "$1"; then
Chris@39 1932 # Remove leading and trailing path separator characters from
Chris@39 1933 # ARG. msys behavior is inconsistent here, cygpath turns them
Chris@39 1934 # into '.;' and ';.', and winepath ignores them completely.
Chris@39 1935 func_stripname : : "$1"
Chris@39 1936 func_to_host_path_tmp1=$func_stripname_result
Chris@39 1937 func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1"
Chris@39 1938 func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result"
Chris@39 1939 func_to_host_path_result="$func_cygpath_result"
Chris@39 1940 func_convert_path_check : : \
Chris@39 1941 "$func_to_host_path_tmp1" "$func_to_host_path_result"
Chris@39 1942 func_convert_path_front_back_pathsep ":*" "*:" : "$1"
Chris@39 1943 fi
Chris@39 1944 }
Chris@39 1945 # end func_convert_path_nix_to_cygwin
Chris@39 1946
Chris@39 1947
Chris@39 1948 # func_mode_compile arg...
Chris@39 1949 func_mode_compile ()
Chris@39 1950 {
Chris@39 1951 $opt_debug
Chris@39 1952 # Get the compilation command and the source file.
Chris@39 1953 base_compile=
Chris@39 1954 srcfile="$nonopt" # always keep a non-empty value in "srcfile"
Chris@39 1955 suppress_opt=yes
Chris@39 1956 suppress_output=
Chris@39 1957 arg_mode=normal
Chris@39 1958 libobj=
Chris@39 1959 later=
Chris@39 1960 pie_flag=
Chris@39 1961
Chris@39 1962 for arg
Chris@39 1963 do
Chris@39 1964 case $arg_mode in
Chris@39 1965 arg )
Chris@39 1966 # do not "continue". Instead, add this to base_compile
Chris@39 1967 lastarg="$arg"
Chris@39 1968 arg_mode=normal
Chris@39 1969 ;;
Chris@39 1970
Chris@39 1971 target )
Chris@39 1972 libobj="$arg"
Chris@39 1973 arg_mode=normal
Chris@39 1974 continue
Chris@39 1975 ;;
Chris@39 1976
Chris@39 1977 normal )
Chris@39 1978 # Accept any command-line options.
Chris@39 1979 case $arg in
Chris@39 1980 -o)
Chris@39 1981 test -n "$libobj" && \
Chris@39 1982 func_fatal_error "you cannot specify \`-o' more than once"
Chris@39 1983 arg_mode=target
Chris@39 1984 continue
Chris@39 1985 ;;
Chris@39 1986
Chris@39 1987 -pie | -fpie | -fPIE)
Chris@39 1988 func_append pie_flag " $arg"
Chris@39 1989 continue
Chris@39 1990 ;;
Chris@39 1991
Chris@39 1992 -shared | -static | -prefer-pic | -prefer-non-pic)
Chris@39 1993 func_append later " $arg"
Chris@39 1994 continue
Chris@39 1995 ;;
Chris@39 1996
Chris@39 1997 -no-suppress)
Chris@39 1998 suppress_opt=no
Chris@39 1999 continue
Chris@39 2000 ;;
Chris@39 2001
Chris@39 2002 -Xcompiler)
Chris@39 2003 arg_mode=arg # the next one goes into the "base_compile" arg list
Chris@39 2004 continue # The current "srcfile" will either be retained or
Chris@39 2005 ;; # replaced later. I would guess that would be a bug.
Chris@39 2006
Chris@39 2007 -Wc,*)
Chris@39 2008 func_stripname '-Wc,' '' "$arg"
Chris@39 2009 args=$func_stripname_result
Chris@39 2010 lastarg=
Chris@39 2011 save_ifs="$IFS"; IFS=','
Chris@39 2012 for arg in $args; do
Chris@39 2013 IFS="$save_ifs"
Chris@39 2014 func_append_quoted lastarg "$arg"
Chris@39 2015 done
Chris@39 2016 IFS="$save_ifs"
Chris@39 2017 func_stripname ' ' '' "$lastarg"
Chris@39 2018 lastarg=$func_stripname_result
Chris@39 2019
Chris@39 2020 # Add the arguments to base_compile.
Chris@39 2021 func_append base_compile " $lastarg"
Chris@39 2022 continue
Chris@39 2023 ;;
Chris@39 2024
Chris@39 2025 *)
Chris@39 2026 # Accept the current argument as the source file.
Chris@39 2027 # The previous "srcfile" becomes the current argument.
Chris@39 2028 #
Chris@39 2029 lastarg="$srcfile"
Chris@39 2030 srcfile="$arg"
Chris@39 2031 ;;
Chris@39 2032 esac # case $arg
Chris@39 2033 ;;
Chris@39 2034 esac # case $arg_mode
Chris@39 2035
Chris@39 2036 # Aesthetically quote the previous argument.
Chris@39 2037 func_append_quoted base_compile "$lastarg"
Chris@39 2038 done # for arg
Chris@39 2039
Chris@39 2040 case $arg_mode in
Chris@39 2041 arg)
Chris@39 2042 func_fatal_error "you must specify an argument for -Xcompile"
Chris@39 2043 ;;
Chris@39 2044 target)
Chris@39 2045 func_fatal_error "you must specify a target with \`-o'"
Chris@39 2046 ;;
Chris@39 2047 *)
Chris@39 2048 # Get the name of the library object.
Chris@39 2049 test -z "$libobj" && {
Chris@39 2050 func_basename "$srcfile"
Chris@39 2051 libobj="$func_basename_result"
Chris@39 2052 }
Chris@39 2053 ;;
Chris@39 2054 esac
Chris@39 2055
Chris@39 2056 # Recognize several different file suffixes.
Chris@39 2057 # If the user specifies -o file.o, it is replaced with file.lo
Chris@39 2058 case $libobj in
Chris@39 2059 *.[cCFSifmso] | \
Chris@39 2060 *.ada | *.adb | *.ads | *.asm | \
Chris@39 2061 *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \
Chris@39 2062 *.[fF][09]? | *.for | *.java | *.obj | *.sx | *.cu | *.cup)
Chris@39 2063 func_xform "$libobj"
Chris@39 2064 libobj=$func_xform_result
Chris@39 2065 ;;
Chris@39 2066 esac
Chris@39 2067
Chris@39 2068 case $libobj in
Chris@39 2069 *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;;
Chris@39 2070 *)
Chris@39 2071 func_fatal_error "cannot determine name of library object from \`$libobj'"
Chris@39 2072 ;;
Chris@39 2073 esac
Chris@39 2074
Chris@39 2075 func_infer_tag $base_compile
Chris@39 2076
Chris@39 2077 for arg in $later; do
Chris@39 2078 case $arg in
Chris@39 2079 -shared)
Chris@39 2080 test "$build_libtool_libs" != yes && \
Chris@39 2081 func_fatal_configuration "can not build a shared library"
Chris@39 2082 build_old_libs=no
Chris@39 2083 continue
Chris@39 2084 ;;
Chris@39 2085
Chris@39 2086 -static)
Chris@39 2087 build_libtool_libs=no
Chris@39 2088 build_old_libs=yes
Chris@39 2089 continue
Chris@39 2090 ;;
Chris@39 2091
Chris@39 2092 -prefer-pic)
Chris@39 2093 pic_mode=yes
Chris@39 2094 continue
Chris@39 2095 ;;
Chris@39 2096
Chris@39 2097 -prefer-non-pic)
Chris@39 2098 pic_mode=no
Chris@39 2099 continue
Chris@39 2100 ;;
Chris@39 2101 esac
Chris@39 2102 done
Chris@39 2103
Chris@39 2104 func_quote_for_eval "$libobj"
Chris@39 2105 test "X$libobj" != "X$func_quote_for_eval_result" \
Chris@39 2106 && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \
Chris@39 2107 && func_warning "libobj name \`$libobj' may not contain shell special characters."
Chris@39 2108 func_dirname_and_basename "$obj" "/" ""
Chris@39 2109 objname="$func_basename_result"
Chris@39 2110 xdir="$func_dirname_result"
Chris@39 2111 lobj=${xdir}$objdir/$objname
Chris@39 2112
Chris@39 2113 test -z "$base_compile" && \
Chris@39 2114 func_fatal_help "you must specify a compilation command"
Chris@39 2115
Chris@39 2116 # Delete any leftover library objects.
Chris@39 2117 if test "$build_old_libs" = yes; then
Chris@39 2118 removelist="$obj $lobj $libobj ${libobj}T"
Chris@39 2119 else
Chris@39 2120 removelist="$lobj $libobj ${libobj}T"
Chris@39 2121 fi
Chris@39 2122
Chris@39 2123 # On Cygwin there's no "real" PIC flag so we must build both object types
Chris@39 2124 case $host_os in
Chris@39 2125 cygwin* | mingw* | pw32* | os2* | cegcc*)
Chris@39 2126 pic_mode=default
Chris@39 2127 ;;
Chris@39 2128 esac
Chris@39 2129 if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then
Chris@39 2130 # non-PIC code in shared libraries is not supported
Chris@39 2131 pic_mode=default
Chris@39 2132 fi
Chris@39 2133
Chris@39 2134 # Calculate the filename of the output object if compiler does
Chris@39 2135 # not support -o with -c
Chris@39 2136 if test "$compiler_c_o" = no; then
Chris@39 2137 output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext}
Chris@39 2138 lockfile="$output_obj.lock"
Chris@39 2139 else
Chris@39 2140 output_obj=
Chris@39 2141 need_locks=no
Chris@39 2142 lockfile=
Chris@39 2143 fi
Chris@39 2144
Chris@39 2145 # Lock this critical section if it is needed
Chris@39 2146 # We use this script file to make the link, it avoids creating a new file
Chris@39 2147 if test "$need_locks" = yes; then
Chris@39 2148 until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do
Chris@39 2149 func_echo "Waiting for $lockfile to be removed"
Chris@39 2150 sleep 2
Chris@39 2151 done
Chris@39 2152 elif test "$need_locks" = warn; then
Chris@39 2153 if test -f "$lockfile"; then
Chris@39 2154 $ECHO "\
Chris@39 2155 *** ERROR, $lockfile exists and contains:
Chris@39 2156 `cat $lockfile 2>/dev/null`
Chris@39 2157
Chris@39 2158 This indicates that another process is trying to use the same
Chris@39 2159 temporary object file, and libtool could not work around it because
Chris@39 2160 your compiler does not support \`-c' and \`-o' together. If you
Chris@39 2161 repeat this compilation, it may succeed, by chance, but you had better
Chris@39 2162 avoid parallel builds (make -j) in this platform, or get a better
Chris@39 2163 compiler."
Chris@39 2164
Chris@39 2165 $opt_dry_run || $RM $removelist
Chris@39 2166 exit $EXIT_FAILURE
Chris@39 2167 fi
Chris@39 2168 func_append removelist " $output_obj"
Chris@39 2169 $ECHO "$srcfile" > "$lockfile"
Chris@39 2170 fi
Chris@39 2171
Chris@39 2172 $opt_dry_run || $RM $removelist
Chris@39 2173 func_append removelist " $lockfile"
Chris@39 2174 trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15
Chris@39 2175
Chris@39 2176 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32
Chris@39 2177 srcfile=$func_to_tool_file_result
Chris@39 2178 func_quote_for_eval "$srcfile"
Chris@39 2179 qsrcfile=$func_quote_for_eval_result
Chris@39 2180
Chris@39 2181 # Only build a PIC object if we are building libtool libraries.
Chris@39 2182 if test "$build_libtool_libs" = yes; then
Chris@39 2183 # Without this assignment, base_compile gets emptied.
Chris@39 2184 fbsd_hideous_sh_bug=$base_compile
Chris@39 2185
Chris@39 2186 if test "$pic_mode" != no; then
Chris@39 2187 command="$base_compile $qsrcfile $pic_flag"
Chris@39 2188 else
Chris@39 2189 # Don't build PIC code
Chris@39 2190 command="$base_compile $qsrcfile"
Chris@39 2191 fi
Chris@39 2192
Chris@39 2193 func_mkdir_p "$xdir$objdir"
Chris@39 2194
Chris@39 2195 if test -z "$output_obj"; then
Chris@39 2196 # Place PIC objects in $objdir
Chris@39 2197 func_append command " -o $lobj"
Chris@39 2198 fi
Chris@39 2199
Chris@39 2200 func_show_eval_locale "$command" \
Chris@39 2201 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE'
Chris@39 2202
Chris@39 2203 if test "$need_locks" = warn &&
Chris@39 2204 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
Chris@39 2205 $ECHO "\
Chris@39 2206 *** ERROR, $lockfile contains:
Chris@39 2207 `cat $lockfile 2>/dev/null`
Chris@39 2208
Chris@39 2209 but it should contain:
Chris@39 2210 $srcfile
Chris@39 2211
Chris@39 2212 This indicates that another process is trying to use the same
Chris@39 2213 temporary object file, and libtool could not work around it because
Chris@39 2214 your compiler does not support \`-c' and \`-o' together. If you
Chris@39 2215 repeat this compilation, it may succeed, by chance, but you had better
Chris@39 2216 avoid parallel builds (make -j) in this platform, or get a better
Chris@39 2217 compiler."
Chris@39 2218
Chris@39 2219 $opt_dry_run || $RM $removelist
Chris@39 2220 exit $EXIT_FAILURE
Chris@39 2221 fi
Chris@39 2222
Chris@39 2223 # Just move the object if needed, then go on to compile the next one
Chris@39 2224 if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then
Chris@39 2225 func_show_eval '$MV "$output_obj" "$lobj"' \
Chris@39 2226 'error=$?; $opt_dry_run || $RM $removelist; exit $error'
Chris@39 2227 fi
Chris@39 2228
Chris@39 2229 # Allow error messages only from the first compilation.
Chris@39 2230 if test "$suppress_opt" = yes; then
Chris@39 2231 suppress_output=' >/dev/null 2>&1'
Chris@39 2232 fi
Chris@39 2233 fi
Chris@39 2234
Chris@39 2235 # Only build a position-dependent object if we build old libraries.
Chris@39 2236 if test "$build_old_libs" = yes; then
Chris@39 2237 if test "$pic_mode" != yes; then
Chris@39 2238 # Don't build PIC code
Chris@39 2239 command="$base_compile $qsrcfile$pie_flag"
Chris@39 2240 else
Chris@39 2241 command="$base_compile $qsrcfile $pic_flag"
Chris@39 2242 fi
Chris@39 2243 if test "$compiler_c_o" = yes; then
Chris@39 2244 func_append command " -o $obj"
Chris@39 2245 fi
Chris@39 2246
Chris@39 2247 # Suppress compiler output if we already did a PIC compilation.
Chris@39 2248 func_append command "$suppress_output"
Chris@39 2249 func_show_eval_locale "$command" \
Chris@39 2250 '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE'
Chris@39 2251
Chris@39 2252 if test "$need_locks" = warn &&
Chris@39 2253 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
Chris@39 2254 $ECHO "\
Chris@39 2255 *** ERROR, $lockfile contains:
Chris@39 2256 `cat $lockfile 2>/dev/null`
Chris@39 2257
Chris@39 2258 but it should contain:
Chris@39 2259 $srcfile
Chris@39 2260
Chris@39 2261 This indicates that another process is trying to use the same
Chris@39 2262 temporary object file, and libtool could not work around it because
Chris@39 2263 your compiler does not support \`-c' and \`-o' together. If you
Chris@39 2264 repeat this compilation, it may succeed, by chance, but you had better
Chris@39 2265 avoid parallel builds (make -j) in this platform, or get a better
Chris@39 2266 compiler."
Chris@39 2267
Chris@39 2268 $opt_dry_run || $RM $removelist
Chris@39 2269 exit $EXIT_FAILURE
Chris@39 2270 fi
Chris@39 2271
Chris@39 2272 # Just move the object if needed
Chris@39 2273 if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then
Chris@39 2274 func_show_eval '$MV "$output_obj" "$obj"' \
Chris@39 2275 'error=$?; $opt_dry_run || $RM $removelist; exit $error'
Chris@39 2276 fi
Chris@39 2277 fi
Chris@39 2278
Chris@39 2279 $opt_dry_run || {
Chris@39 2280 func_write_libtool_object "$libobj" "$objdir/$objname" "$objname"
Chris@39 2281
Chris@39 2282 # Unlock the critical section if it was locked
Chris@39 2283 if test "$need_locks" != no; then
Chris@39 2284 removelist=$lockfile
Chris@39 2285 $RM "$lockfile"
Chris@39 2286 fi
Chris@39 2287 }
Chris@39 2288
Chris@39 2289 exit $EXIT_SUCCESS
Chris@39 2290 }
Chris@39 2291
Chris@39 2292 $opt_help || {
Chris@39 2293 test "$opt_mode" = compile && func_mode_compile ${1+"$@"}
Chris@39 2294 }
Chris@39 2295
Chris@39 2296 func_mode_help ()
Chris@39 2297 {
Chris@39 2298 # We need to display help for each of the modes.
Chris@39 2299 case $opt_mode in
Chris@39 2300 "")
Chris@39 2301 # Generic help is extracted from the usage comments
Chris@39 2302 # at the start of this file.
Chris@39 2303 func_help
Chris@39 2304 ;;
Chris@39 2305
Chris@39 2306 clean)
Chris@39 2307 $ECHO \
Chris@39 2308 "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
Chris@39 2309
Chris@39 2310 Remove files from the build directory.
Chris@39 2311
Chris@39 2312 RM is the name of the program to use to delete files associated with each FILE
Chris@39 2313 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
Chris@39 2314 to RM.
Chris@39 2315
Chris@39 2316 If FILE is a libtool library, object or program, all the files associated
Chris@39 2317 with it are deleted. Otherwise, only FILE itself is deleted using RM."
Chris@39 2318 ;;
Chris@39 2319
Chris@39 2320 compile)
Chris@39 2321 $ECHO \
Chris@39 2322 "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
Chris@39 2323
Chris@39 2324 Compile a source file into a libtool library object.
Chris@39 2325
Chris@39 2326 This mode accepts the following additional options:
Chris@39 2327
Chris@39 2328 -o OUTPUT-FILE set the output file name to OUTPUT-FILE
Chris@39 2329 -no-suppress do not suppress compiler output for multiple passes
Chris@39 2330 -prefer-pic try to build PIC objects only
Chris@39 2331 -prefer-non-pic try to build non-PIC objects only
Chris@39 2332 -shared do not build a \`.o' file suitable for static linking
Chris@39 2333 -static only build a \`.o' file suitable for static linking
Chris@39 2334 -Wc,FLAG pass FLAG directly to the compiler
Chris@39 2335
Chris@39 2336 COMPILE-COMMAND is a command to be used in creating a \`standard' object file
Chris@39 2337 from the given SOURCEFILE.
Chris@39 2338
Chris@39 2339 The output file name is determined by removing the directory component from
Chris@39 2340 SOURCEFILE, then substituting the C source code suffix \`.c' with the
Chris@39 2341 library object suffix, \`.lo'."
Chris@39 2342 ;;
Chris@39 2343
Chris@39 2344 execute)
Chris@39 2345 $ECHO \
Chris@39 2346 "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]...
Chris@39 2347
Chris@39 2348 Automatically set library path, then run a program.
Chris@39 2349
Chris@39 2350 This mode accepts the following additional options:
Chris@39 2351
Chris@39 2352 -dlopen FILE add the directory containing FILE to the library path
Chris@39 2353
Chris@39 2354 This mode sets the library path environment variable according to \`-dlopen'
Chris@39 2355 flags.
Chris@39 2356
Chris@39 2357 If any of the ARGS are libtool executable wrappers, then they are translated
Chris@39 2358 into their corresponding uninstalled binary, and any of their required library
Chris@39 2359 directories are added to the library path.
Chris@39 2360
Chris@39 2361 Then, COMMAND is executed, with ARGS as arguments."
Chris@39 2362 ;;
Chris@39 2363
Chris@39 2364 finish)
Chris@39 2365 $ECHO \
Chris@39 2366 "Usage: $progname [OPTION]... --mode=finish [LIBDIR]...
Chris@39 2367
Chris@39 2368 Complete the installation of libtool libraries.
Chris@39 2369
Chris@39 2370 Each LIBDIR is a directory that contains libtool libraries.
Chris@39 2371
Chris@39 2372 The commands that this mode executes may require superuser privileges. Use
Chris@39 2373 the \`--dry-run' option if you just want to see what would be executed."
Chris@39 2374 ;;
Chris@39 2375
Chris@39 2376 install)
Chris@39 2377 $ECHO \
Chris@39 2378 "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND...
Chris@39 2379
Chris@39 2380 Install executables or libraries.
Chris@39 2381
Chris@39 2382 INSTALL-COMMAND is the installation command. The first component should be
Chris@39 2383 either the \`install' or \`cp' program.
Chris@39 2384
Chris@39 2385 The following components of INSTALL-COMMAND are treated specially:
Chris@39 2386
Chris@39 2387 -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation
Chris@39 2388
Chris@39 2389 The rest of the components are interpreted as arguments to that command (only
Chris@39 2390 BSD-compatible install options are recognized)."
Chris@39 2391 ;;
Chris@39 2392
Chris@39 2393 link)
Chris@39 2394 $ECHO \
Chris@39 2395 "Usage: $progname [OPTION]... --mode=link LINK-COMMAND...
Chris@39 2396
Chris@39 2397 Link object files or libraries together to form another library, or to
Chris@39 2398 create an executable program.
Chris@39 2399
Chris@39 2400 LINK-COMMAND is a command using the C compiler that you would use to create
Chris@39 2401 a program from several object files.
Chris@39 2402
Chris@39 2403 The following components of LINK-COMMAND are treated specially:
Chris@39 2404
Chris@39 2405 -all-static do not do any dynamic linking at all
Chris@39 2406 -avoid-version do not add a version suffix if possible
Chris@39 2407 -bindir BINDIR specify path to binaries directory (for systems where
Chris@39 2408 libraries must be found in the PATH setting at runtime)
Chris@39 2409 -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
Chris@39 2410 -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols
Chris@39 2411 -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
Chris@39 2412 -export-symbols SYMFILE
Chris@39 2413 try to export only the symbols listed in SYMFILE
Chris@39 2414 -export-symbols-regex REGEX
Chris@39 2415 try to export only the symbols matching REGEX
Chris@39 2416 -LLIBDIR search LIBDIR for required installed libraries
Chris@39 2417 -lNAME OUTPUT-FILE requires the installed library libNAME
Chris@39 2418 -module build a library that can dlopened
Chris@39 2419 -no-fast-install disable the fast-install mode
Chris@39 2420 -no-install link a not-installable executable
Chris@39 2421 -no-undefined declare that a library does not refer to external symbols
Chris@39 2422 -o OUTPUT-FILE create OUTPUT-FILE from the specified objects
Chris@39 2423 -objectlist FILE Use a list of object files found in FILE to specify objects
Chris@39 2424 -precious-files-regex REGEX
Chris@39 2425 don't remove output files matching REGEX
Chris@39 2426 -release RELEASE specify package release information
Chris@39 2427 -rpath LIBDIR the created library will eventually be installed in LIBDIR
Chris@39 2428 -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries
Chris@39 2429 -shared only do dynamic linking of libtool libraries
Chris@39 2430 -shrext SUFFIX override the standard shared library file extension
Chris@39 2431 -static do not do any dynamic linking of uninstalled libtool libraries
Chris@39 2432 -static-libtool-libs
Chris@39 2433 do not do any dynamic linking of libtool libraries
Chris@39 2434 -version-info CURRENT[:REVISION[:AGE]]
Chris@39 2435 specify library version info [each variable defaults to 0]
Chris@39 2436 -weak LIBNAME declare that the target provides the LIBNAME interface
Chris@39 2437 -Wc,FLAG
Chris@39 2438 -Xcompiler FLAG pass linker-specific FLAG directly to the compiler
Chris@39 2439 -Wl,FLAG
Chris@39 2440 -Xlinker FLAG pass linker-specific FLAG directly to the linker
Chris@39 2441 -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC)
Chris@39 2442
Chris@39 2443 All other options (arguments beginning with \`-') are ignored.
Chris@39 2444
Chris@39 2445 Every other argument is treated as a filename. Files ending in \`.la' are
Chris@39 2446 treated as uninstalled libtool libraries, other files are standard or library
Chris@39 2447 object files.
Chris@39 2448
Chris@39 2449 If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
Chris@39 2450 only library objects (\`.lo' files) may be specified, and \`-rpath' is
Chris@39 2451 required, except when creating a convenience library.
Chris@39 2452
Chris@39 2453 If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
Chris@39 2454 using \`ar' and \`ranlib', or on Windows using \`lib'.
Chris@39 2455
Chris@39 2456 If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
Chris@39 2457 is created, otherwise an executable program is created."
Chris@39 2458 ;;
Chris@39 2459
Chris@39 2460 uninstall)
Chris@39 2461 $ECHO \
Chris@39 2462 "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
Chris@39 2463
Chris@39 2464 Remove libraries from an installation directory.
Chris@39 2465
Chris@39 2466 RM is the name of the program to use to delete files associated with each FILE
Chris@39 2467 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
Chris@39 2468 to RM.
Chris@39 2469
Chris@39 2470 If FILE is a libtool library, all the files associated with it are deleted.
Chris@39 2471 Otherwise, only FILE itself is deleted using RM."
Chris@39 2472 ;;
Chris@39 2473
Chris@39 2474 *)
Chris@39 2475 func_fatal_help "invalid operation mode \`$opt_mode'"
Chris@39 2476 ;;
Chris@39 2477 esac
Chris@39 2478
Chris@39 2479 echo
Chris@39 2480 $ECHO "Try \`$progname --help' for more information about other modes."
Chris@39 2481 }
Chris@39 2482
Chris@39 2483 # Now that we've collected a possible --mode arg, show help if necessary
Chris@39 2484 if $opt_help; then
Chris@39 2485 if test "$opt_help" = :; then
Chris@39 2486 func_mode_help
Chris@39 2487 else
Chris@39 2488 {
Chris@39 2489 func_help noexit
Chris@39 2490 for opt_mode in compile link execute install finish uninstall clean; do
Chris@39 2491 func_mode_help
Chris@39 2492 done
Chris@39 2493 } | sed -n '1p; 2,$s/^Usage:/ or: /p'
Chris@39 2494 {
Chris@39 2495 func_help noexit
Chris@39 2496 for opt_mode in compile link execute install finish uninstall clean; do
Chris@39 2497 echo
Chris@39 2498 func_mode_help
Chris@39 2499 done
Chris@39 2500 } |
Chris@39 2501 sed '1d
Chris@39 2502 /^When reporting/,/^Report/{
Chris@39 2503 H
Chris@39 2504 d
Chris@39 2505 }
Chris@39 2506 $x
Chris@39 2507 /information about other modes/d
Chris@39 2508 /more detailed .*MODE/d
Chris@39 2509 s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/'
Chris@39 2510 fi
Chris@39 2511 exit $?
Chris@39 2512 fi
Chris@39 2513
Chris@39 2514
Chris@39 2515 # func_mode_execute arg...
Chris@39 2516 func_mode_execute ()
Chris@39 2517 {
Chris@39 2518 $opt_debug
Chris@39 2519 # The first argument is the command name.
Chris@39 2520 cmd="$nonopt"
Chris@39 2521 test -z "$cmd" && \
Chris@39 2522 func_fatal_help "you must specify a COMMAND"
Chris@39 2523
Chris@39 2524 # Handle -dlopen flags immediately.
Chris@39 2525 for file in $opt_dlopen; do
Chris@39 2526 test -f "$file" \
Chris@39 2527 || func_fatal_help "\`$file' is not a file"
Chris@39 2528
Chris@39 2529 dir=
Chris@39 2530 case $file in
Chris@39 2531 *.la)
Chris@39 2532 func_resolve_sysroot "$file"
Chris@39 2533 file=$func_resolve_sysroot_result
Chris@39 2534
Chris@39 2535 # Check to see that this really is a libtool archive.
Chris@39 2536 func_lalib_unsafe_p "$file" \
Chris@39 2537 || func_fatal_help "\`$lib' is not a valid libtool archive"
Chris@39 2538
Chris@39 2539 # Read the libtool library.
Chris@39 2540 dlname=
Chris@39 2541 library_names=
Chris@39 2542 func_source "$file"
Chris@39 2543
Chris@39 2544 # Skip this library if it cannot be dlopened.
Chris@39 2545 if test -z "$dlname"; then
Chris@39 2546 # Warn if it was a shared library.
Chris@39 2547 test -n "$library_names" && \
Chris@39 2548 func_warning "\`$file' was not linked with \`-export-dynamic'"
Chris@39 2549 continue
Chris@39 2550 fi
Chris@39 2551
Chris@39 2552 func_dirname "$file" "" "."
Chris@39 2553 dir="$func_dirname_result"
Chris@39 2554
Chris@39 2555 if test -f "$dir/$objdir/$dlname"; then
Chris@39 2556 func_append dir "/$objdir"
Chris@39 2557 else
Chris@39 2558 if test ! -f "$dir/$dlname"; then
Chris@39 2559 func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'"
Chris@39 2560 fi
Chris@39 2561 fi
Chris@39 2562 ;;
Chris@39 2563
Chris@39 2564 *.lo)
Chris@39 2565 # Just add the directory containing the .lo file.
Chris@39 2566 func_dirname "$file" "" "."
Chris@39 2567 dir="$func_dirname_result"
Chris@39 2568 ;;
Chris@39 2569
Chris@39 2570 *)
Chris@39 2571 func_warning "\`-dlopen' is ignored for non-libtool libraries and objects"
Chris@39 2572 continue
Chris@39 2573 ;;
Chris@39 2574 esac
Chris@39 2575
Chris@39 2576 # Get the absolute pathname.
Chris@39 2577 absdir=`cd "$dir" && pwd`
Chris@39 2578 test -n "$absdir" && dir="$absdir"
Chris@39 2579
Chris@39 2580 # Now add the directory to shlibpath_var.
Chris@39 2581 if eval "test -z \"\$$shlibpath_var\""; then
Chris@39 2582 eval "$shlibpath_var=\"\$dir\""
Chris@39 2583 else
Chris@39 2584 eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
Chris@39 2585 fi
Chris@39 2586 done
Chris@39 2587
Chris@39 2588 # This variable tells wrapper scripts just to set shlibpath_var
Chris@39 2589 # rather than running their programs.
Chris@39 2590 libtool_execute_magic="$magic"
Chris@39 2591
Chris@39 2592 # Check if any of the arguments is a wrapper script.
Chris@39 2593 args=
Chris@39 2594 for file
Chris@39 2595 do
Chris@39 2596 case $file in
Chris@39 2597 -* | *.la | *.lo ) ;;
Chris@39 2598 *)
Chris@39 2599 # Do a test to see if this is really a libtool program.
Chris@39 2600 if func_ltwrapper_script_p "$file"; then
Chris@39 2601 func_source "$file"
Chris@39 2602 # Transform arg to wrapped name.
Chris@39 2603 file="$progdir/$program"
Chris@39 2604 elif func_ltwrapper_executable_p "$file"; then
Chris@39 2605 func_ltwrapper_scriptname "$file"
Chris@39 2606 func_source "$func_ltwrapper_scriptname_result"
Chris@39 2607 # Transform arg to wrapped name.
Chris@39 2608 file="$progdir/$program"
Chris@39 2609 fi
Chris@39 2610 ;;
Chris@39 2611 esac
Chris@39 2612 # Quote arguments (to preserve shell metacharacters).
Chris@39 2613 func_append_quoted args "$file"
Chris@39 2614 done
Chris@39 2615
Chris@39 2616 if test "X$opt_dry_run" = Xfalse; then
Chris@39 2617 if test -n "$shlibpath_var"; then
Chris@39 2618 # Export the shlibpath_var.
Chris@39 2619 eval "export $shlibpath_var"
Chris@39 2620 fi
Chris@39 2621
Chris@39 2622 # Restore saved environment variables
Chris@39 2623 for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
Chris@39 2624 do
Chris@39 2625 eval "if test \"\${save_$lt_var+set}\" = set; then
Chris@39 2626 $lt_var=\$save_$lt_var; export $lt_var
Chris@39 2627 else
Chris@39 2628 $lt_unset $lt_var
Chris@39 2629 fi"
Chris@39 2630 done
Chris@39 2631
Chris@39 2632 # Now prepare to actually exec the command.
Chris@39 2633 exec_cmd="\$cmd$args"
Chris@39 2634 else
Chris@39 2635 # Display what would be done.
Chris@39 2636 if test -n "$shlibpath_var"; then
Chris@39 2637 eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\""
Chris@39 2638 echo "export $shlibpath_var"
Chris@39 2639 fi
Chris@39 2640 $ECHO "$cmd$args"
Chris@39 2641 exit $EXIT_SUCCESS
Chris@39 2642 fi
Chris@39 2643 }
Chris@39 2644
Chris@39 2645 test "$opt_mode" = execute && func_mode_execute ${1+"$@"}
Chris@39 2646
Chris@39 2647
Chris@39 2648 # func_mode_finish arg...
Chris@39 2649 func_mode_finish ()
Chris@39 2650 {
Chris@39 2651 $opt_debug
Chris@39 2652 libs=
Chris@39 2653 libdirs=
Chris@39 2654 admincmds=
Chris@39 2655
Chris@39 2656 for opt in "$nonopt" ${1+"$@"}
Chris@39 2657 do
Chris@39 2658 if test -d "$opt"; then
Chris@39 2659 func_append libdirs " $opt"
Chris@39 2660
Chris@39 2661 elif test -f "$opt"; then
Chris@39 2662 if func_lalib_unsafe_p "$opt"; then
Chris@39 2663 func_append libs " $opt"
Chris@39 2664 else
Chris@39 2665 func_warning "\`$opt' is not a valid libtool archive"
Chris@39 2666 fi
Chris@39 2667
Chris@39 2668 else
Chris@39 2669 func_fatal_error "invalid argument \`$opt'"
Chris@39 2670 fi
Chris@39 2671 done
Chris@39 2672
Chris@39 2673 if test -n "$libs"; then
Chris@39 2674 if test -n "$lt_sysroot"; then
Chris@39 2675 sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"`
Chris@39 2676 sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;"
Chris@39 2677 else
Chris@39 2678 sysroot_cmd=
Chris@39 2679 fi
Chris@39 2680
Chris@39 2681 # Remove sysroot references
Chris@39 2682 if $opt_dry_run; then
Chris@39 2683 for lib in $libs; do
Chris@39 2684 echo "removing references to $lt_sysroot and \`=' prefixes from $lib"
Chris@39 2685 done
Chris@39 2686 else
Chris@39 2687 tmpdir=`func_mktempdir`
Chris@39 2688 for lib in $libs; do
Chris@39 2689 sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \
Chris@39 2690 > $tmpdir/tmp-la
Chris@39 2691 mv -f $tmpdir/tmp-la $lib
Chris@39 2692 done
Chris@39 2693 ${RM}r "$tmpdir"
Chris@39 2694 fi
Chris@39 2695 fi
Chris@39 2696
Chris@39 2697 if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
Chris@39 2698 for libdir in $libdirs; do
Chris@39 2699 if test -n "$finish_cmds"; then
Chris@39 2700 # Do each command in the finish commands.
Chris@39 2701 func_execute_cmds "$finish_cmds" 'admincmds="$admincmds
Chris@39 2702 '"$cmd"'"'
Chris@39 2703 fi
Chris@39 2704 if test -n "$finish_eval"; then
Chris@39 2705 # Do the single finish_eval.
Chris@39 2706 eval cmds=\"$finish_eval\"
Chris@39 2707 $opt_dry_run || eval "$cmds" || func_append admincmds "
Chris@39 2708 $cmds"
Chris@39 2709 fi
Chris@39 2710 done
Chris@39 2711 fi
Chris@39 2712
Chris@39 2713 # Exit here if they wanted silent mode.
Chris@39 2714 $opt_silent && exit $EXIT_SUCCESS
Chris@39 2715
Chris@39 2716 if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
Chris@39 2717 echo "----------------------------------------------------------------------"
Chris@39 2718 echo "Libraries have been installed in:"
Chris@39 2719 for libdir in $libdirs; do
Chris@39 2720 $ECHO " $libdir"
Chris@39 2721 done
Chris@39 2722 echo
Chris@39 2723 echo "If you ever happen to want to link against installed libraries"
Chris@39 2724 echo "in a given directory, LIBDIR, you must either use libtool, and"
Chris@39 2725 echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
Chris@39 2726 echo "flag during linking and do at least one of the following:"
Chris@39 2727 if test -n "$shlibpath_var"; then
Chris@39 2728 echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
Chris@39 2729 echo " during execution"
Chris@39 2730 fi
Chris@39 2731 if test -n "$runpath_var"; then
Chris@39 2732 echo " - add LIBDIR to the \`$runpath_var' environment variable"
Chris@39 2733 echo " during linking"
Chris@39 2734 fi
Chris@39 2735 if test -n "$hardcode_libdir_flag_spec"; then
Chris@39 2736 libdir=LIBDIR
Chris@39 2737 eval flag=\"$hardcode_libdir_flag_spec\"
Chris@39 2738
Chris@39 2739 $ECHO " - use the \`$flag' linker flag"
Chris@39 2740 fi
Chris@39 2741 if test -n "$admincmds"; then
Chris@39 2742 $ECHO " - have your system administrator run these commands:$admincmds"
Chris@39 2743 fi
Chris@39 2744 if test -f /etc/ld.so.conf; then
Chris@39 2745 echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
Chris@39 2746 fi
Chris@39 2747 echo
Chris@39 2748
Chris@39 2749 echo "See any operating system documentation about shared libraries for"
Chris@39 2750 case $host in
Chris@39 2751 solaris2.[6789]|solaris2.1[0-9])
Chris@39 2752 echo "more information, such as the ld(1), crle(1) and ld.so(8) manual"
Chris@39 2753 echo "pages."
Chris@39 2754 ;;
Chris@39 2755 *)
Chris@39 2756 echo "more information, such as the ld(1) and ld.so(8) manual pages."
Chris@39 2757 ;;
Chris@39 2758 esac
Chris@39 2759 echo "----------------------------------------------------------------------"
Chris@39 2760 fi
Chris@39 2761 exit $EXIT_SUCCESS
Chris@39 2762 }
Chris@39 2763
Chris@39 2764 test "$opt_mode" = finish && func_mode_finish ${1+"$@"}
Chris@39 2765
Chris@39 2766
Chris@39 2767 # func_mode_install arg...
Chris@39 2768 func_mode_install ()
Chris@39 2769 {
Chris@39 2770 $opt_debug
Chris@39 2771 # There may be an optional sh(1) argument at the beginning of
Chris@39 2772 # install_prog (especially on Windows NT).
Chris@39 2773 if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
Chris@39 2774 # Allow the use of GNU shtool's install command.
Chris@39 2775 case $nonopt in *shtool*) :;; *) false;; esac; then
Chris@39 2776 # Aesthetically quote it.
Chris@39 2777 func_quote_for_eval "$nonopt"
Chris@39 2778 install_prog="$func_quote_for_eval_result "
Chris@39 2779 arg=$1
Chris@39 2780 shift
Chris@39 2781 else
Chris@39 2782 install_prog=
Chris@39 2783 arg=$nonopt
Chris@39 2784 fi
Chris@39 2785
Chris@39 2786 # The real first argument should be the name of the installation program.
Chris@39 2787 # Aesthetically quote it.
Chris@39 2788 func_quote_for_eval "$arg"
Chris@39 2789 func_append install_prog "$func_quote_for_eval_result"
Chris@39 2790 install_shared_prog=$install_prog
Chris@39 2791 case " $install_prog " in
Chris@39 2792 *[\\\ /]cp\ *) install_cp=: ;;
Chris@39 2793 *) install_cp=false ;;
Chris@39 2794 esac
Chris@39 2795
Chris@39 2796 # We need to accept at least all the BSD install flags.
Chris@39 2797 dest=
Chris@39 2798 files=
Chris@39 2799 opts=
Chris@39 2800 prev=
Chris@39 2801 install_type=
Chris@39 2802 isdir=no
Chris@39 2803 stripme=
Chris@39 2804 no_mode=:
Chris@39 2805 for arg
Chris@39 2806 do
Chris@39 2807 arg2=
Chris@39 2808 if test -n "$dest"; then
Chris@39 2809 func_append files " $dest"
Chris@39 2810 dest=$arg
Chris@39 2811 continue
Chris@39 2812 fi
Chris@39 2813
Chris@39 2814 case $arg in
Chris@39 2815 -d) isdir=yes ;;
Chris@39 2816 -f)
Chris@39 2817 if $install_cp; then :; else
Chris@39 2818 prev=$arg
Chris@39 2819 fi
Chris@39 2820 ;;
Chris@39 2821 -g | -m | -o)
Chris@39 2822 prev=$arg
Chris@39 2823 ;;
Chris@39 2824 -s)
Chris@39 2825 stripme=" -s"
Chris@39 2826 continue
Chris@39 2827 ;;
Chris@39 2828 -*)
Chris@39 2829 ;;
Chris@39 2830 *)
Chris@39 2831 # If the previous option needed an argument, then skip it.
Chris@39 2832 if test -n "$prev"; then
Chris@39 2833 if test "x$prev" = x-m && test -n "$install_override_mode"; then
Chris@39 2834 arg2=$install_override_mode
Chris@39 2835 no_mode=false
Chris@39 2836 fi
Chris@39 2837 prev=
Chris@39 2838 else
Chris@39 2839 dest=$arg
Chris@39 2840 continue
Chris@39 2841 fi
Chris@39 2842 ;;
Chris@39 2843 esac
Chris@39 2844
Chris@39 2845 # Aesthetically quote the argument.
Chris@39 2846 func_quote_for_eval "$arg"
Chris@39 2847 func_append install_prog " $func_quote_for_eval_result"
Chris@39 2848 if test -n "$arg2"; then
Chris@39 2849 func_quote_for_eval "$arg2"
Chris@39 2850 fi
Chris@39 2851 func_append install_shared_prog " $func_quote_for_eval_result"
Chris@39 2852 done
Chris@39 2853
Chris@39 2854 test -z "$install_prog" && \
Chris@39 2855 func_fatal_help "you must specify an install program"
Chris@39 2856
Chris@39 2857 test -n "$prev" && \
Chris@39 2858 func_fatal_help "the \`$prev' option requires an argument"
Chris@39 2859
Chris@39 2860 if test -n "$install_override_mode" && $no_mode; then
Chris@39 2861 if $install_cp; then :; else
Chris@39 2862 func_quote_for_eval "$install_override_mode"
Chris@39 2863 func_append install_shared_prog " -m $func_quote_for_eval_result"
Chris@39 2864 fi
Chris@39 2865 fi
Chris@39 2866
Chris@39 2867 if test -z "$files"; then
Chris@39 2868 if test -z "$dest"; then
Chris@39 2869 func_fatal_help "no file or destination specified"
Chris@39 2870 else
Chris@39 2871 func_fatal_help "you must specify a destination"
Chris@39 2872 fi
Chris@39 2873 fi
Chris@39 2874
Chris@39 2875 # Strip any trailing slash from the destination.
Chris@39 2876 func_stripname '' '/' "$dest"
Chris@39 2877 dest=$func_stripname_result
Chris@39 2878
Chris@39 2879 # Check to see that the destination is a directory.
Chris@39 2880 test -d "$dest" && isdir=yes
Chris@39 2881 if test "$isdir" = yes; then
Chris@39 2882 destdir="$dest"
Chris@39 2883 destname=
Chris@39 2884 else
Chris@39 2885 func_dirname_and_basename "$dest" "" "."
Chris@39 2886 destdir="$func_dirname_result"
Chris@39 2887 destname="$func_basename_result"
Chris@39 2888
Chris@39 2889 # Not a directory, so check to see that there is only one file specified.
Chris@39 2890 set dummy $files; shift
Chris@39 2891 test "$#" -gt 1 && \
Chris@39 2892 func_fatal_help "\`$dest' is not a directory"
Chris@39 2893 fi
Chris@39 2894 case $destdir in
Chris@39 2895 [\\/]* | [A-Za-z]:[\\/]*) ;;
Chris@39 2896 *)
Chris@39 2897 for file in $files; do
Chris@39 2898 case $file in
Chris@39 2899 *.lo) ;;
Chris@39 2900 *)
Chris@39 2901 func_fatal_help "\`$destdir' must be an absolute directory name"
Chris@39 2902 ;;
Chris@39 2903 esac
Chris@39 2904 done
Chris@39 2905 ;;
Chris@39 2906 esac
Chris@39 2907
Chris@39 2908 # This variable tells wrapper scripts just to set variables rather
Chris@39 2909 # than running their programs.
Chris@39 2910 libtool_install_magic="$magic"
Chris@39 2911
Chris@39 2912 staticlibs=
Chris@39 2913 future_libdirs=
Chris@39 2914 current_libdirs=
Chris@39 2915 for file in $files; do
Chris@39 2916
Chris@39 2917 # Do each installation.
Chris@39 2918 case $file in
Chris@39 2919 *.$libext)
Chris@39 2920 # Do the static libraries later.
Chris@39 2921 func_append staticlibs " $file"
Chris@39 2922 ;;
Chris@39 2923
Chris@39 2924 *.la)
Chris@39 2925 func_resolve_sysroot "$file"
Chris@39 2926 file=$func_resolve_sysroot_result
Chris@39 2927
Chris@39 2928 # Check to see that this really is a libtool archive.
Chris@39 2929 func_lalib_unsafe_p "$file" \
Chris@39 2930 || func_fatal_help "\`$file' is not a valid libtool archive"
Chris@39 2931
Chris@39 2932 library_names=
Chris@39 2933 old_library=
Chris@39 2934 relink_command=
Chris@39 2935 func_source "$file"
Chris@39 2936
Chris@39 2937 # Add the libdir to current_libdirs if it is the destination.
Chris@39 2938 if test "X$destdir" = "X$libdir"; then
Chris@39 2939 case "$current_libdirs " in
Chris@39 2940 *" $libdir "*) ;;
Chris@39 2941 *) func_append current_libdirs " $libdir" ;;
Chris@39 2942 esac
Chris@39 2943 else
Chris@39 2944 # Note the libdir as a future libdir.
Chris@39 2945 case "$future_libdirs " in
Chris@39 2946 *" $libdir "*) ;;
Chris@39 2947 *) func_append future_libdirs " $libdir" ;;
Chris@39 2948 esac
Chris@39 2949 fi
Chris@39 2950
Chris@39 2951 func_dirname "$file" "/" ""
Chris@39 2952 dir="$func_dirname_result"
Chris@39 2953 func_append dir "$objdir"
Chris@39 2954
Chris@39 2955 if test -n "$relink_command"; then
Chris@39 2956 # Determine the prefix the user has applied to our future dir.
Chris@39 2957 inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"`
Chris@39 2958
Chris@39 2959 # Don't allow the user to place us outside of our expected
Chris@39 2960 # location b/c this prevents finding dependent libraries that
Chris@39 2961 # are installed to the same prefix.
Chris@39 2962 # At present, this check doesn't affect windows .dll's that
Chris@39 2963 # are installed into $libdir/../bin (currently, that works fine)
Chris@39 2964 # but it's something to keep an eye on.
Chris@39 2965 test "$inst_prefix_dir" = "$destdir" && \
Chris@39 2966 func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir"
Chris@39 2967
Chris@39 2968 if test -n "$inst_prefix_dir"; then
Chris@39 2969 # Stick the inst_prefix_dir data into the link command.
Chris@39 2970 relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
Chris@39 2971 else
Chris@39 2972 relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
Chris@39 2973 fi
Chris@39 2974
Chris@39 2975 func_warning "relinking \`$file'"
Chris@39 2976 func_show_eval "$relink_command" \
Chris@39 2977 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"'
Chris@39 2978 fi
Chris@39 2979
Chris@39 2980 # See the names of the shared library.
Chris@39 2981 set dummy $library_names; shift
Chris@39 2982 if test -n "$1"; then
Chris@39 2983 realname="$1"
Chris@39 2984 shift
Chris@39 2985
Chris@39 2986 srcname="$realname"
Chris@39 2987 test -n "$relink_command" && srcname="$realname"T
Chris@39 2988
Chris@39 2989 # Install the shared library and build the symlinks.
Chris@39 2990 func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \
Chris@39 2991 'exit $?'
Chris@39 2992 tstripme="$stripme"
Chris@39 2993 case $host_os in
Chris@39 2994 cygwin* | mingw* | pw32* | cegcc*)
Chris@39 2995 case $realname in
Chris@39 2996 *.dll.a)
Chris@39 2997 tstripme=""
Chris@39 2998 ;;
Chris@39 2999 esac
Chris@39 3000 ;;
Chris@39 3001 esac
Chris@39 3002 if test -n "$tstripme" && test -n "$striplib"; then
Chris@39 3003 func_show_eval "$striplib $destdir/$realname" 'exit $?'
Chris@39 3004 fi
Chris@39 3005
Chris@39 3006 if test "$#" -gt 0; then
Chris@39 3007 # Delete the old symlinks, and create new ones.
Chris@39 3008 # Try `ln -sf' first, because the `ln' binary might depend on
Chris@39 3009 # the symlink we replace! Solaris /bin/ln does not understand -f,
Chris@39 3010 # so we also need to try rm && ln -s.
Chris@39 3011 for linkname
Chris@39 3012 do
Chris@39 3013 test "$linkname" != "$realname" \
Chris@39 3014 && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })"
Chris@39 3015 done
Chris@39 3016 fi
Chris@39 3017
Chris@39 3018 # Do each command in the postinstall commands.
Chris@39 3019 lib="$destdir/$realname"
Chris@39 3020 func_execute_cmds "$postinstall_cmds" 'exit $?'
Chris@39 3021 fi
Chris@39 3022
Chris@39 3023 # Install the pseudo-library for information purposes.
Chris@39 3024 func_basename "$file"
Chris@39 3025 name="$func_basename_result"
Chris@39 3026 instname="$dir/$name"i
Chris@39 3027 func_show_eval "$install_prog $instname $destdir/$name" 'exit $?'
Chris@39 3028
Chris@39 3029 # Maybe install the static library, too.
Chris@39 3030 test -n "$old_library" && func_append staticlibs " $dir/$old_library"
Chris@39 3031 ;;
Chris@39 3032
Chris@39 3033 *.lo)
Chris@39 3034 # Install (i.e. copy) a libtool object.
Chris@39 3035
Chris@39 3036 # Figure out destination file name, if it wasn't already specified.
Chris@39 3037 if test -n "$destname"; then
Chris@39 3038 destfile="$destdir/$destname"
Chris@39 3039 else
Chris@39 3040 func_basename "$file"
Chris@39 3041 destfile="$func_basename_result"
Chris@39 3042 destfile="$destdir/$destfile"
Chris@39 3043 fi
Chris@39 3044
Chris@39 3045 # Deduce the name of the destination old-style object file.
Chris@39 3046 case $destfile in
Chris@39 3047 *.lo)
Chris@39 3048 func_lo2o "$destfile"
Chris@39 3049 staticdest=$func_lo2o_result
Chris@39 3050 ;;
Chris@39 3051 *.$objext)
Chris@39 3052 staticdest="$destfile"
Chris@39 3053 destfile=
Chris@39 3054 ;;
Chris@39 3055 *)
Chris@39 3056 func_fatal_help "cannot copy a libtool object to \`$destfile'"
Chris@39 3057 ;;
Chris@39 3058 esac
Chris@39 3059
Chris@39 3060 # Install the libtool object if requested.
Chris@39 3061 test -n "$destfile" && \
Chris@39 3062 func_show_eval "$install_prog $file $destfile" 'exit $?'
Chris@39 3063
Chris@39 3064 # Install the old object if enabled.
Chris@39 3065 if test "$build_old_libs" = yes; then
Chris@39 3066 # Deduce the name of the old-style object file.
Chris@39 3067 func_lo2o "$file"
Chris@39 3068 staticobj=$func_lo2o_result
Chris@39 3069 func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?'
Chris@39 3070 fi
Chris@39 3071 exit $EXIT_SUCCESS
Chris@39 3072 ;;
Chris@39 3073
Chris@39 3074 *)
Chris@39 3075 # Figure out destination file name, if it wasn't already specified.
Chris@39 3076 if test -n "$destname"; then
Chris@39 3077 destfile="$destdir/$destname"
Chris@39 3078 else
Chris@39 3079 func_basename "$file"
Chris@39 3080 destfile="$func_basename_result"
Chris@39 3081 destfile="$destdir/$destfile"
Chris@39 3082 fi
Chris@39 3083
Chris@39 3084 # If the file is missing, and there is a .exe on the end, strip it
Chris@39 3085 # because it is most likely a libtool script we actually want to
Chris@39 3086 # install
Chris@39 3087 stripped_ext=""
Chris@39 3088 case $file in
Chris@39 3089 *.exe)
Chris@39 3090 if test ! -f "$file"; then
Chris@39 3091 func_stripname '' '.exe' "$file"
Chris@39 3092 file=$func_stripname_result
Chris@39 3093 stripped_ext=".exe"
Chris@39 3094 fi
Chris@39 3095 ;;
Chris@39 3096 esac
Chris@39 3097
Chris@39 3098 # Do a test to see if this is really a libtool program.
Chris@39 3099 case $host in
Chris@39 3100 *cygwin* | *mingw*)
Chris@39 3101 if func_ltwrapper_executable_p "$file"; then
Chris@39 3102 func_ltwrapper_scriptname "$file"
Chris@39 3103 wrapper=$func_ltwrapper_scriptname_result
Chris@39 3104 else
Chris@39 3105 func_stripname '' '.exe' "$file"
Chris@39 3106 wrapper=$func_stripname_result
Chris@39 3107 fi
Chris@39 3108 ;;
Chris@39 3109 *)
Chris@39 3110 wrapper=$file
Chris@39 3111 ;;
Chris@39 3112 esac
Chris@39 3113 if func_ltwrapper_script_p "$wrapper"; then
Chris@39 3114 notinst_deplibs=
Chris@39 3115 relink_command=
Chris@39 3116
Chris@39 3117 func_source "$wrapper"
Chris@39 3118
Chris@39 3119 # Check the variables that should have been set.
Chris@39 3120 test -z "$generated_by_libtool_version" && \
Chris@39 3121 func_fatal_error "invalid libtool wrapper script \`$wrapper'"
Chris@39 3122
Chris@39 3123 finalize=yes
Chris@39 3124 for lib in $notinst_deplibs; do
Chris@39 3125 # Check to see that each library is installed.
Chris@39 3126 libdir=
Chris@39 3127 if test -f "$lib"; then
Chris@39 3128 func_source "$lib"
Chris@39 3129 fi
Chris@39 3130 libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test
Chris@39 3131 if test -n "$libdir" && test ! -f "$libfile"; then
Chris@39 3132 func_warning "\`$lib' has not been installed in \`$libdir'"
Chris@39 3133 finalize=no
Chris@39 3134 fi
Chris@39 3135 done
Chris@39 3136
Chris@39 3137 relink_command=
Chris@39 3138 func_source "$wrapper"
Chris@39 3139
Chris@39 3140 outputname=
Chris@39 3141 if test "$fast_install" = no && test -n "$relink_command"; then
Chris@39 3142 $opt_dry_run || {
Chris@39 3143 if test "$finalize" = yes; then
Chris@39 3144 tmpdir=`func_mktempdir`
Chris@39 3145 func_basename "$file$stripped_ext"
Chris@39 3146 file="$func_basename_result"
Chris@39 3147 outputname="$tmpdir/$file"
Chris@39 3148 # Replace the output file specification.
Chris@39 3149 relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'`
Chris@39 3150
Chris@39 3151 $opt_silent || {
Chris@39 3152 func_quote_for_expand "$relink_command"
Chris@39 3153 eval "func_echo $func_quote_for_expand_result"
Chris@39 3154 }
Chris@39 3155 if eval "$relink_command"; then :
Chris@39 3156 else
Chris@39 3157 func_error "error: relink \`$file' with the above command before installing it"
Chris@39 3158 $opt_dry_run || ${RM}r "$tmpdir"
Chris@39 3159 continue
Chris@39 3160 fi
Chris@39 3161 file="$outputname"
Chris@39 3162 else
Chris@39 3163 func_warning "cannot relink \`$file'"
Chris@39 3164 fi
Chris@39 3165 }
Chris@39 3166 else
Chris@39 3167 # Install the binary that we compiled earlier.
Chris@39 3168 file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"`
Chris@39 3169 fi
Chris@39 3170 fi
Chris@39 3171
Chris@39 3172 # remove .exe since cygwin /usr/bin/install will append another
Chris@39 3173 # one anyway
Chris@39 3174 case $install_prog,$host in
Chris@39 3175 */usr/bin/install*,*cygwin*)
Chris@39 3176 case $file:$destfile in
Chris@39 3177 *.exe:*.exe)
Chris@39 3178 # this is ok
Chris@39 3179 ;;
Chris@39 3180 *.exe:*)
Chris@39 3181 destfile=$destfile.exe
Chris@39 3182 ;;
Chris@39 3183 *:*.exe)
Chris@39 3184 func_stripname '' '.exe' "$destfile"
Chris@39 3185 destfile=$func_stripname_result
Chris@39 3186 ;;
Chris@39 3187 esac
Chris@39 3188 ;;
Chris@39 3189 esac
Chris@39 3190 func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?'
Chris@39 3191 $opt_dry_run || if test -n "$outputname"; then
Chris@39 3192 ${RM}r "$tmpdir"
Chris@39 3193 fi
Chris@39 3194 ;;
Chris@39 3195 esac
Chris@39 3196 done
Chris@39 3197
Chris@39 3198 for file in $staticlibs; do
Chris@39 3199 func_basename "$file"
Chris@39 3200 name="$func_basename_result"
Chris@39 3201
Chris@39 3202 # Set up the ranlib parameters.
Chris@39 3203 oldlib="$destdir/$name"
Chris@39 3204
Chris@39 3205 func_show_eval "$install_prog \$file \$oldlib" 'exit $?'
Chris@39 3206
Chris@39 3207 if test -n "$stripme" && test -n "$old_striplib"; then
Chris@39 3208 func_show_eval "$old_striplib $oldlib" 'exit $?'
Chris@39 3209 fi
Chris@39 3210
Chris@39 3211 # Do each command in the postinstall commands.
Chris@39 3212 func_execute_cmds "$old_postinstall_cmds" 'exit $?'
Chris@39 3213 done
Chris@39 3214
Chris@39 3215 test -n "$future_libdirs" && \
Chris@39 3216 func_warning "remember to run \`$progname --finish$future_libdirs'"
Chris@39 3217
Chris@39 3218 if test -n "$current_libdirs"; then
Chris@39 3219 # Maybe just do a dry run.
Chris@39 3220 $opt_dry_run && current_libdirs=" -n$current_libdirs"
Chris@39 3221 exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs'
Chris@39 3222 else
Chris@39 3223 exit $EXIT_SUCCESS
Chris@39 3224 fi
Chris@39 3225 }
Chris@39 3226
Chris@39 3227 test "$opt_mode" = install && func_mode_install ${1+"$@"}
Chris@39 3228
Chris@39 3229
Chris@39 3230 # func_generate_dlsyms outputname originator pic_p
Chris@39 3231 # Extract symbols from dlprefiles and create ${outputname}S.o with
Chris@39 3232 # a dlpreopen symbol table.
Chris@39 3233 func_generate_dlsyms ()
Chris@39 3234 {
Chris@39 3235 $opt_debug
Chris@39 3236 my_outputname="$1"
Chris@39 3237 my_originator="$2"
Chris@39 3238 my_pic_p="${3-no}"
Chris@39 3239 my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'`
Chris@39 3240 my_dlsyms=
Chris@39 3241
Chris@39 3242 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
Chris@39 3243 if test -n "$NM" && test -n "$global_symbol_pipe"; then
Chris@39 3244 my_dlsyms="${my_outputname}S.c"
Chris@39 3245 else
Chris@39 3246 func_error "not configured to extract global symbols from dlpreopened files"
Chris@39 3247 fi
Chris@39 3248 fi
Chris@39 3249
Chris@39 3250 if test -n "$my_dlsyms"; then
Chris@39 3251 case $my_dlsyms in
Chris@39 3252 "") ;;
Chris@39 3253 *.c)
Chris@39 3254 # Discover the nlist of each of the dlfiles.
Chris@39 3255 nlist="$output_objdir/${my_outputname}.nm"
Chris@39 3256
Chris@39 3257 func_show_eval "$RM $nlist ${nlist}S ${nlist}T"
Chris@39 3258
Chris@39 3259 # Parse the name list into a source file.
Chris@39 3260 func_verbose "creating $output_objdir/$my_dlsyms"
Chris@39 3261
Chris@39 3262 $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\
Chris@39 3263 /* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */
Chris@39 3264 /* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */
Chris@39 3265
Chris@39 3266 #ifdef __cplusplus
Chris@39 3267 extern \"C\" {
Chris@39 3268 #endif
Chris@39 3269
Chris@39 3270 #if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4))
Chris@39 3271 #pragma GCC diagnostic ignored \"-Wstrict-prototypes\"
Chris@39 3272 #endif
Chris@39 3273
Chris@39 3274 /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */
Chris@39 3275 #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE)
Chris@39 3276 /* DATA imports from DLLs on WIN32 con't be const, because runtime
Chris@39 3277 relocations are performed -- see ld's documentation on pseudo-relocs. */
Chris@39 3278 # define LT_DLSYM_CONST
Chris@39 3279 #elif defined(__osf__)
Chris@39 3280 /* This system does not cope well with relocations in const data. */
Chris@39 3281 # define LT_DLSYM_CONST
Chris@39 3282 #else
Chris@39 3283 # define LT_DLSYM_CONST const
Chris@39 3284 #endif
Chris@39 3285
Chris@39 3286 /* External symbol declarations for the compiler. */\
Chris@39 3287 "
Chris@39 3288
Chris@39 3289 if test "$dlself" = yes; then
Chris@39 3290 func_verbose "generating symbol list for \`$output'"
Chris@39 3291
Chris@39 3292 $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist"
Chris@39 3293
Chris@39 3294 # Add our own program objects to the symbol list.
Chris@39 3295 progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP`
Chris@39 3296 for progfile in $progfiles; do
Chris@39 3297 func_to_tool_file "$progfile" func_convert_file_msys_to_w32
Chris@39 3298 func_verbose "extracting global C symbols from \`$func_to_tool_file_result'"
Chris@39 3299 $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'"
Chris@39 3300 done
Chris@39 3301
Chris@39 3302 if test -n "$exclude_expsyms"; then
Chris@39 3303 $opt_dry_run || {
Chris@39 3304 eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
Chris@39 3305 eval '$MV "$nlist"T "$nlist"'
Chris@39 3306 }
Chris@39 3307 fi
Chris@39 3308
Chris@39 3309 if test -n "$export_symbols_regex"; then
Chris@39 3310 $opt_dry_run || {
Chris@39 3311 eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T'
Chris@39 3312 eval '$MV "$nlist"T "$nlist"'
Chris@39 3313 }
Chris@39 3314 fi
Chris@39 3315
Chris@39 3316 # Prepare the list of exported symbols
Chris@39 3317 if test -z "$export_symbols"; then
Chris@39 3318 export_symbols="$output_objdir/$outputname.exp"
Chris@39 3319 $opt_dry_run || {
Chris@39 3320 $RM $export_symbols
Chris@39 3321 eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
Chris@39 3322 case $host in
Chris@39 3323 *cygwin* | *mingw* | *cegcc* )
Chris@39 3324 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
Chris@39 3325 eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"'
Chris@39 3326 ;;
Chris@39 3327 esac
Chris@39 3328 }
Chris@39 3329 else
Chris@39 3330 $opt_dry_run || {
Chris@39 3331 eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"'
Chris@39 3332 eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T'
Chris@39 3333 eval '$MV "$nlist"T "$nlist"'
Chris@39 3334 case $host in
Chris@39 3335 *cygwin* | *mingw* | *cegcc* )
Chris@39 3336 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
Chris@39 3337 eval 'cat "$nlist" >> "$output_objdir/$outputname.def"'
Chris@39 3338 ;;
Chris@39 3339 esac
Chris@39 3340 }
Chris@39 3341 fi
Chris@39 3342 fi
Chris@39 3343
Chris@39 3344 for dlprefile in $dlprefiles; do
Chris@39 3345 func_verbose "extracting global C symbols from \`$dlprefile'"
Chris@39 3346 func_basename "$dlprefile"
Chris@39 3347 name="$func_basename_result"
Chris@39 3348 case $host in
Chris@39 3349 *cygwin* | *mingw* | *cegcc* )
Chris@39 3350 # if an import library, we need to obtain dlname
Chris@39 3351 if func_win32_import_lib_p "$dlprefile"; then
Chris@39 3352 func_tr_sh "$dlprefile"
Chris@39 3353 eval "curr_lafile=\$libfile_$func_tr_sh_result"
Chris@39 3354 dlprefile_dlbasename=""
Chris@39 3355 if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then
Chris@39 3356 # Use subshell, to avoid clobbering current variable values
Chris@39 3357 dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"`
Chris@39 3358 if test -n "$dlprefile_dlname" ; then
Chris@39 3359 func_basename "$dlprefile_dlname"
Chris@39 3360 dlprefile_dlbasename="$func_basename_result"
Chris@39 3361 else
Chris@39 3362 # no lafile. user explicitly requested -dlpreopen <import library>.
Chris@39 3363 $sharedlib_from_linklib_cmd "$dlprefile"
Chris@39 3364 dlprefile_dlbasename=$sharedlib_from_linklib_result
Chris@39 3365 fi
Chris@39 3366 fi
Chris@39 3367 $opt_dry_run || {
Chris@39 3368 if test -n "$dlprefile_dlbasename" ; then
Chris@39 3369 eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"'
Chris@39 3370 else
Chris@39 3371 func_warning "Could not compute DLL name from $name"
Chris@39 3372 eval '$ECHO ": $name " >> "$nlist"'
Chris@39 3373 fi
Chris@39 3374 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
Chris@39 3375 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe |
Chris@39 3376 $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'"
Chris@39 3377 }
Chris@39 3378 else # not an import lib
Chris@39 3379 $opt_dry_run || {
Chris@39 3380 eval '$ECHO ": $name " >> "$nlist"'
Chris@39 3381 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
Chris@39 3382 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
Chris@39 3383 }
Chris@39 3384 fi
Chris@39 3385 ;;
Chris@39 3386 *)
Chris@39 3387 $opt_dry_run || {
Chris@39 3388 eval '$ECHO ": $name " >> "$nlist"'
Chris@39 3389 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
Chris@39 3390 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
Chris@39 3391 }
Chris@39 3392 ;;
Chris@39 3393 esac
Chris@39 3394 done
Chris@39 3395
Chris@39 3396 $opt_dry_run || {
Chris@39 3397 # Make sure we have at least an empty file.
Chris@39 3398 test -f "$nlist" || : > "$nlist"
Chris@39 3399
Chris@39 3400 if test -n "$exclude_expsyms"; then
Chris@39 3401 $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
Chris@39 3402 $MV "$nlist"T "$nlist"
Chris@39 3403 fi
Chris@39 3404
Chris@39 3405 # Try sorting and uniquifying the output.
Chris@39 3406 if $GREP -v "^: " < "$nlist" |
Chris@39 3407 if sort -k 3 </dev/null >/dev/null 2>&1; then
Chris@39 3408 sort -k 3
Chris@39 3409 else
Chris@39 3410 sort +2
Chris@39 3411 fi |
Chris@39 3412 uniq > "$nlist"S; then
Chris@39 3413 :
Chris@39 3414 else
Chris@39 3415 $GREP -v "^: " < "$nlist" > "$nlist"S
Chris@39 3416 fi
Chris@39 3417
Chris@39 3418 if test -f "$nlist"S; then
Chris@39 3419 eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"'
Chris@39 3420 else
Chris@39 3421 echo '/* NONE */' >> "$output_objdir/$my_dlsyms"
Chris@39 3422 fi
Chris@39 3423
Chris@39 3424 echo >> "$output_objdir/$my_dlsyms" "\
Chris@39 3425
Chris@39 3426 /* The mapping between symbol names and symbols. */
Chris@39 3427 typedef struct {
Chris@39 3428 const char *name;
Chris@39 3429 void *address;
Chris@39 3430 } lt_dlsymlist;
Chris@39 3431 extern LT_DLSYM_CONST lt_dlsymlist
Chris@39 3432 lt_${my_prefix}_LTX_preloaded_symbols[];
Chris@39 3433 LT_DLSYM_CONST lt_dlsymlist
Chris@39 3434 lt_${my_prefix}_LTX_preloaded_symbols[] =
Chris@39 3435 {\
Chris@39 3436 { \"$my_originator\", (void *) 0 },"
Chris@39 3437
Chris@39 3438 case $need_lib_prefix in
Chris@39 3439 no)
Chris@39 3440 eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms"
Chris@39 3441 ;;
Chris@39 3442 *)
Chris@39 3443 eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms"
Chris@39 3444 ;;
Chris@39 3445 esac
Chris@39 3446 echo >> "$output_objdir/$my_dlsyms" "\
Chris@39 3447 {0, (void *) 0}
Chris@39 3448 };
Chris@39 3449
Chris@39 3450 /* This works around a problem in FreeBSD linker */
Chris@39 3451 #ifdef FREEBSD_WORKAROUND
Chris@39 3452 static const void *lt_preloaded_setup() {
Chris@39 3453 return lt_${my_prefix}_LTX_preloaded_symbols;
Chris@39 3454 }
Chris@39 3455 #endif
Chris@39 3456
Chris@39 3457 #ifdef __cplusplus
Chris@39 3458 }
Chris@39 3459 #endif\
Chris@39 3460 "
Chris@39 3461 } # !$opt_dry_run
Chris@39 3462
Chris@39 3463 pic_flag_for_symtable=
Chris@39 3464 case "$compile_command " in
Chris@39 3465 *" -static "*) ;;
Chris@39 3466 *)
Chris@39 3467 case $host in
Chris@39 3468 # compiling the symbol table file with pic_flag works around
Chris@39 3469 # a FreeBSD bug that causes programs to crash when -lm is
Chris@39 3470 # linked before any other PIC object. But we must not use
Chris@39 3471 # pic_flag when linking with -static. The problem exists in
Chris@39 3472 # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
Chris@39 3473 *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
Chris@39 3474 pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;;
Chris@39 3475 *-*-hpux*)
Chris@39 3476 pic_flag_for_symtable=" $pic_flag" ;;
Chris@39 3477 *)
Chris@39 3478 if test "X$my_pic_p" != Xno; then
Chris@39 3479 pic_flag_for_symtable=" $pic_flag"
Chris@39 3480 fi
Chris@39 3481 ;;
Chris@39 3482 esac
Chris@39 3483 ;;
Chris@39 3484 esac
Chris@39 3485 symtab_cflags=
Chris@39 3486 for arg in $LTCFLAGS; do
Chris@39 3487 case $arg in
Chris@39 3488 -pie | -fpie | -fPIE) ;;
Chris@39 3489 *) func_append symtab_cflags " $arg" ;;
Chris@39 3490 esac
Chris@39 3491 done
Chris@39 3492
Chris@39 3493 # Now compile the dynamic symbol file.
Chris@39 3494 func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?'
Chris@39 3495
Chris@39 3496 # Clean up the generated files.
Chris@39 3497 func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"'
Chris@39 3498
Chris@39 3499 # Transform the symbol file into the correct name.
Chris@39 3500 symfileobj="$output_objdir/${my_outputname}S.$objext"
Chris@39 3501 case $host in
Chris@39 3502 *cygwin* | *mingw* | *cegcc* )
Chris@39 3503 if test -f "$output_objdir/$my_outputname.def"; then
Chris@39 3504 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
Chris@39 3505 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
Chris@39 3506 else
Chris@39 3507 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"`
Chris@39 3508 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"`
Chris@39 3509 fi
Chris@39 3510 ;;
Chris@39 3511 *)
Chris@39 3512 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"`
Chris@39 3513 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"`
Chris@39 3514 ;;
Chris@39 3515 esac
Chris@39 3516 ;;
Chris@39 3517 *)
Chris@39 3518 func_fatal_error "unknown suffix for \`$my_dlsyms'"
Chris@39 3519 ;;
Chris@39 3520 esac
Chris@39 3521 else
Chris@39 3522 # We keep going just in case the user didn't refer to
Chris@39 3523 # lt_preloaded_symbols. The linker will fail if global_symbol_pipe
Chris@39 3524 # really was required.
Chris@39 3525
Chris@39 3526 # Nullify the symbol file.
Chris@39 3527 compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"`
Chris@39 3528 finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"`
Chris@39 3529 fi
Chris@39 3530 }
Chris@39 3531
Chris@39 3532 # func_win32_libid arg
Chris@39 3533 # return the library type of file 'arg'
Chris@39 3534 #
Chris@39 3535 # Need a lot of goo to handle *both* DLLs and import libs
Chris@39 3536 # Has to be a shell function in order to 'eat' the argument
Chris@39 3537 # that is supplied when $file_magic_command is called.
Chris@39 3538 # Despite the name, also deal with 64 bit binaries.
Chris@39 3539 func_win32_libid ()
Chris@39 3540 {
Chris@39 3541 $opt_debug
Chris@39 3542 win32_libid_type="unknown"
Chris@39 3543 win32_fileres=`file -L $1 2>/dev/null`
Chris@39 3544 case $win32_fileres in
Chris@39 3545 *ar\ archive\ import\ library*) # definitely import
Chris@39 3546 win32_libid_type="x86 archive import"
Chris@39 3547 ;;
Chris@39 3548 *ar\ archive*) # could be an import, or static
Chris@39 3549 # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD.
Chris@39 3550 if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null |
Chris@39 3551 $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then
Chris@39 3552 func_to_tool_file "$1" func_convert_file_msys_to_w32
Chris@39 3553 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" |
Chris@39 3554 $SED -n -e '
Chris@39 3555 1,100{
Chris@39 3556 / I /{
Chris@39 3557 s,.*,import,
Chris@39 3558 p
Chris@39 3559 q
Chris@39 3560 }
Chris@39 3561 }'`
Chris@39 3562 case $win32_nmres in
Chris@39 3563 import*) win32_libid_type="x86 archive import";;
Chris@39 3564 *) win32_libid_type="x86 archive static";;
Chris@39 3565 esac
Chris@39 3566 fi
Chris@39 3567 ;;
Chris@39 3568 *DLL*)
Chris@39 3569 win32_libid_type="x86 DLL"
Chris@39 3570 ;;
Chris@39 3571 *executable*) # but shell scripts are "executable" too...
Chris@39 3572 case $win32_fileres in
Chris@39 3573 *MS\ Windows\ PE\ Intel*)
Chris@39 3574 win32_libid_type="x86 DLL"
Chris@39 3575 ;;
Chris@39 3576 esac
Chris@39 3577 ;;
Chris@39 3578 esac
Chris@39 3579 $ECHO "$win32_libid_type"
Chris@39 3580 }
Chris@39 3581
Chris@39 3582 # func_cygming_dll_for_implib ARG
Chris@39 3583 #
Chris@39 3584 # Platform-specific function to extract the
Chris@39 3585 # name of the DLL associated with the specified
Chris@39 3586 # import library ARG.
Chris@39 3587 # Invoked by eval'ing the libtool variable
Chris@39 3588 # $sharedlib_from_linklib_cmd
Chris@39 3589 # Result is available in the variable
Chris@39 3590 # $sharedlib_from_linklib_result
Chris@39 3591 func_cygming_dll_for_implib ()
Chris@39 3592 {
Chris@39 3593 $opt_debug
Chris@39 3594 sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"`
Chris@39 3595 }
Chris@39 3596
Chris@39 3597 # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs
Chris@39 3598 #
Chris@39 3599 # The is the core of a fallback implementation of a
Chris@39 3600 # platform-specific function to extract the name of the
Chris@39 3601 # DLL associated with the specified import library LIBNAME.
Chris@39 3602 #
Chris@39 3603 # SECTION_NAME is either .idata$6 or .idata$7, depending
Chris@39 3604 # on the platform and compiler that created the implib.
Chris@39 3605 #
Chris@39 3606 # Echos the name of the DLL associated with the
Chris@39 3607 # specified import library.
Chris@39 3608 func_cygming_dll_for_implib_fallback_core ()
Chris@39 3609 {
Chris@39 3610 $opt_debug
Chris@39 3611 match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"`
Chris@39 3612 $OBJDUMP -s --section "$1" "$2" 2>/dev/null |
Chris@39 3613 $SED '/^Contents of section '"$match_literal"':/{
Chris@39 3614 # Place marker at beginning of archive member dllname section
Chris@39 3615 s/.*/====MARK====/
Chris@39 3616 p
Chris@39 3617 d
Chris@39 3618 }
Chris@39 3619 # These lines can sometimes be longer than 43 characters, but
Chris@39 3620 # are always uninteresting
Chris@39 3621 /:[ ]*file format pe[i]\{,1\}-/d
Chris@39 3622 /^In archive [^:]*:/d
Chris@39 3623 # Ensure marker is printed
Chris@39 3624 /^====MARK====/p
Chris@39 3625 # Remove all lines with less than 43 characters
Chris@39 3626 /^.\{43\}/!d
Chris@39 3627 # From remaining lines, remove first 43 characters
Chris@39 3628 s/^.\{43\}//' |
Chris@39 3629 $SED -n '
Chris@39 3630 # Join marker and all lines until next marker into a single line
Chris@39 3631 /^====MARK====/ b para
Chris@39 3632 H
Chris@39 3633 $ b para
Chris@39 3634 b
Chris@39 3635 :para
Chris@39 3636 x
Chris@39 3637 s/\n//g
Chris@39 3638 # Remove the marker
Chris@39 3639 s/^====MARK====//
Chris@39 3640 # Remove trailing dots and whitespace
Chris@39 3641 s/[\. \t]*$//
Chris@39 3642 # Print
Chris@39 3643 /./p' |
Chris@39 3644 # we now have a list, one entry per line, of the stringified
Chris@39 3645 # contents of the appropriate section of all members of the
Chris@39 3646 # archive which possess that section. Heuristic: eliminate
Chris@39 3647 # all those which have a first or second character that is
Chris@39 3648 # a '.' (that is, objdump's representation of an unprintable
Chris@39 3649 # character.) This should work for all archives with less than
Chris@39 3650 # 0x302f exports -- but will fail for DLLs whose name actually
Chris@39 3651 # begins with a literal '.' or a single character followed by
Chris@39 3652 # a '.'.
Chris@39 3653 #
Chris@39 3654 # Of those that remain, print the first one.
Chris@39 3655 $SED -e '/^\./d;/^.\./d;q'
Chris@39 3656 }
Chris@39 3657
Chris@39 3658 # func_cygming_gnu_implib_p ARG
Chris@39 3659 # This predicate returns with zero status (TRUE) if
Chris@39 3660 # ARG is a GNU/binutils-style import library. Returns
Chris@39 3661 # with nonzero status (FALSE) otherwise.
Chris@39 3662 func_cygming_gnu_implib_p ()
Chris@39 3663 {
Chris@39 3664 $opt_debug
Chris@39 3665 func_to_tool_file "$1" func_convert_file_msys_to_w32
Chris@39 3666 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'`
Chris@39 3667 test -n "$func_cygming_gnu_implib_tmp"
Chris@39 3668 }
Chris@39 3669
Chris@39 3670 # func_cygming_ms_implib_p ARG
Chris@39 3671 # This predicate returns with zero status (TRUE) if
Chris@39 3672 # ARG is an MS-style import library. Returns
Chris@39 3673 # with nonzero status (FALSE) otherwise.
Chris@39 3674 func_cygming_ms_implib_p ()
Chris@39 3675 {
Chris@39 3676 $opt_debug
Chris@39 3677 func_to_tool_file "$1" func_convert_file_msys_to_w32
Chris@39 3678 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'`
Chris@39 3679 test -n "$func_cygming_ms_implib_tmp"
Chris@39 3680 }
Chris@39 3681
Chris@39 3682 # func_cygming_dll_for_implib_fallback ARG
Chris@39 3683 # Platform-specific function to extract the
Chris@39 3684 # name of the DLL associated with the specified
Chris@39 3685 # import library ARG.
Chris@39 3686 #
Chris@39 3687 # This fallback implementation is for use when $DLLTOOL
Chris@39 3688 # does not support the --identify-strict option.
Chris@39 3689 # Invoked by eval'ing the libtool variable
Chris@39 3690 # $sharedlib_from_linklib_cmd
Chris@39 3691 # Result is available in the variable
Chris@39 3692 # $sharedlib_from_linklib_result
Chris@39 3693 func_cygming_dll_for_implib_fallback ()
Chris@39 3694 {
Chris@39 3695 $opt_debug
Chris@39 3696 if func_cygming_gnu_implib_p "$1" ; then
Chris@39 3697 # binutils import library
Chris@39 3698 sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"`
Chris@39 3699 elif func_cygming_ms_implib_p "$1" ; then
Chris@39 3700 # ms-generated import library
Chris@39 3701 sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"`
Chris@39 3702 else
Chris@39 3703 # unknown
Chris@39 3704 sharedlib_from_linklib_result=""
Chris@39 3705 fi
Chris@39 3706 }
Chris@39 3707
Chris@39 3708
Chris@39 3709 # func_extract_an_archive dir oldlib
Chris@39 3710 func_extract_an_archive ()
Chris@39 3711 {
Chris@39 3712 $opt_debug
Chris@39 3713 f_ex_an_ar_dir="$1"; shift
Chris@39 3714 f_ex_an_ar_oldlib="$1"
Chris@39 3715 if test "$lock_old_archive_extraction" = yes; then
Chris@39 3716 lockfile=$f_ex_an_ar_oldlib.lock
Chris@39 3717 until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do
Chris@39 3718 func_echo "Waiting for $lockfile to be removed"
Chris@39 3719 sleep 2
Chris@39 3720 done
Chris@39 3721 fi
Chris@39 3722 func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \
Chris@39 3723 'stat=$?; rm -f "$lockfile"; exit $stat'
Chris@39 3724 if test "$lock_old_archive_extraction" = yes; then
Chris@39 3725 $opt_dry_run || rm -f "$lockfile"
Chris@39 3726 fi
Chris@39 3727 if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
Chris@39 3728 :
Chris@39 3729 else
Chris@39 3730 func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib"
Chris@39 3731 fi
Chris@39 3732 }
Chris@39 3733
Chris@39 3734
Chris@39 3735 # func_extract_archives gentop oldlib ...
Chris@39 3736 func_extract_archives ()
Chris@39 3737 {
Chris@39 3738 $opt_debug
Chris@39 3739 my_gentop="$1"; shift
Chris@39 3740 my_oldlibs=${1+"$@"}
Chris@39 3741 my_oldobjs=""
Chris@39 3742 my_xlib=""
Chris@39 3743 my_xabs=""
Chris@39 3744 my_xdir=""
Chris@39 3745
Chris@39 3746 for my_xlib in $my_oldlibs; do
Chris@39 3747 # Extract the objects.
Chris@39 3748 case $my_xlib in
Chris@39 3749 [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;;
Chris@39 3750 *) my_xabs=`pwd`"/$my_xlib" ;;
Chris@39 3751 esac
Chris@39 3752 func_basename "$my_xlib"
Chris@39 3753 my_xlib="$func_basename_result"
Chris@39 3754 my_xlib_u=$my_xlib
Chris@39 3755 while :; do
Chris@39 3756 case " $extracted_archives " in
Chris@39 3757 *" $my_xlib_u "*)
Chris@39 3758 func_arith $extracted_serial + 1
Chris@39 3759 extracted_serial=$func_arith_result
Chris@39 3760 my_xlib_u=lt$extracted_serial-$my_xlib ;;
Chris@39 3761 *) break ;;
Chris@39 3762 esac
Chris@39 3763 done
Chris@39 3764 extracted_archives="$extracted_archives $my_xlib_u"
Chris@39 3765 my_xdir="$my_gentop/$my_xlib_u"
Chris@39 3766
Chris@39 3767 func_mkdir_p "$my_xdir"
Chris@39 3768
Chris@39 3769 case $host in
Chris@39 3770 *-darwin*)
Chris@39 3771 func_verbose "Extracting $my_xabs"
Chris@39 3772 # Do not bother doing anything if just a dry run
Chris@39 3773 $opt_dry_run || {
Chris@39 3774 darwin_orig_dir=`pwd`
Chris@39 3775 cd $my_xdir || exit $?
Chris@39 3776 darwin_archive=$my_xabs
Chris@39 3777 darwin_curdir=`pwd`
Chris@39 3778 darwin_base_archive=`basename "$darwin_archive"`
Chris@39 3779 darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true`
Chris@39 3780 if test -n "$darwin_arches"; then
Chris@39 3781 darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'`
Chris@39 3782 darwin_arch=
Chris@39 3783 func_verbose "$darwin_base_archive has multiple architectures $darwin_arches"
Chris@39 3784 for darwin_arch in $darwin_arches ; do
Chris@39 3785 func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}"
Chris@39 3786 $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}"
Chris@39 3787 cd "unfat-$$/${darwin_base_archive}-${darwin_arch}"
Chris@39 3788 func_extract_an_archive "`pwd`" "${darwin_base_archive}"
Chris@39 3789 cd "$darwin_curdir"
Chris@39 3790 $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}"
Chris@39 3791 done # $darwin_arches
Chris@39 3792 ## Okay now we've a bunch of thin objects, gotta fatten them up :)
Chris@39 3793 darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u`
Chris@39 3794 darwin_file=
Chris@39 3795 darwin_files=
Chris@39 3796 for darwin_file in $darwin_filelist; do
Chris@39 3797 darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP`
Chris@39 3798 $LIPO -create -output "$darwin_file" $darwin_files
Chris@39 3799 done # $darwin_filelist
Chris@39 3800 $RM -rf unfat-$$
Chris@39 3801 cd "$darwin_orig_dir"
Chris@39 3802 else
Chris@39 3803 cd $darwin_orig_dir
Chris@39 3804 func_extract_an_archive "$my_xdir" "$my_xabs"
Chris@39 3805 fi # $darwin_arches
Chris@39 3806 } # !$opt_dry_run
Chris@39 3807 ;;
Chris@39 3808 *)
Chris@39 3809 func_extract_an_archive "$my_xdir" "$my_xabs"
Chris@39 3810 ;;
Chris@39 3811 esac
Chris@39 3812 my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP`
Chris@39 3813 done
Chris@39 3814
Chris@39 3815 func_extract_archives_result="$my_oldobjs"
Chris@39 3816 }
Chris@39 3817
Chris@39 3818
Chris@39 3819 # func_emit_wrapper [arg=no]
Chris@39 3820 #
Chris@39 3821 # Emit a libtool wrapper script on stdout.
Chris@39 3822 # Don't directly open a file because we may want to
Chris@39 3823 # incorporate the script contents within a cygwin/mingw
Chris@39 3824 # wrapper executable. Must ONLY be called from within
Chris@39 3825 # func_mode_link because it depends on a number of variables
Chris@39 3826 # set therein.
Chris@39 3827 #
Chris@39 3828 # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR
Chris@39 3829 # variable will take. If 'yes', then the emitted script
Chris@39 3830 # will assume that the directory in which it is stored is
Chris@39 3831 # the $objdir directory. This is a cygwin/mingw-specific
Chris@39 3832 # behavior.
Chris@39 3833 func_emit_wrapper ()
Chris@39 3834 {
Chris@39 3835 func_emit_wrapper_arg1=${1-no}
Chris@39 3836
Chris@39 3837 $ECHO "\
Chris@39 3838 #! $SHELL
Chris@39 3839
Chris@39 3840 # $output - temporary wrapper script for $objdir/$outputname
Chris@39 3841 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
Chris@39 3842 #
Chris@39 3843 # The $output program cannot be directly executed until all the libtool
Chris@39 3844 # libraries that it depends on are installed.
Chris@39 3845 #
Chris@39 3846 # This wrapper script should never be moved out of the build directory.
Chris@39 3847 # If it is, it will not operate correctly.
Chris@39 3848
Chris@39 3849 # Sed substitution that helps us do robust quoting. It backslashifies
Chris@39 3850 # metacharacters that are still active within double-quoted strings.
Chris@39 3851 sed_quote_subst='$sed_quote_subst'
Chris@39 3852
Chris@39 3853 # Be Bourne compatible
Chris@39 3854 if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then
Chris@39 3855 emulate sh
Chris@39 3856 NULLCMD=:
Chris@39 3857 # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which
Chris@39 3858 # is contrary to our usage. Disable this feature.
Chris@39 3859 alias -g '\${1+\"\$@\"}'='\"\$@\"'
Chris@39 3860 setopt NO_GLOB_SUBST
Chris@39 3861 else
Chris@39 3862 case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac
Chris@39 3863 fi
Chris@39 3864 BIN_SH=xpg4; export BIN_SH # for Tru64
Chris@39 3865 DUALCASE=1; export DUALCASE # for MKS sh
Chris@39 3866
Chris@39 3867 # The HP-UX ksh and POSIX shell print the target directory to stdout
Chris@39 3868 # if CDPATH is set.
Chris@39 3869 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
Chris@39 3870
Chris@39 3871 relink_command=\"$relink_command\"
Chris@39 3872
Chris@39 3873 # This environment variable determines our operation mode.
Chris@39 3874 if test \"\$libtool_install_magic\" = \"$magic\"; then
Chris@39 3875 # install mode needs the following variables:
Chris@39 3876 generated_by_libtool_version='$macro_version'
Chris@39 3877 notinst_deplibs='$notinst_deplibs'
Chris@39 3878 else
Chris@39 3879 # When we are sourced in execute mode, \$file and \$ECHO are already set.
Chris@39 3880 if test \"\$libtool_execute_magic\" != \"$magic\"; then
Chris@39 3881 file=\"\$0\""
Chris@39 3882
Chris@39 3883 qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"`
Chris@39 3884 $ECHO "\
Chris@39 3885
Chris@39 3886 # A function that is used when there is no print builtin or printf.
Chris@39 3887 func_fallback_echo ()
Chris@39 3888 {
Chris@39 3889 eval 'cat <<_LTECHO_EOF
Chris@39 3890 \$1
Chris@39 3891 _LTECHO_EOF'
Chris@39 3892 }
Chris@39 3893 ECHO=\"$qECHO\"
Chris@39 3894 fi
Chris@39 3895
Chris@39 3896 # Very basic option parsing. These options are (a) specific to
Chris@39 3897 # the libtool wrapper, (b) are identical between the wrapper
Chris@39 3898 # /script/ and the wrapper /executable/ which is used only on
Chris@39 3899 # windows platforms, and (c) all begin with the string "--lt-"
Chris@39 3900 # (application programs are unlikely to have options which match
Chris@39 3901 # this pattern).
Chris@39 3902 #
Chris@39 3903 # There are only two supported options: --lt-debug and
Chris@39 3904 # --lt-dump-script. There is, deliberately, no --lt-help.
Chris@39 3905 #
Chris@39 3906 # The first argument to this parsing function should be the
Chris@39 3907 # script's $0 value, followed by "$@".
Chris@39 3908 lt_option_debug=
Chris@39 3909 func_parse_lt_options ()
Chris@39 3910 {
Chris@39 3911 lt_script_arg0=\$0
Chris@39 3912 shift
Chris@39 3913 for lt_opt
Chris@39 3914 do
Chris@39 3915 case \"\$lt_opt\" in
Chris@39 3916 --lt-debug) lt_option_debug=1 ;;
Chris@39 3917 --lt-dump-script)
Chris@39 3918 lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\`
Chris@39 3919 test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=.
Chris@39 3920 lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\`
Chris@39 3921 cat \"\$lt_dump_D/\$lt_dump_F\"
Chris@39 3922 exit 0
Chris@39 3923 ;;
Chris@39 3924 --lt-*)
Chris@39 3925 \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2
Chris@39 3926 exit 1
Chris@39 3927 ;;
Chris@39 3928 esac
Chris@39 3929 done
Chris@39 3930
Chris@39 3931 # Print the debug banner immediately:
Chris@39 3932 if test -n \"\$lt_option_debug\"; then
Chris@39 3933 echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2
Chris@39 3934 fi
Chris@39 3935 }
Chris@39 3936
Chris@39 3937 # Used when --lt-debug. Prints its arguments to stdout
Chris@39 3938 # (redirection is the responsibility of the caller)
Chris@39 3939 func_lt_dump_args ()
Chris@39 3940 {
Chris@39 3941 lt_dump_args_N=1;
Chris@39 3942 for lt_arg
Chris@39 3943 do
Chris@39 3944 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\"
Chris@39 3945 lt_dump_args_N=\`expr \$lt_dump_args_N + 1\`
Chris@39 3946 done
Chris@39 3947 }
Chris@39 3948
Chris@39 3949 # Core function for launching the target application
Chris@39 3950 func_exec_program_core ()
Chris@39 3951 {
Chris@39 3952 "
Chris@39 3953 case $host in
Chris@39 3954 # Backslashes separate directories on plain windows
Chris@39 3955 *-*-mingw | *-*-os2* | *-cegcc*)
Chris@39 3956 $ECHO "\
Chris@39 3957 if test -n \"\$lt_option_debug\"; then
Chris@39 3958 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2
Chris@39 3959 func_lt_dump_args \${1+\"\$@\"} 1>&2
Chris@39 3960 fi
Chris@39 3961 exec \"\$progdir\\\\\$program\" \${1+\"\$@\"}
Chris@39 3962 "
Chris@39 3963 ;;
Chris@39 3964
Chris@39 3965 *)
Chris@39 3966 $ECHO "\
Chris@39 3967 if test -n \"\$lt_option_debug\"; then
Chris@39 3968 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2
Chris@39 3969 func_lt_dump_args \${1+\"\$@\"} 1>&2
Chris@39 3970 fi
Chris@39 3971 exec \"\$progdir/\$program\" \${1+\"\$@\"}
Chris@39 3972 "
Chris@39 3973 ;;
Chris@39 3974 esac
Chris@39 3975 $ECHO "\
Chris@39 3976 \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2
Chris@39 3977 exit 1
Chris@39 3978 }
Chris@39 3979
Chris@39 3980 # A function to encapsulate launching the target application
Chris@39 3981 # Strips options in the --lt-* namespace from \$@ and
Chris@39 3982 # launches target application with the remaining arguments.
Chris@39 3983 func_exec_program ()
Chris@39 3984 {
Chris@39 3985 for lt_wr_arg
Chris@39 3986 do
Chris@39 3987 case \$lt_wr_arg in
Chris@39 3988 --lt-*) ;;
Chris@39 3989 *) set x \"\$@\" \"\$lt_wr_arg\"; shift;;
Chris@39 3990 esac
Chris@39 3991 shift
Chris@39 3992 done
Chris@39 3993 func_exec_program_core \${1+\"\$@\"}
Chris@39 3994 }
Chris@39 3995
Chris@39 3996 # Parse options
Chris@39 3997 func_parse_lt_options \"\$0\" \${1+\"\$@\"}
Chris@39 3998
Chris@39 3999 # Find the directory that this script lives in.
Chris@39 4000 thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\`
Chris@39 4001 test \"x\$thisdir\" = \"x\$file\" && thisdir=.
Chris@39 4002
Chris@39 4003 # Follow symbolic links until we get to the real thisdir.
Chris@39 4004 file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\`
Chris@39 4005 while test -n \"\$file\"; do
Chris@39 4006 destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\`
Chris@39 4007
Chris@39 4008 # If there was a directory component, then change thisdir.
Chris@39 4009 if test \"x\$destdir\" != \"x\$file\"; then
Chris@39 4010 case \"\$destdir\" in
Chris@39 4011 [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
Chris@39 4012 *) thisdir=\"\$thisdir/\$destdir\" ;;
Chris@39 4013 esac
Chris@39 4014 fi
Chris@39 4015
Chris@39 4016 file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\`
Chris@39 4017 file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\`
Chris@39 4018 done
Chris@39 4019
Chris@39 4020 # Usually 'no', except on cygwin/mingw when embedded into
Chris@39 4021 # the cwrapper.
Chris@39 4022 WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1
Chris@39 4023 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then
Chris@39 4024 # special case for '.'
Chris@39 4025 if test \"\$thisdir\" = \".\"; then
Chris@39 4026 thisdir=\`pwd\`
Chris@39 4027 fi
Chris@39 4028 # remove .libs from thisdir
Chris@39 4029 case \"\$thisdir\" in
Chris@39 4030 *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;;
Chris@39 4031 $objdir ) thisdir=. ;;
Chris@39 4032 esac
Chris@39 4033 fi
Chris@39 4034
Chris@39 4035 # Try to get the absolute directory name.
Chris@39 4036 absdir=\`cd \"\$thisdir\" && pwd\`
Chris@39 4037 test -n \"\$absdir\" && thisdir=\"\$absdir\"
Chris@39 4038 "
Chris@39 4039
Chris@39 4040 if test "$fast_install" = yes; then
Chris@39 4041 $ECHO "\
Chris@39 4042 program=lt-'$outputname'$exeext
Chris@39 4043 progdir=\"\$thisdir/$objdir\"
Chris@39 4044
Chris@39 4045 if test ! -f \"\$progdir/\$program\" ||
Chris@39 4046 { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\
Chris@39 4047 test \"X\$file\" != \"X\$progdir/\$program\"; }; then
Chris@39 4048
Chris@39 4049 file=\"\$\$-\$program\"
Chris@39 4050
Chris@39 4051 if test ! -d \"\$progdir\"; then
Chris@39 4052 $MKDIR \"\$progdir\"
Chris@39 4053 else
Chris@39 4054 $RM \"\$progdir/\$file\"
Chris@39 4055 fi"
Chris@39 4056
Chris@39 4057 $ECHO "\
Chris@39 4058
Chris@39 4059 # relink executable if necessary
Chris@39 4060 if test -n \"\$relink_command\"; then
Chris@39 4061 if relink_command_output=\`eval \$relink_command 2>&1\`; then :
Chris@39 4062 else
Chris@39 4063 $ECHO \"\$relink_command_output\" >&2
Chris@39 4064 $RM \"\$progdir/\$file\"
Chris@39 4065 exit 1
Chris@39 4066 fi
Chris@39 4067 fi
Chris@39 4068
Chris@39 4069 $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
Chris@39 4070 { $RM \"\$progdir/\$program\";
Chris@39 4071 $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; }
Chris@39 4072 $RM \"\$progdir/\$file\"
Chris@39 4073 fi"
Chris@39 4074 else
Chris@39 4075 $ECHO "\
Chris@39 4076 program='$outputname'
Chris@39 4077 progdir=\"\$thisdir/$objdir\"
Chris@39 4078 "
Chris@39 4079 fi
Chris@39 4080
Chris@39 4081 $ECHO "\
Chris@39 4082
Chris@39 4083 if test -f \"\$progdir/\$program\"; then"
Chris@39 4084
Chris@39 4085 # fixup the dll searchpath if we need to.
Chris@39 4086 #
Chris@39 4087 # Fix the DLL searchpath if we need to. Do this before prepending
Chris@39 4088 # to shlibpath, because on Windows, both are PATH and uninstalled
Chris@39 4089 # libraries must come first.
Chris@39 4090 if test -n "$dllsearchpath"; then
Chris@39 4091 $ECHO "\
Chris@39 4092 # Add the dll search path components to the executable PATH
Chris@39 4093 PATH=$dllsearchpath:\$PATH
Chris@39 4094 "
Chris@39 4095 fi
Chris@39 4096
Chris@39 4097 # Export our shlibpath_var if we have one.
Chris@39 4098 if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
Chris@39 4099 $ECHO "\
Chris@39 4100 # Add our own library path to $shlibpath_var
Chris@39 4101 $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
Chris@39 4102
Chris@39 4103 # Some systems cannot cope with colon-terminated $shlibpath_var
Chris@39 4104 # The second colon is a workaround for a bug in BeOS R4 sed
Chris@39 4105 $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\`
Chris@39 4106
Chris@39 4107 export $shlibpath_var
Chris@39 4108 "
Chris@39 4109 fi
Chris@39 4110
Chris@39 4111 $ECHO "\
Chris@39 4112 if test \"\$libtool_execute_magic\" != \"$magic\"; then
Chris@39 4113 # Run the actual program with our arguments.
Chris@39 4114 func_exec_program \${1+\"\$@\"}
Chris@39 4115 fi
Chris@39 4116 else
Chris@39 4117 # The program doesn't exist.
Chris@39 4118 \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2
Chris@39 4119 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2
Chris@39 4120 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2
Chris@39 4121 exit 1
Chris@39 4122 fi
Chris@39 4123 fi\
Chris@39 4124 "
Chris@39 4125 }
Chris@39 4126
Chris@39 4127
Chris@39 4128 # func_emit_cwrapperexe_src
Chris@39 4129 # emit the source code for a wrapper executable on stdout
Chris@39 4130 # Must ONLY be called from within func_mode_link because
Chris@39 4131 # it depends on a number of variable set therein.
Chris@39 4132 func_emit_cwrapperexe_src ()
Chris@39 4133 {
Chris@39 4134 cat <<EOF
Chris@39 4135
Chris@39 4136 /* $cwrappersource - temporary wrapper executable for $objdir/$outputname
Chris@39 4137 Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
Chris@39 4138
Chris@39 4139 The $output program cannot be directly executed until all the libtool
Chris@39 4140 libraries that it depends on are installed.
Chris@39 4141
Chris@39 4142 This wrapper executable should never be moved out of the build directory.
Chris@39 4143 If it is, it will not operate correctly.
Chris@39 4144 */
Chris@39 4145 EOF
Chris@39 4146 cat <<"EOF"
Chris@39 4147 #ifdef _MSC_VER
Chris@39 4148 # define _CRT_SECURE_NO_DEPRECATE 1
Chris@39 4149 #endif
Chris@39 4150 #include <stdio.h>
Chris@39 4151 #include <stdlib.h>
Chris@39 4152 #ifdef _MSC_VER
Chris@39 4153 # include <direct.h>
Chris@39 4154 # include <process.h>
Chris@39 4155 # include <io.h>
Chris@39 4156 #else
Chris@39 4157 # include <unistd.h>
Chris@39 4158 # include <stdint.h>
Chris@39 4159 # ifdef __CYGWIN__
Chris@39 4160 # include <io.h>
Chris@39 4161 # endif
Chris@39 4162 #endif
Chris@39 4163 #include <malloc.h>
Chris@39 4164 #include <stdarg.h>
Chris@39 4165 #include <assert.h>
Chris@39 4166 #include <string.h>
Chris@39 4167 #include <ctype.h>
Chris@39 4168 #include <errno.h>
Chris@39 4169 #include <fcntl.h>
Chris@39 4170 #include <sys/stat.h>
Chris@39 4171
Chris@39 4172 /* declarations of non-ANSI functions */
Chris@39 4173 #if defined(__MINGW32__)
Chris@39 4174 # ifdef __STRICT_ANSI__
Chris@39 4175 int _putenv (const char *);
Chris@39 4176 # endif
Chris@39 4177 #elif defined(__CYGWIN__)
Chris@39 4178 # ifdef __STRICT_ANSI__
Chris@39 4179 char *realpath (const char *, char *);
Chris@39 4180 int putenv (char *);
Chris@39 4181 int setenv (const char *, const char *, int);
Chris@39 4182 # endif
Chris@39 4183 /* #elif defined (other platforms) ... */
Chris@39 4184 #endif
Chris@39 4185
Chris@39 4186 /* portability defines, excluding path handling macros */
Chris@39 4187 #if defined(_MSC_VER)
Chris@39 4188 # define setmode _setmode
Chris@39 4189 # define stat _stat
Chris@39 4190 # define chmod _chmod
Chris@39 4191 # define getcwd _getcwd
Chris@39 4192 # define putenv _putenv
Chris@39 4193 # define S_IXUSR _S_IEXEC
Chris@39 4194 # ifndef _INTPTR_T_DEFINED
Chris@39 4195 # define _INTPTR_T_DEFINED
Chris@39 4196 # define intptr_t int
Chris@39 4197 # endif
Chris@39 4198 #elif defined(__MINGW32__)
Chris@39 4199 # define setmode _setmode
Chris@39 4200 # define stat _stat
Chris@39 4201 # define chmod _chmod
Chris@39 4202 # define getcwd _getcwd
Chris@39 4203 # define putenv _putenv
Chris@39 4204 #elif defined(__CYGWIN__)
Chris@39 4205 # define HAVE_SETENV
Chris@39 4206 # define FOPEN_WB "wb"
Chris@39 4207 /* #elif defined (other platforms) ... */
Chris@39 4208 #endif
Chris@39 4209
Chris@39 4210 #if defined(PATH_MAX)
Chris@39 4211 # define LT_PATHMAX PATH_MAX
Chris@39 4212 #elif defined(MAXPATHLEN)
Chris@39 4213 # define LT_PATHMAX MAXPATHLEN
Chris@39 4214 #else
Chris@39 4215 # define LT_PATHMAX 1024
Chris@39 4216 #endif
Chris@39 4217
Chris@39 4218 #ifndef S_IXOTH
Chris@39 4219 # define S_IXOTH 0
Chris@39 4220 #endif
Chris@39 4221 #ifndef S_IXGRP
Chris@39 4222 # define S_IXGRP 0
Chris@39 4223 #endif
Chris@39 4224
Chris@39 4225 /* path handling portability macros */
Chris@39 4226 #ifndef DIR_SEPARATOR
Chris@39 4227 # define DIR_SEPARATOR '/'
Chris@39 4228 # define PATH_SEPARATOR ':'
Chris@39 4229 #endif
Chris@39 4230
Chris@39 4231 #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \
Chris@39 4232 defined (__OS2__)
Chris@39 4233 # define HAVE_DOS_BASED_FILE_SYSTEM
Chris@39 4234 # define FOPEN_WB "wb"
Chris@39 4235 # ifndef DIR_SEPARATOR_2
Chris@39 4236 # define DIR_SEPARATOR_2 '\\'
Chris@39 4237 # endif
Chris@39 4238 # ifndef PATH_SEPARATOR_2
Chris@39 4239 # define PATH_SEPARATOR_2 ';'
Chris@39 4240 # endif
Chris@39 4241 #endif
Chris@39 4242
Chris@39 4243 #ifndef DIR_SEPARATOR_2
Chris@39 4244 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
Chris@39 4245 #else /* DIR_SEPARATOR_2 */
Chris@39 4246 # define IS_DIR_SEPARATOR(ch) \
Chris@39 4247 (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
Chris@39 4248 #endif /* DIR_SEPARATOR_2 */
Chris@39 4249
Chris@39 4250 #ifndef PATH_SEPARATOR_2
Chris@39 4251 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR)
Chris@39 4252 #else /* PATH_SEPARATOR_2 */
Chris@39 4253 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2)
Chris@39 4254 #endif /* PATH_SEPARATOR_2 */
Chris@39 4255
Chris@39 4256 #ifndef FOPEN_WB
Chris@39 4257 # define FOPEN_WB "w"
Chris@39 4258 #endif
Chris@39 4259 #ifndef _O_BINARY
Chris@39 4260 # define _O_BINARY 0
Chris@39 4261 #endif
Chris@39 4262
Chris@39 4263 #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type)))
Chris@39 4264 #define XFREE(stale) do { \
Chris@39 4265 if (stale) { free ((void *) stale); stale = 0; } \
Chris@39 4266 } while (0)
Chris@39 4267
Chris@39 4268 #if defined(LT_DEBUGWRAPPER)
Chris@39 4269 static int lt_debug = 1;
Chris@39 4270 #else
Chris@39 4271 static int lt_debug = 0;
Chris@39 4272 #endif
Chris@39 4273
Chris@39 4274 const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */
Chris@39 4275
Chris@39 4276 void *xmalloc (size_t num);
Chris@39 4277 char *xstrdup (const char *string);
Chris@39 4278 const char *base_name (const char *name);
Chris@39 4279 char *find_executable (const char *wrapper);
Chris@39 4280 char *chase_symlinks (const char *pathspec);
Chris@39 4281 int make_executable (const char *path);
Chris@39 4282 int check_executable (const char *path);
Chris@39 4283 char *strendzap (char *str, const char *pat);
Chris@39 4284 void lt_debugprintf (const char *file, int line, const char *fmt, ...);
Chris@39 4285 void lt_fatal (const char *file, int line, const char *message, ...);
Chris@39 4286 static const char *nonnull (const char *s);
Chris@39 4287 static const char *nonempty (const char *s);
Chris@39 4288 void lt_setenv (const char *name, const char *value);
Chris@39 4289 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
Chris@39 4290 void lt_update_exe_path (const char *name, const char *value);
Chris@39 4291 void lt_update_lib_path (const char *name, const char *value);
Chris@39 4292 char **prepare_spawn (char **argv);
Chris@39 4293 void lt_dump_script (FILE *f);
Chris@39 4294 EOF
Chris@39 4295
Chris@39 4296 cat <<EOF
Chris@39 4297 volatile const char * MAGIC_EXE = "$magic_exe";
Chris@39 4298 const char * LIB_PATH_VARNAME = "$shlibpath_var";
Chris@39 4299 EOF
Chris@39 4300
Chris@39 4301 if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
Chris@39 4302 func_to_host_path "$temp_rpath"
Chris@39 4303 cat <<EOF
Chris@39 4304 const char * LIB_PATH_VALUE = "$func_to_host_path_result";
Chris@39 4305 EOF
Chris@39 4306 else
Chris@39 4307 cat <<"EOF"
Chris@39 4308 const char * LIB_PATH_VALUE = "";
Chris@39 4309 EOF
Chris@39 4310 fi
Chris@39 4311
Chris@39 4312 if test -n "$dllsearchpath"; then
Chris@39 4313 func_to_host_path "$dllsearchpath:"
Chris@39 4314 cat <<EOF
Chris@39 4315 const char * EXE_PATH_VARNAME = "PATH";
Chris@39 4316 const char * EXE_PATH_VALUE = "$func_to_host_path_result";
Chris@39 4317 EOF
Chris@39 4318 else
Chris@39 4319 cat <<"EOF"
Chris@39 4320 const char * EXE_PATH_VARNAME = "";
Chris@39 4321 const char * EXE_PATH_VALUE = "";
Chris@39 4322 EOF
Chris@39 4323 fi
Chris@39 4324
Chris@39 4325 if test "$fast_install" = yes; then
Chris@39 4326 cat <<EOF
Chris@39 4327 const char * TARGET_PROGRAM_NAME = "lt-$outputname"; /* hopefully, no .exe */
Chris@39 4328 EOF
Chris@39 4329 else
Chris@39 4330 cat <<EOF
Chris@39 4331 const char * TARGET_PROGRAM_NAME = "$outputname"; /* hopefully, no .exe */
Chris@39 4332 EOF
Chris@39 4333 fi
Chris@39 4334
Chris@39 4335
Chris@39 4336 cat <<"EOF"
Chris@39 4337
Chris@39 4338 #define LTWRAPPER_OPTION_PREFIX "--lt-"
Chris@39 4339
Chris@39 4340 static const char *ltwrapper_option_prefix = LTWRAPPER_OPTION_PREFIX;
Chris@39 4341 static const char *dumpscript_opt = LTWRAPPER_OPTION_PREFIX "dump-script";
Chris@39 4342 static const char *debug_opt = LTWRAPPER_OPTION_PREFIX "debug";
Chris@39 4343
Chris@39 4344 int
Chris@39 4345 main (int argc, char *argv[])
Chris@39 4346 {
Chris@39 4347 char **newargz;
Chris@39 4348 int newargc;
Chris@39 4349 char *tmp_pathspec;
Chris@39 4350 char *actual_cwrapper_path;
Chris@39 4351 char *actual_cwrapper_name;
Chris@39 4352 char *target_name;
Chris@39 4353 char *lt_argv_zero;
Chris@39 4354 intptr_t rval = 127;
Chris@39 4355
Chris@39 4356 int i;
Chris@39 4357
Chris@39 4358 program_name = (char *) xstrdup (base_name (argv[0]));
Chris@39 4359 newargz = XMALLOC (char *, argc + 1);
Chris@39 4360
Chris@39 4361 /* very simple arg parsing; don't want to rely on getopt
Chris@39 4362 * also, copy all non cwrapper options to newargz, except
Chris@39 4363 * argz[0], which is handled differently
Chris@39 4364 */
Chris@39 4365 newargc=0;
Chris@39 4366 for (i = 1; i < argc; i++)
Chris@39 4367 {
Chris@39 4368 if (strcmp (argv[i], dumpscript_opt) == 0)
Chris@39 4369 {
Chris@39 4370 EOF
Chris@39 4371 case "$host" in
Chris@39 4372 *mingw* | *cygwin* )
Chris@39 4373 # make stdout use "unix" line endings
Chris@39 4374 echo " setmode(1,_O_BINARY);"
Chris@39 4375 ;;
Chris@39 4376 esac
Chris@39 4377
Chris@39 4378 cat <<"EOF"
Chris@39 4379 lt_dump_script (stdout);
Chris@39 4380 return 0;
Chris@39 4381 }
Chris@39 4382 if (strcmp (argv[i], debug_opt) == 0)
Chris@39 4383 {
Chris@39 4384 lt_debug = 1;
Chris@39 4385 continue;
Chris@39 4386 }
Chris@39 4387 if (strcmp (argv[i], ltwrapper_option_prefix) == 0)
Chris@39 4388 {
Chris@39 4389 /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX
Chris@39 4390 namespace, but it is not one of the ones we know about and
Chris@39 4391 have already dealt with, above (inluding dump-script), then
Chris@39 4392 report an error. Otherwise, targets might begin to believe
Chris@39 4393 they are allowed to use options in the LTWRAPPER_OPTION_PREFIX
Chris@39 4394 namespace. The first time any user complains about this, we'll
Chris@39 4395 need to make LTWRAPPER_OPTION_PREFIX a configure-time option
Chris@39 4396 or a configure.ac-settable value.
Chris@39 4397 */
Chris@39 4398 lt_fatal (__FILE__, __LINE__,
Chris@39 4399 "unrecognized %s option: '%s'",
Chris@39 4400 ltwrapper_option_prefix, argv[i]);
Chris@39 4401 }
Chris@39 4402 /* otherwise ... */
Chris@39 4403 newargz[++newargc] = xstrdup (argv[i]);
Chris@39 4404 }
Chris@39 4405 newargz[++newargc] = NULL;
Chris@39 4406
Chris@39 4407 EOF
Chris@39 4408 cat <<EOF
Chris@39 4409 /* The GNU banner must be the first non-error debug message */
Chris@39 4410 lt_debugprintf (__FILE__, __LINE__, "libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\n");
Chris@39 4411 EOF
Chris@39 4412 cat <<"EOF"
Chris@39 4413 lt_debugprintf (__FILE__, __LINE__, "(main) argv[0]: %s\n", argv[0]);
Chris@39 4414 lt_debugprintf (__FILE__, __LINE__, "(main) program_name: %s\n", program_name);
Chris@39 4415
Chris@39 4416 tmp_pathspec = find_executable (argv[0]);
Chris@39 4417 if (tmp_pathspec == NULL)
Chris@39 4418 lt_fatal (__FILE__, __LINE__, "couldn't find %s", argv[0]);
Chris@39 4419 lt_debugprintf (__FILE__, __LINE__,
Chris@39 4420 "(main) found exe (before symlink chase) at: %s\n",
Chris@39 4421 tmp_pathspec);
Chris@39 4422
Chris@39 4423 actual_cwrapper_path = chase_symlinks (tmp_pathspec);
Chris@39 4424 lt_debugprintf (__FILE__, __LINE__,
Chris@39 4425 "(main) found exe (after symlink chase) at: %s\n",
Chris@39 4426 actual_cwrapper_path);
Chris@39 4427 XFREE (tmp_pathspec);
Chris@39 4428
Chris@39 4429 actual_cwrapper_name = xstrdup (base_name (actual_cwrapper_path));
Chris@39 4430 strendzap (actual_cwrapper_path, actual_cwrapper_name);
Chris@39 4431
Chris@39 4432 /* wrapper name transforms */
Chris@39 4433 strendzap (actual_cwrapper_name, ".exe");
Chris@39 4434 tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
Chris@39 4435 XFREE (actual_cwrapper_name);
Chris@39 4436 actual_cwrapper_name = tmp_pathspec;
Chris@39 4437 tmp_pathspec = 0;
Chris@39 4438
Chris@39 4439 /* target_name transforms -- use actual target program name; might have lt- prefix */
Chris@39 4440 target_name = xstrdup (base_name (TARGET_PROGRAM_NAME));
Chris@39 4441 strendzap (target_name, ".exe");
Chris@39 4442 tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
Chris@39 4443 XFREE (target_name);
Chris@39 4444 target_name = tmp_pathspec;
Chris@39 4445 tmp_pathspec = 0;
Chris@39 4446
Chris@39 4447 lt_debugprintf (__FILE__, __LINE__,
Chris@39 4448 "(main) libtool target name: %s\n",
Chris@39 4449 target_name);
Chris@39 4450 EOF
Chris@39 4451
Chris@39 4452 cat <<EOF
Chris@39 4453 newargz[0] =
Chris@39 4454 XMALLOC (char, (strlen (actual_cwrapper_path) +
Chris@39 4455 strlen ("$objdir") + 1 + strlen (actual_cwrapper_name) + 1));
Chris@39 4456 strcpy (newargz[0], actual_cwrapper_path);
Chris@39 4457 strcat (newargz[0], "$objdir");
Chris@39 4458 strcat (newargz[0], "/");
Chris@39 4459 EOF
Chris@39 4460
Chris@39 4461 cat <<"EOF"
Chris@39 4462 /* stop here, and copy so we don't have to do this twice */
Chris@39 4463 tmp_pathspec = xstrdup (newargz[0]);
Chris@39 4464
Chris@39 4465 /* do NOT want the lt- prefix here, so use actual_cwrapper_name */
Chris@39 4466 strcat (newargz[0], actual_cwrapper_name);
Chris@39 4467
Chris@39 4468 /* DO want the lt- prefix here if it exists, so use target_name */
Chris@39 4469 lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
Chris@39 4470 XFREE (tmp_pathspec);
Chris@39 4471 tmp_pathspec = NULL;
Chris@39 4472 EOF
Chris@39 4473
Chris@39 4474 case $host_os in
Chris@39 4475 mingw*)
Chris@39 4476 cat <<"EOF"
Chris@39 4477 {
Chris@39 4478 char* p;
Chris@39 4479 while ((p = strchr (newargz[0], '\\')) != NULL)
Chris@39 4480 {
Chris@39 4481 *p = '/';
Chris@39 4482 }
Chris@39 4483 while ((p = strchr (lt_argv_zero, '\\')) != NULL)
Chris@39 4484 {
Chris@39 4485 *p = '/';
Chris@39 4486 }
Chris@39 4487 }
Chris@39 4488 EOF
Chris@39 4489 ;;
Chris@39 4490 esac
Chris@39 4491
Chris@39 4492 cat <<"EOF"
Chris@39 4493 XFREE (target_name);
Chris@39 4494 XFREE (actual_cwrapper_path);
Chris@39 4495 XFREE (actual_cwrapper_name);
Chris@39 4496
Chris@39 4497 lt_setenv ("BIN_SH", "xpg4"); /* for Tru64 */
Chris@39 4498 lt_setenv ("DUALCASE", "1"); /* for MSK sh */
Chris@39 4499 /* Update the DLL searchpath. EXE_PATH_VALUE ($dllsearchpath) must
Chris@39 4500 be prepended before (that is, appear after) LIB_PATH_VALUE ($temp_rpath)
Chris@39 4501 because on Windows, both *_VARNAMEs are PATH but uninstalled
Chris@39 4502 libraries must come first. */
Chris@39 4503 lt_update_exe_path (EXE_PATH_VARNAME, EXE_PATH_VALUE);
Chris@39 4504 lt_update_lib_path (LIB_PATH_VARNAME, LIB_PATH_VALUE);
Chris@39 4505
Chris@39 4506 lt_debugprintf (__FILE__, __LINE__, "(main) lt_argv_zero: %s\n",
Chris@39 4507 nonnull (lt_argv_zero));
Chris@39 4508 for (i = 0; i < newargc; i++)
Chris@39 4509 {
Chris@39 4510 lt_debugprintf (__FILE__, __LINE__, "(main) newargz[%d]: %s\n",
Chris@39 4511 i, nonnull (newargz[i]));
Chris@39 4512 }
Chris@39 4513
Chris@39 4514 EOF
Chris@39 4515
Chris@39 4516 case $host_os in
Chris@39 4517 mingw*)
Chris@39 4518 cat <<"EOF"
Chris@39 4519 /* execv doesn't actually work on mingw as expected on unix */
Chris@39 4520 newargz = prepare_spawn (newargz);
Chris@39 4521 rval = _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz);
Chris@39 4522 if (rval == -1)
Chris@39 4523 {
Chris@39 4524 /* failed to start process */
Chris@39 4525 lt_debugprintf (__FILE__, __LINE__,
Chris@39 4526 "(main) failed to launch target \"%s\": %s\n",
Chris@39 4527 lt_argv_zero, nonnull (strerror (errno)));
Chris@39 4528 return 127;
Chris@39 4529 }
Chris@39 4530 return rval;
Chris@39 4531 EOF
Chris@39 4532 ;;
Chris@39 4533 *)
Chris@39 4534 cat <<"EOF"
Chris@39 4535 execv (lt_argv_zero, newargz);
Chris@39 4536 return rval; /* =127, but avoids unused variable warning */
Chris@39 4537 EOF
Chris@39 4538 ;;
Chris@39 4539 esac
Chris@39 4540
Chris@39 4541 cat <<"EOF"
Chris@39 4542 }
Chris@39 4543
Chris@39 4544 void *
Chris@39 4545 xmalloc (size_t num)
Chris@39 4546 {
Chris@39 4547 void *p = (void *) malloc (num);
Chris@39 4548 if (!p)
Chris@39 4549 lt_fatal (__FILE__, __LINE__, "memory exhausted");
Chris@39 4550
Chris@39 4551 return p;
Chris@39 4552 }
Chris@39 4553
Chris@39 4554 char *
Chris@39 4555 xstrdup (const char *string)
Chris@39 4556 {
Chris@39 4557 return string ? strcpy ((char *) xmalloc (strlen (string) + 1),
Chris@39 4558 string) : NULL;
Chris@39 4559 }
Chris@39 4560
Chris@39 4561 const char *
Chris@39 4562 base_name (const char *name)
Chris@39 4563 {
Chris@39 4564 const char *base;
Chris@39 4565
Chris@39 4566 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
Chris@39 4567 /* Skip over the disk name in MSDOS pathnames. */
Chris@39 4568 if (isalpha ((unsigned char) name[0]) && name[1] == ':')
Chris@39 4569 name += 2;
Chris@39 4570 #endif
Chris@39 4571
Chris@39 4572 for (base = name; *name; name++)
Chris@39 4573 if (IS_DIR_SEPARATOR (*name))
Chris@39 4574 base = name + 1;
Chris@39 4575 return base;
Chris@39 4576 }
Chris@39 4577
Chris@39 4578 int
Chris@39 4579 check_executable (const char *path)
Chris@39 4580 {
Chris@39 4581 struct stat st;
Chris@39 4582
Chris@39 4583 lt_debugprintf (__FILE__, __LINE__, "(check_executable): %s\n",
Chris@39 4584 nonempty (path));
Chris@39 4585 if ((!path) || (!*path))
Chris@39 4586 return 0;
Chris@39 4587
Chris@39 4588 if ((stat (path, &st) >= 0)
Chris@39 4589 && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
Chris@39 4590 return 1;
Chris@39 4591 else
Chris@39 4592 return 0;
Chris@39 4593 }
Chris@39 4594
Chris@39 4595 int
Chris@39 4596 make_executable (const char *path)
Chris@39 4597 {
Chris@39 4598 int rval = 0;
Chris@39 4599 struct stat st;
Chris@39 4600
Chris@39 4601 lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n",
Chris@39 4602 nonempty (path));
Chris@39 4603 if ((!path) || (!*path))
Chris@39 4604 return 0;
Chris@39 4605
Chris@39 4606 if (stat (path, &st) >= 0)
Chris@39 4607 {
Chris@39 4608 rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR);
Chris@39 4609 }
Chris@39 4610 return rval;
Chris@39 4611 }
Chris@39 4612
Chris@39 4613 /* Searches for the full path of the wrapper. Returns
Chris@39 4614 newly allocated full path name if found, NULL otherwise
Chris@39 4615 Does not chase symlinks, even on platforms that support them.
Chris@39 4616 */
Chris@39 4617 char *
Chris@39 4618 find_executable (const char *wrapper)
Chris@39 4619 {
Chris@39 4620 int has_slash = 0;
Chris@39 4621 const char *p;
Chris@39 4622 const char *p_next;
Chris@39 4623 /* static buffer for getcwd */
Chris@39 4624 char tmp[LT_PATHMAX + 1];
Chris@39 4625 int tmp_len;
Chris@39 4626 char *concat_name;
Chris@39 4627
Chris@39 4628 lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n",
Chris@39 4629 nonempty (wrapper));
Chris@39 4630
Chris@39 4631 if ((wrapper == NULL) || (*wrapper == '\0'))
Chris@39 4632 return NULL;
Chris@39 4633
Chris@39 4634 /* Absolute path? */
Chris@39 4635 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
Chris@39 4636 if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':')
Chris@39 4637 {
Chris@39 4638 concat_name = xstrdup (wrapper);
Chris@39 4639 if (check_executable (concat_name))
Chris@39 4640 return concat_name;
Chris@39 4641 XFREE (concat_name);
Chris@39 4642 }
Chris@39 4643 else
Chris@39 4644 {
Chris@39 4645 #endif
Chris@39 4646 if (IS_DIR_SEPARATOR (wrapper[0]))
Chris@39 4647 {
Chris@39 4648 concat_name = xstrdup (wrapper);
Chris@39 4649 if (check_executable (concat_name))
Chris@39 4650 return concat_name;
Chris@39 4651 XFREE (concat_name);
Chris@39 4652 }
Chris@39 4653 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
Chris@39 4654 }
Chris@39 4655 #endif
Chris@39 4656
Chris@39 4657 for (p = wrapper; *p; p++)
Chris@39 4658 if (*p == '/')
Chris@39 4659 {
Chris@39 4660 has_slash = 1;
Chris@39 4661 break;
Chris@39 4662 }
Chris@39 4663 if (!has_slash)
Chris@39 4664 {
Chris@39 4665 /* no slashes; search PATH */
Chris@39 4666 const char *path = getenv ("PATH");
Chris@39 4667 if (path != NULL)
Chris@39 4668 {
Chris@39 4669 for (p = path; *p; p = p_next)
Chris@39 4670 {
Chris@39 4671 const char *q;
Chris@39 4672 size_t p_len;
Chris@39 4673 for (q = p; *q; q++)
Chris@39 4674 if (IS_PATH_SEPARATOR (*q))
Chris@39 4675 break;
Chris@39 4676 p_len = q - p;
Chris@39 4677 p_next = (*q == '\0' ? q : q + 1);
Chris@39 4678 if (p_len == 0)
Chris@39 4679 {
Chris@39 4680 /* empty path: current directory */
Chris@39 4681 if (getcwd (tmp, LT_PATHMAX) == NULL)
Chris@39 4682 lt_fatal (__FILE__, __LINE__, "getcwd failed: %s",
Chris@39 4683 nonnull (strerror (errno)));
Chris@39 4684 tmp_len = strlen (tmp);
Chris@39 4685 concat_name =
Chris@39 4686 XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
Chris@39 4687 memcpy (concat_name, tmp, tmp_len);
Chris@39 4688 concat_name[tmp_len] = '/';
Chris@39 4689 strcpy (concat_name + tmp_len + 1, wrapper);
Chris@39 4690 }
Chris@39 4691 else
Chris@39 4692 {
Chris@39 4693 concat_name =
Chris@39 4694 XMALLOC (char, p_len + 1 + strlen (wrapper) + 1);
Chris@39 4695 memcpy (concat_name, p, p_len);
Chris@39 4696 concat_name[p_len] = '/';
Chris@39 4697 strcpy (concat_name + p_len + 1, wrapper);
Chris@39 4698 }
Chris@39 4699 if (check_executable (concat_name))
Chris@39 4700 return concat_name;
Chris@39 4701 XFREE (concat_name);
Chris@39 4702 }
Chris@39 4703 }
Chris@39 4704 /* not found in PATH; assume curdir */
Chris@39 4705 }
Chris@39 4706 /* Relative path | not found in path: prepend cwd */
Chris@39 4707 if (getcwd (tmp, LT_PATHMAX) == NULL)
Chris@39 4708 lt_fatal (__FILE__, __LINE__, "getcwd failed: %s",
Chris@39 4709 nonnull (strerror (errno)));
Chris@39 4710 tmp_len = strlen (tmp);
Chris@39 4711 concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
Chris@39 4712 memcpy (concat_name, tmp, tmp_len);
Chris@39 4713 concat_name[tmp_len] = '/';
Chris@39 4714 strcpy (concat_name + tmp_len + 1, wrapper);
Chris@39 4715
Chris@39 4716 if (check_executable (concat_name))
Chris@39 4717 return concat_name;
Chris@39 4718 XFREE (concat_name);
Chris@39 4719 return NULL;
Chris@39 4720 }
Chris@39 4721
Chris@39 4722 char *
Chris@39 4723 chase_symlinks (const char *pathspec)
Chris@39 4724 {
Chris@39 4725 #ifndef S_ISLNK
Chris@39 4726 return xstrdup (pathspec);
Chris@39 4727 #else
Chris@39 4728 char buf[LT_PATHMAX];
Chris@39 4729 struct stat s;
Chris@39 4730 char *tmp_pathspec = xstrdup (pathspec);
Chris@39 4731 char *p;
Chris@39 4732 int has_symlinks = 0;
Chris@39 4733 while (strlen (tmp_pathspec) && !has_symlinks)
Chris@39 4734 {
Chris@39 4735 lt_debugprintf (__FILE__, __LINE__,
Chris@39 4736 "checking path component for symlinks: %s\n",
Chris@39 4737 tmp_pathspec);
Chris@39 4738 if (lstat (tmp_pathspec, &s) == 0)
Chris@39 4739 {
Chris@39 4740 if (S_ISLNK (s.st_mode) != 0)
Chris@39 4741 {
Chris@39 4742 has_symlinks = 1;
Chris@39 4743 break;
Chris@39 4744 }
Chris@39 4745
Chris@39 4746 /* search backwards for last DIR_SEPARATOR */
Chris@39 4747 p = tmp_pathspec + strlen (tmp_pathspec) - 1;
Chris@39 4748 while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
Chris@39 4749 p--;
Chris@39 4750 if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
Chris@39 4751 {
Chris@39 4752 /* no more DIR_SEPARATORS left */
Chris@39 4753 break;
Chris@39 4754 }
Chris@39 4755 *p = '\0';
Chris@39 4756 }
Chris@39 4757 else
Chris@39 4758 {
Chris@39 4759 lt_fatal (__FILE__, __LINE__,
Chris@39 4760 "error accessing file \"%s\": %s",
Chris@39 4761 tmp_pathspec, nonnull (strerror (errno)));
Chris@39 4762 }
Chris@39 4763 }
Chris@39 4764 XFREE (tmp_pathspec);
Chris@39 4765
Chris@39 4766 if (!has_symlinks)
Chris@39 4767 {
Chris@39 4768 return xstrdup (pathspec);
Chris@39 4769 }
Chris@39 4770
Chris@39 4771 tmp_pathspec = realpath (pathspec, buf);
Chris@39 4772 if (tmp_pathspec == 0)
Chris@39 4773 {
Chris@39 4774 lt_fatal (__FILE__, __LINE__,
Chris@39 4775 "could not follow symlinks for %s", pathspec);
Chris@39 4776 }
Chris@39 4777 return xstrdup (tmp_pathspec);
Chris@39 4778 #endif
Chris@39 4779 }
Chris@39 4780
Chris@39 4781 char *
Chris@39 4782 strendzap (char *str, const char *pat)
Chris@39 4783 {
Chris@39 4784 size_t len, patlen;
Chris@39 4785
Chris@39 4786 assert (str != NULL);
Chris@39 4787 assert (pat != NULL);
Chris@39 4788
Chris@39 4789 len = strlen (str);
Chris@39 4790 patlen = strlen (pat);
Chris@39 4791
Chris@39 4792 if (patlen <= len)
Chris@39 4793 {
Chris@39 4794 str += len - patlen;
Chris@39 4795 if (strcmp (str, pat) == 0)
Chris@39 4796 *str = '\0';
Chris@39 4797 }
Chris@39 4798 return str;
Chris@39 4799 }
Chris@39 4800
Chris@39 4801 void
Chris@39 4802 lt_debugprintf (const char *file, int line, const char *fmt, ...)
Chris@39 4803 {
Chris@39 4804 va_list args;
Chris@39 4805 if (lt_debug)
Chris@39 4806 {
Chris@39 4807 (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line);
Chris@39 4808 va_start (args, fmt);
Chris@39 4809 (void) vfprintf (stderr, fmt, args);
Chris@39 4810 va_end (args);
Chris@39 4811 }
Chris@39 4812 }
Chris@39 4813
Chris@39 4814 static void
Chris@39 4815 lt_error_core (int exit_status, const char *file,
Chris@39 4816 int line, const char *mode,
Chris@39 4817 const char *message, va_list ap)
Chris@39 4818 {
Chris@39 4819 fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode);
Chris@39 4820 vfprintf (stderr, message, ap);
Chris@39 4821 fprintf (stderr, ".\n");
Chris@39 4822
Chris@39 4823 if (exit_status >= 0)
Chris@39 4824 exit (exit_status);
Chris@39 4825 }
Chris@39 4826
Chris@39 4827 void
Chris@39 4828 lt_fatal (const char *file, int line, const char *message, ...)
Chris@39 4829 {
Chris@39 4830 va_list ap;
Chris@39 4831 va_start (ap, message);
Chris@39 4832 lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap);
Chris@39 4833 va_end (ap);
Chris@39 4834 }
Chris@39 4835
Chris@39 4836 static const char *
Chris@39 4837 nonnull (const char *s)
Chris@39 4838 {
Chris@39 4839 return s ? s : "(null)";
Chris@39 4840 }
Chris@39 4841
Chris@39 4842 static const char *
Chris@39 4843 nonempty (const char *s)
Chris@39 4844 {
Chris@39 4845 return (s && !*s) ? "(empty)" : nonnull (s);
Chris@39 4846 }
Chris@39 4847
Chris@39 4848 void
Chris@39 4849 lt_setenv (const char *name, const char *value)
Chris@39 4850 {
Chris@39 4851 lt_debugprintf (__FILE__, __LINE__,
Chris@39 4852 "(lt_setenv) setting '%s' to '%s'\n",
Chris@39 4853 nonnull (name), nonnull (value));
Chris@39 4854 {
Chris@39 4855 #ifdef HAVE_SETENV
Chris@39 4856 /* always make a copy, for consistency with !HAVE_SETENV */
Chris@39 4857 char *str = xstrdup (value);
Chris@39 4858 setenv (name, str, 1);
Chris@39 4859 #else
Chris@39 4860 int len = strlen (name) + 1 + strlen (value) + 1;
Chris@39 4861 char *str = XMALLOC (char, len);
Chris@39 4862 sprintf (str, "%s=%s", name, value);
Chris@39 4863 if (putenv (str) != EXIT_SUCCESS)
Chris@39 4864 {
Chris@39 4865 XFREE (str);
Chris@39 4866 }
Chris@39 4867 #endif
Chris@39 4868 }
Chris@39 4869 }
Chris@39 4870
Chris@39 4871 char *
Chris@39 4872 lt_extend_str (const char *orig_value, const char *add, int to_end)
Chris@39 4873 {
Chris@39 4874 char *new_value;
Chris@39 4875 if (orig_value && *orig_value)
Chris@39 4876 {
Chris@39 4877 int orig_value_len = strlen (orig_value);
Chris@39 4878 int add_len = strlen (add);
Chris@39 4879 new_value = XMALLOC (char, add_len + orig_value_len + 1);
Chris@39 4880 if (to_end)
Chris@39 4881 {
Chris@39 4882 strcpy (new_value, orig_value);
Chris@39 4883 strcpy (new_value + orig_value_len, add);
Chris@39 4884 }
Chris@39 4885 else
Chris@39 4886 {
Chris@39 4887 strcpy (new_value, add);
Chris@39 4888 strcpy (new_value + add_len, orig_value);
Chris@39 4889 }
Chris@39 4890 }
Chris@39 4891 else
Chris@39 4892 {
Chris@39 4893 new_value = xstrdup (add);
Chris@39 4894 }
Chris@39 4895 return new_value;
Chris@39 4896 }
Chris@39 4897
Chris@39 4898 void
Chris@39 4899 lt_update_exe_path (const char *name, const char *value)
Chris@39 4900 {
Chris@39 4901 lt_debugprintf (__FILE__, __LINE__,
Chris@39 4902 "(lt_update_exe_path) modifying '%s' by prepending '%s'\n",
Chris@39 4903 nonnull (name), nonnull (value));
Chris@39 4904
Chris@39 4905 if (name && *name && value && *value)
Chris@39 4906 {
Chris@39 4907 char *new_value = lt_extend_str (getenv (name), value, 0);
Chris@39 4908 /* some systems can't cope with a ':'-terminated path #' */
Chris@39 4909 int len = strlen (new_value);
Chris@39 4910 while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1]))
Chris@39 4911 {
Chris@39 4912 new_value[len-1] = '\0';
Chris@39 4913 }
Chris@39 4914 lt_setenv (name, new_value);
Chris@39 4915 XFREE (new_value);
Chris@39 4916 }
Chris@39 4917 }
Chris@39 4918
Chris@39 4919 void
Chris@39 4920 lt_update_lib_path (const char *name, const char *value)
Chris@39 4921 {
Chris@39 4922 lt_debugprintf (__FILE__, __LINE__,
Chris@39 4923 "(lt_update_lib_path) modifying '%s' by prepending '%s'\n",
Chris@39 4924 nonnull (name), nonnull (value));
Chris@39 4925
Chris@39 4926 if (name && *name && value && *value)
Chris@39 4927 {
Chris@39 4928 char *new_value = lt_extend_str (getenv (name), value, 0);
Chris@39 4929 lt_setenv (name, new_value);
Chris@39 4930 XFREE (new_value);
Chris@39 4931 }
Chris@39 4932 }
Chris@39 4933
Chris@39 4934 EOF
Chris@39 4935 case $host_os in
Chris@39 4936 mingw*)
Chris@39 4937 cat <<"EOF"
Chris@39 4938
Chris@39 4939 /* Prepares an argument vector before calling spawn().
Chris@39 4940 Note that spawn() does not by itself call the command interpreter
Chris@39 4941 (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") :
Chris@39 4942 ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
Chris@39 4943 GetVersionEx(&v);
Chris@39 4944 v.dwPlatformId == VER_PLATFORM_WIN32_NT;
Chris@39 4945 }) ? "cmd.exe" : "command.com").
Chris@39 4946 Instead it simply concatenates the arguments, separated by ' ', and calls
Chris@39 4947 CreateProcess(). We must quote the arguments since Win32 CreateProcess()
Chris@39 4948 interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a
Chris@39 4949 special way:
Chris@39 4950 - Space and tab are interpreted as delimiters. They are not treated as
Chris@39 4951 delimiters if they are surrounded by double quotes: "...".
Chris@39 4952 - Unescaped double quotes are removed from the input. Their only effect is
Chris@39 4953 that within double quotes, space and tab are treated like normal
Chris@39 4954 characters.
Chris@39 4955 - Backslashes not followed by double quotes are not special.
Chris@39 4956 - But 2*n+1 backslashes followed by a double quote become
Chris@39 4957 n backslashes followed by a double quote (n >= 0):
Chris@39 4958 \" -> "
Chris@39 4959 \\\" -> \"
Chris@39 4960 \\\\\" -> \\"
Chris@39 4961 */
Chris@39 4962 #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037"
Chris@39 4963 #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037"
Chris@39 4964 char **
Chris@39 4965 prepare_spawn (char **argv)
Chris@39 4966 {
Chris@39 4967 size_t argc;
Chris@39 4968 char **new_argv;
Chris@39 4969 size_t i;
Chris@39 4970
Chris@39 4971 /* Count number of arguments. */
Chris@39 4972 for (argc = 0; argv[argc] != NULL; argc++)
Chris@39 4973 ;
Chris@39 4974
Chris@39 4975 /* Allocate new argument vector. */
Chris@39 4976 new_argv = XMALLOC (char *, argc + 1);
Chris@39 4977
Chris@39 4978 /* Put quoted arguments into the new argument vector. */
Chris@39 4979 for (i = 0; i < argc; i++)
Chris@39 4980 {
Chris@39 4981 const char *string = argv[i];
Chris@39 4982
Chris@39 4983 if (string[0] == '\0')
Chris@39 4984 new_argv[i] = xstrdup ("\"\"");
Chris@39 4985 else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL)
Chris@39 4986 {
Chris@39 4987 int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL);
Chris@39 4988 size_t length;
Chris@39 4989 unsigned int backslashes;
Chris@39 4990 const char *s;
Chris@39 4991 char *quoted_string;
Chris@39 4992 char *p;
Chris@39 4993
Chris@39 4994 length = 0;
Chris@39 4995 backslashes = 0;
Chris@39 4996 if (quote_around)
Chris@39 4997 length++;
Chris@39 4998 for (s = string; *s != '\0'; s++)
Chris@39 4999 {
Chris@39 5000 char c = *s;
Chris@39 5001 if (c == '"')
Chris@39 5002 length += backslashes + 1;
Chris@39 5003 length++;
Chris@39 5004 if (c == '\\')
Chris@39 5005 backslashes++;
Chris@39 5006 else
Chris@39 5007 backslashes = 0;
Chris@39 5008 }
Chris@39 5009 if (quote_around)
Chris@39 5010 length += backslashes + 1;
Chris@39 5011
Chris@39 5012 quoted_string = XMALLOC (char, length + 1);
Chris@39 5013
Chris@39 5014 p = quoted_string;
Chris@39 5015 backslashes = 0;
Chris@39 5016 if (quote_around)
Chris@39 5017 *p++ = '"';
Chris@39 5018 for (s = string; *s != '\0'; s++)
Chris@39 5019 {
Chris@39 5020 char c = *s;
Chris@39 5021 if (c == '"')
Chris@39 5022 {
Chris@39 5023 unsigned int j;
Chris@39 5024 for (j = backslashes + 1; j > 0; j--)
Chris@39 5025 *p++ = '\\';
Chris@39 5026 }
Chris@39 5027 *p++ = c;
Chris@39 5028 if (c == '\\')
Chris@39 5029 backslashes++;
Chris@39 5030 else
Chris@39 5031 backslashes = 0;
Chris@39 5032 }
Chris@39 5033 if (quote_around)
Chris@39 5034 {
Chris@39 5035 unsigned int j;
Chris@39 5036 for (j = backslashes; j > 0; j--)
Chris@39 5037 *p++ = '\\';
Chris@39 5038 *p++ = '"';
Chris@39 5039 }
Chris@39 5040 *p = '\0';
Chris@39 5041
Chris@39 5042 new_argv[i] = quoted_string;
Chris@39 5043 }
Chris@39 5044 else
Chris@39 5045 new_argv[i] = (char *) string;
Chris@39 5046 }
Chris@39 5047 new_argv[argc] = NULL;
Chris@39 5048
Chris@39 5049 return new_argv;
Chris@39 5050 }
Chris@39 5051 EOF
Chris@39 5052 ;;
Chris@39 5053 esac
Chris@39 5054
Chris@39 5055 cat <<"EOF"
Chris@39 5056 void lt_dump_script (FILE* f)
Chris@39 5057 {
Chris@39 5058 EOF
Chris@39 5059 func_emit_wrapper yes |
Chris@39 5060 $SED -e 's/\([\\"]\)/\\\1/g' \
Chris@39 5061 -e 's/^/ fputs ("/' -e 's/$/\\n", f);/'
Chris@39 5062
Chris@39 5063 cat <<"EOF"
Chris@39 5064 }
Chris@39 5065 EOF
Chris@39 5066 }
Chris@39 5067 # end: func_emit_cwrapperexe_src
Chris@39 5068
Chris@39 5069 # func_win32_import_lib_p ARG
Chris@39 5070 # True if ARG is an import lib, as indicated by $file_magic_cmd
Chris@39 5071 func_win32_import_lib_p ()
Chris@39 5072 {
Chris@39 5073 $opt_debug
Chris@39 5074 case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in
Chris@39 5075 *import*) : ;;
Chris@39 5076 *) false ;;
Chris@39 5077 esac
Chris@39 5078 }
Chris@39 5079
Chris@39 5080 # func_mode_link arg...
Chris@39 5081 func_mode_link ()
Chris@39 5082 {
Chris@39 5083 $opt_debug
Chris@39 5084 case $host in
Chris@39 5085 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
Chris@39 5086 # It is impossible to link a dll without this setting, and
Chris@39 5087 # we shouldn't force the makefile maintainer to figure out
Chris@39 5088 # which system we are compiling for in order to pass an extra
Chris@39 5089 # flag for every libtool invocation.
Chris@39 5090 # allow_undefined=no
Chris@39 5091
Chris@39 5092 # FIXME: Unfortunately, there are problems with the above when trying
Chris@39 5093 # to make a dll which has undefined symbols, in which case not
Chris@39 5094 # even a static library is built. For now, we need to specify
Chris@39 5095 # -no-undefined on the libtool link line when we can be certain
Chris@39 5096 # that all symbols are satisfied, otherwise we get a static library.
Chris@39 5097 allow_undefined=yes
Chris@39 5098 ;;
Chris@39 5099 *)
Chris@39 5100 allow_undefined=yes
Chris@39 5101 ;;
Chris@39 5102 esac
Chris@39 5103 libtool_args=$nonopt
Chris@39 5104 base_compile="$nonopt $@"
Chris@39 5105 compile_command=$nonopt
Chris@39 5106 finalize_command=$nonopt
Chris@39 5107
Chris@39 5108 compile_rpath=
Chris@39 5109 finalize_rpath=
Chris@39 5110 compile_shlibpath=
Chris@39 5111 finalize_shlibpath=
Chris@39 5112 convenience=
Chris@39 5113 old_convenience=
Chris@39 5114 deplibs=
Chris@39 5115 old_deplibs=
Chris@39 5116 compiler_flags=
Chris@39 5117 linker_flags=
Chris@39 5118 dllsearchpath=
Chris@39 5119 lib_search_path=`pwd`
Chris@39 5120 inst_prefix_dir=
Chris@39 5121 new_inherited_linker_flags=
Chris@39 5122
Chris@39 5123 avoid_version=no
Chris@39 5124 bindir=
Chris@39 5125 dlfiles=
Chris@39 5126 dlprefiles=
Chris@39 5127 dlself=no
Chris@39 5128 export_dynamic=no
Chris@39 5129 export_symbols=
Chris@39 5130 export_symbols_regex=
Chris@39 5131 generated=
Chris@39 5132 libobjs=
Chris@39 5133 ltlibs=
Chris@39 5134 module=no
Chris@39 5135 no_install=no
Chris@39 5136 objs=
Chris@39 5137 non_pic_objects=
Chris@39 5138 precious_files_regex=
Chris@39 5139 prefer_static_libs=no
Chris@39 5140 preload=no
Chris@39 5141 prev=
Chris@39 5142 prevarg=
Chris@39 5143 release=
Chris@39 5144 rpath=
Chris@39 5145 xrpath=
Chris@39 5146 perm_rpath=
Chris@39 5147 temp_rpath=
Chris@39 5148 thread_safe=no
Chris@39 5149 vinfo=
Chris@39 5150 vinfo_number=no
Chris@39 5151 weak_libs=
Chris@39 5152 single_module="${wl}-single_module"
Chris@39 5153 func_infer_tag $base_compile
Chris@39 5154
Chris@39 5155 # We need to know -static, to get the right output filenames.
Chris@39 5156 for arg
Chris@39 5157 do
Chris@39 5158 case $arg in
Chris@39 5159 -shared)
Chris@39 5160 test "$build_libtool_libs" != yes && \
Chris@39 5161 func_fatal_configuration "can not build a shared library"
Chris@39 5162 build_old_libs=no
Chris@39 5163 break
Chris@39 5164 ;;
Chris@39 5165 -all-static | -static | -static-libtool-libs)
Chris@39 5166 case $arg in
Chris@39 5167 -all-static)
Chris@39 5168 if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
Chris@39 5169 func_warning "complete static linking is impossible in this configuration"
Chris@39 5170 fi
Chris@39 5171 if test -n "$link_static_flag"; then
Chris@39 5172 dlopen_self=$dlopen_self_static
Chris@39 5173 fi
Chris@39 5174 prefer_static_libs=yes
Chris@39 5175 ;;
Chris@39 5176 -static)
Chris@39 5177 if test -z "$pic_flag" && test -n "$link_static_flag"; then
Chris@39 5178 dlopen_self=$dlopen_self_static
Chris@39 5179 fi
Chris@39 5180 prefer_static_libs=built
Chris@39 5181 ;;
Chris@39 5182 -static-libtool-libs)
Chris@39 5183 if test -z "$pic_flag" && test -n "$link_static_flag"; then
Chris@39 5184 dlopen_self=$dlopen_self_static
Chris@39 5185 fi
Chris@39 5186 prefer_static_libs=yes
Chris@39 5187 ;;
Chris@39 5188 esac
Chris@39 5189 build_libtool_libs=no
Chris@39 5190 build_old_libs=yes
Chris@39 5191 break
Chris@39 5192 ;;
Chris@39 5193 esac
Chris@39 5194 done
Chris@39 5195
Chris@39 5196 # See if our shared archives depend on static archives.
Chris@39 5197 test -n "$old_archive_from_new_cmds" && build_old_libs=yes
Chris@39 5198
Chris@39 5199 # Go through the arguments, transforming them on the way.
Chris@39 5200 while test "$#" -gt 0; do
Chris@39 5201 arg="$1"
Chris@39 5202 shift
Chris@39 5203 func_quote_for_eval "$arg"
Chris@39 5204 qarg=$func_quote_for_eval_unquoted_result
Chris@39 5205 func_append libtool_args " $func_quote_for_eval_result"
Chris@39 5206
Chris@39 5207 # If the previous option needs an argument, assign it.
Chris@39 5208 if test -n "$prev"; then
Chris@39 5209 case $prev in
Chris@39 5210 output)
Chris@39 5211 func_append compile_command " @OUTPUT@"
Chris@39 5212 func_append finalize_command " @OUTPUT@"
Chris@39 5213 ;;
Chris@39 5214 esac
Chris@39 5215
Chris@39 5216 case $prev in
Chris@39 5217 bindir)
Chris@39 5218 bindir="$arg"
Chris@39 5219 prev=
Chris@39 5220 continue
Chris@39 5221 ;;
Chris@39 5222 dlfiles|dlprefiles)
Chris@39 5223 if test "$preload" = no; then
Chris@39 5224 # Add the symbol object into the linking commands.
Chris@39 5225 func_append compile_command " @SYMFILE@"
Chris@39 5226 func_append finalize_command " @SYMFILE@"
Chris@39 5227 preload=yes
Chris@39 5228 fi
Chris@39 5229 case $arg in
Chris@39 5230 *.la | *.lo) ;; # We handle these cases below.
Chris@39 5231 force)
Chris@39 5232 if test "$dlself" = no; then
Chris@39 5233 dlself=needless
Chris@39 5234 export_dynamic=yes
Chris@39 5235 fi
Chris@39 5236 prev=
Chris@39 5237 continue
Chris@39 5238 ;;
Chris@39 5239 self)
Chris@39 5240 if test "$prev" = dlprefiles; then
Chris@39 5241 dlself=yes
Chris@39 5242 elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
Chris@39 5243 dlself=yes
Chris@39 5244 else
Chris@39 5245 dlself=needless
Chris@39 5246 export_dynamic=yes
Chris@39 5247 fi
Chris@39 5248 prev=
Chris@39 5249 continue
Chris@39 5250 ;;
Chris@39 5251 *)
Chris@39 5252 if test "$prev" = dlfiles; then
Chris@39 5253 func_append dlfiles " $arg"
Chris@39 5254 else
Chris@39 5255 func_append dlprefiles " $arg"
Chris@39 5256 fi
Chris@39 5257 prev=
Chris@39 5258 continue
Chris@39 5259 ;;
Chris@39 5260 esac
Chris@39 5261 ;;
Chris@39 5262 expsyms)
Chris@39 5263 export_symbols="$arg"
Chris@39 5264 test -f "$arg" \
Chris@39 5265 || func_fatal_error "symbol file \`$arg' does not exist"
Chris@39 5266 prev=
Chris@39 5267 continue
Chris@39 5268 ;;
Chris@39 5269 expsyms_regex)
Chris@39 5270 export_symbols_regex="$arg"
Chris@39 5271 prev=
Chris@39 5272 continue
Chris@39 5273 ;;
Chris@39 5274 framework)
Chris@39 5275 case $host in
Chris@39 5276 *-*-darwin*)
Chris@39 5277 case "$deplibs " in
Chris@39 5278 *" $qarg.ltframework "*) ;;
Chris@39 5279 *) func_append deplibs " $qarg.ltframework" # this is fixed later
Chris@39 5280 ;;
Chris@39 5281 esac
Chris@39 5282 ;;
Chris@39 5283 esac
Chris@39 5284 prev=
Chris@39 5285 continue
Chris@39 5286 ;;
Chris@39 5287 inst_prefix)
Chris@39 5288 inst_prefix_dir="$arg"
Chris@39 5289 prev=
Chris@39 5290 continue
Chris@39 5291 ;;
Chris@39 5292 objectlist)
Chris@39 5293 if test -f "$arg"; then
Chris@39 5294 save_arg=$arg
Chris@39 5295 moreargs=
Chris@39 5296 for fil in `cat "$save_arg"`
Chris@39 5297 do
Chris@39 5298 # func_append moreargs " $fil"
Chris@39 5299 arg=$fil
Chris@39 5300 # A libtool-controlled object.
Chris@39 5301
Chris@39 5302 # Check to see that this really is a libtool object.
Chris@39 5303 if func_lalib_unsafe_p "$arg"; then
Chris@39 5304 pic_object=
Chris@39 5305 non_pic_object=
Chris@39 5306
Chris@39 5307 # Read the .lo file
Chris@39 5308 func_source "$arg"
Chris@39 5309
Chris@39 5310 if test -z "$pic_object" ||
Chris@39 5311 test -z "$non_pic_object" ||
Chris@39 5312 test "$pic_object" = none &&
Chris@39 5313 test "$non_pic_object" = none; then
Chris@39 5314 func_fatal_error "cannot find name of object for \`$arg'"
Chris@39 5315 fi
Chris@39 5316
Chris@39 5317 # Extract subdirectory from the argument.
Chris@39 5318 func_dirname "$arg" "/" ""
Chris@39 5319 xdir="$func_dirname_result"
Chris@39 5320
Chris@39 5321 if test "$pic_object" != none; then
Chris@39 5322 # Prepend the subdirectory the object is found in.
Chris@39 5323 pic_object="$xdir$pic_object"
Chris@39 5324
Chris@39 5325 if test "$prev" = dlfiles; then
Chris@39 5326 if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
Chris@39 5327 func_append dlfiles " $pic_object"
Chris@39 5328 prev=
Chris@39 5329 continue
Chris@39 5330 else
Chris@39 5331 # If libtool objects are unsupported, then we need to preload.
Chris@39 5332 prev=dlprefiles
Chris@39 5333 fi
Chris@39 5334 fi
Chris@39 5335
Chris@39 5336 # CHECK ME: I think I busted this. -Ossama
Chris@39 5337 if test "$prev" = dlprefiles; then
Chris@39 5338 # Preload the old-style object.
Chris@39 5339 func_append dlprefiles " $pic_object"
Chris@39 5340 prev=
Chris@39 5341 fi
Chris@39 5342
Chris@39 5343 # A PIC object.
Chris@39 5344 func_append libobjs " $pic_object"
Chris@39 5345 arg="$pic_object"
Chris@39 5346 fi
Chris@39 5347
Chris@39 5348 # Non-PIC object.
Chris@39 5349 if test "$non_pic_object" != none; then
Chris@39 5350 # Prepend the subdirectory the object is found in.
Chris@39 5351 non_pic_object="$xdir$non_pic_object"
Chris@39 5352
Chris@39 5353 # A standard non-PIC object
Chris@39 5354 func_append non_pic_objects " $non_pic_object"
Chris@39 5355 if test -z "$pic_object" || test "$pic_object" = none ; then
Chris@39 5356 arg="$non_pic_object"
Chris@39 5357 fi
Chris@39 5358 else
Chris@39 5359 # If the PIC object exists, use it instead.
Chris@39 5360 # $xdir was prepended to $pic_object above.
Chris@39 5361 non_pic_object="$pic_object"
Chris@39 5362 func_append non_pic_objects " $non_pic_object"
Chris@39 5363 fi
Chris@39 5364 else
Chris@39 5365 # Only an error if not doing a dry-run.
Chris@39 5366 if $opt_dry_run; then
Chris@39 5367 # Extract subdirectory from the argument.
Chris@39 5368 func_dirname "$arg" "/" ""
Chris@39 5369 xdir="$func_dirname_result"
Chris@39 5370
Chris@39 5371 func_lo2o "$arg"
Chris@39 5372 pic_object=$xdir$objdir/$func_lo2o_result
Chris@39 5373 non_pic_object=$xdir$func_lo2o_result
Chris@39 5374 func_append libobjs " $pic_object"
Chris@39 5375 func_append non_pic_objects " $non_pic_object"
Chris@39 5376 else
Chris@39 5377 func_fatal_error "\`$arg' is not a valid libtool object"
Chris@39 5378 fi
Chris@39 5379 fi
Chris@39 5380 done
Chris@39 5381 else
Chris@39 5382 func_fatal_error "link input file \`$arg' does not exist"
Chris@39 5383 fi
Chris@39 5384 arg=$save_arg
Chris@39 5385 prev=
Chris@39 5386 continue
Chris@39 5387 ;;
Chris@39 5388 precious_regex)
Chris@39 5389 precious_files_regex="$arg"
Chris@39 5390 prev=
Chris@39 5391 continue
Chris@39 5392 ;;
Chris@39 5393 release)
Chris@39 5394 release="-$arg"
Chris@39 5395 prev=
Chris@39 5396 continue
Chris@39 5397 ;;
Chris@39 5398 rpath | xrpath)
Chris@39 5399 # We need an absolute path.
Chris@39 5400 case $arg in
Chris@39 5401 [\\/]* | [A-Za-z]:[\\/]*) ;;
Chris@39 5402 *)
Chris@39 5403 func_fatal_error "only absolute run-paths are allowed"
Chris@39 5404 ;;
Chris@39 5405 esac
Chris@39 5406 if test "$prev" = rpath; then
Chris@39 5407 case "$rpath " in
Chris@39 5408 *" $arg "*) ;;
Chris@39 5409 *) func_append rpath " $arg" ;;
Chris@39 5410 esac
Chris@39 5411 else
Chris@39 5412 case "$xrpath " in
Chris@39 5413 *" $arg "*) ;;
Chris@39 5414 *) func_append xrpath " $arg" ;;
Chris@39 5415 esac
Chris@39 5416 fi
Chris@39 5417 prev=
Chris@39 5418 continue
Chris@39 5419 ;;
Chris@39 5420 shrext)
Chris@39 5421 shrext_cmds="$arg"
Chris@39 5422 prev=
Chris@39 5423 continue
Chris@39 5424 ;;
Chris@39 5425 weak)
Chris@39 5426 func_append weak_libs " $arg"
Chris@39 5427 prev=
Chris@39 5428 continue
Chris@39 5429 ;;
Chris@39 5430 xcclinker)
Chris@39 5431 func_append linker_flags " $qarg"
Chris@39 5432 func_append compiler_flags " $qarg"
Chris@39 5433 prev=
Chris@39 5434 func_append compile_command " $qarg"
Chris@39 5435 func_append finalize_command " $qarg"
Chris@39 5436 continue
Chris@39 5437 ;;
Chris@39 5438 xcompiler)
Chris@39 5439 func_append compiler_flags " $qarg"
Chris@39 5440 prev=
Chris@39 5441 func_append compile_command " $qarg"
Chris@39 5442 func_append finalize_command " $qarg"
Chris@39 5443 continue
Chris@39 5444 ;;
Chris@39 5445 xlinker)
Chris@39 5446 func_append linker_flags " $qarg"
Chris@39 5447 func_append compiler_flags " $wl$qarg"
Chris@39 5448 prev=
Chris@39 5449 func_append compile_command " $wl$qarg"
Chris@39 5450 func_append finalize_command " $wl$qarg"
Chris@39 5451 continue
Chris@39 5452 ;;
Chris@39 5453 *)
Chris@39 5454 eval "$prev=\"\$arg\""
Chris@39 5455 prev=
Chris@39 5456 continue
Chris@39 5457 ;;
Chris@39 5458 esac
Chris@39 5459 fi # test -n "$prev"
Chris@39 5460
Chris@39 5461 prevarg="$arg"
Chris@39 5462
Chris@39 5463 case $arg in
Chris@39 5464 -all-static)
Chris@39 5465 if test -n "$link_static_flag"; then
Chris@39 5466 # See comment for -static flag below, for more details.
Chris@39 5467 func_append compile_command " $link_static_flag"
Chris@39 5468 func_append finalize_command " $link_static_flag"
Chris@39 5469 fi
Chris@39 5470 continue
Chris@39 5471 ;;
Chris@39 5472
Chris@39 5473 -allow-undefined)
Chris@39 5474 # FIXME: remove this flag sometime in the future.
Chris@39 5475 func_fatal_error "\`-allow-undefined' must not be used because it is the default"
Chris@39 5476 ;;
Chris@39 5477
Chris@39 5478 -avoid-version)
Chris@39 5479 avoid_version=yes
Chris@39 5480 continue
Chris@39 5481 ;;
Chris@39 5482
Chris@39 5483 -bindir)
Chris@39 5484 prev=bindir
Chris@39 5485 continue
Chris@39 5486 ;;
Chris@39 5487
Chris@39 5488 -dlopen)
Chris@39 5489 prev=dlfiles
Chris@39 5490 continue
Chris@39 5491 ;;
Chris@39 5492
Chris@39 5493 -dlpreopen)
Chris@39 5494 prev=dlprefiles
Chris@39 5495 continue
Chris@39 5496 ;;
Chris@39 5497
Chris@39 5498 -export-dynamic)
Chris@39 5499 export_dynamic=yes
Chris@39 5500 continue
Chris@39 5501 ;;
Chris@39 5502
Chris@39 5503 -export-symbols | -export-symbols-regex)
Chris@39 5504 if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
Chris@39 5505 func_fatal_error "more than one -exported-symbols argument is not allowed"
Chris@39 5506 fi
Chris@39 5507 if test "X$arg" = "X-export-symbols"; then
Chris@39 5508 prev=expsyms
Chris@39 5509 else
Chris@39 5510 prev=expsyms_regex
Chris@39 5511 fi
Chris@39 5512 continue
Chris@39 5513 ;;
Chris@39 5514
Chris@39 5515 -framework)
Chris@39 5516 prev=framework
Chris@39 5517 continue
Chris@39 5518 ;;
Chris@39 5519
Chris@39 5520 -inst-prefix-dir)
Chris@39 5521 prev=inst_prefix
Chris@39 5522 continue
Chris@39 5523 ;;
Chris@39 5524
Chris@39 5525 # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
Chris@39 5526 # so, if we see these flags be careful not to treat them like -L
Chris@39 5527 -L[A-Z][A-Z]*:*)
Chris@39 5528 case $with_gcc/$host in
Chris@39 5529 no/*-*-irix* | /*-*-irix*)
Chris@39 5530 func_append compile_command " $arg"
Chris@39 5531 func_append finalize_command " $arg"
Chris@39 5532 ;;
Chris@39 5533 esac
Chris@39 5534 continue
Chris@39 5535 ;;
Chris@39 5536
Chris@39 5537 -L*)
Chris@39 5538 func_stripname "-L" '' "$arg"
Chris@39 5539 if test -z "$func_stripname_result"; then
Chris@39 5540 if test "$#" -gt 0; then
Chris@39 5541 func_fatal_error "require no space between \`-L' and \`$1'"
Chris@39 5542 else
Chris@39 5543 func_fatal_error "need path for \`-L' option"
Chris@39 5544 fi
Chris@39 5545 fi
Chris@39 5546 func_resolve_sysroot "$func_stripname_result"
Chris@39 5547 dir=$func_resolve_sysroot_result
Chris@39 5548 # We need an absolute path.
Chris@39 5549 case $dir in
Chris@39 5550 [\\/]* | [A-Za-z]:[\\/]*) ;;
Chris@39 5551 *)
Chris@39 5552 absdir=`cd "$dir" && pwd`
Chris@39 5553 test -z "$absdir" && \
Chris@39 5554 func_fatal_error "cannot determine absolute directory name of \`$dir'"
Chris@39 5555 dir="$absdir"
Chris@39 5556 ;;
Chris@39 5557 esac
Chris@39 5558 case "$deplibs " in
Chris@39 5559 *" -L$dir "* | *" $arg "*)
Chris@39 5560 # Will only happen for absolute or sysroot arguments
Chris@39 5561 ;;
Chris@39 5562 *)
Chris@39 5563 # Preserve sysroot, but never include relative directories
Chris@39 5564 case $dir in
Chris@39 5565 [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;;
Chris@39 5566 *) func_append deplibs " -L$dir" ;;
Chris@39 5567 esac
Chris@39 5568 func_append lib_search_path " $dir"
Chris@39 5569 ;;
Chris@39 5570 esac
Chris@39 5571 case $host in
Chris@39 5572 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
Chris@39 5573 testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'`
Chris@39 5574 case :$dllsearchpath: in
Chris@39 5575 *":$dir:"*) ;;
Chris@39 5576 ::) dllsearchpath=$dir;;
Chris@39 5577 *) func_append dllsearchpath ":$dir";;
Chris@39 5578 esac
Chris@39 5579 case :$dllsearchpath: in
Chris@39 5580 *":$testbindir:"*) ;;
Chris@39 5581 ::) dllsearchpath=$testbindir;;
Chris@39 5582 *) func_append dllsearchpath ":$testbindir";;
Chris@39 5583 esac
Chris@39 5584 ;;
Chris@39 5585 esac
Chris@39 5586 continue
Chris@39 5587 ;;
Chris@39 5588
Chris@39 5589 -l*)
Chris@39 5590 if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
Chris@39 5591 case $host in
Chris@39 5592 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*)
Chris@39 5593 # These systems don't actually have a C or math library (as such)
Chris@39 5594 continue
Chris@39 5595 ;;
Chris@39 5596 *-*-os2*)
Chris@39 5597 # These systems don't actually have a C library (as such)
Chris@39 5598 test "X$arg" = "X-lc" && continue
Chris@39 5599 ;;
Chris@39 5600 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
Chris@39 5601 # Do not include libc due to us having libc/libc_r.
Chris@39 5602 test "X$arg" = "X-lc" && continue
Chris@39 5603 ;;
Chris@39 5604 *-*-rhapsody* | *-*-darwin1.[012])
Chris@39 5605 # Rhapsody C and math libraries are in the System framework
Chris@39 5606 func_append deplibs " System.ltframework"
Chris@39 5607 continue
Chris@39 5608 ;;
Chris@39 5609 *-*-sco3.2v5* | *-*-sco5v6*)
Chris@39 5610 # Causes problems with __ctype
Chris@39 5611 test "X$arg" = "X-lc" && continue
Chris@39 5612 ;;
Chris@39 5613 *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
Chris@39 5614 # Compiler inserts libc in the correct place for threads to work
Chris@39 5615 test "X$arg" = "X-lc" && continue
Chris@39 5616 ;;
Chris@39 5617 esac
Chris@39 5618 elif test "X$arg" = "X-lc_r"; then
Chris@39 5619 case $host in
Chris@39 5620 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
Chris@39 5621 # Do not include libc_r directly, use -pthread flag.
Chris@39 5622 continue
Chris@39 5623 ;;
Chris@39 5624 esac
Chris@39 5625 fi
Chris@39 5626 func_append deplibs " $arg"
Chris@39 5627 continue
Chris@39 5628 ;;
Chris@39 5629
Chris@39 5630 -module)
Chris@39 5631 module=yes
Chris@39 5632 continue
Chris@39 5633 ;;
Chris@39 5634
Chris@39 5635 # Tru64 UNIX uses -model [arg] to determine the layout of C++
Chris@39 5636 # classes, name mangling, and exception handling.
Chris@39 5637 # Darwin uses the -arch flag to determine output architecture.
Chris@39 5638 -model|-arch|-isysroot|--sysroot)
Chris@39 5639 func_append compiler_flags " $arg"
Chris@39 5640 func_append compile_command " $arg"
Chris@39 5641 func_append finalize_command " $arg"
Chris@39 5642 prev=xcompiler
Chris@39 5643 continue
Chris@39 5644 ;;
Chris@39 5645
Chris@39 5646 -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
Chris@39 5647 func_append compiler_flags " $arg"
Chris@39 5648 func_append compile_command " $arg"
Chris@39 5649 func_append finalize_command " $arg"
Chris@39 5650 case "$new_inherited_linker_flags " in
Chris@39 5651 *" $arg "*) ;;
Chris@39 5652 * ) func_append new_inherited_linker_flags " $arg" ;;
Chris@39 5653 esac
Chris@39 5654 continue
Chris@39 5655 ;;
Chris@39 5656
Chris@39 5657 -multi_module)
Chris@39 5658 single_module="${wl}-multi_module"
Chris@39 5659 continue
Chris@39 5660 ;;
Chris@39 5661
Chris@39 5662 -no-fast-install)
Chris@39 5663 fast_install=no
Chris@39 5664 continue
Chris@39 5665 ;;
Chris@39 5666
Chris@39 5667 -no-install)
Chris@39 5668 case $host in
Chris@39 5669 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*)
Chris@39 5670 # The PATH hackery in wrapper scripts is required on Windows
Chris@39 5671 # and Darwin in order for the loader to find any dlls it needs.
Chris@39 5672 func_warning "\`-no-install' is ignored for $host"
Chris@39 5673 func_warning "assuming \`-no-fast-install' instead"
Chris@39 5674 fast_install=no
Chris@39 5675 ;;
Chris@39 5676 *) no_install=yes ;;
Chris@39 5677 esac
Chris@39 5678 continue
Chris@39 5679 ;;
Chris@39 5680
Chris@39 5681 -no-undefined)
Chris@39 5682 allow_undefined=no
Chris@39 5683 continue
Chris@39 5684 ;;
Chris@39 5685
Chris@39 5686 -objectlist)
Chris@39 5687 prev=objectlist
Chris@39 5688 continue
Chris@39 5689 ;;
Chris@39 5690
Chris@39 5691 -o) prev=output ;;
Chris@39 5692
Chris@39 5693 -precious-files-regex)
Chris@39 5694 prev=precious_regex
Chris@39 5695 continue
Chris@39 5696 ;;
Chris@39 5697
Chris@39 5698 -release)
Chris@39 5699 prev=release
Chris@39 5700 continue
Chris@39 5701 ;;
Chris@39 5702
Chris@39 5703 -rpath)
Chris@39 5704 prev=rpath
Chris@39 5705 continue
Chris@39 5706 ;;
Chris@39 5707
Chris@39 5708 -R)
Chris@39 5709 prev=xrpath
Chris@39 5710 continue
Chris@39 5711 ;;
Chris@39 5712
Chris@39 5713 -R*)
Chris@39 5714 func_stripname '-R' '' "$arg"
Chris@39 5715 dir=$func_stripname_result
Chris@39 5716 # We need an absolute path.
Chris@39 5717 case $dir in
Chris@39 5718 [\\/]* | [A-Za-z]:[\\/]*) ;;
Chris@39 5719 =*)
Chris@39 5720 func_stripname '=' '' "$dir"
Chris@39 5721 dir=$lt_sysroot$func_stripname_result
Chris@39 5722 ;;
Chris@39 5723 *)
Chris@39 5724 func_fatal_error "only absolute run-paths are allowed"
Chris@39 5725 ;;
Chris@39 5726 esac
Chris@39 5727 case "$xrpath " in
Chris@39 5728 *" $dir "*) ;;
Chris@39 5729 *) func_append xrpath " $dir" ;;
Chris@39 5730 esac
Chris@39 5731 continue
Chris@39 5732 ;;
Chris@39 5733
Chris@39 5734 -shared)
Chris@39 5735 # The effects of -shared are defined in a previous loop.
Chris@39 5736 continue
Chris@39 5737 ;;
Chris@39 5738
Chris@39 5739 -shrext)
Chris@39 5740 prev=shrext
Chris@39 5741 continue
Chris@39 5742 ;;
Chris@39 5743
Chris@39 5744 -static | -static-libtool-libs)
Chris@39 5745 # The effects of -static are defined in a previous loop.
Chris@39 5746 # We used to do the same as -all-static on platforms that
Chris@39 5747 # didn't have a PIC flag, but the assumption that the effects
Chris@39 5748 # would be equivalent was wrong. It would break on at least
Chris@39 5749 # Digital Unix and AIX.
Chris@39 5750 continue
Chris@39 5751 ;;
Chris@39 5752
Chris@39 5753 -thread-safe)
Chris@39 5754 thread_safe=yes
Chris@39 5755 continue
Chris@39 5756 ;;
Chris@39 5757
Chris@39 5758 -version-info)
Chris@39 5759 prev=vinfo
Chris@39 5760 continue
Chris@39 5761 ;;
Chris@39 5762
Chris@39 5763 -version-number)
Chris@39 5764 prev=vinfo
Chris@39 5765 vinfo_number=yes
Chris@39 5766 continue
Chris@39 5767 ;;
Chris@39 5768
Chris@39 5769 -weak)
Chris@39 5770 prev=weak
Chris@39 5771 continue
Chris@39 5772 ;;
Chris@39 5773
Chris@39 5774 -Wc,*)
Chris@39 5775 func_stripname '-Wc,' '' "$arg"
Chris@39 5776 args=$func_stripname_result
Chris@39 5777 arg=
Chris@39 5778 save_ifs="$IFS"; IFS=','
Chris@39 5779 for flag in $args; do
Chris@39 5780 IFS="$save_ifs"
Chris@39 5781 func_quote_for_eval "$flag"
Chris@39 5782 func_append arg " $func_quote_for_eval_result"
Chris@39 5783 func_append compiler_flags " $func_quote_for_eval_result"
Chris@39 5784 done
Chris@39 5785 IFS="$save_ifs"
Chris@39 5786 func_stripname ' ' '' "$arg"
Chris@39 5787 arg=$func_stripname_result
Chris@39 5788 ;;
Chris@39 5789
Chris@39 5790 -Wl,*)
Chris@39 5791 func_stripname '-Wl,' '' "$arg"
Chris@39 5792 args=$func_stripname_result
Chris@39 5793 arg=
Chris@39 5794 save_ifs="$IFS"; IFS=','
Chris@39 5795 for flag in $args; do
Chris@39 5796 IFS="$save_ifs"
Chris@39 5797 func_quote_for_eval "$flag"
Chris@39 5798 func_append arg " $wl$func_quote_for_eval_result"
Chris@39 5799 func_append compiler_flags " $wl$func_quote_for_eval_result"
Chris@39 5800 func_append linker_flags " $func_quote_for_eval_result"
Chris@39 5801 done
Chris@39 5802 IFS="$save_ifs"
Chris@39 5803 func_stripname ' ' '' "$arg"
Chris@39 5804 arg=$func_stripname_result
Chris@39 5805 ;;
Chris@39 5806
Chris@39 5807 -Xcompiler)
Chris@39 5808 prev=xcompiler
Chris@39 5809 continue
Chris@39 5810 ;;
Chris@39 5811
Chris@39 5812 -Xlinker)
Chris@39 5813 prev=xlinker
Chris@39 5814 continue
Chris@39 5815 ;;
Chris@39 5816
Chris@39 5817 -XCClinker)
Chris@39 5818 prev=xcclinker
Chris@39 5819 continue
Chris@39 5820 ;;
Chris@39 5821
Chris@39 5822 # -msg_* for osf cc
Chris@39 5823 -msg_*)
Chris@39 5824 func_quote_for_eval "$arg"
Chris@39 5825 arg="$func_quote_for_eval_result"
Chris@39 5826 ;;
Chris@39 5827
Chris@39 5828 # Flags to be passed through unchanged, with rationale:
Chris@39 5829 # -64, -mips[0-9] enable 64-bit mode for the SGI compiler
Chris@39 5830 # -r[0-9][0-9]* specify processor for the SGI compiler
Chris@39 5831 # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler
Chris@39 5832 # +DA*, +DD* enable 64-bit mode for the HP compiler
Chris@39 5833 # -q* compiler args for the IBM compiler
Chris@39 5834 # -m*, -t[45]*, -txscale* architecture-specific flags for GCC
Chris@39 5835 # -F/path path to uninstalled frameworks, gcc on darwin
Chris@39 5836 # -p, -pg, --coverage, -fprofile-* profiling flags for GCC
Chris@39 5837 # @file GCC response files
Chris@39 5838 # -tp=* Portland pgcc target processor selection
Chris@39 5839 # --sysroot=* for sysroot support
Chris@39 5840 # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization
Chris@39 5841 -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
Chris@39 5842 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
Chris@39 5843 -O*|-flto*|-fwhopr*|-fuse-linker-plugin)
Chris@39 5844 func_quote_for_eval "$arg"
Chris@39 5845 arg="$func_quote_for_eval_result"
Chris@39 5846 func_append compile_command " $arg"
Chris@39 5847 func_append finalize_command " $arg"
Chris@39 5848 func_append compiler_flags " $arg"
Chris@39 5849 continue
Chris@39 5850 ;;
Chris@39 5851
Chris@39 5852 # Some other compiler flag.
Chris@39 5853 -* | +*)
Chris@39 5854 func_quote_for_eval "$arg"
Chris@39 5855 arg="$func_quote_for_eval_result"
Chris@39 5856 ;;
Chris@39 5857
Chris@39 5858 *.$objext)
Chris@39 5859 # A standard object.
Chris@39 5860 func_append objs " $arg"
Chris@39 5861 ;;
Chris@39 5862
Chris@39 5863 *.lo)
Chris@39 5864 # A libtool-controlled object.
Chris@39 5865
Chris@39 5866 # Check to see that this really is a libtool object.
Chris@39 5867 if func_lalib_unsafe_p "$arg"; then
Chris@39 5868 pic_object=
Chris@39 5869 non_pic_object=
Chris@39 5870
Chris@39 5871 # Read the .lo file
Chris@39 5872 func_source "$arg"
Chris@39 5873
Chris@39 5874 if test -z "$pic_object" ||
Chris@39 5875 test -z "$non_pic_object" ||
Chris@39 5876 test "$pic_object" = none &&
Chris@39 5877 test "$non_pic_object" = none; then
Chris@39 5878 func_fatal_error "cannot find name of object for \`$arg'"
Chris@39 5879 fi
Chris@39 5880
Chris@39 5881 # Extract subdirectory from the argument.
Chris@39 5882 func_dirname "$arg" "/" ""
Chris@39 5883 xdir="$func_dirname_result"
Chris@39 5884
Chris@39 5885 if test "$pic_object" != none; then
Chris@39 5886 # Prepend the subdirectory the object is found in.
Chris@39 5887 pic_object="$xdir$pic_object"
Chris@39 5888
Chris@39 5889 if test "$prev" = dlfiles; then
Chris@39 5890 if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
Chris@39 5891 func_append dlfiles " $pic_object"
Chris@39 5892 prev=
Chris@39 5893 continue
Chris@39 5894 else
Chris@39 5895 # If libtool objects are unsupported, then we need to preload.
Chris@39 5896 prev=dlprefiles
Chris@39 5897 fi
Chris@39 5898 fi
Chris@39 5899
Chris@39 5900 # CHECK ME: I think I busted this. -Ossama
Chris@39 5901 if test "$prev" = dlprefiles; then
Chris@39 5902 # Preload the old-style object.
Chris@39 5903 func_append dlprefiles " $pic_object"
Chris@39 5904 prev=
Chris@39 5905 fi
Chris@39 5906
Chris@39 5907 # A PIC object.
Chris@39 5908 func_append libobjs " $pic_object"
Chris@39 5909 arg="$pic_object"
Chris@39 5910 fi
Chris@39 5911
Chris@39 5912 # Non-PIC object.
Chris@39 5913 if test "$non_pic_object" != none; then
Chris@39 5914 # Prepend the subdirectory the object is found in.
Chris@39 5915 non_pic_object="$xdir$non_pic_object"
Chris@39 5916
Chris@39 5917 # A standard non-PIC object
Chris@39 5918 func_append non_pic_objects " $non_pic_object"
Chris@39 5919 if test -z "$pic_object" || test "$pic_object" = none ; then
Chris@39 5920 arg="$non_pic_object"
Chris@39 5921 fi
Chris@39 5922 else
Chris@39 5923 # If the PIC object exists, use it instead.
Chris@39 5924 # $xdir was prepended to $pic_object above.
Chris@39 5925 non_pic_object="$pic_object"
Chris@39 5926 func_append non_pic_objects " $non_pic_object"
Chris@39 5927 fi
Chris@39 5928 else
Chris@39 5929 # Only an error if not doing a dry-run.
Chris@39 5930 if $opt_dry_run; then
Chris@39 5931 # Extract subdirectory from the argument.
Chris@39 5932 func_dirname "$arg" "/" ""
Chris@39 5933 xdir="$func_dirname_result"
Chris@39 5934
Chris@39 5935 func_lo2o "$arg"
Chris@39 5936 pic_object=$xdir$objdir/$func_lo2o_result
Chris@39 5937 non_pic_object=$xdir$func_lo2o_result
Chris@39 5938 func_append libobjs " $pic_object"
Chris@39 5939 func_append non_pic_objects " $non_pic_object"
Chris@39 5940 else
Chris@39 5941 func_fatal_error "\`$arg' is not a valid libtool object"
Chris@39 5942 fi
Chris@39 5943 fi
Chris@39 5944 ;;
Chris@39 5945
Chris@39 5946 *.$libext)
Chris@39 5947 # An archive.
Chris@39 5948 func_append deplibs " $arg"
Chris@39 5949 func_append old_deplibs " $arg"
Chris@39 5950 continue
Chris@39 5951 ;;
Chris@39 5952
Chris@39 5953 *.la)
Chris@39 5954 # A libtool-controlled library.
Chris@39 5955
Chris@39 5956 func_resolve_sysroot "$arg"
Chris@39 5957 if test "$prev" = dlfiles; then
Chris@39 5958 # This library was specified with -dlopen.
Chris@39 5959 func_append dlfiles " $func_resolve_sysroot_result"
Chris@39 5960 prev=
Chris@39 5961 elif test "$prev" = dlprefiles; then
Chris@39 5962 # The library was specified with -dlpreopen.
Chris@39 5963 func_append dlprefiles " $func_resolve_sysroot_result"
Chris@39 5964 prev=
Chris@39 5965 else
Chris@39 5966 func_append deplibs " $func_resolve_sysroot_result"
Chris@39 5967 fi
Chris@39 5968 continue
Chris@39 5969 ;;
Chris@39 5970
Chris@39 5971 # Some other compiler argument.
Chris@39 5972 *)
Chris@39 5973 # Unknown arguments in both finalize_command and compile_command need
Chris@39 5974 # to be aesthetically quoted because they are evaled later.
Chris@39 5975 func_quote_for_eval "$arg"
Chris@39 5976 arg="$func_quote_for_eval_result"
Chris@39 5977 ;;
Chris@39 5978 esac # arg
Chris@39 5979
Chris@39 5980 # Now actually substitute the argument into the commands.
Chris@39 5981 if test -n "$arg"; then
Chris@39 5982 func_append compile_command " $arg"
Chris@39 5983 func_append finalize_command " $arg"
Chris@39 5984 fi
Chris@39 5985 done # argument parsing loop
Chris@39 5986
Chris@39 5987 test -n "$prev" && \
Chris@39 5988 func_fatal_help "the \`$prevarg' option requires an argument"
Chris@39 5989
Chris@39 5990 if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
Chris@39 5991 eval arg=\"$export_dynamic_flag_spec\"
Chris@39 5992 func_append compile_command " $arg"
Chris@39 5993 func_append finalize_command " $arg"
Chris@39 5994 fi
Chris@39 5995
Chris@39 5996 oldlibs=
Chris@39 5997 # calculate the name of the file, without its directory
Chris@39 5998 func_basename "$output"
Chris@39 5999 outputname="$func_basename_result"
Chris@39 6000 libobjs_save="$libobjs"
Chris@39 6001
Chris@39 6002 if test -n "$shlibpath_var"; then
Chris@39 6003 # get the directories listed in $shlibpath_var
Chris@39 6004 eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\`
Chris@39 6005 else
Chris@39 6006 shlib_search_path=
Chris@39 6007 fi
Chris@39 6008 eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
Chris@39 6009 eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"
Chris@39 6010
Chris@39 6011 func_dirname "$output" "/" ""
Chris@39 6012 output_objdir="$func_dirname_result$objdir"
Chris@39 6013 func_to_tool_file "$output_objdir/"
Chris@39 6014 tool_output_objdir=$func_to_tool_file_result
Chris@39 6015 # Create the object directory.
Chris@39 6016 func_mkdir_p "$output_objdir"
Chris@39 6017
Chris@39 6018 # Determine the type of output
Chris@39 6019 case $output in
Chris@39 6020 "")
Chris@39 6021 func_fatal_help "you must specify an output file"
Chris@39 6022 ;;
Chris@39 6023 *.$libext) linkmode=oldlib ;;
Chris@39 6024 *.lo | *.$objext) linkmode=obj ;;
Chris@39 6025 *.la) linkmode=lib ;;
Chris@39 6026 *) linkmode=prog ;; # Anything else should be a program.
Chris@39 6027 esac
Chris@39 6028
Chris@39 6029 specialdeplibs=
Chris@39 6030
Chris@39 6031 libs=
Chris@39 6032 # Find all interdependent deplibs by searching for libraries
Chris@39 6033 # that are linked more than once (e.g. -la -lb -la)
Chris@39 6034 for deplib in $deplibs; do
Chris@39 6035 if $opt_preserve_dup_deps ; then
Chris@39 6036 case "$libs " in
Chris@39 6037 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
Chris@39 6038 esac
Chris@39 6039 fi
Chris@39 6040 func_append libs " $deplib"
Chris@39 6041 done
Chris@39 6042
Chris@39 6043 if test "$linkmode" = lib; then
Chris@39 6044 libs="$predeps $libs $compiler_lib_search_path $postdeps"
Chris@39 6045
Chris@39 6046 # Compute libraries that are listed more than once in $predeps
Chris@39 6047 # $postdeps and mark them as special (i.e., whose duplicates are
Chris@39 6048 # not to be eliminated).
Chris@39 6049 pre_post_deps=
Chris@39 6050 if $opt_duplicate_compiler_generated_deps; then
Chris@39 6051 for pre_post_dep in $predeps $postdeps; do
Chris@39 6052 case "$pre_post_deps " in
Chris@39 6053 *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;;
Chris@39 6054 esac
Chris@39 6055 func_append pre_post_deps " $pre_post_dep"
Chris@39 6056 done
Chris@39 6057 fi
Chris@39 6058 pre_post_deps=
Chris@39 6059 fi
Chris@39 6060
Chris@39 6061 deplibs=
Chris@39 6062 newdependency_libs=
Chris@39 6063 newlib_search_path=
Chris@39 6064 need_relink=no # whether we're linking any uninstalled libtool libraries
Chris@39 6065 notinst_deplibs= # not-installed libtool libraries
Chris@39 6066 notinst_path= # paths that contain not-installed libtool libraries
Chris@39 6067
Chris@39 6068 case $linkmode in
Chris@39 6069 lib)
Chris@39 6070 passes="conv dlpreopen link"
Chris@39 6071 for file in $dlfiles $dlprefiles; do
Chris@39 6072 case $file in
Chris@39 6073 *.la) ;;
Chris@39 6074 *)
Chris@39 6075 func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file"
Chris@39 6076 ;;
Chris@39 6077 esac
Chris@39 6078 done
Chris@39 6079 ;;
Chris@39 6080 prog)
Chris@39 6081 compile_deplibs=
Chris@39 6082 finalize_deplibs=
Chris@39 6083 alldeplibs=no
Chris@39 6084 newdlfiles=
Chris@39 6085 newdlprefiles=
Chris@39 6086 passes="conv scan dlopen dlpreopen link"
Chris@39 6087 ;;
Chris@39 6088 *) passes="conv"
Chris@39 6089 ;;
Chris@39 6090 esac
Chris@39 6091
Chris@39 6092 for pass in $passes; do
Chris@39 6093 # The preopen pass in lib mode reverses $deplibs; put it back here
Chris@39 6094 # so that -L comes before libs that need it for instance...
Chris@39 6095 if test "$linkmode,$pass" = "lib,link"; then
Chris@39 6096 ## FIXME: Find the place where the list is rebuilt in the wrong
Chris@39 6097 ## order, and fix it there properly
Chris@39 6098 tmp_deplibs=
Chris@39 6099 for deplib in $deplibs; do
Chris@39 6100 tmp_deplibs="$deplib $tmp_deplibs"
Chris@39 6101 done
Chris@39 6102 deplibs="$tmp_deplibs"
Chris@39 6103 fi
Chris@39 6104
Chris@39 6105 if test "$linkmode,$pass" = "lib,link" ||
Chris@39 6106 test "$linkmode,$pass" = "prog,scan"; then
Chris@39 6107 libs="$deplibs"
Chris@39 6108 deplibs=
Chris@39 6109 fi
Chris@39 6110 if test "$linkmode" = prog; then
Chris@39 6111 case $pass in
Chris@39 6112 dlopen) libs="$dlfiles" ;;
Chris@39 6113 dlpreopen) libs="$dlprefiles" ;;
Chris@39 6114 link)
Chris@39 6115 libs="$deplibs %DEPLIBS%"
Chris@39 6116 test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
Chris@39 6117 ;;
Chris@39 6118 esac
Chris@39 6119 fi
Chris@39 6120 if test "$linkmode,$pass" = "lib,dlpreopen"; then
Chris@39 6121 # Collect and forward deplibs of preopened libtool libs
Chris@39 6122 for lib in $dlprefiles; do
Chris@39 6123 # Ignore non-libtool-libs
Chris@39 6124 dependency_libs=
Chris@39 6125 func_resolve_sysroot "$lib"
Chris@39 6126 case $lib in
Chris@39 6127 *.la) func_source "$func_resolve_sysroot_result" ;;
Chris@39 6128 esac
Chris@39 6129
Chris@39 6130 # Collect preopened libtool deplibs, except any this library
Chris@39 6131 # has declared as weak libs
Chris@39 6132 for deplib in $dependency_libs; do
Chris@39 6133 func_basename "$deplib"
Chris@39 6134 deplib_base=$func_basename_result
Chris@39 6135 case " $weak_libs " in
Chris@39 6136 *" $deplib_base "*) ;;
Chris@39 6137 *) func_append deplibs " $deplib" ;;
Chris@39 6138 esac
Chris@39 6139 done
Chris@39 6140 done
Chris@39 6141 libs="$dlprefiles"
Chris@39 6142 fi
Chris@39 6143 if test "$pass" = dlopen; then
Chris@39 6144 # Collect dlpreopened libraries
Chris@39 6145 save_deplibs="$deplibs"
Chris@39 6146 deplibs=
Chris@39 6147 fi
Chris@39 6148
Chris@39 6149 for deplib in $libs; do
Chris@39 6150 lib=
Chris@39 6151 found=no
Chris@39 6152 case $deplib in
Chris@39 6153 -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
Chris@39 6154 if test "$linkmode,$pass" = "prog,link"; then
Chris@39 6155 compile_deplibs="$deplib $compile_deplibs"
Chris@39 6156 finalize_deplibs="$deplib $finalize_deplibs"
Chris@39 6157 else
Chris@39 6158 func_append compiler_flags " $deplib"
Chris@39 6159 if test "$linkmode" = lib ; then
Chris@39 6160 case "$new_inherited_linker_flags " in
Chris@39 6161 *" $deplib "*) ;;
Chris@39 6162 * ) func_append new_inherited_linker_flags " $deplib" ;;
Chris@39 6163 esac
Chris@39 6164 fi
Chris@39 6165 fi
Chris@39 6166 continue
Chris@39 6167 ;;
Chris@39 6168 -l*)
Chris@39 6169 if test "$linkmode" != lib && test "$linkmode" != prog; then
Chris@39 6170 func_warning "\`-l' is ignored for archives/objects"
Chris@39 6171 continue
Chris@39 6172 fi
Chris@39 6173 func_stripname '-l' '' "$deplib"
Chris@39 6174 name=$func_stripname_result
Chris@39 6175 if test "$linkmode" = lib; then
Chris@39 6176 searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path"
Chris@39 6177 else
Chris@39 6178 searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path"
Chris@39 6179 fi
Chris@39 6180 for searchdir in $searchdirs; do
Chris@39 6181 for search_ext in .la $std_shrext .so .a; do
Chris@39 6182 # Search the libtool library
Chris@39 6183 lib="$searchdir/lib${name}${search_ext}"
Chris@39 6184 if test -f "$lib"; then
Chris@39 6185 if test "$search_ext" = ".la"; then
Chris@39 6186 found=yes
Chris@39 6187 else
Chris@39 6188 found=no
Chris@39 6189 fi
Chris@39 6190 break 2
Chris@39 6191 fi
Chris@39 6192 done
Chris@39 6193 done
Chris@39 6194 if test "$found" != yes; then
Chris@39 6195 # deplib doesn't seem to be a libtool library
Chris@39 6196 if test "$linkmode,$pass" = "prog,link"; then
Chris@39 6197 compile_deplibs="$deplib $compile_deplibs"
Chris@39 6198 finalize_deplibs="$deplib $finalize_deplibs"
Chris@39 6199 else
Chris@39 6200 deplibs="$deplib $deplibs"
Chris@39 6201 test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
Chris@39 6202 fi
Chris@39 6203 continue
Chris@39 6204 else # deplib is a libtool library
Chris@39 6205 # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,
Chris@39 6206 # We need to do some special things here, and not later.
Chris@39 6207 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
Chris@39 6208 case " $predeps $postdeps " in
Chris@39 6209 *" $deplib "*)
Chris@39 6210 if func_lalib_p "$lib"; then
Chris@39 6211 library_names=
Chris@39 6212 old_library=
Chris@39 6213 func_source "$lib"
Chris@39 6214 for l in $old_library $library_names; do
Chris@39 6215 ll="$l"
Chris@39 6216 done
Chris@39 6217 if test "X$ll" = "X$old_library" ; then # only static version available
Chris@39 6218 found=no
Chris@39 6219 func_dirname "$lib" "" "."
Chris@39 6220 ladir="$func_dirname_result"
Chris@39 6221 lib=$ladir/$old_library
Chris@39 6222 if test "$linkmode,$pass" = "prog,link"; then
Chris@39 6223 compile_deplibs="$deplib $compile_deplibs"
Chris@39 6224 finalize_deplibs="$deplib $finalize_deplibs"
Chris@39 6225 else
Chris@39 6226 deplibs="$deplib $deplibs"
Chris@39 6227 test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
Chris@39 6228 fi
Chris@39 6229 continue
Chris@39 6230 fi
Chris@39 6231 fi
Chris@39 6232 ;;
Chris@39 6233 *) ;;
Chris@39 6234 esac
Chris@39 6235 fi
Chris@39 6236 fi
Chris@39 6237 ;; # -l
Chris@39 6238 *.ltframework)
Chris@39 6239 if test "$linkmode,$pass" = "prog,link"; then
Chris@39 6240 compile_deplibs="$deplib $compile_deplibs"
Chris@39 6241 finalize_deplibs="$deplib $finalize_deplibs"
Chris@39 6242 else
Chris@39 6243 deplibs="$deplib $deplibs"
Chris@39 6244 if test "$linkmode" = lib ; then
Chris@39 6245 case "$new_inherited_linker_flags " in
Chris@39 6246 *" $deplib "*) ;;
Chris@39 6247 * ) func_append new_inherited_linker_flags " $deplib" ;;
Chris@39 6248 esac
Chris@39 6249 fi
Chris@39 6250 fi
Chris@39 6251 continue
Chris@39 6252 ;;
Chris@39 6253 -L*)
Chris@39 6254 case $linkmode in
Chris@39 6255 lib)
Chris@39 6256 deplibs="$deplib $deplibs"
Chris@39 6257 test "$pass" = conv && continue
Chris@39 6258 newdependency_libs="$deplib $newdependency_libs"
Chris@39 6259 func_stripname '-L' '' "$deplib"
Chris@39 6260 func_resolve_sysroot "$func_stripname_result"
Chris@39 6261 func_append newlib_search_path " $func_resolve_sysroot_result"
Chris@39 6262 ;;
Chris@39 6263 prog)
Chris@39 6264 if test "$pass" = conv; then
Chris@39 6265 deplibs="$deplib $deplibs"
Chris@39 6266 continue
Chris@39 6267 fi
Chris@39 6268 if test "$pass" = scan; then
Chris@39 6269 deplibs="$deplib $deplibs"
Chris@39 6270 else
Chris@39 6271 compile_deplibs="$deplib $compile_deplibs"
Chris@39 6272 finalize_deplibs="$deplib $finalize_deplibs"
Chris@39 6273 fi
Chris@39 6274 func_stripname '-L' '' "$deplib"
Chris@39 6275 func_resolve_sysroot "$func_stripname_result"
Chris@39 6276 func_append newlib_search_path " $func_resolve_sysroot_result"
Chris@39 6277 ;;
Chris@39 6278 *)
Chris@39 6279 func_warning "\`-L' is ignored for archives/objects"
Chris@39 6280 ;;
Chris@39 6281 esac # linkmode
Chris@39 6282 continue
Chris@39 6283 ;; # -L
Chris@39 6284 -R*)
Chris@39 6285 if test "$pass" = link; then
Chris@39 6286 func_stripname '-R' '' "$deplib"
Chris@39 6287 func_resolve_sysroot "$func_stripname_result"
Chris@39 6288 dir=$func_resolve_sysroot_result
Chris@39 6289 # Make sure the xrpath contains only unique directories.
Chris@39 6290 case "$xrpath " in
Chris@39 6291 *" $dir "*) ;;
Chris@39 6292 *) func_append xrpath " $dir" ;;
Chris@39 6293 esac
Chris@39 6294 fi
Chris@39 6295 deplibs="$deplib $deplibs"
Chris@39 6296 continue
Chris@39 6297 ;;
Chris@39 6298 *.la)
Chris@39 6299 func_resolve_sysroot "$deplib"
Chris@39 6300 lib=$func_resolve_sysroot_result
Chris@39 6301 ;;
Chris@39 6302 *.$libext)
Chris@39 6303 if test "$pass" = conv; then
Chris@39 6304 deplibs="$deplib $deplibs"
Chris@39 6305 continue
Chris@39 6306 fi
Chris@39 6307 case $linkmode in
Chris@39 6308 lib)
Chris@39 6309 # Linking convenience modules into shared libraries is allowed,
Chris@39 6310 # but linking other static libraries is non-portable.
Chris@39 6311 case " $dlpreconveniencelibs " in
Chris@39 6312 *" $deplib "*) ;;
Chris@39 6313 *)
Chris@39 6314 valid_a_lib=no
Chris@39 6315 case $deplibs_check_method in
Chris@39 6316 match_pattern*)
Chris@39 6317 set dummy $deplibs_check_method; shift
Chris@39 6318 match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
Chris@39 6319 if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \
Chris@39 6320 | $EGREP "$match_pattern_regex" > /dev/null; then
Chris@39 6321 valid_a_lib=yes
Chris@39 6322 fi
Chris@39 6323 ;;
Chris@39 6324 pass_all)
Chris@39 6325 valid_a_lib=yes
Chris@39 6326 ;;
Chris@39 6327 esac
Chris@39 6328 if test "$valid_a_lib" != yes; then
Chris@39 6329 echo
Chris@39 6330 $ECHO "*** Warning: Trying to link with static lib archive $deplib."
Chris@39 6331 echo "*** I have the capability to make that library automatically link in when"
Chris@39 6332 echo "*** you link to this library. But I can only do this if you have a"
Chris@39 6333 echo "*** shared version of the library, which you do not appear to have"
Chris@39 6334 echo "*** because the file extensions .$libext of this argument makes me believe"
Chris@39 6335 echo "*** that it is just a static archive that I should not use here."
Chris@39 6336 else
Chris@39 6337 echo
Chris@39 6338 $ECHO "*** Warning: Linking the shared library $output against the"
Chris@39 6339 $ECHO "*** static library $deplib is not portable!"
Chris@39 6340 deplibs="$deplib $deplibs"
Chris@39 6341 fi
Chris@39 6342 ;;
Chris@39 6343 esac
Chris@39 6344 continue
Chris@39 6345 ;;
Chris@39 6346 prog)
Chris@39 6347 if test "$pass" != link; then
Chris@39 6348 deplibs="$deplib $deplibs"
Chris@39 6349 else
Chris@39 6350 compile_deplibs="$deplib $compile_deplibs"
Chris@39 6351 finalize_deplibs="$deplib $finalize_deplibs"
Chris@39 6352 fi
Chris@39 6353 continue
Chris@39 6354 ;;
Chris@39 6355 esac # linkmode
Chris@39 6356 ;; # *.$libext
Chris@39 6357 *.lo | *.$objext)
Chris@39 6358 if test "$pass" = conv; then
Chris@39 6359 deplibs="$deplib $deplibs"
Chris@39 6360 elif test "$linkmode" = prog; then
Chris@39 6361 if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
Chris@39 6362 # If there is no dlopen support or we're linking statically,
Chris@39 6363 # we need to preload.
Chris@39 6364 func_append newdlprefiles " $deplib"
Chris@39 6365 compile_deplibs="$deplib $compile_deplibs"
Chris@39 6366 finalize_deplibs="$deplib $finalize_deplibs"
Chris@39 6367 else
Chris@39 6368 func_append newdlfiles " $deplib"
Chris@39 6369 fi
Chris@39 6370 fi
Chris@39 6371 continue
Chris@39 6372 ;;
Chris@39 6373 %DEPLIBS%)
Chris@39 6374 alldeplibs=yes
Chris@39 6375 continue
Chris@39 6376 ;;
Chris@39 6377 esac # case $deplib
Chris@39 6378
Chris@39 6379 if test "$found" = yes || test -f "$lib"; then :
Chris@39 6380 else
Chris@39 6381 func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'"
Chris@39 6382 fi
Chris@39 6383
Chris@39 6384 # Check to see that this really is a libtool archive.
Chris@39 6385 func_lalib_unsafe_p "$lib" \
Chris@39 6386 || func_fatal_error "\`$lib' is not a valid libtool archive"
Chris@39 6387
Chris@39 6388 func_dirname "$lib" "" "."
Chris@39 6389 ladir="$func_dirname_result"
Chris@39 6390
Chris@39 6391 dlname=
Chris@39 6392 dlopen=
Chris@39 6393 dlpreopen=
Chris@39 6394 libdir=
Chris@39 6395 library_names=
Chris@39 6396 old_library=
Chris@39 6397 inherited_linker_flags=
Chris@39 6398 # If the library was installed with an old release of libtool,
Chris@39 6399 # it will not redefine variables installed, or shouldnotlink
Chris@39 6400 installed=yes
Chris@39 6401 shouldnotlink=no
Chris@39 6402 avoidtemprpath=
Chris@39 6403
Chris@39 6404
Chris@39 6405 # Read the .la file
Chris@39 6406 func_source "$lib"
Chris@39 6407
Chris@39 6408 # Convert "-framework foo" to "foo.ltframework"
Chris@39 6409 if test -n "$inherited_linker_flags"; then
Chris@39 6410 tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'`
Chris@39 6411 for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do
Chris@39 6412 case " $new_inherited_linker_flags " in
Chris@39 6413 *" $tmp_inherited_linker_flag "*) ;;
Chris@39 6414 *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";;
Chris@39 6415 esac
Chris@39 6416 done
Chris@39 6417 fi
Chris@39 6418 dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
Chris@39 6419 if test "$linkmode,$pass" = "lib,link" ||
Chris@39 6420 test "$linkmode,$pass" = "prog,scan" ||
Chris@39 6421 { test "$linkmode" != prog && test "$linkmode" != lib; }; then
Chris@39 6422 test -n "$dlopen" && func_append dlfiles " $dlopen"
Chris@39 6423 test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen"
Chris@39 6424 fi
Chris@39 6425
Chris@39 6426 if test "$pass" = conv; then
Chris@39 6427 # Only check for convenience libraries
Chris@39 6428 deplibs="$lib $deplibs"
Chris@39 6429 if test -z "$libdir"; then
Chris@39 6430 if test -z "$old_library"; then
Chris@39 6431 func_fatal_error "cannot find name of link library for \`$lib'"
Chris@39 6432 fi
Chris@39 6433 # It is a libtool convenience library, so add in its objects.
Chris@39 6434 func_append convenience " $ladir/$objdir/$old_library"
Chris@39 6435 func_append old_convenience " $ladir/$objdir/$old_library"
Chris@39 6436 tmp_libs=
Chris@39 6437 for deplib in $dependency_libs; do
Chris@39 6438 deplibs="$deplib $deplibs"
Chris@39 6439 if $opt_preserve_dup_deps ; then
Chris@39 6440 case "$tmp_libs " in
Chris@39 6441 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
Chris@39 6442 esac
Chris@39 6443 fi
Chris@39 6444 func_append tmp_libs " $deplib"
Chris@39 6445 done
Chris@39 6446 elif test "$linkmode" != prog && test "$linkmode" != lib; then
Chris@39 6447 func_fatal_error "\`$lib' is not a convenience library"
Chris@39 6448 fi
Chris@39 6449 continue
Chris@39 6450 fi # $pass = conv
Chris@39 6451
Chris@39 6452
Chris@39 6453 # Get the name of the library we link against.
Chris@39 6454 linklib=
Chris@39 6455 if test -n "$old_library" &&
Chris@39 6456 { test "$prefer_static_libs" = yes ||
Chris@39 6457 test "$prefer_static_libs,$installed" = "built,no"; }; then
Chris@39 6458 linklib=$old_library
Chris@39 6459 else
Chris@39 6460 for l in $old_library $library_names; do
Chris@39 6461 linklib="$l"
Chris@39 6462 done
Chris@39 6463 fi
Chris@39 6464 if test -z "$linklib"; then
Chris@39 6465 func_fatal_error "cannot find name of link library for \`$lib'"
Chris@39 6466 fi
Chris@39 6467
Chris@39 6468 # This library was specified with -dlopen.
Chris@39 6469 if test "$pass" = dlopen; then
Chris@39 6470 if test -z "$libdir"; then
Chris@39 6471 func_fatal_error "cannot -dlopen a convenience library: \`$lib'"
Chris@39 6472 fi
Chris@39 6473 if test -z "$dlname" ||
Chris@39 6474 test "$dlopen_support" != yes ||
Chris@39 6475 test "$build_libtool_libs" = no; then
Chris@39 6476 # If there is no dlname, no dlopen support or we're linking
Chris@39 6477 # statically, we need to preload. We also need to preload any
Chris@39 6478 # dependent libraries so libltdl's deplib preloader doesn't
Chris@39 6479 # bomb out in the load deplibs phase.
Chris@39 6480 func_append dlprefiles " $lib $dependency_libs"
Chris@39 6481 else
Chris@39 6482 func_append newdlfiles " $lib"
Chris@39 6483 fi
Chris@39 6484 continue
Chris@39 6485 fi # $pass = dlopen
Chris@39 6486
Chris@39 6487 # We need an absolute path.
Chris@39 6488 case $ladir in
Chris@39 6489 [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;
Chris@39 6490 *)
Chris@39 6491 abs_ladir=`cd "$ladir" && pwd`
Chris@39 6492 if test -z "$abs_ladir"; then
Chris@39 6493 func_warning "cannot determine absolute directory name of \`$ladir'"
Chris@39 6494 func_warning "passing it literally to the linker, although it might fail"
Chris@39 6495 abs_ladir="$ladir"
Chris@39 6496 fi
Chris@39 6497 ;;
Chris@39 6498 esac
Chris@39 6499 func_basename "$lib"
Chris@39 6500 laname="$func_basename_result"
Chris@39 6501
Chris@39 6502 # Find the relevant object directory and library name.
Chris@39 6503 if test "X$installed" = Xyes; then
Chris@39 6504 if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
Chris@39 6505 func_warning "library \`$lib' was moved."
Chris@39 6506 dir="$ladir"
Chris@39 6507 absdir="$abs_ladir"
Chris@39 6508 libdir="$abs_ladir"
Chris@39 6509 else
Chris@39 6510 dir="$lt_sysroot$libdir"
Chris@39 6511 absdir="$lt_sysroot$libdir"
Chris@39 6512 fi
Chris@39 6513 test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes
Chris@39 6514 else
Chris@39 6515 if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then
Chris@39 6516 dir="$ladir"
Chris@39 6517 absdir="$abs_ladir"
Chris@39 6518 # Remove this search path later
Chris@39 6519 func_append notinst_path " $abs_ladir"
Chris@39 6520 else
Chris@39 6521 dir="$ladir/$objdir"
Chris@39 6522 absdir="$abs_ladir/$objdir"
Chris@39 6523 # Remove this search path later
Chris@39 6524 func_append notinst_path " $abs_ladir"
Chris@39 6525 fi
Chris@39 6526 fi # $installed = yes
Chris@39 6527 func_stripname 'lib' '.la' "$laname"
Chris@39 6528 name=$func_stripname_result
Chris@39 6529
Chris@39 6530 # This library was specified with -dlpreopen.
Chris@39 6531 if test "$pass" = dlpreopen; then
Chris@39 6532 if test -z "$libdir" && test "$linkmode" = prog; then
Chris@39 6533 func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'"
Chris@39 6534 fi
Chris@39 6535 case "$host" in
Chris@39 6536 # special handling for platforms with PE-DLLs.
Chris@39 6537 *cygwin* | *mingw* | *cegcc* )
Chris@39 6538 # Linker will automatically link against shared library if both
Chris@39 6539 # static and shared are present. Therefore, ensure we extract
Chris@39 6540 # symbols from the import library if a shared library is present
Chris@39 6541 # (otherwise, the dlopen module name will be incorrect). We do
Chris@39 6542 # this by putting the import library name into $newdlprefiles.
Chris@39 6543 # We recover the dlopen module name by 'saving' the la file
Chris@39 6544 # name in a special purpose variable, and (later) extracting the
Chris@39 6545 # dlname from the la file.
Chris@39 6546 if test -n "$dlname"; then
Chris@39 6547 func_tr_sh "$dir/$linklib"
Chris@39 6548 eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname"
Chris@39 6549 func_append newdlprefiles " $dir/$linklib"
Chris@39 6550 else
Chris@39 6551 func_append newdlprefiles " $dir/$old_library"
Chris@39 6552 # Keep a list of preopened convenience libraries to check
Chris@39 6553 # that they are being used correctly in the link pass.
Chris@39 6554 test -z "$libdir" && \
Chris@39 6555 func_append dlpreconveniencelibs " $dir/$old_library"
Chris@39 6556 fi
Chris@39 6557 ;;
Chris@39 6558 * )
Chris@39 6559 # Prefer using a static library (so that no silly _DYNAMIC symbols
Chris@39 6560 # are required to link).
Chris@39 6561 if test -n "$old_library"; then
Chris@39 6562 func_append newdlprefiles " $dir/$old_library"
Chris@39 6563 # Keep a list of preopened convenience libraries to check
Chris@39 6564 # that they are being used correctly in the link pass.
Chris@39 6565 test -z "$libdir" && \
Chris@39 6566 func_append dlpreconveniencelibs " $dir/$old_library"
Chris@39 6567 # Otherwise, use the dlname, so that lt_dlopen finds it.
Chris@39 6568 elif test -n "$dlname"; then
Chris@39 6569 func_append newdlprefiles " $dir/$dlname"
Chris@39 6570 else
Chris@39 6571 func_append newdlprefiles " $dir/$linklib"
Chris@39 6572 fi
Chris@39 6573 ;;
Chris@39 6574 esac
Chris@39 6575 fi # $pass = dlpreopen
Chris@39 6576
Chris@39 6577 if test -z "$libdir"; then
Chris@39 6578 # Link the convenience library
Chris@39 6579 if test "$linkmode" = lib; then
Chris@39 6580 deplibs="$dir/$old_library $deplibs"
Chris@39 6581 elif test "$linkmode,$pass" = "prog,link"; then
Chris@39 6582 compile_deplibs="$dir/$old_library $compile_deplibs"
Chris@39 6583 finalize_deplibs="$dir/$old_library $finalize_deplibs"
Chris@39 6584 else
Chris@39 6585 deplibs="$lib $deplibs" # used for prog,scan pass
Chris@39 6586 fi
Chris@39 6587 continue
Chris@39 6588 fi
Chris@39 6589
Chris@39 6590
Chris@39 6591 if test "$linkmode" = prog && test "$pass" != link; then
Chris@39 6592 func_append newlib_search_path " $ladir"
Chris@39 6593 deplibs="$lib $deplibs"
Chris@39 6594
Chris@39 6595 linkalldeplibs=no
Chris@39 6596 if test "$link_all_deplibs" != no || test -z "$library_names" ||
Chris@39 6597 test "$build_libtool_libs" = no; then
Chris@39 6598 linkalldeplibs=yes
Chris@39 6599 fi
Chris@39 6600
Chris@39 6601 tmp_libs=
Chris@39 6602 for deplib in $dependency_libs; do
Chris@39 6603 case $deplib in
Chris@39 6604 -L*) func_stripname '-L' '' "$deplib"
Chris@39 6605 func_resolve_sysroot "$func_stripname_result"
Chris@39 6606 func_append newlib_search_path " $func_resolve_sysroot_result"
Chris@39 6607 ;;
Chris@39 6608 esac
Chris@39 6609 # Need to link against all dependency_libs?
Chris@39 6610 if test "$linkalldeplibs" = yes; then
Chris@39 6611 deplibs="$deplib $deplibs"
Chris@39 6612 else
Chris@39 6613 # Need to hardcode shared library paths
Chris@39 6614 # or/and link against static libraries
Chris@39 6615 newdependency_libs="$deplib $newdependency_libs"
Chris@39 6616 fi
Chris@39 6617 if $opt_preserve_dup_deps ; then
Chris@39 6618 case "$tmp_libs " in
Chris@39 6619 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
Chris@39 6620 esac
Chris@39 6621 fi
Chris@39 6622 func_append tmp_libs " $deplib"
Chris@39 6623 done # for deplib
Chris@39 6624 continue
Chris@39 6625 fi # $linkmode = prog...
Chris@39 6626
Chris@39 6627 if test "$linkmode,$pass" = "prog,link"; then
Chris@39 6628 if test -n "$library_names" &&
Chris@39 6629 { { test "$prefer_static_libs" = no ||
Chris@39 6630 test "$prefer_static_libs,$installed" = "built,yes"; } ||
Chris@39 6631 test -z "$old_library"; }; then
Chris@39 6632 # We need to hardcode the library path
Chris@39 6633 if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then
Chris@39 6634 # Make sure the rpath contains only unique directories.
Chris@39 6635 case "$temp_rpath:" in
Chris@39 6636 *"$absdir:"*) ;;
Chris@39 6637 *) func_append temp_rpath "$absdir:" ;;
Chris@39 6638 esac
Chris@39 6639 fi
Chris@39 6640
Chris@39 6641 # Hardcode the library path.
Chris@39 6642 # Skip directories that are in the system default run-time
Chris@39 6643 # search path.
Chris@39 6644 case " $sys_lib_dlsearch_path " in
Chris@39 6645 *" $absdir "*) ;;
Chris@39 6646 *)
Chris@39 6647 case "$compile_rpath " in
Chris@39 6648 *" $absdir "*) ;;
Chris@39 6649 *) func_append compile_rpath " $absdir" ;;
Chris@39 6650 esac
Chris@39 6651 ;;
Chris@39 6652 esac
Chris@39 6653 case " $sys_lib_dlsearch_path " in
Chris@39 6654 *" $libdir "*) ;;
Chris@39 6655 *)
Chris@39 6656 case "$finalize_rpath " in
Chris@39 6657 *" $libdir "*) ;;
Chris@39 6658 *) func_append finalize_rpath " $libdir" ;;
Chris@39 6659 esac
Chris@39 6660 ;;
Chris@39 6661 esac
Chris@39 6662 fi # $linkmode,$pass = prog,link...
Chris@39 6663
Chris@39 6664 if test "$alldeplibs" = yes &&
Chris@39 6665 { test "$deplibs_check_method" = pass_all ||
Chris@39 6666 { test "$build_libtool_libs" = yes &&
Chris@39 6667 test -n "$library_names"; }; }; then
Chris@39 6668 # We only need to search for static libraries
Chris@39 6669 continue
Chris@39 6670 fi
Chris@39 6671 fi
Chris@39 6672
Chris@39 6673 link_static=no # Whether the deplib will be linked statically
Chris@39 6674 use_static_libs=$prefer_static_libs
Chris@39 6675 if test "$use_static_libs" = built && test "$installed" = yes; then
Chris@39 6676 use_static_libs=no
Chris@39 6677 fi
Chris@39 6678 if test -n "$library_names" &&
Chris@39 6679 { test "$use_static_libs" = no || test -z "$old_library"; }; then
Chris@39 6680 case $host in
Chris@39 6681 *cygwin* | *mingw* | *cegcc*)
Chris@39 6682 # No point in relinking DLLs because paths are not encoded
Chris@39 6683 func_append notinst_deplibs " $lib"
Chris@39 6684 need_relink=no
Chris@39 6685 ;;
Chris@39 6686 *)
Chris@39 6687 if test "$installed" = no; then
Chris@39 6688 func_append notinst_deplibs " $lib"
Chris@39 6689 need_relink=yes
Chris@39 6690 fi
Chris@39 6691 ;;
Chris@39 6692 esac
Chris@39 6693 # This is a shared library
Chris@39 6694
Chris@39 6695 # Warn about portability, can't link against -module's on some
Chris@39 6696 # systems (darwin). Don't bleat about dlopened modules though!
Chris@39 6697 dlopenmodule=""
Chris@39 6698 for dlpremoduletest in $dlprefiles; do
Chris@39 6699 if test "X$dlpremoduletest" = "X$lib"; then
Chris@39 6700 dlopenmodule="$dlpremoduletest"
Chris@39 6701 break
Chris@39 6702 fi
Chris@39 6703 done
Chris@39 6704 if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then
Chris@39 6705 echo
Chris@39 6706 if test "$linkmode" = prog; then
Chris@39 6707 $ECHO "*** Warning: Linking the executable $output against the loadable module"
Chris@39 6708 else
Chris@39 6709 $ECHO "*** Warning: Linking the shared library $output against the loadable module"
Chris@39 6710 fi
Chris@39 6711 $ECHO "*** $linklib is not portable!"
Chris@39 6712 fi
Chris@39 6713 if test "$linkmode" = lib &&
Chris@39 6714 test "$hardcode_into_libs" = yes; then
Chris@39 6715 # Hardcode the library path.
Chris@39 6716 # Skip directories that are in the system default run-time
Chris@39 6717 # search path.
Chris@39 6718 case " $sys_lib_dlsearch_path " in
Chris@39 6719 *" $absdir "*) ;;
Chris@39 6720 *)
Chris@39 6721 case "$compile_rpath " in
Chris@39 6722 *" $absdir "*) ;;
Chris@39 6723 *) func_append compile_rpath " $absdir" ;;
Chris@39 6724 esac
Chris@39 6725 ;;
Chris@39 6726 esac
Chris@39 6727 case " $sys_lib_dlsearch_path " in
Chris@39 6728 *" $libdir "*) ;;
Chris@39 6729 *)
Chris@39 6730 case "$finalize_rpath " in
Chris@39 6731 *" $libdir "*) ;;
Chris@39 6732 *) func_append finalize_rpath " $libdir" ;;
Chris@39 6733 esac
Chris@39 6734 ;;
Chris@39 6735 esac
Chris@39 6736 fi
Chris@39 6737
Chris@39 6738 if test -n "$old_archive_from_expsyms_cmds"; then
Chris@39 6739 # figure out the soname
Chris@39 6740 set dummy $library_names
Chris@39 6741 shift
Chris@39 6742 realname="$1"
Chris@39 6743 shift
Chris@39 6744 libname=`eval "\\$ECHO \"$libname_spec\""`
Chris@39 6745 # use dlname if we got it. it's perfectly good, no?
Chris@39 6746 if test -n "$dlname"; then
Chris@39 6747 soname="$dlname"
Chris@39 6748 elif test -n "$soname_spec"; then
Chris@39 6749 # bleh windows
Chris@39 6750 case $host in
Chris@39 6751 *cygwin* | mingw* | *cegcc*)
Chris@39 6752 func_arith $current - $age
Chris@39 6753 major=$func_arith_result
Chris@39 6754 versuffix="-$major"
Chris@39 6755 ;;
Chris@39 6756 esac
Chris@39 6757 eval soname=\"$soname_spec\"
Chris@39 6758 else
Chris@39 6759 soname="$realname"
Chris@39 6760 fi
Chris@39 6761
Chris@39 6762 # Make a new name for the extract_expsyms_cmds to use
Chris@39 6763 soroot="$soname"
Chris@39 6764 func_basename "$soroot"
Chris@39 6765 soname="$func_basename_result"
Chris@39 6766 func_stripname 'lib' '.dll' "$soname"
Chris@39 6767 newlib=libimp-$func_stripname_result.a
Chris@39 6768
Chris@39 6769 # If the library has no export list, then create one now
Chris@39 6770 if test -f "$output_objdir/$soname-def"; then :
Chris@39 6771 else
Chris@39 6772 func_verbose "extracting exported symbol list from \`$soname'"
Chris@39 6773 func_execute_cmds "$extract_expsyms_cmds" 'exit $?'
Chris@39 6774 fi
Chris@39 6775
Chris@39 6776 # Create $newlib
Chris@39 6777 if test -f "$output_objdir/$newlib"; then :; else
Chris@39 6778 func_verbose "generating import library for \`$soname'"
Chris@39 6779 func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?'
Chris@39 6780 fi
Chris@39 6781 # make sure the library variables are pointing to the new library
Chris@39 6782 dir=$output_objdir
Chris@39 6783 linklib=$newlib
Chris@39 6784 fi # test -n "$old_archive_from_expsyms_cmds"
Chris@39 6785
Chris@39 6786 if test "$linkmode" = prog || test "$opt_mode" != relink; then
Chris@39 6787 add_shlibpath=
Chris@39 6788 add_dir=
Chris@39 6789 add=
Chris@39 6790 lib_linked=yes
Chris@39 6791 case $hardcode_action in
Chris@39 6792 immediate | unsupported)
Chris@39 6793 if test "$hardcode_direct" = no; then
Chris@39 6794 add="$dir/$linklib"
Chris@39 6795 case $host in
Chris@39 6796 *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;;
Chris@39 6797 *-*-sysv4*uw2*) add_dir="-L$dir" ;;
Chris@39 6798 *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \
Chris@39 6799 *-*-unixware7*) add_dir="-L$dir" ;;
Chris@39 6800 *-*-darwin* )
Chris@39 6801 # if the lib is a (non-dlopened) module then we can not
Chris@39 6802 # link against it, someone is ignoring the earlier warnings
Chris@39 6803 if /usr/bin/file -L $add 2> /dev/null |
Chris@39 6804 $GREP ": [^:]* bundle" >/dev/null ; then
Chris@39 6805 if test "X$dlopenmodule" != "X$lib"; then
Chris@39 6806 $ECHO "*** Warning: lib $linklib is a module, not a shared library"
Chris@39 6807 if test -z "$old_library" ; then
Chris@39 6808 echo
Chris@39 6809 echo "*** And there doesn't seem to be a static archive available"
Chris@39 6810 echo "*** The link will probably fail, sorry"
Chris@39 6811 else
Chris@39 6812 add="$dir/$old_library"
Chris@39 6813 fi
Chris@39 6814 elif test -n "$old_library"; then
Chris@39 6815 add="$dir/$old_library"
Chris@39 6816 fi
Chris@39 6817 fi
Chris@39 6818 esac
Chris@39 6819 elif test "$hardcode_minus_L" = no; then
Chris@39 6820 case $host in
Chris@39 6821 *-*-sunos*) add_shlibpath="$dir" ;;
Chris@39 6822 esac
Chris@39 6823 add_dir="-L$dir"
Chris@39 6824 add="-l$name"
Chris@39 6825 elif test "$hardcode_shlibpath_var" = no; then
Chris@39 6826 add_shlibpath="$dir"
Chris@39 6827 add="-l$name"
Chris@39 6828 else
Chris@39 6829 lib_linked=no
Chris@39 6830 fi
Chris@39 6831 ;;
Chris@39 6832 relink)
Chris@39 6833 if test "$hardcode_direct" = yes &&
Chris@39 6834 test "$hardcode_direct_absolute" = no; then
Chris@39 6835 add="$dir/$linklib"
Chris@39 6836 elif test "$hardcode_minus_L" = yes; then
Chris@39 6837 add_dir="-L$dir"
Chris@39 6838 # Try looking first in the location we're being installed to.
Chris@39 6839 if test -n "$inst_prefix_dir"; then
Chris@39 6840 case $libdir in
Chris@39 6841 [\\/]*)
Chris@39 6842 func_append add_dir " -L$inst_prefix_dir$libdir"
Chris@39 6843 ;;
Chris@39 6844 esac
Chris@39 6845 fi
Chris@39 6846 add="-l$name"
Chris@39 6847 elif test "$hardcode_shlibpath_var" = yes; then
Chris@39 6848 add_shlibpath="$dir"
Chris@39 6849 add="-l$name"
Chris@39 6850 else
Chris@39 6851 lib_linked=no
Chris@39 6852 fi
Chris@39 6853 ;;
Chris@39 6854 *) lib_linked=no ;;
Chris@39 6855 esac
Chris@39 6856
Chris@39 6857 if test "$lib_linked" != yes; then
Chris@39 6858 func_fatal_configuration "unsupported hardcode properties"
Chris@39 6859 fi
Chris@39 6860
Chris@39 6861 if test -n "$add_shlibpath"; then
Chris@39 6862 case :$compile_shlibpath: in
Chris@39 6863 *":$add_shlibpath:"*) ;;
Chris@39 6864 *) func_append compile_shlibpath "$add_shlibpath:" ;;
Chris@39 6865 esac
Chris@39 6866 fi
Chris@39 6867 if test "$linkmode" = prog; then
Chris@39 6868 test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
Chris@39 6869 test -n "$add" && compile_deplibs="$add $compile_deplibs"
Chris@39 6870 else
Chris@39 6871 test -n "$add_dir" && deplibs="$add_dir $deplibs"
Chris@39 6872 test -n "$add" && deplibs="$add $deplibs"
Chris@39 6873 if test "$hardcode_direct" != yes &&
Chris@39 6874 test "$hardcode_minus_L" != yes &&
Chris@39 6875 test "$hardcode_shlibpath_var" = yes; then
Chris@39 6876 case :$finalize_shlibpath: in
Chris@39 6877 *":$libdir:"*) ;;
Chris@39 6878 *) func_append finalize_shlibpath "$libdir:" ;;
Chris@39 6879 esac
Chris@39 6880 fi
Chris@39 6881 fi
Chris@39 6882 fi
Chris@39 6883
Chris@39 6884 if test "$linkmode" = prog || test "$opt_mode" = relink; then
Chris@39 6885 add_shlibpath=
Chris@39 6886 add_dir=
Chris@39 6887 add=
Chris@39 6888 # Finalize command for both is simple: just hardcode it.
Chris@39 6889 if test "$hardcode_direct" = yes &&
Chris@39 6890 test "$hardcode_direct_absolute" = no; then
Chris@39 6891 add="$libdir/$linklib"
Chris@39 6892 elif test "$hardcode_minus_L" = yes; then
Chris@39 6893 add_dir="-L$libdir"
Chris@39 6894 add="-l$name"
Chris@39 6895 elif test "$hardcode_shlibpath_var" = yes; then
Chris@39 6896 case :$finalize_shlibpath: in
Chris@39 6897 *":$libdir:"*) ;;
Chris@39 6898 *) func_append finalize_shlibpath "$libdir:" ;;
Chris@39 6899 esac
Chris@39 6900 add="-l$name"
Chris@39 6901 elif test "$hardcode_automatic" = yes; then
Chris@39 6902 if test -n "$inst_prefix_dir" &&
Chris@39 6903 test -f "$inst_prefix_dir$libdir/$linklib" ; then
Chris@39 6904 add="$inst_prefix_dir$libdir/$linklib"
Chris@39 6905 else
Chris@39 6906 add="$libdir/$linklib"
Chris@39 6907 fi
Chris@39 6908 else
Chris@39 6909 # We cannot seem to hardcode it, guess we'll fake it.
Chris@39 6910 add_dir="-L$libdir"
Chris@39 6911 # Try looking first in the location we're being installed to.
Chris@39 6912 if test -n "$inst_prefix_dir"; then
Chris@39 6913 case $libdir in
Chris@39 6914 [\\/]*)
Chris@39 6915 func_append add_dir " -L$inst_prefix_dir$libdir"
Chris@39 6916 ;;
Chris@39 6917 esac
Chris@39 6918 fi
Chris@39 6919 add="-l$name"
Chris@39 6920 fi
Chris@39 6921
Chris@39 6922 if test "$linkmode" = prog; then
Chris@39 6923 test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
Chris@39 6924 test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
Chris@39 6925 else
Chris@39 6926 test -n "$add_dir" && deplibs="$add_dir $deplibs"
Chris@39 6927 test -n "$add" && deplibs="$add $deplibs"
Chris@39 6928 fi
Chris@39 6929 fi
Chris@39 6930 elif test "$linkmode" = prog; then
Chris@39 6931 # Here we assume that one of hardcode_direct or hardcode_minus_L
Chris@39 6932 # is not unsupported. This is valid on all known static and
Chris@39 6933 # shared platforms.
Chris@39 6934 if test "$hardcode_direct" != unsupported; then
Chris@39 6935 test -n "$old_library" && linklib="$old_library"
Chris@39 6936 compile_deplibs="$dir/$linklib $compile_deplibs"
Chris@39 6937 finalize_deplibs="$dir/$linklib $finalize_deplibs"
Chris@39 6938 else
Chris@39 6939 compile_deplibs="-l$name -L$dir $compile_deplibs"
Chris@39 6940 finalize_deplibs="-l$name -L$dir $finalize_deplibs"
Chris@39 6941 fi
Chris@39 6942 elif test "$build_libtool_libs" = yes; then
Chris@39 6943 # Not a shared library
Chris@39 6944 if test "$deplibs_check_method" != pass_all; then
Chris@39 6945 # We're trying link a shared library against a static one
Chris@39 6946 # but the system doesn't support it.
Chris@39 6947
Chris@39 6948 # Just print a warning and add the library to dependency_libs so
Chris@39 6949 # that the program can be linked against the static library.
Chris@39 6950 echo
Chris@39 6951 $ECHO "*** Warning: This system can not link to static lib archive $lib."
Chris@39 6952 echo "*** I have the capability to make that library automatically link in when"
Chris@39 6953 echo "*** you link to this library. But I can only do this if you have a"
Chris@39 6954 echo "*** shared version of the library, which you do not appear to have."
Chris@39 6955 if test "$module" = yes; then
Chris@39 6956 echo "*** But as you try to build a module library, libtool will still create "
Chris@39 6957 echo "*** a static module, that should work as long as the dlopening application"
Chris@39 6958 echo "*** is linked with the -dlopen flag to resolve symbols at runtime."
Chris@39 6959 if test -z "$global_symbol_pipe"; then
Chris@39 6960 echo
Chris@39 6961 echo "*** However, this would only work if libtool was able to extract symbol"
Chris@39 6962 echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
Chris@39 6963 echo "*** not find such a program. So, this module is probably useless."
Chris@39 6964 echo "*** \`nm' from GNU binutils and a full rebuild may help."
Chris@39 6965 fi
Chris@39 6966 if test "$build_old_libs" = no; then
Chris@39 6967 build_libtool_libs=module
Chris@39 6968 build_old_libs=yes
Chris@39 6969 else
Chris@39 6970 build_libtool_libs=no
Chris@39 6971 fi
Chris@39 6972 fi
Chris@39 6973 else
Chris@39 6974 deplibs="$dir/$old_library $deplibs"
Chris@39 6975 link_static=yes
Chris@39 6976 fi
Chris@39 6977 fi # link shared/static library?
Chris@39 6978
Chris@39 6979 if test "$linkmode" = lib; then
Chris@39 6980 if test -n "$dependency_libs" &&
Chris@39 6981 { test "$hardcode_into_libs" != yes ||
Chris@39 6982 test "$build_old_libs" = yes ||
Chris@39 6983 test "$link_static" = yes; }; then
Chris@39 6984 # Extract -R from dependency_libs
Chris@39 6985 temp_deplibs=
Chris@39 6986 for libdir in $dependency_libs; do
Chris@39 6987 case $libdir in
Chris@39 6988 -R*) func_stripname '-R' '' "$libdir"
Chris@39 6989 temp_xrpath=$func_stripname_result
Chris@39 6990 case " $xrpath " in
Chris@39 6991 *" $temp_xrpath "*) ;;
Chris@39 6992 *) func_append xrpath " $temp_xrpath";;
Chris@39 6993 esac;;
Chris@39 6994 *) func_append temp_deplibs " $libdir";;
Chris@39 6995 esac
Chris@39 6996 done
Chris@39 6997 dependency_libs="$temp_deplibs"
Chris@39 6998 fi
Chris@39 6999
Chris@39 7000 func_append newlib_search_path " $absdir"
Chris@39 7001 # Link against this library
Chris@39 7002 test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
Chris@39 7003 # ... and its dependency_libs
Chris@39 7004 tmp_libs=
Chris@39 7005 for deplib in $dependency_libs; do
Chris@39 7006 newdependency_libs="$deplib $newdependency_libs"
Chris@39 7007 case $deplib in
Chris@39 7008 -L*) func_stripname '-L' '' "$deplib"
Chris@39 7009 func_resolve_sysroot "$func_stripname_result";;
Chris@39 7010 *) func_resolve_sysroot "$deplib" ;;
Chris@39 7011 esac
Chris@39 7012 if $opt_preserve_dup_deps ; then
Chris@39 7013 case "$tmp_libs " in
Chris@39 7014 *" $func_resolve_sysroot_result "*)
Chris@39 7015 func_append specialdeplibs " $func_resolve_sysroot_result" ;;
Chris@39 7016 esac
Chris@39 7017 fi
Chris@39 7018 func_append tmp_libs " $func_resolve_sysroot_result"
Chris@39 7019 done
Chris@39 7020
Chris@39 7021 if test "$link_all_deplibs" != no; then
Chris@39 7022 # Add the search paths of all dependency libraries
Chris@39 7023 for deplib in $dependency_libs; do
Chris@39 7024 path=
Chris@39 7025 case $deplib in
Chris@39 7026 -L*) path="$deplib" ;;
Chris@39 7027 *.la)
Chris@39 7028 func_resolve_sysroot "$deplib"
Chris@39 7029 deplib=$func_resolve_sysroot_result
Chris@39 7030 func_dirname "$deplib" "" "."
Chris@39 7031 dir=$func_dirname_result
Chris@39 7032 # We need an absolute path.
Chris@39 7033 case $dir in
Chris@39 7034 [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;
Chris@39 7035 *)
Chris@39 7036 absdir=`cd "$dir" && pwd`
Chris@39 7037 if test -z "$absdir"; then
Chris@39 7038 func_warning "cannot determine absolute directory name of \`$dir'"
Chris@39 7039 absdir="$dir"
Chris@39 7040 fi
Chris@39 7041 ;;
Chris@39 7042 esac
Chris@39 7043 if $GREP "^installed=no" $deplib > /dev/null; then
Chris@39 7044 case $host in
Chris@39 7045 *-*-darwin*)
Chris@39 7046 depdepl=
Chris@39 7047 eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib`
Chris@39 7048 if test -n "$deplibrary_names" ; then
Chris@39 7049 for tmp in $deplibrary_names ; do
Chris@39 7050 depdepl=$tmp
Chris@39 7051 done
Chris@39 7052 if test -f "$absdir/$objdir/$depdepl" ; then
Chris@39 7053 depdepl="$absdir/$objdir/$depdepl"
Chris@39 7054 darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
Chris@39 7055 if test -z "$darwin_install_name"; then
Chris@39 7056 darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
Chris@39 7057 fi
Chris@39 7058 func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}"
Chris@39 7059 func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}"
Chris@39 7060 path=
Chris@39 7061 fi
Chris@39 7062 fi
Chris@39 7063 ;;
Chris@39 7064 *)
Chris@39 7065 path="-L$absdir/$objdir"
Chris@39 7066 ;;
Chris@39 7067 esac
Chris@39 7068 else
Chris@39 7069 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
Chris@39 7070 test -z "$libdir" && \
Chris@39 7071 func_fatal_error "\`$deplib' is not a valid libtool archive"
Chris@39 7072 test "$absdir" != "$libdir" && \
Chris@39 7073 func_warning "\`$deplib' seems to be moved"
Chris@39 7074
Chris@39 7075 path="-L$absdir"
Chris@39 7076 fi
Chris@39 7077 ;;
Chris@39 7078 esac
Chris@39 7079 case " $deplibs " in
Chris@39 7080 *" $path "*) ;;
Chris@39 7081 *) deplibs="$path $deplibs" ;;
Chris@39 7082 esac
Chris@39 7083 done
Chris@39 7084 fi # link_all_deplibs != no
Chris@39 7085 fi # linkmode = lib
Chris@39 7086 done # for deplib in $libs
Chris@39 7087 if test "$pass" = link; then
Chris@39 7088 if test "$linkmode" = "prog"; then
Chris@39 7089 compile_deplibs="$new_inherited_linker_flags $compile_deplibs"
Chris@39 7090 finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs"
Chris@39 7091 else
Chris@39 7092 compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
Chris@39 7093 fi
Chris@39 7094 fi
Chris@39 7095 dependency_libs="$newdependency_libs"
Chris@39 7096 if test "$pass" = dlpreopen; then
Chris@39 7097 # Link the dlpreopened libraries before other libraries
Chris@39 7098 for deplib in $save_deplibs; do
Chris@39 7099 deplibs="$deplib $deplibs"
Chris@39 7100 done
Chris@39 7101 fi
Chris@39 7102 if test "$pass" != dlopen; then
Chris@39 7103 if test "$pass" != conv; then
Chris@39 7104 # Make sure lib_search_path contains only unique directories.
Chris@39 7105 lib_search_path=
Chris@39 7106 for dir in $newlib_search_path; do
Chris@39 7107 case "$lib_search_path " in
Chris@39 7108 *" $dir "*) ;;
Chris@39 7109 *) func_append lib_search_path " $dir" ;;
Chris@39 7110 esac
Chris@39 7111 done
Chris@39 7112 newlib_search_path=
Chris@39 7113 fi
Chris@39 7114
Chris@39 7115 if test "$linkmode,$pass" != "prog,link"; then
Chris@39 7116 vars="deplibs"
Chris@39 7117 else
Chris@39 7118 vars="compile_deplibs finalize_deplibs"
Chris@39 7119 fi
Chris@39 7120 for var in $vars dependency_libs; do
Chris@39 7121 # Add libraries to $var in reverse order
Chris@39 7122 eval tmp_libs=\"\$$var\"
Chris@39 7123 new_libs=
Chris@39 7124 for deplib in $tmp_libs; do
Chris@39 7125 # FIXME: Pedantically, this is the right thing to do, so
Chris@39 7126 # that some nasty dependency loop isn't accidentally
Chris@39 7127 # broken:
Chris@39 7128 #new_libs="$deplib $new_libs"
Chris@39 7129 # Pragmatically, this seems to cause very few problems in
Chris@39 7130 # practice:
Chris@39 7131 case $deplib in
Chris@39 7132 -L*) new_libs="$deplib $new_libs" ;;
Chris@39 7133 -R*) ;;
Chris@39 7134 *)
Chris@39 7135 # And here is the reason: when a library appears more
Chris@39 7136 # than once as an explicit dependence of a library, or
Chris@39 7137 # is implicitly linked in more than once by the
Chris@39 7138 # compiler, it is considered special, and multiple
Chris@39 7139 # occurrences thereof are not removed. Compare this
Chris@39 7140 # with having the same library being listed as a
Chris@39 7141 # dependency of multiple other libraries: in this case,
Chris@39 7142 # we know (pedantically, we assume) the library does not
Chris@39 7143 # need to be listed more than once, so we keep only the
Chris@39 7144 # last copy. This is not always right, but it is rare
Chris@39 7145 # enough that we require users that really mean to play
Chris@39 7146 # such unportable linking tricks to link the library
Chris@39 7147 # using -Wl,-lname, so that libtool does not consider it
Chris@39 7148 # for duplicate removal.
Chris@39 7149 case " $specialdeplibs " in
Chris@39 7150 *" $deplib "*) new_libs="$deplib $new_libs" ;;
Chris@39 7151 *)
Chris@39 7152 case " $new_libs " in
Chris@39 7153 *" $deplib "*) ;;
Chris@39 7154 *) new_libs="$deplib $new_libs" ;;
Chris@39 7155 esac
Chris@39 7156 ;;
Chris@39 7157 esac
Chris@39 7158 ;;
Chris@39 7159 esac
Chris@39 7160 done
Chris@39 7161 tmp_libs=
Chris@39 7162 for deplib in $new_libs; do
Chris@39 7163 case $deplib in
Chris@39 7164 -L*)
Chris@39 7165 case " $tmp_libs " in
Chris@39 7166 *" $deplib "*) ;;
Chris@39 7167 *) func_append tmp_libs " $deplib" ;;
Chris@39 7168 esac
Chris@39 7169 ;;
Chris@39 7170 *) func_append tmp_libs " $deplib" ;;
Chris@39 7171 esac
Chris@39 7172 done
Chris@39 7173 eval $var=\"$tmp_libs\"
Chris@39 7174 done # for var
Chris@39 7175 fi
Chris@39 7176 # Last step: remove runtime libs from dependency_libs
Chris@39 7177 # (they stay in deplibs)
Chris@39 7178 tmp_libs=
Chris@39 7179 for i in $dependency_libs ; do
Chris@39 7180 case " $predeps $postdeps $compiler_lib_search_path " in
Chris@39 7181 *" $i "*)
Chris@39 7182 i=""
Chris@39 7183 ;;
Chris@39 7184 esac
Chris@39 7185 if test -n "$i" ; then
Chris@39 7186 func_append tmp_libs " $i"
Chris@39 7187 fi
Chris@39 7188 done
Chris@39 7189 dependency_libs=$tmp_libs
Chris@39 7190 done # for pass
Chris@39 7191 if test "$linkmode" = prog; then
Chris@39 7192 dlfiles="$newdlfiles"
Chris@39 7193 fi
Chris@39 7194 if test "$linkmode" = prog || test "$linkmode" = lib; then
Chris@39 7195 dlprefiles="$newdlprefiles"
Chris@39 7196 fi
Chris@39 7197
Chris@39 7198 case $linkmode in
Chris@39 7199 oldlib)
Chris@39 7200 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
Chris@39 7201 func_warning "\`-dlopen' is ignored for archives"
Chris@39 7202 fi
Chris@39 7203
Chris@39 7204 case " $deplibs" in
Chris@39 7205 *\ -l* | *\ -L*)
Chris@39 7206 func_warning "\`-l' and \`-L' are ignored for archives" ;;
Chris@39 7207 esac
Chris@39 7208
Chris@39 7209 test -n "$rpath" && \
Chris@39 7210 func_warning "\`-rpath' is ignored for archives"
Chris@39 7211
Chris@39 7212 test -n "$xrpath" && \
Chris@39 7213 func_warning "\`-R' is ignored for archives"
Chris@39 7214
Chris@39 7215 test -n "$vinfo" && \
Chris@39 7216 func_warning "\`-version-info/-version-number' is ignored for archives"
Chris@39 7217
Chris@39 7218 test -n "$release" && \
Chris@39 7219 func_warning "\`-release' is ignored for archives"
Chris@39 7220
Chris@39 7221 test -n "$export_symbols$export_symbols_regex" && \
Chris@39 7222 func_warning "\`-export-symbols' is ignored for archives"
Chris@39 7223
Chris@39 7224 # Now set the variables for building old libraries.
Chris@39 7225 build_libtool_libs=no
Chris@39 7226 oldlibs="$output"
Chris@39 7227 func_append objs "$old_deplibs"
Chris@39 7228 ;;
Chris@39 7229
Chris@39 7230 lib)
Chris@39 7231 # Make sure we only generate libraries of the form `libNAME.la'.
Chris@39 7232 case $outputname in
Chris@39 7233 lib*)
Chris@39 7234 func_stripname 'lib' '.la' "$outputname"
Chris@39 7235 name=$func_stripname_result
Chris@39 7236 eval shared_ext=\"$shrext_cmds\"
Chris@39 7237 eval libname=\"$libname_spec\"
Chris@39 7238 ;;
Chris@39 7239 *)
Chris@39 7240 test "$module" = no && \
Chris@39 7241 func_fatal_help "libtool library \`$output' must begin with \`lib'"
Chris@39 7242
Chris@39 7243 if test "$need_lib_prefix" != no; then
Chris@39 7244 # Add the "lib" prefix for modules if required
Chris@39 7245 func_stripname '' '.la' "$outputname"
Chris@39 7246 name=$func_stripname_result
Chris@39 7247 eval shared_ext=\"$shrext_cmds\"
Chris@39 7248 eval libname=\"$libname_spec\"
Chris@39 7249 else
Chris@39 7250 func_stripname '' '.la' "$outputname"
Chris@39 7251 libname=$func_stripname_result
Chris@39 7252 fi
Chris@39 7253 ;;
Chris@39 7254 esac
Chris@39 7255
Chris@39 7256 if test -n "$objs"; then
Chris@39 7257 if test "$deplibs_check_method" != pass_all; then
Chris@39 7258 func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs"
Chris@39 7259 else
Chris@39 7260 echo
Chris@39 7261 $ECHO "*** Warning: Linking the shared library $output against the non-libtool"
Chris@39 7262 $ECHO "*** objects $objs is not portable!"
Chris@39 7263 func_append libobjs " $objs"
Chris@39 7264 fi
Chris@39 7265 fi
Chris@39 7266
Chris@39 7267 test "$dlself" != no && \
Chris@39 7268 func_warning "\`-dlopen self' is ignored for libtool libraries"
Chris@39 7269
Chris@39 7270 set dummy $rpath
Chris@39 7271 shift
Chris@39 7272 test "$#" -gt 1 && \
Chris@39 7273 func_warning "ignoring multiple \`-rpath's for a libtool library"
Chris@39 7274
Chris@39 7275 install_libdir="$1"
Chris@39 7276
Chris@39 7277 oldlibs=
Chris@39 7278 if test -z "$rpath"; then
Chris@39 7279 if test "$build_libtool_libs" = yes; then
Chris@39 7280 # Building a libtool convenience library.
Chris@39 7281 # Some compilers have problems with a `.al' extension so
Chris@39 7282 # convenience libraries should have the same extension an
Chris@39 7283 # archive normally would.
Chris@39 7284 oldlibs="$output_objdir/$libname.$libext $oldlibs"
Chris@39 7285 build_libtool_libs=convenience
Chris@39 7286 build_old_libs=yes
Chris@39 7287 fi
Chris@39 7288
Chris@39 7289 test -n "$vinfo" && \
Chris@39 7290 func_warning "\`-version-info/-version-number' is ignored for convenience libraries"
Chris@39 7291
Chris@39 7292 test -n "$release" && \
Chris@39 7293 func_warning "\`-release' is ignored for convenience libraries"
Chris@39 7294 else
Chris@39 7295
Chris@39 7296 # Parse the version information argument.
Chris@39 7297 save_ifs="$IFS"; IFS=':'
Chris@39 7298 set dummy $vinfo 0 0 0
Chris@39 7299 shift
Chris@39 7300 IFS="$save_ifs"
Chris@39 7301
Chris@39 7302 test -n "$7" && \
Chris@39 7303 func_fatal_help "too many parameters to \`-version-info'"
Chris@39 7304
Chris@39 7305 # convert absolute version numbers to libtool ages
Chris@39 7306 # this retains compatibility with .la files and attempts
Chris@39 7307 # to make the code below a bit more comprehensible
Chris@39 7308
Chris@39 7309 case $vinfo_number in
Chris@39 7310 yes)
Chris@39 7311 number_major="$1"
Chris@39 7312 number_minor="$2"
Chris@39 7313 number_revision="$3"
Chris@39 7314 #
Chris@39 7315 # There are really only two kinds -- those that
Chris@39 7316 # use the current revision as the major version
Chris@39 7317 # and those that subtract age and use age as
Chris@39 7318 # a minor version. But, then there is irix
Chris@39 7319 # which has an extra 1 added just for fun
Chris@39 7320 #
Chris@39 7321 case $version_type in
Chris@39 7322 darwin|linux|osf|windows|none)
Chris@39 7323 func_arith $number_major + $number_minor
Chris@39 7324 current=$func_arith_result
Chris@39 7325 age="$number_minor"
Chris@39 7326 revision="$number_revision"
Chris@39 7327 ;;
Chris@39 7328 freebsd-aout|freebsd-elf|qnx|sunos)
Chris@39 7329 current="$number_major"
Chris@39 7330 revision="$number_minor"
Chris@39 7331 age="0"
Chris@39 7332 ;;
Chris@39 7333 irix|nonstopux)
Chris@39 7334 func_arith $number_major + $number_minor
Chris@39 7335 current=$func_arith_result
Chris@39 7336 age="$number_minor"
Chris@39 7337 revision="$number_minor"
Chris@39 7338 lt_irix_increment=no
Chris@39 7339 ;;
Chris@39 7340 *)
Chris@39 7341 func_fatal_configuration "$modename: unknown library version type \`$version_type'"
Chris@39 7342 ;;
Chris@39 7343 esac
Chris@39 7344 ;;
Chris@39 7345 no)
Chris@39 7346 current="$1"
Chris@39 7347 revision="$2"
Chris@39 7348 age="$3"
Chris@39 7349 ;;
Chris@39 7350 esac
Chris@39 7351
Chris@39 7352 # Check that each of the things are valid numbers.
Chris@39 7353 case $current in
Chris@39 7354 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]) ;;
Chris@39 7355 *)
Chris@39 7356 func_error "CURRENT \`$current' must be a nonnegative integer"
Chris@39 7357 func_fatal_error "\`$vinfo' is not valid version information"
Chris@39 7358 ;;
Chris@39 7359 esac
Chris@39 7360
Chris@39 7361 case $revision in
Chris@39 7362 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]) ;;
Chris@39 7363 *)
Chris@39 7364 func_error "REVISION \`$revision' must be a nonnegative integer"
Chris@39 7365 func_fatal_error "\`$vinfo' is not valid version information"
Chris@39 7366 ;;
Chris@39 7367 esac
Chris@39 7368
Chris@39 7369 case $age in
Chris@39 7370 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]) ;;
Chris@39 7371 *)
Chris@39 7372 func_error "AGE \`$age' must be a nonnegative integer"
Chris@39 7373 func_fatal_error "\`$vinfo' is not valid version information"
Chris@39 7374 ;;
Chris@39 7375 esac
Chris@39 7376
Chris@39 7377 if test "$age" -gt "$current"; then
Chris@39 7378 func_error "AGE \`$age' is greater than the current interface number \`$current'"
Chris@39 7379 func_fatal_error "\`$vinfo' is not valid version information"
Chris@39 7380 fi
Chris@39 7381
Chris@39 7382 # Calculate the version variables.
Chris@39 7383 major=
Chris@39 7384 versuffix=
Chris@39 7385 verstring=
Chris@39 7386 case $version_type in
Chris@39 7387 none) ;;
Chris@39 7388
Chris@39 7389 darwin)
Chris@39 7390 # Like Linux, but with the current version available in
Chris@39 7391 # verstring for coding it into the library header
Chris@39 7392 func_arith $current - $age
Chris@39 7393 major=.$func_arith_result
Chris@39 7394 versuffix="$major.$age.$revision"
Chris@39 7395 # Darwin ld doesn't like 0 for these options...
Chris@39 7396 func_arith $current + 1
Chris@39 7397 minor_current=$func_arith_result
Chris@39 7398 xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
Chris@39 7399 verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
Chris@39 7400 ;;
Chris@39 7401
Chris@39 7402 freebsd-aout)
Chris@39 7403 major=".$current"
Chris@39 7404 versuffix=".$current.$revision";
Chris@39 7405 ;;
Chris@39 7406
Chris@39 7407 freebsd-elf)
Chris@39 7408 major=".$current"
Chris@39 7409 versuffix=".$current"
Chris@39 7410 ;;
Chris@39 7411
Chris@39 7412 irix | nonstopux)
Chris@39 7413 if test "X$lt_irix_increment" = "Xno"; then
Chris@39 7414 func_arith $current - $age
Chris@39 7415 else
Chris@39 7416 func_arith $current - $age + 1
Chris@39 7417 fi
Chris@39 7418 major=$func_arith_result
Chris@39 7419
Chris@39 7420 case $version_type in
Chris@39 7421 nonstopux) verstring_prefix=nonstopux ;;
Chris@39 7422 *) verstring_prefix=sgi ;;
Chris@39 7423 esac
Chris@39 7424 verstring="$verstring_prefix$major.$revision"
Chris@39 7425
Chris@39 7426 # Add in all the interfaces that we are compatible with.
Chris@39 7427 loop=$revision
Chris@39 7428 while test "$loop" -ne 0; do
Chris@39 7429 func_arith $revision - $loop
Chris@39 7430 iface=$func_arith_result
Chris@39 7431 func_arith $loop - 1
Chris@39 7432 loop=$func_arith_result
Chris@39 7433 verstring="$verstring_prefix$major.$iface:$verstring"
Chris@39 7434 done
Chris@39 7435
Chris@39 7436 # Before this point, $major must not contain `.'.
Chris@39 7437 major=.$major
Chris@39 7438 versuffix="$major.$revision"
Chris@39 7439 ;;
Chris@39 7440
Chris@39 7441 linux)
Chris@39 7442 func_arith $current - $age
Chris@39 7443 major=.$func_arith_result
Chris@39 7444 versuffix="$major.$age.$revision"
Chris@39 7445 ;;
Chris@39 7446
Chris@39 7447 osf)
Chris@39 7448 func_arith $current - $age
Chris@39 7449 major=.$func_arith_result
Chris@39 7450 versuffix=".$current.$age.$revision"
Chris@39 7451 verstring="$current.$age.$revision"
Chris@39 7452
Chris@39 7453 # Add in all the interfaces that we are compatible with.
Chris@39 7454 loop=$age
Chris@39 7455 while test "$loop" -ne 0; do
Chris@39 7456 func_arith $current - $loop
Chris@39 7457 iface=$func_arith_result
Chris@39 7458 func_arith $loop - 1
Chris@39 7459 loop=$func_arith_result
Chris@39 7460 verstring="$verstring:${iface}.0"
Chris@39 7461 done
Chris@39 7462
Chris@39 7463 # Make executables depend on our current version.
Chris@39 7464 func_append verstring ":${current}.0"
Chris@39 7465 ;;
Chris@39 7466
Chris@39 7467 qnx)
Chris@39 7468 major=".$current"
Chris@39 7469 versuffix=".$current"
Chris@39 7470 ;;
Chris@39 7471
Chris@39 7472 sunos)
Chris@39 7473 major=".$current"
Chris@39 7474 versuffix=".$current.$revision"
Chris@39 7475 ;;
Chris@39 7476
Chris@39 7477 windows)
Chris@39 7478 # Use '-' rather than '.', since we only want one
Chris@39 7479 # extension on DOS 8.3 filesystems.
Chris@39 7480 func_arith $current - $age
Chris@39 7481 major=$func_arith_result
Chris@39 7482 versuffix="-$major"
Chris@39 7483 ;;
Chris@39 7484
Chris@39 7485 *)
Chris@39 7486 func_fatal_configuration "unknown library version type \`$version_type'"
Chris@39 7487 ;;
Chris@39 7488 esac
Chris@39 7489
Chris@39 7490 # Clear the version info if we defaulted, and they specified a release.
Chris@39 7491 if test -z "$vinfo" && test -n "$release"; then
Chris@39 7492 major=
Chris@39 7493 case $version_type in
Chris@39 7494 darwin)
Chris@39 7495 # we can't check for "0.0" in archive_cmds due to quoting
Chris@39 7496 # problems, so we reset it completely
Chris@39 7497 verstring=
Chris@39 7498 ;;
Chris@39 7499 *)
Chris@39 7500 verstring="0.0"
Chris@39 7501 ;;
Chris@39 7502 esac
Chris@39 7503 if test "$need_version" = no; then
Chris@39 7504 versuffix=
Chris@39 7505 else
Chris@39 7506 versuffix=".0.0"
Chris@39 7507 fi
Chris@39 7508 fi
Chris@39 7509
Chris@39 7510 # Remove version info from name if versioning should be avoided
Chris@39 7511 if test "$avoid_version" = yes && test "$need_version" = no; then
Chris@39 7512 major=
Chris@39 7513 versuffix=
Chris@39 7514 verstring=""
Chris@39 7515 fi
Chris@39 7516
Chris@39 7517 # Check to see if the archive will have undefined symbols.
Chris@39 7518 if test "$allow_undefined" = yes; then
Chris@39 7519 if test "$allow_undefined_flag" = unsupported; then
Chris@39 7520 func_warning "undefined symbols not allowed in $host shared libraries"
Chris@39 7521 build_libtool_libs=no
Chris@39 7522 build_old_libs=yes
Chris@39 7523 fi
Chris@39 7524 else
Chris@39 7525 # Don't allow undefined symbols.
Chris@39 7526 allow_undefined_flag="$no_undefined_flag"
Chris@39 7527 fi
Chris@39 7528
Chris@39 7529 fi
Chris@39 7530
Chris@39 7531 func_generate_dlsyms "$libname" "$libname" "yes"
Chris@39 7532 func_append libobjs " $symfileobj"
Chris@39 7533 test "X$libobjs" = "X " && libobjs=
Chris@39 7534
Chris@39 7535 if test "$opt_mode" != relink; then
Chris@39 7536 # Remove our outputs, but don't remove object files since they
Chris@39 7537 # may have been created when compiling PIC objects.
Chris@39 7538 removelist=
Chris@39 7539 tempremovelist=`$ECHO "$output_objdir/*"`
Chris@39 7540 for p in $tempremovelist; do
Chris@39 7541 case $p in
Chris@39 7542 *.$objext | *.gcno)
Chris@39 7543 ;;
Chris@39 7544 $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
Chris@39 7545 if test "X$precious_files_regex" != "X"; then
Chris@39 7546 if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
Chris@39 7547 then
Chris@39 7548 continue
Chris@39 7549 fi
Chris@39 7550 fi
Chris@39 7551 func_append removelist " $p"
Chris@39 7552 ;;
Chris@39 7553 *) ;;
Chris@39 7554 esac
Chris@39 7555 done
Chris@39 7556 test -n "$removelist" && \
Chris@39 7557 func_show_eval "${RM}r \$removelist"
Chris@39 7558 fi
Chris@39 7559
Chris@39 7560 # Now set the variables for building old libraries.
Chris@39 7561 if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
Chris@39 7562 func_append oldlibs " $output_objdir/$libname.$libext"
Chris@39 7563
Chris@39 7564 # Transform .lo files to .o files.
Chris@39 7565 oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP`
Chris@39 7566 fi
Chris@39 7567
Chris@39 7568 # Eliminate all temporary directories.
Chris@39 7569 #for path in $notinst_path; do
Chris@39 7570 # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"`
Chris@39 7571 # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"`
Chris@39 7572 # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"`
Chris@39 7573 #done
Chris@39 7574
Chris@39 7575 if test -n "$xrpath"; then
Chris@39 7576 # If the user specified any rpath flags, then add them.
Chris@39 7577 temp_xrpath=
Chris@39 7578 for libdir in $xrpath; do
Chris@39 7579 func_replace_sysroot "$libdir"
Chris@39 7580 func_append temp_xrpath " -R$func_replace_sysroot_result"
Chris@39 7581 case "$finalize_rpath " in
Chris@39 7582 *" $libdir "*) ;;
Chris@39 7583 *) func_append finalize_rpath " $libdir" ;;
Chris@39 7584 esac
Chris@39 7585 done
Chris@39 7586 if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then
Chris@39 7587 dependency_libs="$temp_xrpath $dependency_libs"
Chris@39 7588 fi
Chris@39 7589 fi
Chris@39 7590
Chris@39 7591 # Make sure dlfiles contains only unique files that won't be dlpreopened
Chris@39 7592 old_dlfiles="$dlfiles"
Chris@39 7593 dlfiles=
Chris@39 7594 for lib in $old_dlfiles; do
Chris@39 7595 case " $dlprefiles $dlfiles " in
Chris@39 7596 *" $lib "*) ;;
Chris@39 7597 *) func_append dlfiles " $lib" ;;
Chris@39 7598 esac
Chris@39 7599 done
Chris@39 7600
Chris@39 7601 # Make sure dlprefiles contains only unique files
Chris@39 7602 old_dlprefiles="$dlprefiles"
Chris@39 7603 dlprefiles=
Chris@39 7604 for lib in $old_dlprefiles; do
Chris@39 7605 case "$dlprefiles " in
Chris@39 7606 *" $lib "*) ;;
Chris@39 7607 *) func_append dlprefiles " $lib" ;;
Chris@39 7608 esac
Chris@39 7609 done
Chris@39 7610
Chris@39 7611 if test "$build_libtool_libs" = yes; then
Chris@39 7612 if test -n "$rpath"; then
Chris@39 7613 case $host in
Chris@39 7614 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*)
Chris@39 7615 # these systems don't actually have a c library (as such)!
Chris@39 7616 ;;
Chris@39 7617 *-*-rhapsody* | *-*-darwin1.[012])
Chris@39 7618 # Rhapsody C library is in the System framework
Chris@39 7619 func_append deplibs " System.ltframework"
Chris@39 7620 ;;
Chris@39 7621 *-*-netbsd*)
Chris@39 7622 # Don't link with libc until the a.out ld.so is fixed.
Chris@39 7623 ;;
Chris@39 7624 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
Chris@39 7625 # Do not include libc due to us having libc/libc_r.
Chris@39 7626 ;;
Chris@39 7627 *-*-sco3.2v5* | *-*-sco5v6*)
Chris@39 7628 # Causes problems with __ctype
Chris@39 7629 ;;
Chris@39 7630 *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
Chris@39 7631 # Compiler inserts libc in the correct place for threads to work
Chris@39 7632 ;;
Chris@39 7633 *)
Chris@39 7634 # Add libc to deplibs on all other systems if necessary.
Chris@39 7635 if test "$build_libtool_need_lc" = "yes"; then
Chris@39 7636 func_append deplibs " -lc"
Chris@39 7637 fi
Chris@39 7638 ;;
Chris@39 7639 esac
Chris@39 7640 fi
Chris@39 7641
Chris@39 7642 # Transform deplibs into only deplibs that can be linked in shared.
Chris@39 7643 name_save=$name
Chris@39 7644 libname_save=$libname
Chris@39 7645 release_save=$release
Chris@39 7646 versuffix_save=$versuffix
Chris@39 7647 major_save=$major
Chris@39 7648 # I'm not sure if I'm treating the release correctly. I think
Chris@39 7649 # release should show up in the -l (ie -lgmp5) so we don't want to
Chris@39 7650 # add it in twice. Is that correct?
Chris@39 7651 release=""
Chris@39 7652 versuffix=""
Chris@39 7653 major=""
Chris@39 7654 newdeplibs=
Chris@39 7655 droppeddeps=no
Chris@39 7656 case $deplibs_check_method in
Chris@39 7657 pass_all)
Chris@39 7658 # Don't check for shared/static. Everything works.
Chris@39 7659 # This might be a little naive. We might want to check
Chris@39 7660 # whether the library exists or not. But this is on
Chris@39 7661 # osf3 & osf4 and I'm not really sure... Just
Chris@39 7662 # implementing what was already the behavior.
Chris@39 7663 newdeplibs=$deplibs
Chris@39 7664 ;;
Chris@39 7665 test_compile)
Chris@39 7666 # This code stresses the "libraries are programs" paradigm to its
Chris@39 7667 # limits. Maybe even breaks it. We compile a program, linking it
Chris@39 7668 # against the deplibs as a proxy for the library. Then we can check
Chris@39 7669 # whether they linked in statically or dynamically with ldd.
Chris@39 7670 $opt_dry_run || $RM conftest.c
Chris@39 7671 cat > conftest.c <<EOF
Chris@39 7672 int main() { return 0; }
Chris@39 7673 EOF
Chris@39 7674 $opt_dry_run || $RM conftest
Chris@39 7675 if $LTCC $LTCFLAGS -o conftest conftest.c $deplibs; then
Chris@39 7676 ldd_output=`ldd conftest`
Chris@39 7677 for i in $deplibs; do
Chris@39 7678 case $i in
Chris@39 7679 -l*)
Chris@39 7680 func_stripname -l '' "$i"
Chris@39 7681 name=$func_stripname_result
Chris@39 7682 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
Chris@39 7683 case " $predeps $postdeps " in
Chris@39 7684 *" $i "*)
Chris@39 7685 func_append newdeplibs " $i"
Chris@39 7686 i=""
Chris@39 7687 ;;
Chris@39 7688 esac
Chris@39 7689 fi
Chris@39 7690 if test -n "$i" ; then
Chris@39 7691 libname=`eval "\\$ECHO \"$libname_spec\""`
Chris@39 7692 deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
Chris@39 7693 set dummy $deplib_matches; shift
Chris@39 7694 deplib_match=$1
Chris@39 7695 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
Chris@39 7696 func_append newdeplibs " $i"
Chris@39 7697 else
Chris@39 7698 droppeddeps=yes
Chris@39 7699 echo
Chris@39 7700 $ECHO "*** Warning: dynamic linker does not accept needed library $i."
Chris@39 7701 echo "*** I have the capability to make that library automatically link in when"
Chris@39 7702 echo "*** you link to this library. But I can only do this if you have a"
Chris@39 7703 echo "*** shared version of the library, which I believe you do not have"
Chris@39 7704 echo "*** because a test_compile did reveal that the linker did not use it for"
Chris@39 7705 echo "*** its dynamic dependency list that programs get resolved with at runtime."
Chris@39 7706 fi
Chris@39 7707 fi
Chris@39 7708 ;;
Chris@39 7709 *)
Chris@39 7710 func_append newdeplibs " $i"
Chris@39 7711 ;;
Chris@39 7712 esac
Chris@39 7713 done
Chris@39 7714 else
Chris@39 7715 # Error occurred in the first compile. Let's try to salvage
Chris@39 7716 # the situation: Compile a separate program for each library.
Chris@39 7717 for i in $deplibs; do
Chris@39 7718 case $i in
Chris@39 7719 -l*)
Chris@39 7720 func_stripname -l '' "$i"
Chris@39 7721 name=$func_stripname_result
Chris@39 7722 $opt_dry_run || $RM conftest
Chris@39 7723 if $LTCC $LTCFLAGS -o conftest conftest.c $i; then
Chris@39 7724 ldd_output=`ldd conftest`
Chris@39 7725 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
Chris@39 7726 case " $predeps $postdeps " in
Chris@39 7727 *" $i "*)
Chris@39 7728 func_append newdeplibs " $i"
Chris@39 7729 i=""
Chris@39 7730 ;;
Chris@39 7731 esac
Chris@39 7732 fi
Chris@39 7733 if test -n "$i" ; then
Chris@39 7734 libname=`eval "\\$ECHO \"$libname_spec\""`
Chris@39 7735 deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
Chris@39 7736 set dummy $deplib_matches; shift
Chris@39 7737 deplib_match=$1
Chris@39 7738 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
Chris@39 7739 func_append newdeplibs " $i"
Chris@39 7740 else
Chris@39 7741 droppeddeps=yes
Chris@39 7742 echo
Chris@39 7743 $ECHO "*** Warning: dynamic linker does not accept needed library $i."
Chris@39 7744 echo "*** I have the capability to make that library automatically link in when"
Chris@39 7745 echo "*** you link to this library. But I can only do this if you have a"
Chris@39 7746 echo "*** shared version of the library, which you do not appear to have"
Chris@39 7747 echo "*** because a test_compile did reveal that the linker did not use this one"
Chris@39 7748 echo "*** as a dynamic dependency that programs can get resolved with at runtime."
Chris@39 7749 fi
Chris@39 7750 fi
Chris@39 7751 else
Chris@39 7752 droppeddeps=yes
Chris@39 7753 echo
Chris@39 7754 $ECHO "*** Warning! Library $i is needed by this library but I was not able to"
Chris@39 7755 echo "*** make it link in! You will probably need to install it or some"
Chris@39 7756 echo "*** library that it depends on before this library will be fully"
Chris@39 7757 echo "*** functional. Installing it before continuing would be even better."
Chris@39 7758 fi
Chris@39 7759 ;;
Chris@39 7760 *)
Chris@39 7761 func_append newdeplibs " $i"
Chris@39 7762 ;;
Chris@39 7763 esac
Chris@39 7764 done
Chris@39 7765 fi
Chris@39 7766 ;;
Chris@39 7767 file_magic*)
Chris@39 7768 set dummy $deplibs_check_method; shift
Chris@39 7769 file_magic_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
Chris@39 7770 for a_deplib in $deplibs; do
Chris@39 7771 case $a_deplib in
Chris@39 7772 -l*)
Chris@39 7773 func_stripname -l '' "$a_deplib"
Chris@39 7774 name=$func_stripname_result
Chris@39 7775 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
Chris@39 7776 case " $predeps $postdeps " in
Chris@39 7777 *" $a_deplib "*)
Chris@39 7778 func_append newdeplibs " $a_deplib"
Chris@39 7779 a_deplib=""
Chris@39 7780 ;;
Chris@39 7781 esac
Chris@39 7782 fi
Chris@39 7783 if test -n "$a_deplib" ; then
Chris@39 7784 libname=`eval "\\$ECHO \"$libname_spec\""`
Chris@39 7785 if test -n "$file_magic_glob"; then
Chris@39 7786 libnameglob=`func_echo_all "$libname" | $SED -e $file_magic_glob`
Chris@39 7787 else
Chris@39 7788 libnameglob=$libname
Chris@39 7789 fi
Chris@39 7790 test "$want_nocaseglob" = yes && nocaseglob=`shopt -p nocaseglob`
Chris@39 7791 for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
Chris@39 7792 if test "$want_nocaseglob" = yes; then
Chris@39 7793 shopt -s nocaseglob
Chris@39 7794 potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`
Chris@39 7795 $nocaseglob
Chris@39 7796 else
Chris@39 7797 potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`
Chris@39 7798 fi
Chris@39 7799 for potent_lib in $potential_libs; do
Chris@39 7800 # Follow soft links.
Chris@39 7801 if ls -lLd "$potent_lib" 2>/dev/null |
Chris@39 7802 $GREP " -> " >/dev/null; then
Chris@39 7803 continue
Chris@39 7804 fi
Chris@39 7805 # The statement above tries to avoid entering an
Chris@39 7806 # endless loop below, in case of cyclic links.
Chris@39 7807 # We might still enter an endless loop, since a link
Chris@39 7808 # loop can be closed while we follow links,
Chris@39 7809 # but so what?
Chris@39 7810 potlib="$potent_lib"
Chris@39 7811 while test -h "$potlib" 2>/dev/null; do
Chris@39 7812 potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'`
Chris@39 7813 case $potliblink in
Chris@39 7814 [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
Chris@39 7815 *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";;
Chris@39 7816 esac
Chris@39 7817 done
Chris@39 7818 if eval $file_magic_cmd \"\$potlib\" 2>/dev/null |
Chris@39 7819 $SED -e 10q |
Chris@39 7820 $EGREP "$file_magic_regex" > /dev/null; then
Chris@39 7821 func_append newdeplibs " $a_deplib"
Chris@39 7822 a_deplib=""
Chris@39 7823 break 2
Chris@39 7824 fi
Chris@39 7825 done
Chris@39 7826 done
Chris@39 7827 fi
Chris@39 7828 if test -n "$a_deplib" ; then
Chris@39 7829 droppeddeps=yes
Chris@39 7830 echo
Chris@39 7831 $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
Chris@39 7832 echo "*** I have the capability to make that library automatically link in when"
Chris@39 7833 echo "*** you link to this library. But I can only do this if you have a"
Chris@39 7834 echo "*** shared version of the library, which you do not appear to have"
Chris@39 7835 echo "*** because I did check the linker path looking for a file starting"
Chris@39 7836 if test -z "$potlib" ; then
Chris@39 7837 $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
Chris@39 7838 else
Chris@39 7839 $ECHO "*** with $libname and none of the candidates passed a file format test"
Chris@39 7840 $ECHO "*** using a file magic. Last file checked: $potlib"
Chris@39 7841 fi
Chris@39 7842 fi
Chris@39 7843 ;;
Chris@39 7844 *)
Chris@39 7845 # Add a -L argument.
Chris@39 7846 func_append newdeplibs " $a_deplib"
Chris@39 7847 ;;
Chris@39 7848 esac
Chris@39 7849 done # Gone through all deplibs.
Chris@39 7850 ;;
Chris@39 7851 match_pattern*)
Chris@39 7852 set dummy $deplibs_check_method; shift
Chris@39 7853 match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
Chris@39 7854 for a_deplib in $deplibs; do
Chris@39 7855 case $a_deplib in
Chris@39 7856 -l*)
Chris@39 7857 func_stripname -l '' "$a_deplib"
Chris@39 7858 name=$func_stripname_result
Chris@39 7859 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
Chris@39 7860 case " $predeps $postdeps " in
Chris@39 7861 *" $a_deplib "*)
Chris@39 7862 func_append newdeplibs " $a_deplib"
Chris@39 7863 a_deplib=""
Chris@39 7864 ;;
Chris@39 7865 esac
Chris@39 7866 fi
Chris@39 7867 if test -n "$a_deplib" ; then
Chris@39 7868 libname=`eval "\\$ECHO \"$libname_spec\""`
Chris@39 7869 for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
Chris@39 7870 potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
Chris@39 7871 for potent_lib in $potential_libs; do
Chris@39 7872 potlib="$potent_lib" # see symlink-check above in file_magic test
Chris@39 7873 if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \
Chris@39 7874 $EGREP "$match_pattern_regex" > /dev/null; then
Chris@39 7875 func_append newdeplibs " $a_deplib"
Chris@39 7876 a_deplib=""
Chris@39 7877 break 2
Chris@39 7878 fi
Chris@39 7879 done
Chris@39 7880 done
Chris@39 7881 fi
Chris@39 7882 if test -n "$a_deplib" ; then
Chris@39 7883 droppeddeps=yes
Chris@39 7884 echo
Chris@39 7885 $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
Chris@39 7886 echo "*** I have the capability to make that library automatically link in when"
Chris@39 7887 echo "*** you link to this library. But I can only do this if you have a"
Chris@39 7888 echo "*** shared version of the library, which you do not appear to have"
Chris@39 7889 echo "*** because I did check the linker path looking for a file starting"
Chris@39 7890 if test -z "$potlib" ; then
Chris@39 7891 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
Chris@39 7892 else
Chris@39 7893 $ECHO "*** with $libname and none of the candidates passed a file format test"
Chris@39 7894 $ECHO "*** using a regex pattern. Last file checked: $potlib"
Chris@39 7895 fi
Chris@39 7896 fi
Chris@39 7897 ;;
Chris@39 7898 *)
Chris@39 7899 # Add a -L argument.
Chris@39 7900 func_append newdeplibs " $a_deplib"
Chris@39 7901 ;;
Chris@39 7902 esac
Chris@39 7903 done # Gone through all deplibs.
Chris@39 7904 ;;
Chris@39 7905 none | unknown | *)
Chris@39 7906 newdeplibs=""
Chris@39 7907 tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'`
Chris@39 7908 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
Chris@39 7909 for i in $predeps $postdeps ; do
Chris@39 7910 # can't use Xsed below, because $i might contain '/'
Chris@39 7911 tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"`
Chris@39 7912 done
Chris@39 7913 fi
Chris@39 7914 case $tmp_deplibs in
Chris@39 7915 *[!\ \ ]*)
Chris@39 7916 echo
Chris@39 7917 if test "X$deplibs_check_method" = "Xnone"; then
Chris@39 7918 echo "*** Warning: inter-library dependencies are not supported in this platform."
Chris@39 7919 else
Chris@39 7920 echo "*** Warning: inter-library dependencies are not known to be supported."
Chris@39 7921 fi
Chris@39 7922 echo "*** All declared inter-library dependencies are being dropped."
Chris@39 7923 droppeddeps=yes
Chris@39 7924 ;;
Chris@39 7925 esac
Chris@39 7926 ;;
Chris@39 7927 esac
Chris@39 7928 versuffix=$versuffix_save
Chris@39 7929 major=$major_save
Chris@39 7930 release=$release_save
Chris@39 7931 libname=$libname_save
Chris@39 7932 name=$name_save
Chris@39 7933
Chris@39 7934 case $host in
Chris@39 7935 *-*-rhapsody* | *-*-darwin1.[012])
Chris@39 7936 # On Rhapsody replace the C library with the System framework
Chris@39 7937 newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'`
Chris@39 7938 ;;
Chris@39 7939 esac
Chris@39 7940
Chris@39 7941 if test "$droppeddeps" = yes; then
Chris@39 7942 if test "$module" = yes; then
Chris@39 7943 echo
Chris@39 7944 echo "*** Warning: libtool could not satisfy all declared inter-library"
Chris@39 7945 $ECHO "*** dependencies of module $libname. Therefore, libtool will create"
Chris@39 7946 echo "*** a static module, that should work as long as the dlopening"
Chris@39 7947 echo "*** application is linked with the -dlopen flag."
Chris@39 7948 if test -z "$global_symbol_pipe"; then
Chris@39 7949 echo
Chris@39 7950 echo "*** However, this would only work if libtool was able to extract symbol"
Chris@39 7951 echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
Chris@39 7952 echo "*** not find such a program. So, this module is probably useless."
Chris@39 7953 echo "*** \`nm' from GNU binutils and a full rebuild may help."
Chris@39 7954 fi
Chris@39 7955 if test "$build_old_libs" = no; then
Chris@39 7956 oldlibs="$output_objdir/$libname.$libext"
Chris@39 7957 build_libtool_libs=module
Chris@39 7958 build_old_libs=yes
Chris@39 7959 else
Chris@39 7960 build_libtool_libs=no
Chris@39 7961 fi
Chris@39 7962 else
Chris@39 7963 echo "*** The inter-library dependencies that have been dropped here will be"
Chris@39 7964 echo "*** automatically added whenever a program is linked with this library"
Chris@39 7965 echo "*** or is declared to -dlopen it."
Chris@39 7966
Chris@39 7967 if test "$allow_undefined" = no; then
Chris@39 7968 echo
Chris@39 7969 echo "*** Since this library must not contain undefined symbols,"
Chris@39 7970 echo "*** because either the platform does not support them or"
Chris@39 7971 echo "*** it was explicitly requested with -no-undefined,"
Chris@39 7972 echo "*** libtool will only create a static version of it."
Chris@39 7973 if test "$build_old_libs" = no; then
Chris@39 7974 oldlibs="$output_objdir/$libname.$libext"
Chris@39 7975 build_libtool_libs=module
Chris@39 7976 build_old_libs=yes
Chris@39 7977 else
Chris@39 7978 build_libtool_libs=no
Chris@39 7979 fi
Chris@39 7980 fi
Chris@39 7981 fi
Chris@39 7982 fi
Chris@39 7983 # Done checking deplibs!
Chris@39 7984 deplibs=$newdeplibs
Chris@39 7985 fi
Chris@39 7986 # Time to change all our "foo.ltframework" stuff back to "-framework foo"
Chris@39 7987 case $host in
Chris@39 7988 *-*-darwin*)
Chris@39 7989 newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
Chris@39 7990 new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
Chris@39 7991 deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
Chris@39 7992 ;;
Chris@39 7993 esac
Chris@39 7994
Chris@39 7995 # move library search paths that coincide with paths to not yet
Chris@39 7996 # installed libraries to the beginning of the library search list
Chris@39 7997 new_libs=
Chris@39 7998 for path in $notinst_path; do
Chris@39 7999 case " $new_libs " in
Chris@39 8000 *" -L$path/$objdir "*) ;;
Chris@39 8001 *)
Chris@39 8002 case " $deplibs " in
Chris@39 8003 *" -L$path/$objdir "*)
Chris@39 8004 func_append new_libs " -L$path/$objdir" ;;
Chris@39 8005 esac
Chris@39 8006 ;;
Chris@39 8007 esac
Chris@39 8008 done
Chris@39 8009 for deplib in $deplibs; do
Chris@39 8010 case $deplib in
Chris@39 8011 -L*)
Chris@39 8012 case " $new_libs " in
Chris@39 8013 *" $deplib "*) ;;
Chris@39 8014 *) func_append new_libs " $deplib" ;;
Chris@39 8015 esac
Chris@39 8016 ;;
Chris@39 8017 *) func_append new_libs " $deplib" ;;
Chris@39 8018 esac
Chris@39 8019 done
Chris@39 8020 deplibs="$new_libs"
Chris@39 8021
Chris@39 8022 # All the library-specific variables (install_libdir is set above).
Chris@39 8023 library_names=
Chris@39 8024 old_library=
Chris@39 8025 dlname=
Chris@39 8026
Chris@39 8027 # Test again, we may have decided not to build it any more
Chris@39 8028 if test "$build_libtool_libs" = yes; then
Chris@39 8029 if test "$hardcode_into_libs" = yes; then
Chris@39 8030 # Hardcode the library paths
Chris@39 8031 hardcode_libdirs=
Chris@39 8032 dep_rpath=
Chris@39 8033 rpath="$finalize_rpath"
Chris@39 8034 test "$opt_mode" != relink && rpath="$compile_rpath$rpath"
Chris@39 8035 for libdir in $rpath; do
Chris@39 8036 if test -n "$hardcode_libdir_flag_spec"; then
Chris@39 8037 if test -n "$hardcode_libdir_separator"; then
Chris@39 8038 func_replace_sysroot "$libdir"
Chris@39 8039 libdir=$func_replace_sysroot_result
Chris@39 8040 if test -z "$hardcode_libdirs"; then
Chris@39 8041 hardcode_libdirs="$libdir"
Chris@39 8042 else
Chris@39 8043 # Just accumulate the unique libdirs.
Chris@39 8044 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
Chris@39 8045 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
Chris@39 8046 ;;
Chris@39 8047 *)
Chris@39 8048 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
Chris@39 8049 ;;
Chris@39 8050 esac
Chris@39 8051 fi
Chris@39 8052 else
Chris@39 8053 eval flag=\"$hardcode_libdir_flag_spec\"
Chris@39 8054 func_append dep_rpath " $flag"
Chris@39 8055 fi
Chris@39 8056 elif test -n "$runpath_var"; then
Chris@39 8057 case "$perm_rpath " in
Chris@39 8058 *" $libdir "*) ;;
Chris@39 8059 *) func_apped perm_rpath " $libdir" ;;
Chris@39 8060 esac
Chris@39 8061 fi
Chris@39 8062 done
Chris@39 8063 # Substitute the hardcoded libdirs into the rpath.
Chris@39 8064 if test -n "$hardcode_libdir_separator" &&
Chris@39 8065 test -n "$hardcode_libdirs"; then
Chris@39 8066 libdir="$hardcode_libdirs"
Chris@39 8067 if test -n "$hardcode_libdir_flag_spec_ld"; then
Chris@39 8068 eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\"
Chris@39 8069 else
Chris@39 8070 eval dep_rpath=\"$hardcode_libdir_flag_spec\"
Chris@39 8071 fi
Chris@39 8072 fi
Chris@39 8073 if test -n "$runpath_var" && test -n "$perm_rpath"; then
Chris@39 8074 # We should set the runpath_var.
Chris@39 8075 rpath=
Chris@39 8076 for dir in $perm_rpath; do
Chris@39 8077 func_append rpath "$dir:"
Chris@39 8078 done
Chris@39 8079 eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var"
Chris@39 8080 fi
Chris@39 8081 test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs"
Chris@39 8082 fi
Chris@39 8083
Chris@39 8084 shlibpath="$finalize_shlibpath"
Chris@39 8085 test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath"
Chris@39 8086 if test -n "$shlibpath"; then
Chris@39 8087 eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var"
Chris@39 8088 fi
Chris@39 8089
Chris@39 8090 # Get the real and link names of the library.
Chris@39 8091 eval shared_ext=\"$shrext_cmds\"
Chris@39 8092 eval library_names=\"$library_names_spec\"
Chris@39 8093 set dummy $library_names
Chris@39 8094 shift
Chris@39 8095 realname="$1"
Chris@39 8096 shift
Chris@39 8097
Chris@39 8098 if test -n "$soname_spec"; then
Chris@39 8099 eval soname=\"$soname_spec\"
Chris@39 8100 else
Chris@39 8101 soname="$realname"
Chris@39 8102 fi
Chris@39 8103 if test -z "$dlname"; then
Chris@39 8104 dlname=$soname
Chris@39 8105 fi
Chris@39 8106
Chris@39 8107 lib="$output_objdir/$realname"
Chris@39 8108 linknames=
Chris@39 8109 for link
Chris@39 8110 do
Chris@39 8111 func_append linknames " $link"
Chris@39 8112 done
Chris@39 8113
Chris@39 8114 # Use standard objects if they are pic
Chris@39 8115 test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP`
Chris@39 8116 test "X$libobjs" = "X " && libobjs=
Chris@39 8117
Chris@39 8118 delfiles=
Chris@39 8119 if test -n "$export_symbols" && test -n "$include_expsyms"; then
Chris@39 8120 $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp"
Chris@39 8121 export_symbols="$output_objdir/$libname.uexp"
Chris@39 8122 func_append delfiles " $export_symbols"
Chris@39 8123 fi
Chris@39 8124
Chris@39 8125 orig_export_symbols=
Chris@39 8126 case $host_os in
Chris@39 8127 cygwin* | mingw* | cegcc*)
Chris@39 8128 if test -n "$export_symbols" && test -z "$export_symbols_regex"; then
Chris@39 8129 # exporting using user supplied symfile
Chris@39 8130 if test "x`$SED 1q $export_symbols`" != xEXPORTS; then
Chris@39 8131 # and it's NOT already a .def file. Must figure out
Chris@39 8132 # which of the given symbols are data symbols and tag
Chris@39 8133 # them as such. So, trigger use of export_symbols_cmds.
Chris@39 8134 # export_symbols gets reassigned inside the "prepare
Chris@39 8135 # the list of exported symbols" if statement, so the
Chris@39 8136 # include_expsyms logic still works.
Chris@39 8137 orig_export_symbols="$export_symbols"
Chris@39 8138 export_symbols=
Chris@39 8139 always_export_symbols=yes
Chris@39 8140 fi
Chris@39 8141 fi
Chris@39 8142 ;;
Chris@39 8143 esac
Chris@39 8144
Chris@39 8145 # Prepare the list of exported symbols
Chris@39 8146 if test -z "$export_symbols"; then
Chris@39 8147 if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
Chris@39 8148 func_verbose "generating symbol list for \`$libname.la'"
Chris@39 8149 export_symbols="$output_objdir/$libname.exp"
Chris@39 8150 $opt_dry_run || $RM $export_symbols
Chris@39 8151 cmds=$export_symbols_cmds
Chris@39 8152 save_ifs="$IFS"; IFS='~'
Chris@39 8153 for cmd1 in $cmds; do
Chris@39 8154 IFS="$save_ifs"
Chris@39 8155 # Take the normal branch if the nm_file_list_spec branch
Chris@39 8156 # doesn't work or if tool conversion is not needed.
Chris@39 8157 case $nm_file_list_spec~$to_tool_file_cmd in
Chris@39 8158 *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*)
Chris@39 8159 try_normal_branch=yes
Chris@39 8160 eval cmd=\"$cmd1\"
Chris@39 8161 func_len " $cmd"
Chris@39 8162 len=$func_len_result
Chris@39 8163 ;;
Chris@39 8164 *)
Chris@39 8165 try_normal_branch=no
Chris@39 8166 ;;
Chris@39 8167 esac
Chris@39 8168 if test "$try_normal_branch" = yes \
Chris@39 8169 && { test "$len" -lt "$max_cmd_len" \
Chris@39 8170 || test "$max_cmd_len" -le -1; }
Chris@39 8171 then
Chris@39 8172 func_show_eval "$cmd" 'exit $?'
Chris@39 8173 skipped_export=false
Chris@39 8174 elif test -n "$nm_file_list_spec"; then
Chris@39 8175 func_basename "$output"
Chris@39 8176 output_la=$func_basename_result
Chris@39 8177 save_libobjs=$libobjs
Chris@39 8178 save_output=$output
Chris@39 8179 output=${output_objdir}/${output_la}.nm
Chris@39 8180 func_to_tool_file "$output"
Chris@39 8181 libobjs=$nm_file_list_spec$func_to_tool_file_result
Chris@39 8182 func_append delfiles " $output"
Chris@39 8183 func_verbose "creating $NM input file list: $output"
Chris@39 8184 for obj in $save_libobjs; do
Chris@39 8185 func_to_tool_file "$obj"
Chris@39 8186 $ECHO "$func_to_tool_file_result"
Chris@39 8187 done > "$output"
Chris@39 8188 eval cmd=\"$cmd1\"
Chris@39 8189 func_show_eval "$cmd" 'exit $?'
Chris@39 8190 output=$save_output
Chris@39 8191 libobjs=$save_libobjs
Chris@39 8192 skipped_export=false
Chris@39 8193 else
Chris@39 8194 # The command line is too long to execute in one step.
Chris@39 8195 func_verbose "using reloadable object file for export list..."
Chris@39 8196 skipped_export=:
Chris@39 8197 # Break out early, otherwise skipped_export may be
Chris@39 8198 # set to false by a later but shorter cmd.
Chris@39 8199 break
Chris@39 8200 fi
Chris@39 8201 done
Chris@39 8202 IFS="$save_ifs"
Chris@39 8203 if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then
Chris@39 8204 func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
Chris@39 8205 func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
Chris@39 8206 fi
Chris@39 8207 fi
Chris@39 8208 fi
Chris@39 8209
Chris@39 8210 if test -n "$export_symbols" && test -n "$include_expsyms"; then
Chris@39 8211 tmp_export_symbols="$export_symbols"
Chris@39 8212 test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
Chris@39 8213 $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"'
Chris@39 8214 fi
Chris@39 8215
Chris@39 8216 if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then
Chris@39 8217 # The given exports_symbols file has to be filtered, so filter it.
Chris@39 8218 func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
Chris@39 8219 # FIXME: $output_objdir/$libname.filter potentially contains lots of
Chris@39 8220 # 's' commands which not all seds can handle. GNU sed should be fine
Chris@39 8221 # though. Also, the filter scales superlinearly with the number of
Chris@39 8222 # global variables. join(1) would be nice here, but unfortunately
Chris@39 8223 # isn't a blessed tool.
Chris@39 8224 $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter
Chris@39 8225 func_append delfiles " $export_symbols $output_objdir/$libname.filter"
Chris@39 8226 export_symbols=$output_objdir/$libname.def
Chris@39 8227 $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
Chris@39 8228 fi
Chris@39 8229
Chris@39 8230 tmp_deplibs=
Chris@39 8231 for test_deplib in $deplibs; do
Chris@39 8232 case " $convenience " in
Chris@39 8233 *" $test_deplib "*) ;;
Chris@39 8234 *)
Chris@39 8235 func_append tmp_deplibs " $test_deplib"
Chris@39 8236 ;;
Chris@39 8237 esac
Chris@39 8238 done
Chris@39 8239 deplibs="$tmp_deplibs"
Chris@39 8240
Chris@39 8241 if test -n "$convenience"; then
Chris@39 8242 if test -n "$whole_archive_flag_spec" &&
Chris@39 8243 test "$compiler_needs_object" = yes &&
Chris@39 8244 test -z "$libobjs"; then
Chris@39 8245 # extract the archives, so we have objects to list.
Chris@39 8246 # TODO: could optimize this to just extract one archive.
Chris@39 8247 whole_archive_flag_spec=
Chris@39 8248 fi
Chris@39 8249 if test -n "$whole_archive_flag_spec"; then
Chris@39 8250 save_libobjs=$libobjs
Chris@39 8251 eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
Chris@39 8252 test "X$libobjs" = "X " && libobjs=
Chris@39 8253 else
Chris@39 8254 gentop="$output_objdir/${outputname}x"
Chris@39 8255 func_append generated " $gentop"
Chris@39 8256
Chris@39 8257 func_extract_archives $gentop $convenience
Chris@39 8258 func_append libobjs " $func_extract_archives_result"
Chris@39 8259 test "X$libobjs" = "X " && libobjs=
Chris@39 8260 fi
Chris@39 8261 fi
Chris@39 8262
Chris@39 8263 if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
Chris@39 8264 eval flag=\"$thread_safe_flag_spec\"
Chris@39 8265 func_append linker_flags " $flag"
Chris@39 8266 fi
Chris@39 8267
Chris@39 8268 # Make a backup of the uninstalled library when relinking
Chris@39 8269 if test "$opt_mode" = relink; then
Chris@39 8270 $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?
Chris@39 8271 fi
Chris@39 8272
Chris@39 8273 # Do each of the archive commands.
Chris@39 8274 if test "$module" = yes && test -n "$module_cmds" ; then
Chris@39 8275 if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
Chris@39 8276 eval test_cmds=\"$module_expsym_cmds\"
Chris@39 8277 cmds=$module_expsym_cmds
Chris@39 8278 else
Chris@39 8279 eval test_cmds=\"$module_cmds\"
Chris@39 8280 cmds=$module_cmds
Chris@39 8281 fi
Chris@39 8282 else
Chris@39 8283 if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
Chris@39 8284 eval test_cmds=\"$archive_expsym_cmds\"
Chris@39 8285 cmds=$archive_expsym_cmds
Chris@39 8286 else
Chris@39 8287 eval test_cmds=\"$archive_cmds\"
Chris@39 8288 cmds=$archive_cmds
Chris@39 8289 fi
Chris@39 8290 fi
Chris@39 8291
Chris@39 8292 if test "X$skipped_export" != "X:" &&
Chris@39 8293 func_len " $test_cmds" &&
Chris@39 8294 len=$func_len_result &&
Chris@39 8295 test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
Chris@39 8296 :
Chris@39 8297 else
Chris@39 8298 # The command line is too long to link in one step, link piecewise
Chris@39 8299 # or, if using GNU ld and skipped_export is not :, use a linker
Chris@39 8300 # script.
Chris@39 8301
Chris@39 8302 # Save the value of $output and $libobjs because we want to
Chris@39 8303 # use them later. If we have whole_archive_flag_spec, we
Chris@39 8304 # want to use save_libobjs as it was before
Chris@39 8305 # whole_archive_flag_spec was expanded, because we can't
Chris@39 8306 # assume the linker understands whole_archive_flag_spec.
Chris@39 8307 # This may have to be revisited, in case too many
Chris@39 8308 # convenience libraries get linked in and end up exceeding
Chris@39 8309 # the spec.
Chris@39 8310 if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then
Chris@39 8311 save_libobjs=$libobjs
Chris@39 8312 fi
Chris@39 8313 save_output=$output
Chris@39 8314 func_basename "$output"
Chris@39 8315 output_la=$func_basename_result
Chris@39 8316
Chris@39 8317 # Clear the reloadable object creation command queue and
Chris@39 8318 # initialize k to one.
Chris@39 8319 test_cmds=
Chris@39 8320 concat_cmds=
Chris@39 8321 objlist=
Chris@39 8322 last_robj=
Chris@39 8323 k=1
Chris@39 8324
Chris@39 8325 if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then
Chris@39 8326 output=${output_objdir}/${output_la}.lnkscript
Chris@39 8327 func_verbose "creating GNU ld script: $output"
Chris@39 8328 echo 'INPUT (' > $output
Chris@39 8329 for obj in $save_libobjs
Chris@39 8330 do
Chris@39 8331 func_to_tool_file "$obj"
Chris@39 8332 $ECHO "$func_to_tool_file_result" >> $output
Chris@39 8333 done
Chris@39 8334 echo ')' >> $output
Chris@39 8335 func_append delfiles " $output"
Chris@39 8336 func_to_tool_file "$output"
Chris@39 8337 output=$func_to_tool_file_result
Chris@39 8338 elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then
Chris@39 8339 output=${output_objdir}/${output_la}.lnk
Chris@39 8340 func_verbose "creating linker input file list: $output"
Chris@39 8341 : > $output
Chris@39 8342 set x $save_libobjs
Chris@39 8343 shift
Chris@39 8344 firstobj=
Chris@39 8345 if test "$compiler_needs_object" = yes; then
Chris@39 8346 firstobj="$1 "
Chris@39 8347 shift
Chris@39 8348 fi
Chris@39 8349 for obj
Chris@39 8350 do
Chris@39 8351 func_to_tool_file "$obj"
Chris@39 8352 $ECHO "$func_to_tool_file_result" >> $output
Chris@39 8353 done
Chris@39 8354 func_append delfiles " $output"
Chris@39 8355 func_to_tool_file "$output"
Chris@39 8356 output=$firstobj\"$file_list_spec$func_to_tool_file_result\"
Chris@39 8357 else
Chris@39 8358 if test -n "$save_libobjs"; then
Chris@39 8359 func_verbose "creating reloadable object files..."
Chris@39 8360 output=$output_objdir/$output_la-${k}.$objext
Chris@39 8361 eval test_cmds=\"$reload_cmds\"
Chris@39 8362 func_len " $test_cmds"
Chris@39 8363 len0=$func_len_result
Chris@39 8364 len=$len0
Chris@39 8365
Chris@39 8366 # Loop over the list of objects to be linked.
Chris@39 8367 for obj in $save_libobjs
Chris@39 8368 do
Chris@39 8369 func_len " $obj"
Chris@39 8370 func_arith $len + $func_len_result
Chris@39 8371 len=$func_arith_result
Chris@39 8372 if test "X$objlist" = X ||
Chris@39 8373 test "$len" -lt "$max_cmd_len"; then
Chris@39 8374 func_append objlist " $obj"
Chris@39 8375 else
Chris@39 8376 # The command $test_cmds is almost too long, add a
Chris@39 8377 # command to the queue.
Chris@39 8378 if test "$k" -eq 1 ; then
Chris@39 8379 # The first file doesn't have a previous command to add.
Chris@39 8380 reload_objs=$objlist
Chris@39 8381 eval concat_cmds=\"$reload_cmds\"
Chris@39 8382 else
Chris@39 8383 # All subsequent reloadable object files will link in
Chris@39 8384 # the last one created.
Chris@39 8385 reload_objs="$objlist $last_robj"
Chris@39 8386 eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\"
Chris@39 8387 fi
Chris@39 8388 last_robj=$output_objdir/$output_la-${k}.$objext
Chris@39 8389 func_arith $k + 1
Chris@39 8390 k=$func_arith_result
Chris@39 8391 output=$output_objdir/$output_la-${k}.$objext
Chris@39 8392 objlist=" $obj"
Chris@39 8393 func_len " $last_robj"
Chris@39 8394 func_arith $len0 + $func_len_result
Chris@39 8395 len=$func_arith_result
Chris@39 8396 fi
Chris@39 8397 done
Chris@39 8398 # Handle the remaining objects by creating one last
Chris@39 8399 # reloadable object file. All subsequent reloadable object
Chris@39 8400 # files will link in the last one created.
Chris@39 8401 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
Chris@39 8402 reload_objs="$objlist $last_robj"
Chris@39 8403 eval concat_cmds=\"\${concat_cmds}$reload_cmds\"
Chris@39 8404 if test -n "$last_robj"; then
Chris@39 8405 eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\"
Chris@39 8406 fi
Chris@39 8407 func_append delfiles " $output"
Chris@39 8408
Chris@39 8409 else
Chris@39 8410 output=
Chris@39 8411 fi
Chris@39 8412
Chris@39 8413 if ${skipped_export-false}; then
Chris@39 8414 func_verbose "generating symbol list for \`$libname.la'"
Chris@39 8415 export_symbols="$output_objdir/$libname.exp"
Chris@39 8416 $opt_dry_run || $RM $export_symbols
Chris@39 8417 libobjs=$output
Chris@39 8418 # Append the command to create the export file.
Chris@39 8419 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
Chris@39 8420 eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\"
Chris@39 8421 if test -n "$last_robj"; then
Chris@39 8422 eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\"
Chris@39 8423 fi
Chris@39 8424 fi
Chris@39 8425
Chris@39 8426 test -n "$save_libobjs" &&
Chris@39 8427 func_verbose "creating a temporary reloadable object file: $output"
Chris@39 8428
Chris@39 8429 # Loop through the commands generated above and execute them.
Chris@39 8430 save_ifs="$IFS"; IFS='~'
Chris@39 8431 for cmd in $concat_cmds; do
Chris@39 8432 IFS="$save_ifs"
Chris@39 8433 $opt_silent || {
Chris@39 8434 func_quote_for_expand "$cmd"
Chris@39 8435 eval "func_echo $func_quote_for_expand_result"
Chris@39 8436 }
Chris@39 8437 $opt_dry_run || eval "$cmd" || {
Chris@39 8438 lt_exit=$?
Chris@39 8439
Chris@39 8440 # Restore the uninstalled library and exit
Chris@39 8441 if test "$opt_mode" = relink; then
Chris@39 8442 ( cd "$output_objdir" && \
Chris@39 8443 $RM "${realname}T" && \
Chris@39 8444 $MV "${realname}U" "$realname" )
Chris@39 8445 fi
Chris@39 8446
Chris@39 8447 exit $lt_exit
Chris@39 8448 }
Chris@39 8449 done
Chris@39 8450 IFS="$save_ifs"
Chris@39 8451
Chris@39 8452 if test -n "$export_symbols_regex" && ${skipped_export-false}; then
Chris@39 8453 func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
Chris@39 8454 func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
Chris@39 8455 fi
Chris@39 8456 fi
Chris@39 8457
Chris@39 8458 if ${skipped_export-false}; then
Chris@39 8459 if test -n "$export_symbols" && test -n "$include_expsyms"; then
Chris@39 8460 tmp_export_symbols="$export_symbols"
Chris@39 8461 test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
Chris@39 8462 $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"'
Chris@39 8463 fi
Chris@39 8464
Chris@39 8465 if test -n "$orig_export_symbols"; then
Chris@39 8466 # The given exports_symbols file has to be filtered, so filter it.
Chris@39 8467 func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
Chris@39 8468 # FIXME: $output_objdir/$libname.filter potentially contains lots of
Chris@39 8469 # 's' commands which not all seds can handle. GNU sed should be fine
Chris@39 8470 # though. Also, the filter scales superlinearly with the number of
Chris@39 8471 # global variables. join(1) would be nice here, but unfortunately
Chris@39 8472 # isn't a blessed tool.
Chris@39 8473 $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter
Chris@39 8474 func_append delfiles " $export_symbols $output_objdir/$libname.filter"
Chris@39 8475 export_symbols=$output_objdir/$libname.def
Chris@39 8476 $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
Chris@39 8477 fi
Chris@39 8478 fi
Chris@39 8479
Chris@39 8480 libobjs=$output
Chris@39 8481 # Restore the value of output.
Chris@39 8482 output=$save_output
Chris@39 8483
Chris@39 8484 if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then
Chris@39 8485 eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
Chris@39 8486 test "X$libobjs" = "X " && libobjs=
Chris@39 8487 fi
Chris@39 8488 # Expand the library linking commands again to reset the
Chris@39 8489 # value of $libobjs for piecewise linking.
Chris@39 8490
Chris@39 8491 # Do each of the archive commands.
Chris@39 8492 if test "$module" = yes && test -n "$module_cmds" ; then
Chris@39 8493 if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
Chris@39 8494 cmds=$module_expsym_cmds
Chris@39 8495 else
Chris@39 8496 cmds=$module_cmds
Chris@39 8497 fi
Chris@39 8498 else
Chris@39 8499 if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
Chris@39 8500 cmds=$archive_expsym_cmds
Chris@39 8501 else
Chris@39 8502 cmds=$archive_cmds
Chris@39 8503 fi
Chris@39 8504 fi
Chris@39 8505 fi
Chris@39 8506
Chris@39 8507 if test -n "$delfiles"; then
Chris@39 8508 # Append the command to remove temporary files to $cmds.
Chris@39 8509 eval cmds=\"\$cmds~\$RM $delfiles\"
Chris@39 8510 fi
Chris@39 8511
Chris@39 8512 # Add any objects from preloaded convenience libraries
Chris@39 8513 if test -n "$dlprefiles"; then
Chris@39 8514 gentop="$output_objdir/${outputname}x"
Chris@39 8515 func_append generated " $gentop"
Chris@39 8516
Chris@39 8517 func_extract_archives $gentop $dlprefiles
Chris@39 8518 func_append libobjs " $func_extract_archives_result"
Chris@39 8519 test "X$libobjs" = "X " && libobjs=
Chris@39 8520 fi
Chris@39 8521
Chris@39 8522 save_ifs="$IFS"; IFS='~'
Chris@39 8523 for cmd in $cmds; do
Chris@39 8524 IFS="$save_ifs"
Chris@39 8525 eval cmd=\"$cmd\"
Chris@39 8526 $opt_silent || {
Chris@39 8527 func_quote_for_expand "$cmd"
Chris@39 8528 eval "func_echo $func_quote_for_expand_result"
Chris@39 8529 }
Chris@39 8530 $opt_dry_run || eval "$cmd" || {
Chris@39 8531 lt_exit=$?
Chris@39 8532
Chris@39 8533 # Restore the uninstalled library and exit
Chris@39 8534 if test "$opt_mode" = relink; then
Chris@39 8535 ( cd "$output_objdir" && \
Chris@39 8536 $RM "${realname}T" && \
Chris@39 8537 $MV "${realname}U" "$realname" )
Chris@39 8538 fi
Chris@39 8539
Chris@39 8540 exit $lt_exit
Chris@39 8541 }
Chris@39 8542 done
Chris@39 8543 IFS="$save_ifs"
Chris@39 8544
Chris@39 8545 # Restore the uninstalled library and exit
Chris@39 8546 if test "$opt_mode" = relink; then
Chris@39 8547 $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $?
Chris@39 8548
Chris@39 8549 if test -n "$convenience"; then
Chris@39 8550 if test -z "$whole_archive_flag_spec"; then
Chris@39 8551 func_show_eval '${RM}r "$gentop"'
Chris@39 8552 fi
Chris@39 8553 fi
Chris@39 8554
Chris@39 8555 exit $EXIT_SUCCESS
Chris@39 8556 fi
Chris@39 8557
Chris@39 8558 # Create links to the real library.
Chris@39 8559 for linkname in $linknames; do
Chris@39 8560 if test "$realname" != "$linkname"; then
Chris@39 8561 func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?'
Chris@39 8562 fi
Chris@39 8563 done
Chris@39 8564
Chris@39 8565 # If -module or -export-dynamic was specified, set the dlname.
Chris@39 8566 if test "$module" = yes || test "$export_dynamic" = yes; then
Chris@39 8567 # On all known operating systems, these are identical.
Chris@39 8568 dlname="$soname"
Chris@39 8569 fi
Chris@39 8570 fi
Chris@39 8571 ;;
Chris@39 8572
Chris@39 8573 obj)
Chris@39 8574 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
Chris@39 8575 func_warning "\`-dlopen' is ignored for objects"
Chris@39 8576 fi
Chris@39 8577
Chris@39 8578 case " $deplibs" in
Chris@39 8579 *\ -l* | *\ -L*)
Chris@39 8580 func_warning "\`-l' and \`-L' are ignored for objects" ;;
Chris@39 8581 esac
Chris@39 8582
Chris@39 8583 test -n "$rpath" && \
Chris@39 8584 func_warning "\`-rpath' is ignored for objects"
Chris@39 8585
Chris@39 8586 test -n "$xrpath" && \
Chris@39 8587 func_warning "\`-R' is ignored for objects"
Chris@39 8588
Chris@39 8589 test -n "$vinfo" && \
Chris@39 8590 func_warning "\`-version-info' is ignored for objects"
Chris@39 8591
Chris@39 8592 test -n "$release" && \
Chris@39 8593 func_warning "\`-release' is ignored for objects"
Chris@39 8594
Chris@39 8595 case $output in
Chris@39 8596 *.lo)
Chris@39 8597 test -n "$objs$old_deplibs" && \
Chris@39 8598 func_fatal_error "cannot build library object \`$output' from non-libtool objects"
Chris@39 8599
Chris@39 8600 libobj=$output
Chris@39 8601 func_lo2o "$libobj"
Chris@39 8602 obj=$func_lo2o_result
Chris@39 8603 ;;
Chris@39 8604 *)
Chris@39 8605 libobj=
Chris@39 8606 obj="$output"
Chris@39 8607 ;;
Chris@39 8608 esac
Chris@39 8609
Chris@39 8610 # Delete the old objects.
Chris@39 8611 $opt_dry_run || $RM $obj $libobj
Chris@39 8612
Chris@39 8613 # Objects from convenience libraries. This assumes
Chris@39 8614 # single-version convenience libraries. Whenever we create
Chris@39 8615 # different ones for PIC/non-PIC, this we'll have to duplicate
Chris@39 8616 # the extraction.
Chris@39 8617 reload_conv_objs=
Chris@39 8618 gentop=
Chris@39 8619 # reload_cmds runs $LD directly, so let us get rid of
Chris@39 8620 # -Wl from whole_archive_flag_spec and hope we can get by with
Chris@39 8621 # turning comma into space..
Chris@39 8622 wl=
Chris@39 8623
Chris@39 8624 if test -n "$convenience"; then
Chris@39 8625 if test -n "$whole_archive_flag_spec"; then
Chris@39 8626 eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\"
Chris@39 8627 reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'`
Chris@39 8628 else
Chris@39 8629 gentop="$output_objdir/${obj}x"
Chris@39 8630 func_append generated " $gentop"
Chris@39 8631
Chris@39 8632 func_extract_archives $gentop $convenience
Chris@39 8633 reload_conv_objs="$reload_objs $func_extract_archives_result"
Chris@39 8634 fi
Chris@39 8635 fi
Chris@39 8636
Chris@39 8637 # If we're not building shared, we need to use non_pic_objs
Chris@39 8638 test "$build_libtool_libs" != yes && libobjs="$non_pic_objects"
Chris@39 8639
Chris@39 8640 # Create the old-style object.
Chris@39 8641 reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test
Chris@39 8642
Chris@39 8643 output="$obj"
Chris@39 8644 func_execute_cmds "$reload_cmds" 'exit $?'
Chris@39 8645
Chris@39 8646 # Exit if we aren't doing a library object file.
Chris@39 8647 if test -z "$libobj"; then
Chris@39 8648 if test -n "$gentop"; then
Chris@39 8649 func_show_eval '${RM}r "$gentop"'
Chris@39 8650 fi
Chris@39 8651
Chris@39 8652 exit $EXIT_SUCCESS
Chris@39 8653 fi
Chris@39 8654
Chris@39 8655 if test "$build_libtool_libs" != yes; then
Chris@39 8656 if test -n "$gentop"; then
Chris@39 8657 func_show_eval '${RM}r "$gentop"'
Chris@39 8658 fi
Chris@39 8659
Chris@39 8660 # Create an invalid libtool object if no PIC, so that we don't
Chris@39 8661 # accidentally link it into a program.
Chris@39 8662 # $show "echo timestamp > $libobj"
Chris@39 8663 # $opt_dry_run || eval "echo timestamp > $libobj" || exit $?
Chris@39 8664 exit $EXIT_SUCCESS
Chris@39 8665 fi
Chris@39 8666
Chris@39 8667 if test -n "$pic_flag" || test "$pic_mode" != default; then
Chris@39 8668 # Only do commands if we really have different PIC objects.
Chris@39 8669 reload_objs="$libobjs $reload_conv_objs"
Chris@39 8670 output="$libobj"
Chris@39 8671 func_execute_cmds "$reload_cmds" 'exit $?'
Chris@39 8672 fi
Chris@39 8673
Chris@39 8674 if test -n "$gentop"; then
Chris@39 8675 func_show_eval '${RM}r "$gentop"'
Chris@39 8676 fi
Chris@39 8677
Chris@39 8678 exit $EXIT_SUCCESS
Chris@39 8679 ;;
Chris@39 8680
Chris@39 8681 prog)
Chris@39 8682 case $host in
Chris@39 8683 *cygwin*) func_stripname '' '.exe' "$output"
Chris@39 8684 output=$func_stripname_result.exe;;
Chris@39 8685 esac
Chris@39 8686 test -n "$vinfo" && \
Chris@39 8687 func_warning "\`-version-info' is ignored for programs"
Chris@39 8688
Chris@39 8689 test -n "$release" && \
Chris@39 8690 func_warning "\`-release' is ignored for programs"
Chris@39 8691
Chris@39 8692 test "$preload" = yes \
Chris@39 8693 && test "$dlopen_support" = unknown \
Chris@39 8694 && test "$dlopen_self" = unknown \
Chris@39 8695 && test "$dlopen_self_static" = unknown && \
Chris@39 8696 func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support."
Chris@39 8697
Chris@39 8698 case $host in
Chris@39 8699 *-*-rhapsody* | *-*-darwin1.[012])
Chris@39 8700 # On Rhapsody replace the C library is the System framework
Chris@39 8701 compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'`
Chris@39 8702 finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'`
Chris@39 8703 ;;
Chris@39 8704 esac
Chris@39 8705
Chris@39 8706 case $host in
Chris@39 8707 *-*-darwin*)
Chris@39 8708 # Don't allow lazy linking, it breaks C++ global constructors
Chris@39 8709 # But is supposedly fixed on 10.4 or later (yay!).
Chris@39 8710 if test "$tagname" = CXX ; then
Chris@39 8711 case ${MACOSX_DEPLOYMENT_TARGET-10.0} in
Chris@39 8712 10.[0123])
Chris@39 8713 func_append compile_command " ${wl}-bind_at_load"
Chris@39 8714 func_append finalize_command " ${wl}-bind_at_load"
Chris@39 8715 ;;
Chris@39 8716 esac
Chris@39 8717 fi
Chris@39 8718 # Time to change all our "foo.ltframework" stuff back to "-framework foo"
Chris@39 8719 compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
Chris@39 8720 finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
Chris@39 8721 ;;
Chris@39 8722 esac
Chris@39 8723
Chris@39 8724
Chris@39 8725 # move library search paths that coincide with paths to not yet
Chris@39 8726 # installed libraries to the beginning of the library search list
Chris@39 8727 new_libs=
Chris@39 8728 for path in $notinst_path; do
Chris@39 8729 case " $new_libs " in
Chris@39 8730 *" -L$path/$objdir "*) ;;
Chris@39 8731 *)
Chris@39 8732 case " $compile_deplibs " in
Chris@39 8733 *" -L$path/$objdir "*)
Chris@39 8734 func_append new_libs " -L$path/$objdir" ;;
Chris@39 8735 esac
Chris@39 8736 ;;
Chris@39 8737 esac
Chris@39 8738 done
Chris@39 8739 for deplib in $compile_deplibs; do
Chris@39 8740 case $deplib in
Chris@39 8741 -L*)
Chris@39 8742 case " $new_libs " in
Chris@39 8743 *" $deplib "*) ;;
Chris@39 8744 *) func_append new_libs " $deplib" ;;
Chris@39 8745 esac
Chris@39 8746 ;;
Chris@39 8747 *) func_append new_libs " $deplib" ;;
Chris@39 8748 esac
Chris@39 8749 done
Chris@39 8750 compile_deplibs="$new_libs"
Chris@39 8751
Chris@39 8752
Chris@39 8753 func_append compile_command " $compile_deplibs"
Chris@39 8754 func_append finalize_command " $finalize_deplibs"
Chris@39 8755
Chris@39 8756 if test -n "$rpath$xrpath"; then
Chris@39 8757 # If the user specified any rpath flags, then add them.
Chris@39 8758 for libdir in $rpath $xrpath; do
Chris@39 8759 # This is the magic to use -rpath.
Chris@39 8760 case "$finalize_rpath " in
Chris@39 8761 *" $libdir "*) ;;
Chris@39 8762 *) func_append finalize_rpath " $libdir" ;;
Chris@39 8763 esac
Chris@39 8764 done
Chris@39 8765 fi
Chris@39 8766
Chris@39 8767 # Now hardcode the library paths
Chris@39 8768 rpath=
Chris@39 8769 hardcode_libdirs=
Chris@39 8770 for libdir in $compile_rpath $finalize_rpath; do
Chris@39 8771 if test -n "$hardcode_libdir_flag_spec"; then
Chris@39 8772 if test -n "$hardcode_libdir_separator"; then
Chris@39 8773 if test -z "$hardcode_libdirs"; then
Chris@39 8774 hardcode_libdirs="$libdir"
Chris@39 8775 else
Chris@39 8776 # Just accumulate the unique libdirs.
Chris@39 8777 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
Chris@39 8778 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
Chris@39 8779 ;;
Chris@39 8780 *)
Chris@39 8781 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
Chris@39 8782 ;;
Chris@39 8783 esac
Chris@39 8784 fi
Chris@39 8785 else
Chris@39 8786 eval flag=\"$hardcode_libdir_flag_spec\"
Chris@39 8787 func_append rpath " $flag"
Chris@39 8788 fi
Chris@39 8789 elif test -n "$runpath_var"; then
Chris@39 8790 case "$perm_rpath " in
Chris@39 8791 *" $libdir "*) ;;
Chris@39 8792 *) func_append perm_rpath " $libdir" ;;
Chris@39 8793 esac
Chris@39 8794 fi
Chris@39 8795 case $host in
Chris@39 8796 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
Chris@39 8797 testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'`
Chris@39 8798 case :$dllsearchpath: in
Chris@39 8799 *":$libdir:"*) ;;
Chris@39 8800 ::) dllsearchpath=$libdir;;
Chris@39 8801 *) func_append dllsearchpath ":$libdir";;
Chris@39 8802 esac
Chris@39 8803 case :$dllsearchpath: in
Chris@39 8804 *":$testbindir:"*) ;;
Chris@39 8805 ::) dllsearchpath=$testbindir;;
Chris@39 8806 *) func_append dllsearchpath ":$testbindir";;
Chris@39 8807 esac
Chris@39 8808 ;;
Chris@39 8809 esac
Chris@39 8810 done
Chris@39 8811 # Substitute the hardcoded libdirs into the rpath.
Chris@39 8812 if test -n "$hardcode_libdir_separator" &&
Chris@39 8813 test -n "$hardcode_libdirs"; then
Chris@39 8814 libdir="$hardcode_libdirs"
Chris@39 8815 eval rpath=\" $hardcode_libdir_flag_spec\"
Chris@39 8816 fi
Chris@39 8817 compile_rpath="$rpath"
Chris@39 8818
Chris@39 8819 rpath=
Chris@39 8820 hardcode_libdirs=
Chris@39 8821 for libdir in $finalize_rpath; do
Chris@39 8822 if test -n "$hardcode_libdir_flag_spec"; then
Chris@39 8823 if test -n "$hardcode_libdir_separator"; then
Chris@39 8824 if test -z "$hardcode_libdirs"; then
Chris@39 8825 hardcode_libdirs="$libdir"
Chris@39 8826 else
Chris@39 8827 # Just accumulate the unique libdirs.
Chris@39 8828 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
Chris@39 8829 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
Chris@39 8830 ;;
Chris@39 8831 *)
Chris@39 8832 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
Chris@39 8833 ;;
Chris@39 8834 esac
Chris@39 8835 fi
Chris@39 8836 else
Chris@39 8837 eval flag=\"$hardcode_libdir_flag_spec\"
Chris@39 8838 func_append rpath " $flag"
Chris@39 8839 fi
Chris@39 8840 elif test -n "$runpath_var"; then
Chris@39 8841 case "$finalize_perm_rpath " in
Chris@39 8842 *" $libdir "*) ;;
Chris@39 8843 *) func_append finalize_perm_rpath " $libdir" ;;
Chris@39 8844 esac
Chris@39 8845 fi
Chris@39 8846 done
Chris@39 8847 # Substitute the hardcoded libdirs into the rpath.
Chris@39 8848 if test -n "$hardcode_libdir_separator" &&
Chris@39 8849 test -n "$hardcode_libdirs"; then
Chris@39 8850 libdir="$hardcode_libdirs"
Chris@39 8851 eval rpath=\" $hardcode_libdir_flag_spec\"
Chris@39 8852 fi
Chris@39 8853 finalize_rpath="$rpath"
Chris@39 8854
Chris@39 8855 if test -n "$libobjs" && test "$build_old_libs" = yes; then
Chris@39 8856 # Transform all the library objects into standard objects.
Chris@39 8857 compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP`
Chris@39 8858 finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP`
Chris@39 8859 fi
Chris@39 8860
Chris@39 8861 func_generate_dlsyms "$outputname" "@PROGRAM@" "no"
Chris@39 8862
Chris@39 8863 # template prelinking step
Chris@39 8864 if test -n "$prelink_cmds"; then
Chris@39 8865 func_execute_cmds "$prelink_cmds" 'exit $?'
Chris@39 8866 fi
Chris@39 8867
Chris@39 8868 wrappers_required=yes
Chris@39 8869 case $host in
Chris@39 8870 *cegcc* | *mingw32ce*)
Chris@39 8871 # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway.
Chris@39 8872 wrappers_required=no
Chris@39 8873 ;;
Chris@39 8874 *cygwin* | *mingw* )
Chris@39 8875 if test "$build_libtool_libs" != yes; then
Chris@39 8876 wrappers_required=no
Chris@39 8877 fi
Chris@39 8878 ;;
Chris@39 8879 *)
Chris@39 8880 if test "$need_relink" = no || test "$build_libtool_libs" != yes; then
Chris@39 8881 wrappers_required=no
Chris@39 8882 fi
Chris@39 8883 ;;
Chris@39 8884 esac
Chris@39 8885 if test "$wrappers_required" = no; then
Chris@39 8886 # Replace the output file specification.
Chris@39 8887 compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'`
Chris@39 8888 link_command="$compile_command$compile_rpath"
Chris@39 8889
Chris@39 8890 # We have no uninstalled library dependencies, so finalize right now.
Chris@39 8891 exit_status=0
Chris@39 8892 func_show_eval "$link_command" 'exit_status=$?'
Chris@39 8893
Chris@39 8894 if test -n "$postlink_cmds"; then
Chris@39 8895 func_to_tool_file "$output"
Chris@39 8896 postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'`
Chris@39 8897 func_execute_cmds "$postlink_cmds" 'exit $?'
Chris@39 8898 fi
Chris@39 8899
Chris@39 8900 # Delete the generated files.
Chris@39 8901 if test -f "$output_objdir/${outputname}S.${objext}"; then
Chris@39 8902 func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"'
Chris@39 8903 fi
Chris@39 8904
Chris@39 8905 exit $exit_status
Chris@39 8906 fi
Chris@39 8907
Chris@39 8908 if test -n "$compile_shlibpath$finalize_shlibpath"; then
Chris@39 8909 compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command"
Chris@39 8910 fi
Chris@39 8911 if test -n "$finalize_shlibpath"; then
Chris@39 8912 finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
Chris@39 8913 fi
Chris@39 8914
Chris@39 8915 compile_var=
Chris@39 8916 finalize_var=
Chris@39 8917 if test -n "$runpath_var"; then
Chris@39 8918 if test -n "$perm_rpath"; then
Chris@39 8919 # We should set the runpath_var.
Chris@39 8920 rpath=
Chris@39 8921 for dir in $perm_rpath; do
Chris@39 8922 func_append rpath "$dir:"
Chris@39 8923 done
Chris@39 8924 compile_var="$runpath_var=\"$rpath\$$runpath_var\" "
Chris@39 8925 fi
Chris@39 8926 if test -n "$finalize_perm_rpath"; then
Chris@39 8927 # We should set the runpath_var.
Chris@39 8928 rpath=
Chris@39 8929 for dir in $finalize_perm_rpath; do
Chris@39 8930 func_append rpath "$dir:"
Chris@39 8931 done
Chris@39 8932 finalize_var="$runpath_var=\"$rpath\$$runpath_var\" "
Chris@39 8933 fi
Chris@39 8934 fi
Chris@39 8935
Chris@39 8936 if test "$no_install" = yes; then
Chris@39 8937 # We don't need to create a wrapper script.
Chris@39 8938 link_command="$compile_var$compile_command$compile_rpath"
Chris@39 8939 # Replace the output file specification.
Chris@39 8940 link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'`
Chris@39 8941 # Delete the old output file.
Chris@39 8942 $opt_dry_run || $RM $output
Chris@39 8943 # Link the executable and exit
Chris@39 8944 func_show_eval "$link_command" 'exit $?'
Chris@39 8945
Chris@39 8946 if test -n "$postlink_cmds"; then
Chris@39 8947 func_to_tool_file "$output"
Chris@39 8948 postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'`
Chris@39 8949 func_execute_cmds "$postlink_cmds" 'exit $?'
Chris@39 8950 fi
Chris@39 8951
Chris@39 8952 exit $EXIT_SUCCESS
Chris@39 8953 fi
Chris@39 8954
Chris@39 8955 if test "$hardcode_action" = relink; then
Chris@39 8956 # Fast installation is not supported
Chris@39 8957 link_command="$compile_var$compile_command$compile_rpath"
Chris@39 8958 relink_command="$finalize_var$finalize_command$finalize_rpath"
Chris@39 8959
Chris@39 8960 func_warning "this platform does not like uninstalled shared libraries"
Chris@39 8961 func_warning "\`$output' will be relinked during installation"
Chris@39 8962 else
Chris@39 8963 if test "$fast_install" != no; then
Chris@39 8964 link_command="$finalize_var$compile_command$finalize_rpath"
Chris@39 8965 if test "$fast_install" = yes; then
Chris@39 8966 relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'`
Chris@39 8967 else
Chris@39 8968 # fast_install is set to needless
Chris@39 8969 relink_command=
Chris@39 8970 fi
Chris@39 8971 else
Chris@39 8972 link_command="$compile_var$compile_command$compile_rpath"
Chris@39 8973 relink_command="$finalize_var$finalize_command$finalize_rpath"
Chris@39 8974 fi
Chris@39 8975 fi
Chris@39 8976
Chris@39 8977 # Replace the output file specification.
Chris@39 8978 link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
Chris@39 8979
Chris@39 8980 # Delete the old output files.
Chris@39 8981 $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname
Chris@39 8982
Chris@39 8983 func_show_eval "$link_command" 'exit $?'
Chris@39 8984
Chris@39 8985 if test -n "$postlink_cmds"; then
Chris@39 8986 func_to_tool_file "$output_objdir/$outputname"
Chris@39 8987 postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'`
Chris@39 8988 func_execute_cmds "$postlink_cmds" 'exit $?'
Chris@39 8989 fi
Chris@39 8990
Chris@39 8991 # Now create the wrapper script.
Chris@39 8992 func_verbose "creating $output"
Chris@39 8993
Chris@39 8994 # Quote the relink command for shipping.
Chris@39 8995 if test -n "$relink_command"; then
Chris@39 8996 # Preserve any variables that may affect compiler behavior
Chris@39 8997 for var in $variables_saved_for_relink; do
Chris@39 8998 if eval test -z \"\${$var+set}\"; then
Chris@39 8999 relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
Chris@39 9000 elif eval var_value=\$$var; test -z "$var_value"; then
Chris@39 9001 relink_command="$var=; export $var; $relink_command"
Chris@39 9002 else
Chris@39 9003 func_quote_for_eval "$var_value"
Chris@39 9004 relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
Chris@39 9005 fi
Chris@39 9006 done
Chris@39 9007 relink_command="(cd `pwd`; $relink_command)"
Chris@39 9008 relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"`
Chris@39 9009 fi
Chris@39 9010
Chris@39 9011 # Only actually do things if not in dry run mode.
Chris@39 9012 $opt_dry_run || {
Chris@39 9013 # win32 will think the script is a binary if it has
Chris@39 9014 # a .exe suffix, so we strip it off here.
Chris@39 9015 case $output in
Chris@39 9016 *.exe) func_stripname '' '.exe' "$output"
Chris@39 9017 output=$func_stripname_result ;;
Chris@39 9018 esac
Chris@39 9019 # test for cygwin because mv fails w/o .exe extensions
Chris@39 9020 case $host in
Chris@39 9021 *cygwin*)
Chris@39 9022 exeext=.exe
Chris@39 9023 func_stripname '' '.exe' "$outputname"
Chris@39 9024 outputname=$func_stripname_result ;;
Chris@39 9025 *) exeext= ;;
Chris@39 9026 esac
Chris@39 9027 case $host in
Chris@39 9028 *cygwin* | *mingw* )
Chris@39 9029 func_dirname_and_basename "$output" "" "."
Chris@39 9030 output_name=$func_basename_result
Chris@39 9031 output_path=$func_dirname_result
Chris@39 9032 cwrappersource="$output_path/$objdir/lt-$output_name.c"
Chris@39 9033 cwrapper="$output_path/$output_name.exe"
Chris@39 9034 $RM $cwrappersource $cwrapper
Chris@39 9035 trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
Chris@39 9036
Chris@39 9037 func_emit_cwrapperexe_src > $cwrappersource
Chris@39 9038
Chris@39 9039 # The wrapper executable is built using the $host compiler,
Chris@39 9040 # because it contains $host paths and files. If cross-
Chris@39 9041 # compiling, it, like the target executable, must be
Chris@39 9042 # executed on the $host or under an emulation environment.
Chris@39 9043 $opt_dry_run || {
Chris@39 9044 $LTCC $LTCFLAGS -o $cwrapper $cwrappersource
Chris@39 9045 $STRIP $cwrapper
Chris@39 9046 }
Chris@39 9047
Chris@39 9048 # Now, create the wrapper script for func_source use:
Chris@39 9049 func_ltwrapper_scriptname $cwrapper
Chris@39 9050 $RM $func_ltwrapper_scriptname_result
Chris@39 9051 trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15
Chris@39 9052 $opt_dry_run || {
Chris@39 9053 # note: this script will not be executed, so do not chmod.
Chris@39 9054 if test "x$build" = "x$host" ; then
Chris@39 9055 $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result
Chris@39 9056 else
Chris@39 9057 func_emit_wrapper no > $func_ltwrapper_scriptname_result
Chris@39 9058 fi
Chris@39 9059 }
Chris@39 9060 ;;
Chris@39 9061 * )
Chris@39 9062 $RM $output
Chris@39 9063 trap "$RM $output; exit $EXIT_FAILURE" 1 2 15
Chris@39 9064
Chris@39 9065 func_emit_wrapper no > $output
Chris@39 9066 chmod +x $output
Chris@39 9067 ;;
Chris@39 9068 esac
Chris@39 9069 }
Chris@39 9070 exit $EXIT_SUCCESS
Chris@39 9071 ;;
Chris@39 9072 esac
Chris@39 9073
Chris@39 9074 # See if we need to build an old-fashioned archive.
Chris@39 9075 for oldlib in $oldlibs; do
Chris@39 9076
Chris@39 9077 if test "$build_libtool_libs" = convenience; then
Chris@39 9078 oldobjs="$libobjs_save $symfileobj"
Chris@39 9079 addlibs="$convenience"
Chris@39 9080 build_libtool_libs=no
Chris@39 9081 else
Chris@39 9082 if test "$build_libtool_libs" = module; then
Chris@39 9083 oldobjs="$libobjs_save"
Chris@39 9084 build_libtool_libs=no
Chris@39 9085 else
Chris@39 9086 oldobjs="$old_deplibs $non_pic_objects"
Chris@39 9087 if test "$preload" = yes && test -f "$symfileobj"; then
Chris@39 9088 func_append oldobjs " $symfileobj"
Chris@39 9089 fi
Chris@39 9090 fi
Chris@39 9091 addlibs="$old_convenience"
Chris@39 9092 fi
Chris@39 9093
Chris@39 9094 if test -n "$addlibs"; then
Chris@39 9095 gentop="$output_objdir/${outputname}x"
Chris@39 9096 func_append generated " $gentop"
Chris@39 9097
Chris@39 9098 func_extract_archives $gentop $addlibs
Chris@39 9099 func_append oldobjs " $func_extract_archives_result"
Chris@39 9100 fi
Chris@39 9101
Chris@39 9102 # Do each command in the archive commands.
Chris@39 9103 if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
Chris@39 9104 cmds=$old_archive_from_new_cmds
Chris@39 9105 else
Chris@39 9106
Chris@39 9107 # Add any objects from preloaded convenience libraries
Chris@39 9108 if test -n "$dlprefiles"; then
Chris@39 9109 gentop="$output_objdir/${outputname}x"
Chris@39 9110 func_append generated " $gentop"
Chris@39 9111
Chris@39 9112 func_extract_archives $gentop $dlprefiles
Chris@39 9113 func_append oldobjs " $func_extract_archives_result"
Chris@39 9114 fi
Chris@39 9115
Chris@39 9116 # POSIX demands no paths to be encoded in archives. We have
Chris@39 9117 # to avoid creating archives with duplicate basenames if we
Chris@39 9118 # might have to extract them afterwards, e.g., when creating a
Chris@39 9119 # static archive out of a convenience library, or when linking
Chris@39 9120 # the entirety of a libtool archive into another (currently
Chris@39 9121 # not supported by libtool).
Chris@39 9122 if (for obj in $oldobjs
Chris@39 9123 do
Chris@39 9124 func_basename "$obj"
Chris@39 9125 $ECHO "$func_basename_result"
Chris@39 9126 done | sort | sort -uc >/dev/null 2>&1); then
Chris@39 9127 :
Chris@39 9128 else
Chris@39 9129 echo "copying selected object files to avoid basename conflicts..."
Chris@39 9130 gentop="$output_objdir/${outputname}x"
Chris@39 9131 func_append generated " $gentop"
Chris@39 9132 func_mkdir_p "$gentop"
Chris@39 9133 save_oldobjs=$oldobjs
Chris@39 9134 oldobjs=
Chris@39 9135 counter=1
Chris@39 9136 for obj in $save_oldobjs
Chris@39 9137 do
Chris@39 9138 func_basename "$obj"
Chris@39 9139 objbase="$func_basename_result"
Chris@39 9140 case " $oldobjs " in
Chris@39 9141 " ") oldobjs=$obj ;;
Chris@39 9142 *[\ /]"$objbase "*)
Chris@39 9143 while :; do
Chris@39 9144 # Make sure we don't pick an alternate name that also
Chris@39 9145 # overlaps.
Chris@39 9146 newobj=lt$counter-$objbase
Chris@39 9147 func_arith $counter + 1
Chris@39 9148 counter=$func_arith_result
Chris@39 9149 case " $oldobjs " in
Chris@39 9150 *[\ /]"$newobj "*) ;;
Chris@39 9151 *) if test ! -f "$gentop/$newobj"; then break; fi ;;
Chris@39 9152 esac
Chris@39 9153 done
Chris@39 9154 func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj"
Chris@39 9155 func_append oldobjs " $gentop/$newobj"
Chris@39 9156 ;;
Chris@39 9157 *) func_append oldobjs " $obj" ;;
Chris@39 9158 esac
Chris@39 9159 done
Chris@39 9160 fi
Chris@39 9161 eval cmds=\"$old_archive_cmds\"
Chris@39 9162
Chris@39 9163 func_len " $cmds"
Chris@39 9164 len=$func_len_result
Chris@39 9165 if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
Chris@39 9166 cmds=$old_archive_cmds
Chris@39 9167 elif test -n "$archiver_list_spec"; then
Chris@39 9168 func_verbose "using command file archive linking..."
Chris@39 9169 for obj in $oldobjs
Chris@39 9170 do
Chris@39 9171 func_to_tool_file "$obj"
Chris@39 9172 $ECHO "$func_to_tool_file_result"
Chris@39 9173 done > $output_objdir/$libname.libcmd
Chris@39 9174 func_to_tool_file "$output_objdir/$libname.libcmd"
Chris@39 9175 oldobjs=" $archiver_list_spec$func_to_tool_file_result"
Chris@39 9176 cmds=$old_archive_cmds
Chris@39 9177 else
Chris@39 9178 # the command line is too long to link in one step, link in parts
Chris@39 9179 func_verbose "using piecewise archive linking..."
Chris@39 9180 save_RANLIB=$RANLIB
Chris@39 9181 RANLIB=:
Chris@39 9182 objlist=
Chris@39 9183 concat_cmds=
Chris@39 9184 save_oldobjs=$oldobjs
Chris@39 9185 oldobjs=
Chris@39 9186 # Is there a better way of finding the last object in the list?
Chris@39 9187 for obj in $save_oldobjs
Chris@39 9188 do
Chris@39 9189 last_oldobj=$obj
Chris@39 9190 done
Chris@39 9191 eval test_cmds=\"$old_archive_cmds\"
Chris@39 9192 func_len " $test_cmds"
Chris@39 9193 len0=$func_len_result
Chris@39 9194 len=$len0
Chris@39 9195 for obj in $save_oldobjs
Chris@39 9196 do
Chris@39 9197 func_len " $obj"
Chris@39 9198 func_arith $len + $func_len_result
Chris@39 9199 len=$func_arith_result
Chris@39 9200 func_append objlist " $obj"
Chris@39 9201 if test "$len" -lt "$max_cmd_len"; then
Chris@39 9202 :
Chris@39 9203 else
Chris@39 9204 # the above command should be used before it gets too long
Chris@39 9205 oldobjs=$objlist
Chris@39 9206 if test "$obj" = "$last_oldobj" ; then
Chris@39 9207 RANLIB=$save_RANLIB
Chris@39 9208 fi
Chris@39 9209 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
Chris@39 9210 eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\"
Chris@39 9211 objlist=
Chris@39 9212 len=$len0
Chris@39 9213 fi
Chris@39 9214 done
Chris@39 9215 RANLIB=$save_RANLIB
Chris@39 9216 oldobjs=$objlist
Chris@39 9217 if test "X$oldobjs" = "X" ; then
Chris@39 9218 eval cmds=\"\$concat_cmds\"
Chris@39 9219 else
Chris@39 9220 eval cmds=\"\$concat_cmds~\$old_archive_cmds\"
Chris@39 9221 fi
Chris@39 9222 fi
Chris@39 9223 fi
Chris@39 9224 func_execute_cmds "$cmds" 'exit $?'
Chris@39 9225 done
Chris@39 9226
Chris@39 9227 test -n "$generated" && \
Chris@39 9228 func_show_eval "${RM}r$generated"
Chris@39 9229
Chris@39 9230 # Now create the libtool archive.
Chris@39 9231 case $output in
Chris@39 9232 *.la)
Chris@39 9233 old_library=
Chris@39 9234 test "$build_old_libs" = yes && old_library="$libname.$libext"
Chris@39 9235 func_verbose "creating $output"
Chris@39 9236
Chris@39 9237 # Preserve any variables that may affect compiler behavior
Chris@39 9238 for var in $variables_saved_for_relink; do
Chris@39 9239 if eval test -z \"\${$var+set}\"; then
Chris@39 9240 relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
Chris@39 9241 elif eval var_value=\$$var; test -z "$var_value"; then
Chris@39 9242 relink_command="$var=; export $var; $relink_command"
Chris@39 9243 else
Chris@39 9244 func_quote_for_eval "$var_value"
Chris@39 9245 relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
Chris@39 9246 fi
Chris@39 9247 done
Chris@39 9248 # Quote the link command for shipping.
Chris@39 9249 relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
Chris@39 9250 relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"`
Chris@39 9251 if test "$hardcode_automatic" = yes ; then
Chris@39 9252 relink_command=
Chris@39 9253 fi
Chris@39 9254
Chris@39 9255 # Only create the output if not a dry run.
Chris@39 9256 $opt_dry_run || {
Chris@39 9257 for installed in no yes; do
Chris@39 9258 if test "$installed" = yes; then
Chris@39 9259 if test -z "$install_libdir"; then
Chris@39 9260 break
Chris@39 9261 fi
Chris@39 9262 output="$output_objdir/$outputname"i
Chris@39 9263 # Replace all uninstalled libtool libraries with the installed ones
Chris@39 9264 newdependency_libs=
Chris@39 9265 for deplib in $dependency_libs; do
Chris@39 9266 case $deplib in
Chris@39 9267 *.la)
Chris@39 9268 func_basename "$deplib"
Chris@39 9269 name="$func_basename_result"
Chris@39 9270 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
Chris@39 9271 test -z "$libdir" && \
Chris@39 9272 func_fatal_error "\`$deplib' is not a valid libtool archive"
Chris@39 9273 func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name"
Chris@39 9274 ;;
Chris@39 9275 -L*)
Chris@39 9276 func_stripname -L '' "$deplib"
Chris@39 9277 func_replace_sysroot "$func_stripname_result"
Chris@39 9278 func_append newdependency_libs " -L$func_replace_sysroot_result"
Chris@39 9279 ;;
Chris@39 9280 -R*)
Chris@39 9281 func_stripname -R '' "$deplib"
Chris@39 9282 func_replace_sysroot "$func_stripname_result"
Chris@39 9283 func_append newdependency_libs " -R$func_replace_sysroot_result"
Chris@39 9284 ;;
Chris@39 9285 *) func_append newdependency_libs " $deplib" ;;
Chris@39 9286 esac
Chris@39 9287 done
Chris@39 9288 dependency_libs="$newdependency_libs"
Chris@39 9289 newdlfiles=
Chris@39 9290
Chris@39 9291 for lib in $dlfiles; do
Chris@39 9292 case $lib in
Chris@39 9293 *.la)
Chris@39 9294 func_basename "$lib"
Chris@39 9295 name="$func_basename_result"
Chris@39 9296 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
Chris@39 9297 test -z "$libdir" && \
Chris@39 9298 func_fatal_error "\`$lib' is not a valid libtool archive"
Chris@39 9299 func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name"
Chris@39 9300 ;;
Chris@39 9301 *) func_append newdlfiles " $lib" ;;
Chris@39 9302 esac
Chris@39 9303 done
Chris@39 9304 dlfiles="$newdlfiles"
Chris@39 9305 newdlprefiles=
Chris@39 9306 for lib in $dlprefiles; do
Chris@39 9307 case $lib in
Chris@39 9308 *.la)
Chris@39 9309 # Only pass preopened files to the pseudo-archive (for
Chris@39 9310 # eventual linking with the app. that links it) if we
Chris@39 9311 # didn't already link the preopened objects directly into
Chris@39 9312 # the library:
Chris@39 9313 func_basename "$lib"
Chris@39 9314 name="$func_basename_result"
Chris@39 9315 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
Chris@39 9316 test -z "$libdir" && \
Chris@39 9317 func_fatal_error "\`$lib' is not a valid libtool archive"
Chris@39 9318 func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name"
Chris@39 9319 ;;
Chris@39 9320 esac
Chris@39 9321 done
Chris@39 9322 dlprefiles="$newdlprefiles"
Chris@39 9323 else
Chris@39 9324 newdlfiles=
Chris@39 9325 for lib in $dlfiles; do
Chris@39 9326 case $lib in
Chris@39 9327 [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
Chris@39 9328 *) abs=`pwd`"/$lib" ;;
Chris@39 9329 esac
Chris@39 9330 func_append newdlfiles " $abs"
Chris@39 9331 done
Chris@39 9332 dlfiles="$newdlfiles"
Chris@39 9333 newdlprefiles=
Chris@39 9334 for lib in $dlprefiles; do
Chris@39 9335 case $lib in
Chris@39 9336 [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
Chris@39 9337 *) abs=`pwd`"/$lib" ;;
Chris@39 9338 esac
Chris@39 9339 func_append newdlprefiles " $abs"
Chris@39 9340 done
Chris@39 9341 dlprefiles="$newdlprefiles"
Chris@39 9342 fi
Chris@39 9343 $RM $output
Chris@39 9344 # place dlname in correct position for cygwin
Chris@39 9345 # In fact, it would be nice if we could use this code for all target
Chris@39 9346 # systems that can't hard-code library paths into their executables
Chris@39 9347 # and that have no shared library path variable independent of PATH,
Chris@39 9348 # but it turns out we can't easily determine that from inspecting
Chris@39 9349 # libtool variables, so we have to hard-code the OSs to which it
Chris@39 9350 # applies here; at the moment, that means platforms that use the PE
Chris@39 9351 # object format with DLL files. See the long comment at the top of
Chris@39 9352 # tests/bindir.at for full details.
Chris@39 9353 tdlname=$dlname
Chris@39 9354 case $host,$output,$installed,$module,$dlname in
Chris@39 9355 *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll)
Chris@39 9356 # If a -bindir argument was supplied, place the dll there.
Chris@39 9357 if test "x$bindir" != x ;
Chris@39 9358 then
Chris@39 9359 func_relative_path "$install_libdir" "$bindir"
Chris@39 9360 tdlname=$func_relative_path_result$dlname
Chris@39 9361 else
Chris@39 9362 # Otherwise fall back on heuristic.
Chris@39 9363 tdlname=../bin/$dlname
Chris@39 9364 fi
Chris@39 9365 ;;
Chris@39 9366 esac
Chris@39 9367 $ECHO > $output "\
Chris@39 9368 # $outputname - a libtool library file
Chris@39 9369 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
Chris@39 9370 #
Chris@39 9371 # Please DO NOT delete this file!
Chris@39 9372 # It is necessary for linking the library.
Chris@39 9373
Chris@39 9374 # The name that we can dlopen(3).
Chris@39 9375 dlname='$tdlname'
Chris@39 9376
Chris@39 9377 # Names of this library.
Chris@39 9378 library_names='$library_names'
Chris@39 9379
Chris@39 9380 # The name of the static archive.
Chris@39 9381 old_library='$old_library'
Chris@39 9382
Chris@39 9383 # Linker flags that can not go in dependency_libs.
Chris@39 9384 inherited_linker_flags='$new_inherited_linker_flags'
Chris@39 9385
Chris@39 9386 # Libraries that this one depends upon.
Chris@39 9387 dependency_libs='$dependency_libs'
Chris@39 9388
Chris@39 9389 # Names of additional weak libraries provided by this library
Chris@39 9390 weak_library_names='$weak_libs'
Chris@39 9391
Chris@39 9392 # Version information for $libname.
Chris@39 9393 current=$current
Chris@39 9394 age=$age
Chris@39 9395 revision=$revision
Chris@39 9396
Chris@39 9397 # Is this an already installed library?
Chris@39 9398 installed=$installed
Chris@39 9399
Chris@39 9400 # Should we warn about portability when linking against -modules?
Chris@39 9401 shouldnotlink=$module
Chris@39 9402
Chris@39 9403 # Files to dlopen/dlpreopen
Chris@39 9404 dlopen='$dlfiles'
Chris@39 9405 dlpreopen='$dlprefiles'
Chris@39 9406
Chris@39 9407 # Directory that this library needs to be installed in:
Chris@39 9408 libdir='$install_libdir'"
Chris@39 9409 if test "$installed" = no && test "$need_relink" = yes; then
Chris@39 9410 $ECHO >> $output "\
Chris@39 9411 relink_command=\"$relink_command\""
Chris@39 9412 fi
Chris@39 9413 done
Chris@39 9414 }
Chris@39 9415
Chris@39 9416 # Do a symbolic link so that the libtool archive can be found in
Chris@39 9417 # LD_LIBRARY_PATH before the program is installed.
Chris@39 9418 func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?'
Chris@39 9419 ;;
Chris@39 9420 esac
Chris@39 9421 exit $EXIT_SUCCESS
Chris@39 9422 }
Chris@39 9423
Chris@39 9424 { test "$opt_mode" = link || test "$opt_mode" = relink; } &&
Chris@39 9425 func_mode_link ${1+"$@"}
Chris@39 9426
Chris@39 9427
Chris@39 9428 # func_mode_uninstall arg...
Chris@39 9429 func_mode_uninstall ()
Chris@39 9430 {
Chris@39 9431 $opt_debug
Chris@39 9432 RM="$nonopt"
Chris@39 9433 files=
Chris@39 9434 rmforce=
Chris@39 9435 exit_status=0
Chris@39 9436
Chris@39 9437 # This variable tells wrapper scripts just to set variables rather
Chris@39 9438 # than running their programs.
Chris@39 9439 libtool_install_magic="$magic"
Chris@39 9440
Chris@39 9441 for arg
Chris@39 9442 do
Chris@39 9443 case $arg in
Chris@39 9444 -f) func_append RM " $arg"; rmforce=yes ;;
Chris@39 9445 -*) func_append RM " $arg" ;;
Chris@39 9446 *) func_append files " $arg" ;;
Chris@39 9447 esac
Chris@39 9448 done
Chris@39 9449
Chris@39 9450 test -z "$RM" && \
Chris@39 9451 func_fatal_help "you must specify an RM program"
Chris@39 9452
Chris@39 9453 rmdirs=
Chris@39 9454
Chris@39 9455 for file in $files; do
Chris@39 9456 func_dirname "$file" "" "."
Chris@39 9457 dir="$func_dirname_result"
Chris@39 9458 if test "X$dir" = X.; then
Chris@39 9459 odir="$objdir"
Chris@39 9460 else
Chris@39 9461 odir="$dir/$objdir"
Chris@39 9462 fi
Chris@39 9463 func_basename "$file"
Chris@39 9464 name="$func_basename_result"
Chris@39 9465 test "$opt_mode" = uninstall && odir="$dir"
Chris@39 9466
Chris@39 9467 # Remember odir for removal later, being careful to avoid duplicates
Chris@39 9468 if test "$opt_mode" = clean; then
Chris@39 9469 case " $rmdirs " in
Chris@39 9470 *" $odir "*) ;;
Chris@39 9471 *) func_append rmdirs " $odir" ;;
Chris@39 9472 esac
Chris@39 9473 fi
Chris@39 9474
Chris@39 9475 # Don't error if the file doesn't exist and rm -f was used.
Chris@39 9476 if { test -L "$file"; } >/dev/null 2>&1 ||
Chris@39 9477 { test -h "$file"; } >/dev/null 2>&1 ||
Chris@39 9478 test -f "$file"; then
Chris@39 9479 :
Chris@39 9480 elif test -d "$file"; then
Chris@39 9481 exit_status=1
Chris@39 9482 continue
Chris@39 9483 elif test "$rmforce" = yes; then
Chris@39 9484 continue
Chris@39 9485 fi
Chris@39 9486
Chris@39 9487 rmfiles="$file"
Chris@39 9488
Chris@39 9489 case $name in
Chris@39 9490 *.la)
Chris@39 9491 # Possibly a libtool archive, so verify it.
Chris@39 9492 if func_lalib_p "$file"; then
Chris@39 9493 func_source $dir/$name
Chris@39 9494
Chris@39 9495 # Delete the libtool libraries and symlinks.
Chris@39 9496 for n in $library_names; do
Chris@39 9497 func_append rmfiles " $odir/$n"
Chris@39 9498 done
Chris@39 9499 test -n "$old_library" && func_append rmfiles " $odir/$old_library"
Chris@39 9500
Chris@39 9501 case "$opt_mode" in
Chris@39 9502 clean)
Chris@39 9503 case " $library_names " in
Chris@39 9504 *" $dlname "*) ;;
Chris@39 9505 *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;;
Chris@39 9506 esac
Chris@39 9507 test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i"
Chris@39 9508 ;;
Chris@39 9509 uninstall)
Chris@39 9510 if test -n "$library_names"; then
Chris@39 9511 # Do each command in the postuninstall commands.
Chris@39 9512 func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
Chris@39 9513 fi
Chris@39 9514
Chris@39 9515 if test -n "$old_library"; then
Chris@39 9516 # Do each command in the old_postuninstall commands.
Chris@39 9517 func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
Chris@39 9518 fi
Chris@39 9519 # FIXME: should reinstall the best remaining shared library.
Chris@39 9520 ;;
Chris@39 9521 esac
Chris@39 9522 fi
Chris@39 9523 ;;
Chris@39 9524
Chris@39 9525 *.lo)
Chris@39 9526 # Possibly a libtool object, so verify it.
Chris@39 9527 if func_lalib_p "$file"; then
Chris@39 9528
Chris@39 9529 # Read the .lo file
Chris@39 9530 func_source $dir/$name
Chris@39 9531
Chris@39 9532 # Add PIC object to the list of files to remove.
Chris@39 9533 if test -n "$pic_object" &&
Chris@39 9534 test "$pic_object" != none; then
Chris@39 9535 func_append rmfiles " $dir/$pic_object"
Chris@39 9536 fi
Chris@39 9537
Chris@39 9538 # Add non-PIC object to the list of files to remove.
Chris@39 9539 if test -n "$non_pic_object" &&
Chris@39 9540 test "$non_pic_object" != none; then
Chris@39 9541 func_append rmfiles " $dir/$non_pic_object"
Chris@39 9542 fi
Chris@39 9543 fi
Chris@39 9544 ;;
Chris@39 9545
Chris@39 9546 *)
Chris@39 9547 if test "$opt_mode" = clean ; then
Chris@39 9548 noexename=$name
Chris@39 9549 case $file in
Chris@39 9550 *.exe)
Chris@39 9551 func_stripname '' '.exe' "$file"
Chris@39 9552 file=$func_stripname_result
Chris@39 9553 func_stripname '' '.exe' "$name"
Chris@39 9554 noexename=$func_stripname_result
Chris@39 9555 # $file with .exe has already been added to rmfiles,
Chris@39 9556 # add $file without .exe
Chris@39 9557 func_append rmfiles " $file"
Chris@39 9558 ;;
Chris@39 9559 esac
Chris@39 9560 # Do a test to see if this is a libtool program.
Chris@39 9561 if func_ltwrapper_p "$file"; then
Chris@39 9562 if func_ltwrapper_executable_p "$file"; then
Chris@39 9563 func_ltwrapper_scriptname "$file"
Chris@39 9564 relink_command=
Chris@39 9565 func_source $func_ltwrapper_scriptname_result
Chris@39 9566 func_append rmfiles " $func_ltwrapper_scriptname_result"
Chris@39 9567 else
Chris@39 9568 relink_command=
Chris@39 9569 func_source $dir/$noexename
Chris@39 9570 fi
Chris@39 9571
Chris@39 9572 # note $name still contains .exe if it was in $file originally
Chris@39 9573 # as does the version of $file that was added into $rmfiles
Chris@39 9574 func_append rmfiles " $odir/$name $odir/${name}S.${objext}"
Chris@39 9575 if test "$fast_install" = yes && test -n "$relink_command"; then
Chris@39 9576 func_append rmfiles " $odir/lt-$name"
Chris@39 9577 fi
Chris@39 9578 if test "X$noexename" != "X$name" ; then
Chris@39 9579 func_append rmfiles " $odir/lt-${noexename}.c"
Chris@39 9580 fi
Chris@39 9581 fi
Chris@39 9582 fi
Chris@39 9583 ;;
Chris@39 9584 esac
Chris@39 9585 func_show_eval "$RM $rmfiles" 'exit_status=1'
Chris@39 9586 done
Chris@39 9587
Chris@39 9588 # Try to remove the ${objdir}s in the directories where we deleted files
Chris@39 9589 for dir in $rmdirs; do
Chris@39 9590 if test -d "$dir"; then
Chris@39 9591 func_show_eval "rmdir $dir >/dev/null 2>&1"
Chris@39 9592 fi
Chris@39 9593 done
Chris@39 9594
Chris@39 9595 exit $exit_status
Chris@39 9596 }
Chris@39 9597
Chris@39 9598 { test "$opt_mode" = uninstall || test "$opt_mode" = clean; } &&
Chris@39 9599 func_mode_uninstall ${1+"$@"}
Chris@39 9600
Chris@39 9601 test -z "$opt_mode" && {
Chris@39 9602 help="$generic_help"
Chris@39 9603 func_fatal_help "you must specify a MODE"
Chris@39 9604 }
Chris@39 9605
Chris@39 9606 test -z "$exec_cmd" && \
Chris@39 9607 func_fatal_help "invalid operation mode \`$opt_mode'"
Chris@39 9608
Chris@39 9609 if test -n "$exec_cmd"; then
Chris@39 9610 eval exec "$exec_cmd"
Chris@39 9611 exit $EXIT_FAILURE
Chris@39 9612 fi
Chris@39 9613
Chris@39 9614 exit $exit_status
Chris@39 9615
Chris@39 9616
Chris@39 9617 # The TAGs below are defined such that we never get into a situation
Chris@39 9618 # in which we disable both kinds of libraries. Given conflicting
Chris@39 9619 # choices, we go for a static library, that is the most portable,
Chris@39 9620 # since we can't tell whether shared libraries were disabled because
Chris@39 9621 # the user asked for that or because the platform doesn't support
Chris@39 9622 # them. This is particularly important on AIX, because we don't
Chris@39 9623 # support having both static and shared libraries enabled at the same
Chris@39 9624 # time on that platform, so we default to a shared-only configuration.
Chris@39 9625 # If a disable-shared tag is given, we'll fallback to a static-only
Chris@39 9626 # configuration. But we'll never go from static-only to shared-only.
Chris@39 9627
Chris@39 9628 # ### BEGIN LIBTOOL TAG CONFIG: disable-shared
Chris@39 9629 build_libtool_libs=no
Chris@39 9630 build_old_libs=yes
Chris@39 9631 # ### END LIBTOOL TAG CONFIG: disable-shared
Chris@39 9632
Chris@39 9633 # ### BEGIN LIBTOOL TAG CONFIG: disable-static
Chris@39 9634 build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`
Chris@39 9635 # ### END LIBTOOL TAG CONFIG: disable-static
Chris@39 9636
Chris@39 9637 # Local Variables:
Chris@39 9638 # mode:shell-script
Chris@39 9639 # sh-indentation:2
Chris@39 9640 # End:
Chris@39 9641 # vi:sw=2
Chris@39 9642