annotate src/libsamplerate-0.1.8/Cfg/ltmain.sh @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 545efbb81310
children
rev   line source
cannam@85 1
cannam@85 2 # libtool (GNU libtool) 2.4
cannam@85 3 # Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
cannam@85 4
cannam@85 5 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006,
cannam@85 6 # 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
cannam@85 7 # This is free software; see the source for copying conditions. There is NO
cannam@85 8 # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
cannam@85 9
cannam@85 10 # GNU Libtool is free software; you can redistribute it and/or modify
cannam@85 11 # it under the terms of the GNU General Public License as published by
cannam@85 12 # the Free Software Foundation; either version 2 of the License, or
cannam@85 13 # (at your option) any later version.
cannam@85 14 #
cannam@85 15 # As a special exception to the GNU General Public License,
cannam@85 16 # if you distribute this file as part of a program or library that
cannam@85 17 # is built using GNU Libtool, you may include this file under the
cannam@85 18 # same distribution terms that you use for the rest of that program.
cannam@85 19 #
cannam@85 20 # GNU Libtool is distributed in the hope that it will be useful, but
cannam@85 21 # WITHOUT ANY WARRANTY; without even the implied warranty of
cannam@85 22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
cannam@85 23 # General Public License for more details.
cannam@85 24 #
cannam@85 25 # You should have received a copy of the GNU General Public License
cannam@85 26 # along with GNU Libtool; see the file COPYING. If not, a copy
cannam@85 27 # can be downloaded from http://www.gnu.org/licenses/gpl.html,
cannam@85 28 # or obtained by writing to the Free Software Foundation, Inc.,
cannam@85 29 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
cannam@85 30
cannam@85 31 # Usage: $progname [OPTION]... [MODE-ARG]...
cannam@85 32 #
cannam@85 33 # Provide generalized library-building support services.
cannam@85 34 #
cannam@85 35 # --config show all configuration variables
cannam@85 36 # --debug enable verbose shell tracing
cannam@85 37 # -n, --dry-run display commands without modifying any files
cannam@85 38 # --features display basic configuration information and exit
cannam@85 39 # --mode=MODE use operation mode MODE
cannam@85 40 # --preserve-dup-deps don't remove duplicate dependency libraries
cannam@85 41 # --quiet, --silent don't print informational messages
cannam@85 42 # --no-quiet, --no-silent
cannam@85 43 # print informational messages (default)
cannam@85 44 # --tag=TAG use configuration variables from tag TAG
cannam@85 45 # -v, --verbose print more informational messages than default
cannam@85 46 # --no-verbose don't print the extra informational messages
cannam@85 47 # --version print version information
cannam@85 48 # -h, --help, --help-all print short, long, or detailed help message
cannam@85 49 #
cannam@85 50 # MODE must be one of the following:
cannam@85 51 #
cannam@85 52 # clean remove files from the build directory
cannam@85 53 # compile compile a source file into a libtool object
cannam@85 54 # execute automatically set library path, then run a program
cannam@85 55 # finish complete the installation of libtool libraries
cannam@85 56 # install install libraries or executables
cannam@85 57 # link create a library or an executable
cannam@85 58 # uninstall remove libraries from an installed directory
cannam@85 59 #
cannam@85 60 # MODE-ARGS vary depending on the MODE. When passed as first option,
cannam@85 61 # `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that.
cannam@85 62 # Try `$progname --help --mode=MODE' for a more detailed description of MODE.
cannam@85 63 #
cannam@85 64 # When reporting a bug, please describe a test case to reproduce it and
cannam@85 65 # include the following information:
cannam@85 66 #
cannam@85 67 # host-triplet: $host
cannam@85 68 # shell: $SHELL
cannam@85 69 # compiler: $LTCC
cannam@85 70 # compiler flags: $LTCFLAGS
cannam@85 71 # linker: $LD (gnu? $with_gnu_ld)
cannam@85 72 # $progname: (GNU libtool) 2.4 Debian-2.4-3
cannam@85 73 # automake: $automake_version
cannam@85 74 # autoconf: $autoconf_version
cannam@85 75 #
cannam@85 76 # Report bugs to <bug-libtool@gnu.org>.
cannam@85 77 # GNU libtool home page: <http://www.gnu.org/software/libtool/>.
cannam@85 78 # General help using GNU software: <http://www.gnu.org/gethelp/>.
cannam@85 79
cannam@85 80 PROGRAM=libtool
cannam@85 81 PACKAGE=libtool
cannam@85 82 VERSION="2.4 Debian-2.4-3"
cannam@85 83 TIMESTAMP=""
cannam@85 84 package_revision=1.3293
cannam@85 85
cannam@85 86 # Be Bourne compatible
cannam@85 87 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
cannam@85 88 emulate sh
cannam@85 89 NULLCMD=:
cannam@85 90 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
cannam@85 91 # is contrary to our usage. Disable this feature.
cannam@85 92 alias -g '${1+"$@"}'='"$@"'
cannam@85 93 setopt NO_GLOB_SUBST
cannam@85 94 else
cannam@85 95 case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
cannam@85 96 fi
cannam@85 97 BIN_SH=xpg4; export BIN_SH # for Tru64
cannam@85 98 DUALCASE=1; export DUALCASE # for MKS sh
cannam@85 99
cannam@85 100 # A function that is used when there is no print builtin or printf.
cannam@85 101 func_fallback_echo ()
cannam@85 102 {
cannam@85 103 eval 'cat <<_LTECHO_EOF
cannam@85 104 $1
cannam@85 105 _LTECHO_EOF'
cannam@85 106 }
cannam@85 107
cannam@85 108 # NLS nuisances: We save the old values to restore during execute mode.
cannam@85 109 lt_user_locale=
cannam@85 110 lt_safe_locale=
cannam@85 111 for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
cannam@85 112 do
cannam@85 113 eval "if test \"\${$lt_var+set}\" = set; then
cannam@85 114 save_$lt_var=\$$lt_var
cannam@85 115 $lt_var=C
cannam@85 116 export $lt_var
cannam@85 117 lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\"
cannam@85 118 lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\"
cannam@85 119 fi"
cannam@85 120 done
cannam@85 121 LC_ALL=C
cannam@85 122 LANGUAGE=C
cannam@85 123 export LANGUAGE LC_ALL
cannam@85 124
cannam@85 125 $lt_unset CDPATH
cannam@85 126
cannam@85 127
cannam@85 128 # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
cannam@85 129 # is ksh but when the shell is invoked as "sh" and the current value of
cannam@85 130 # the _XPG environment variable is not equal to 1 (one), the special
cannam@85 131 # positional parameter $0, within a function call, is the name of the
cannam@85 132 # function.
cannam@85 133 progpath="$0"
cannam@85 134
cannam@85 135
cannam@85 136
cannam@85 137 : ${CP="cp -f"}
cannam@85 138 test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'}
cannam@85 139 : ${EGREP="/bin/grep -E"}
cannam@85 140 : ${FGREP="/bin/grep -F"}
cannam@85 141 : ${GREP="/bin/grep"}
cannam@85 142 : ${LN_S="ln -s"}
cannam@85 143 : ${MAKE="make"}
cannam@85 144 : ${MKDIR="mkdir"}
cannam@85 145 : ${MV="mv -f"}
cannam@85 146 : ${RM="rm -f"}
cannam@85 147 : ${SED="/bin/sed"}
cannam@85 148 : ${SHELL="${CONFIG_SHELL-/bin/sh}"}
cannam@85 149 : ${Xsed="$SED -e 1s/^X//"}
cannam@85 150
cannam@85 151 # Global variables:
cannam@85 152 EXIT_SUCCESS=0
cannam@85 153 EXIT_FAILURE=1
cannam@85 154 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing.
cannam@85 155 EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake.
cannam@85 156
cannam@85 157 exit_status=$EXIT_SUCCESS
cannam@85 158
cannam@85 159 # Make sure IFS has a sensible default
cannam@85 160 lt_nl='
cannam@85 161 '
cannam@85 162 IFS=" $lt_nl"
cannam@85 163
cannam@85 164 dirname="s,/[^/]*$,,"
cannam@85 165 basename="s,^.*/,,"
cannam@85 166
cannam@85 167 # func_dirname file append nondir_replacement
cannam@85 168 # Compute the dirname of FILE. If nonempty, add APPEND to the result,
cannam@85 169 # otherwise set result to NONDIR_REPLACEMENT.
cannam@85 170 func_dirname ()
cannam@85 171 {
cannam@85 172 func_dirname_result=`$ECHO "${1}" | $SED "$dirname"`
cannam@85 173 if test "X$func_dirname_result" = "X${1}"; then
cannam@85 174 func_dirname_result="${3}"
cannam@85 175 else
cannam@85 176 func_dirname_result="$func_dirname_result${2}"
cannam@85 177 fi
cannam@85 178 } # func_dirname may be replaced by extended shell implementation
cannam@85 179
cannam@85 180
cannam@85 181 # func_basename file
cannam@85 182 func_basename ()
cannam@85 183 {
cannam@85 184 func_basename_result=`$ECHO "${1}" | $SED "$basename"`
cannam@85 185 } # func_basename may be replaced by extended shell implementation
cannam@85 186
cannam@85 187
cannam@85 188 # func_dirname_and_basename file append nondir_replacement
cannam@85 189 # perform func_basename and func_dirname in a single function
cannam@85 190 # call:
cannam@85 191 # dirname: Compute the dirname of FILE. If nonempty,
cannam@85 192 # add APPEND to the result, otherwise set result
cannam@85 193 # to NONDIR_REPLACEMENT.
cannam@85 194 # value returned in "$func_dirname_result"
cannam@85 195 # basename: Compute filename of FILE.
cannam@85 196 # value retuned in "$func_basename_result"
cannam@85 197 # Implementation must be kept synchronized with func_dirname
cannam@85 198 # and func_basename. For efficiency, we do not delegate to
cannam@85 199 # those functions but instead duplicate the functionality here.
cannam@85 200 func_dirname_and_basename ()
cannam@85 201 {
cannam@85 202 # Extract subdirectory from the argument.
cannam@85 203 func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"`
cannam@85 204 if test "X$func_dirname_result" = "X${1}"; then
cannam@85 205 func_dirname_result="${3}"
cannam@85 206 else
cannam@85 207 func_dirname_result="$func_dirname_result${2}"
cannam@85 208 fi
cannam@85 209 func_basename_result=`$ECHO "${1}" | $SED -e "$basename"`
cannam@85 210 } # func_dirname_and_basename may be replaced by extended shell implementation
cannam@85 211
cannam@85 212
cannam@85 213 # func_stripname prefix suffix name
cannam@85 214 # strip PREFIX and SUFFIX off of NAME.
cannam@85 215 # PREFIX and SUFFIX must not contain globbing or regex special
cannam@85 216 # characters, hashes, percent signs, but SUFFIX may contain a leading
cannam@85 217 # dot (in which case that matches only a dot).
cannam@85 218 # func_strip_suffix prefix name
cannam@85 219 func_stripname ()
cannam@85 220 {
cannam@85 221 case ${2} in
cannam@85 222 .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;;
cannam@85 223 *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;;
cannam@85 224 esac
cannam@85 225 } # func_stripname may be replaced by extended shell implementation
cannam@85 226
cannam@85 227
cannam@85 228 # These SED scripts presuppose an absolute path with a trailing slash.
cannam@85 229 pathcar='s,^/\([^/]*\).*$,\1,'
cannam@85 230 pathcdr='s,^/[^/]*,,'
cannam@85 231 removedotparts=':dotsl
cannam@85 232 s@/\./@/@g
cannam@85 233 t dotsl
cannam@85 234 s,/\.$,/,'
cannam@85 235 collapseslashes='s@/\{1,\}@/@g'
cannam@85 236 finalslash='s,/*$,/,'
cannam@85 237
cannam@85 238 # func_normal_abspath PATH
cannam@85 239 # Remove doubled-up and trailing slashes, "." path components,
cannam@85 240 # and cancel out any ".." path components in PATH after making
cannam@85 241 # it an absolute path.
cannam@85 242 # value returned in "$func_normal_abspath_result"
cannam@85 243 func_normal_abspath ()
cannam@85 244 {
cannam@85 245 # Start from root dir and reassemble the path.
cannam@85 246 func_normal_abspath_result=
cannam@85 247 func_normal_abspath_tpath=$1
cannam@85 248 func_normal_abspath_altnamespace=
cannam@85 249 case $func_normal_abspath_tpath in
cannam@85 250 "")
cannam@85 251 # Empty path, that just means $cwd.
cannam@85 252 func_stripname '' '/' "`pwd`"
cannam@85 253 func_normal_abspath_result=$func_stripname_result
cannam@85 254 return
cannam@85 255 ;;
cannam@85 256 # The next three entries are used to spot a run of precisely
cannam@85 257 # two leading slashes without using negated character classes;
cannam@85 258 # we take advantage of case's first-match behaviour.
cannam@85 259 ///*)
cannam@85 260 # Unusual form of absolute path, do nothing.
cannam@85 261 ;;
cannam@85 262 //*)
cannam@85 263 # Not necessarily an ordinary path; POSIX reserves leading '//'
cannam@85 264 # and for example Cygwin uses it to access remote file shares
cannam@85 265 # over CIFS/SMB, so we conserve a leading double slash if found.
cannam@85 266 func_normal_abspath_altnamespace=/
cannam@85 267 ;;
cannam@85 268 /*)
cannam@85 269 # Absolute path, do nothing.
cannam@85 270 ;;
cannam@85 271 *)
cannam@85 272 # Relative path, prepend $cwd.
cannam@85 273 func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath
cannam@85 274 ;;
cannam@85 275 esac
cannam@85 276 # Cancel out all the simple stuff to save iterations. We also want
cannam@85 277 # the path to end with a slash for ease of parsing, so make sure
cannam@85 278 # there is one (and only one) here.
cannam@85 279 func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
cannam@85 280 -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"`
cannam@85 281 while :; do
cannam@85 282 # Processed it all yet?
cannam@85 283 if test "$func_normal_abspath_tpath" = / ; then
cannam@85 284 # If we ascended to the root using ".." the result may be empty now.
cannam@85 285 if test -z "$func_normal_abspath_result" ; then
cannam@85 286 func_normal_abspath_result=/
cannam@85 287 fi
cannam@85 288 break
cannam@85 289 fi
cannam@85 290 func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \
cannam@85 291 -e "$pathcar"`
cannam@85 292 func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
cannam@85 293 -e "$pathcdr"`
cannam@85 294 # Figure out what to do with it
cannam@85 295 case $func_normal_abspath_tcomponent in
cannam@85 296 "")
cannam@85 297 # Trailing empty path component, ignore it.
cannam@85 298 ;;
cannam@85 299 ..)
cannam@85 300 # Parent dir; strip last assembled component from result.
cannam@85 301 func_dirname "$func_normal_abspath_result"
cannam@85 302 func_normal_abspath_result=$func_dirname_result
cannam@85 303 ;;
cannam@85 304 *)
cannam@85 305 # Actual path component, append it.
cannam@85 306 func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent
cannam@85 307 ;;
cannam@85 308 esac
cannam@85 309 done
cannam@85 310 # Restore leading double-slash if one was found on entry.
cannam@85 311 func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result
cannam@85 312 }
cannam@85 313
cannam@85 314 # func_relative_path SRCDIR DSTDIR
cannam@85 315 # generates a relative path from SRCDIR to DSTDIR, with a trailing
cannam@85 316 # slash if non-empty, suitable for immediately appending a filename
cannam@85 317 # without needing to append a separator.
cannam@85 318 # value returned in "$func_relative_path_result"
cannam@85 319 func_relative_path ()
cannam@85 320 {
cannam@85 321 func_relative_path_result=
cannam@85 322 func_normal_abspath "$1"
cannam@85 323 func_relative_path_tlibdir=$func_normal_abspath_result
cannam@85 324 func_normal_abspath "$2"
cannam@85 325 func_relative_path_tbindir=$func_normal_abspath_result
cannam@85 326
cannam@85 327 # Ascend the tree starting from libdir
cannam@85 328 while :; do
cannam@85 329 # check if we have found a prefix of bindir
cannam@85 330 case $func_relative_path_tbindir in
cannam@85 331 $func_relative_path_tlibdir)
cannam@85 332 # found an exact match
cannam@85 333 func_relative_path_tcancelled=
cannam@85 334 break
cannam@85 335 ;;
cannam@85 336 $func_relative_path_tlibdir*)
cannam@85 337 # found a matching prefix
cannam@85 338 func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir"
cannam@85 339 func_relative_path_tcancelled=$func_stripname_result
cannam@85 340 if test -z "$func_relative_path_result"; then
cannam@85 341 func_relative_path_result=.
cannam@85 342 fi
cannam@85 343 break
cannam@85 344 ;;
cannam@85 345 *)
cannam@85 346 func_dirname $func_relative_path_tlibdir
cannam@85 347 func_relative_path_tlibdir=${func_dirname_result}
cannam@85 348 if test "x$func_relative_path_tlibdir" = x ; then
cannam@85 349 # Have to descend all the way to the root!
cannam@85 350 func_relative_path_result=../$func_relative_path_result
cannam@85 351 func_relative_path_tcancelled=$func_relative_path_tbindir
cannam@85 352 break
cannam@85 353 fi
cannam@85 354 func_relative_path_result=../$func_relative_path_result
cannam@85 355 ;;
cannam@85 356 esac
cannam@85 357 done
cannam@85 358
cannam@85 359 # Now calculate path; take care to avoid doubling-up slashes.
cannam@85 360 func_stripname '' '/' "$func_relative_path_result"
cannam@85 361 func_relative_path_result=$func_stripname_result
cannam@85 362 func_stripname '/' '/' "$func_relative_path_tcancelled"
cannam@85 363 if test "x$func_stripname_result" != x ; then
cannam@85 364 func_relative_path_result=${func_relative_path_result}/${func_stripname_result}
cannam@85 365 fi
cannam@85 366
cannam@85 367 # Normalisation. If bindir is libdir, return empty string,
cannam@85 368 # else relative path ending with a slash; either way, target
cannam@85 369 # file name can be directly appended.
cannam@85 370 if test ! -z "$func_relative_path_result"; then
cannam@85 371 func_stripname './' '' "$func_relative_path_result/"
cannam@85 372 func_relative_path_result=$func_stripname_result
cannam@85 373 fi
cannam@85 374 }
cannam@85 375
cannam@85 376 # The name of this program:
cannam@85 377 func_dirname_and_basename "$progpath"
cannam@85 378 progname=$func_basename_result
cannam@85 379
cannam@85 380 # Make sure we have an absolute path for reexecution:
cannam@85 381 case $progpath in
cannam@85 382 [\\/]*|[A-Za-z]:\\*) ;;
cannam@85 383 *[\\/]*)
cannam@85 384 progdir=$func_dirname_result
cannam@85 385 progdir=`cd "$progdir" && pwd`
cannam@85 386 progpath="$progdir/$progname"
cannam@85 387 ;;
cannam@85 388 *)
cannam@85 389 save_IFS="$IFS"
cannam@85 390 IFS=:
cannam@85 391 for progdir in $PATH; do
cannam@85 392 IFS="$save_IFS"
cannam@85 393 test -x "$progdir/$progname" && break
cannam@85 394 done
cannam@85 395 IFS="$save_IFS"
cannam@85 396 test -n "$progdir" || progdir=`pwd`
cannam@85 397 progpath="$progdir/$progname"
cannam@85 398 ;;
cannam@85 399 esac
cannam@85 400
cannam@85 401 # Sed substitution that helps us do robust quoting. It backslashifies
cannam@85 402 # metacharacters that are still active within double-quoted strings.
cannam@85 403 Xsed="${SED}"' -e 1s/^X//'
cannam@85 404 sed_quote_subst='s/\([`"$\\]\)/\\\1/g'
cannam@85 405
cannam@85 406 # Same as above, but do not quote variable references.
cannam@85 407 double_quote_subst='s/\(["`\\]\)/\\\1/g'
cannam@85 408
cannam@85 409 # Sed substitution that turns a string into a regex matching for the
cannam@85 410 # string literally.
cannam@85 411 sed_make_literal_regex='s,[].[^$\\*\/],\\&,g'
cannam@85 412
cannam@85 413 # Sed substitution that converts a w32 file name or path
cannam@85 414 # which contains forward slashes, into one that contains
cannam@85 415 # (escaped) backslashes. A very naive implementation.
cannam@85 416 lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g'
cannam@85 417
cannam@85 418 # Re-`\' parameter expansions in output of double_quote_subst that were
cannam@85 419 # `\'-ed in input to the same. If an odd number of `\' preceded a '$'
cannam@85 420 # in input to double_quote_subst, that '$' was protected from expansion.
cannam@85 421 # Since each input `\' is now two `\'s, look for any number of runs of
cannam@85 422 # four `\'s followed by two `\'s and then a '$'. `\' that '$'.
cannam@85 423 bs='\\'
cannam@85 424 bs2='\\\\'
cannam@85 425 bs4='\\\\\\\\'
cannam@85 426 dollar='\$'
cannam@85 427 sed_double_backslash="\
cannam@85 428 s/$bs4/&\\
cannam@85 429 /g
cannam@85 430 s/^$bs2$dollar/$bs&/
cannam@85 431 s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g
cannam@85 432 s/\n//g"
cannam@85 433
cannam@85 434 # Standard options:
cannam@85 435 opt_dry_run=false
cannam@85 436 opt_help=false
cannam@85 437 opt_quiet=false
cannam@85 438 opt_verbose=false
cannam@85 439 opt_warning=:
cannam@85 440
cannam@85 441 # func_echo arg...
cannam@85 442 # Echo program name prefixed message, along with the current mode
cannam@85 443 # name if it has been set yet.
cannam@85 444 func_echo ()
cannam@85 445 {
cannam@85 446 $ECHO "$progname: ${opt_mode+$opt_mode: }$*"
cannam@85 447 }
cannam@85 448
cannam@85 449 # func_verbose arg...
cannam@85 450 # Echo program name prefixed message in verbose mode only.
cannam@85 451 func_verbose ()
cannam@85 452 {
cannam@85 453 $opt_verbose && func_echo ${1+"$@"}
cannam@85 454
cannam@85 455 # A bug in bash halts the script if the last line of a function
cannam@85 456 # fails when set -e is in force, so we need another command to
cannam@85 457 # work around that:
cannam@85 458 :
cannam@85 459 }
cannam@85 460
cannam@85 461 # func_echo_all arg...
cannam@85 462 # Invoke $ECHO with all args, space-separated.
cannam@85 463 func_echo_all ()
cannam@85 464 {
cannam@85 465 $ECHO "$*"
cannam@85 466 }
cannam@85 467
cannam@85 468 # func_error arg...
cannam@85 469 # Echo program name prefixed message to standard error.
cannam@85 470 func_error ()
cannam@85 471 {
cannam@85 472 $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2
cannam@85 473 }
cannam@85 474
cannam@85 475 # func_warning arg...
cannam@85 476 # Echo program name prefixed warning message to standard error.
cannam@85 477 func_warning ()
cannam@85 478 {
cannam@85 479 $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2
cannam@85 480
cannam@85 481 # bash bug again:
cannam@85 482 :
cannam@85 483 }
cannam@85 484
cannam@85 485 # func_fatal_error arg...
cannam@85 486 # Echo program name prefixed message to standard error, and exit.
cannam@85 487 func_fatal_error ()
cannam@85 488 {
cannam@85 489 func_error ${1+"$@"}
cannam@85 490 exit $EXIT_FAILURE
cannam@85 491 }
cannam@85 492
cannam@85 493 # func_fatal_help arg...
cannam@85 494 # Echo program name prefixed message to standard error, followed by
cannam@85 495 # a help hint, and exit.
cannam@85 496 func_fatal_help ()
cannam@85 497 {
cannam@85 498 func_error ${1+"$@"}
cannam@85 499 func_fatal_error "$help"
cannam@85 500 }
cannam@85 501 help="Try \`$progname --help' for more information." ## default
cannam@85 502
cannam@85 503
cannam@85 504 # func_grep expression filename
cannam@85 505 # Check whether EXPRESSION matches any line of FILENAME, without output.
cannam@85 506 func_grep ()
cannam@85 507 {
cannam@85 508 $GREP "$1" "$2" >/dev/null 2>&1
cannam@85 509 }
cannam@85 510
cannam@85 511
cannam@85 512 # func_mkdir_p directory-path
cannam@85 513 # Make sure the entire path to DIRECTORY-PATH is available.
cannam@85 514 func_mkdir_p ()
cannam@85 515 {
cannam@85 516 my_directory_path="$1"
cannam@85 517 my_dir_list=
cannam@85 518
cannam@85 519 if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then
cannam@85 520
cannam@85 521 # Protect directory names starting with `-'
cannam@85 522 case $my_directory_path in
cannam@85 523 -*) my_directory_path="./$my_directory_path" ;;
cannam@85 524 esac
cannam@85 525
cannam@85 526 # While some portion of DIR does not yet exist...
cannam@85 527 while test ! -d "$my_directory_path"; do
cannam@85 528 # ...make a list in topmost first order. Use a colon delimited
cannam@85 529 # list incase some portion of path contains whitespace.
cannam@85 530 my_dir_list="$my_directory_path:$my_dir_list"
cannam@85 531
cannam@85 532 # If the last portion added has no slash in it, the list is done
cannam@85 533 case $my_directory_path in */*) ;; *) break ;; esac
cannam@85 534
cannam@85 535 # ...otherwise throw away the child directory and loop
cannam@85 536 my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"`
cannam@85 537 done
cannam@85 538 my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'`
cannam@85 539
cannam@85 540 save_mkdir_p_IFS="$IFS"; IFS=':'
cannam@85 541 for my_dir in $my_dir_list; do
cannam@85 542 IFS="$save_mkdir_p_IFS"
cannam@85 543 # mkdir can fail with a `File exist' error if two processes
cannam@85 544 # try to create one of the directories concurrently. Don't
cannam@85 545 # stop in that case!
cannam@85 546 $MKDIR "$my_dir" 2>/dev/null || :
cannam@85 547 done
cannam@85 548 IFS="$save_mkdir_p_IFS"
cannam@85 549
cannam@85 550 # Bail out if we (or some other process) failed to create a directory.
cannam@85 551 test -d "$my_directory_path" || \
cannam@85 552 func_fatal_error "Failed to create \`$1'"
cannam@85 553 fi
cannam@85 554 }
cannam@85 555
cannam@85 556
cannam@85 557 # func_mktempdir [string]
cannam@85 558 # Make a temporary directory that won't clash with other running
cannam@85 559 # libtool processes, and avoids race conditions if possible. If
cannam@85 560 # given, STRING is the basename for that directory.
cannam@85 561 func_mktempdir ()
cannam@85 562 {
cannam@85 563 my_template="${TMPDIR-/tmp}/${1-$progname}"
cannam@85 564
cannam@85 565 if test "$opt_dry_run" = ":"; then
cannam@85 566 # Return a directory name, but don't create it in dry-run mode
cannam@85 567 my_tmpdir="${my_template}-$$"
cannam@85 568 else
cannam@85 569
cannam@85 570 # If mktemp works, use that first and foremost
cannam@85 571 my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null`
cannam@85 572
cannam@85 573 if test ! -d "$my_tmpdir"; then
cannam@85 574 # Failing that, at least try and use $RANDOM to avoid a race
cannam@85 575 my_tmpdir="${my_template}-${RANDOM-0}$$"
cannam@85 576
cannam@85 577 save_mktempdir_umask=`umask`
cannam@85 578 umask 0077
cannam@85 579 $MKDIR "$my_tmpdir"
cannam@85 580 umask $save_mktempdir_umask
cannam@85 581 fi
cannam@85 582
cannam@85 583 # If we're not in dry-run mode, bomb out on failure
cannam@85 584 test -d "$my_tmpdir" || \
cannam@85 585 func_fatal_error "cannot create temporary directory \`$my_tmpdir'"
cannam@85 586 fi
cannam@85 587
cannam@85 588 $ECHO "$my_tmpdir"
cannam@85 589 }
cannam@85 590
cannam@85 591
cannam@85 592 # func_quote_for_eval arg
cannam@85 593 # Aesthetically quote ARG to be evaled later.
cannam@85 594 # This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT
cannam@85 595 # is double-quoted, suitable for a subsequent eval, whereas
cannam@85 596 # FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters
cannam@85 597 # which are still active within double quotes backslashified.
cannam@85 598 func_quote_for_eval ()
cannam@85 599 {
cannam@85 600 case $1 in
cannam@85 601 *[\\\`\"\$]*)
cannam@85 602 func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;;
cannam@85 603 *)
cannam@85 604 func_quote_for_eval_unquoted_result="$1" ;;
cannam@85 605 esac
cannam@85 606
cannam@85 607 case $func_quote_for_eval_unquoted_result in
cannam@85 608 # Double-quote args containing shell metacharacters to delay
cannam@85 609 # word splitting, command substitution and and variable
cannam@85 610 # expansion for a subsequent eval.
cannam@85 611 # Many Bourne shells cannot handle close brackets correctly
cannam@85 612 # in scan sets, so we specify it separately.
cannam@85 613 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
cannam@85 614 func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\""
cannam@85 615 ;;
cannam@85 616 *)
cannam@85 617 func_quote_for_eval_result="$func_quote_for_eval_unquoted_result"
cannam@85 618 esac
cannam@85 619 }
cannam@85 620
cannam@85 621
cannam@85 622 # func_quote_for_expand arg
cannam@85 623 # Aesthetically quote ARG to be evaled later; same as above,
cannam@85 624 # but do not quote variable references.
cannam@85 625 func_quote_for_expand ()
cannam@85 626 {
cannam@85 627 case $1 in
cannam@85 628 *[\\\`\"]*)
cannam@85 629 my_arg=`$ECHO "$1" | $SED \
cannam@85 630 -e "$double_quote_subst" -e "$sed_double_backslash"` ;;
cannam@85 631 *)
cannam@85 632 my_arg="$1" ;;
cannam@85 633 esac
cannam@85 634
cannam@85 635 case $my_arg in
cannam@85 636 # Double-quote args containing shell metacharacters to delay
cannam@85 637 # word splitting and command substitution for a subsequent eval.
cannam@85 638 # Many Bourne shells cannot handle close brackets correctly
cannam@85 639 # in scan sets, so we specify it separately.
cannam@85 640 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
cannam@85 641 my_arg="\"$my_arg\""
cannam@85 642 ;;
cannam@85 643 esac
cannam@85 644
cannam@85 645 func_quote_for_expand_result="$my_arg"
cannam@85 646 }
cannam@85 647
cannam@85 648
cannam@85 649 # func_show_eval cmd [fail_exp]
cannam@85 650 # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is
cannam@85 651 # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP
cannam@85 652 # is given, then evaluate it.
cannam@85 653 func_show_eval ()
cannam@85 654 {
cannam@85 655 my_cmd="$1"
cannam@85 656 my_fail_exp="${2-:}"
cannam@85 657
cannam@85 658 ${opt_silent-false} || {
cannam@85 659 func_quote_for_expand "$my_cmd"
cannam@85 660 eval "func_echo $func_quote_for_expand_result"
cannam@85 661 }
cannam@85 662
cannam@85 663 if ${opt_dry_run-false}; then :; else
cannam@85 664 eval "$my_cmd"
cannam@85 665 my_status=$?
cannam@85 666 if test "$my_status" -eq 0; then :; else
cannam@85 667 eval "(exit $my_status); $my_fail_exp"
cannam@85 668 fi
cannam@85 669 fi
cannam@85 670 }
cannam@85 671
cannam@85 672
cannam@85 673 # func_show_eval_locale cmd [fail_exp]
cannam@85 674 # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is
cannam@85 675 # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP
cannam@85 676 # is given, then evaluate it. Use the saved locale for evaluation.
cannam@85 677 func_show_eval_locale ()
cannam@85 678 {
cannam@85 679 my_cmd="$1"
cannam@85 680 my_fail_exp="${2-:}"
cannam@85 681
cannam@85 682 ${opt_silent-false} || {
cannam@85 683 func_quote_for_expand "$my_cmd"
cannam@85 684 eval "func_echo $func_quote_for_expand_result"
cannam@85 685 }
cannam@85 686
cannam@85 687 if ${opt_dry_run-false}; then :; else
cannam@85 688 eval "$lt_user_locale
cannam@85 689 $my_cmd"
cannam@85 690 my_status=$?
cannam@85 691 eval "$lt_safe_locale"
cannam@85 692 if test "$my_status" -eq 0; then :; else
cannam@85 693 eval "(exit $my_status); $my_fail_exp"
cannam@85 694 fi
cannam@85 695 fi
cannam@85 696 }
cannam@85 697
cannam@85 698 # func_tr_sh
cannam@85 699 # Turn $1 into a string suitable for a shell variable name.
cannam@85 700 # Result is stored in $func_tr_sh_result. All characters
cannam@85 701 # not in the set a-zA-Z0-9_ are replaced with '_'. Further,
cannam@85 702 # if $1 begins with a digit, a '_' is prepended as well.
cannam@85 703 func_tr_sh ()
cannam@85 704 {
cannam@85 705 case $1 in
cannam@85 706 [0-9]* | *[!a-zA-Z0-9_]*)
cannam@85 707 func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'`
cannam@85 708 ;;
cannam@85 709 * )
cannam@85 710 func_tr_sh_result=$1
cannam@85 711 ;;
cannam@85 712 esac
cannam@85 713 }
cannam@85 714
cannam@85 715
cannam@85 716 # func_version
cannam@85 717 # Echo version message to standard output and exit.
cannam@85 718 func_version ()
cannam@85 719 {
cannam@85 720 $opt_debug
cannam@85 721
cannam@85 722 $SED -n '/(C)/!b go
cannam@85 723 :more
cannam@85 724 /\./!{
cannam@85 725 N
cannam@85 726 s/\n# / /
cannam@85 727 b more
cannam@85 728 }
cannam@85 729 :go
cannam@85 730 /^# '$PROGRAM' (GNU /,/# warranty; / {
cannam@85 731 s/^# //
cannam@85 732 s/^# *$//
cannam@85 733 s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/
cannam@85 734 p
cannam@85 735 }' < "$progpath"
cannam@85 736 exit $?
cannam@85 737 }
cannam@85 738
cannam@85 739 # func_usage
cannam@85 740 # Echo short help message to standard output and exit.
cannam@85 741 func_usage ()
cannam@85 742 {
cannam@85 743 $opt_debug
cannam@85 744
cannam@85 745 $SED -n '/^# Usage:/,/^# *.*--help/ {
cannam@85 746 s/^# //
cannam@85 747 s/^# *$//
cannam@85 748 s/\$progname/'$progname'/
cannam@85 749 p
cannam@85 750 }' < "$progpath"
cannam@85 751 echo
cannam@85 752 $ECHO "run \`$progname --help | more' for full usage"
cannam@85 753 exit $?
cannam@85 754 }
cannam@85 755
cannam@85 756 # func_help [NOEXIT]
cannam@85 757 # Echo long help message to standard output and exit,
cannam@85 758 # unless 'noexit' is passed as argument.
cannam@85 759 func_help ()
cannam@85 760 {
cannam@85 761 $opt_debug
cannam@85 762
cannam@85 763 $SED -n '/^# Usage:/,/# Report bugs to/ {
cannam@85 764 :print
cannam@85 765 s/^# //
cannam@85 766 s/^# *$//
cannam@85 767 s*\$progname*'$progname'*
cannam@85 768 s*\$host*'"$host"'*
cannam@85 769 s*\$SHELL*'"$SHELL"'*
cannam@85 770 s*\$LTCC*'"$LTCC"'*
cannam@85 771 s*\$LTCFLAGS*'"$LTCFLAGS"'*
cannam@85 772 s*\$LD*'"$LD"'*
cannam@85 773 s/\$with_gnu_ld/'"$with_gnu_ld"'/
cannam@85 774 s/\$automake_version/'"`(automake --version) 2>/dev/null |$SED 1q`"'/
cannam@85 775 s/\$autoconf_version/'"`(autoconf --version) 2>/dev/null |$SED 1q`"'/
cannam@85 776 p
cannam@85 777 d
cannam@85 778 }
cannam@85 779 /^# .* home page:/b print
cannam@85 780 /^# General help using/b print
cannam@85 781 ' < "$progpath"
cannam@85 782 ret=$?
cannam@85 783 if test -z "$1"; then
cannam@85 784 exit $ret
cannam@85 785 fi
cannam@85 786 }
cannam@85 787
cannam@85 788 # func_missing_arg argname
cannam@85 789 # Echo program name prefixed message to standard error and set global
cannam@85 790 # exit_cmd.
cannam@85 791 func_missing_arg ()
cannam@85 792 {
cannam@85 793 $opt_debug
cannam@85 794
cannam@85 795 func_error "missing argument for $1."
cannam@85 796 exit_cmd=exit
cannam@85 797 }
cannam@85 798
cannam@85 799
cannam@85 800 # func_split_short_opt shortopt
cannam@85 801 # Set func_split_short_opt_name and func_split_short_opt_arg shell
cannam@85 802 # variables after splitting SHORTOPT after the 2nd character.
cannam@85 803 func_split_short_opt ()
cannam@85 804 {
cannam@85 805 my_sed_short_opt='1s/^\(..\).*$/\1/;q'
cannam@85 806 my_sed_short_rest='1s/^..\(.*\)$/\1/;q'
cannam@85 807
cannam@85 808 func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"`
cannam@85 809 func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"`
cannam@85 810 } # func_split_short_opt may be replaced by extended shell implementation
cannam@85 811
cannam@85 812
cannam@85 813 # func_split_long_opt longopt
cannam@85 814 # Set func_split_long_opt_name and func_split_long_opt_arg shell
cannam@85 815 # variables after splitting LONGOPT at the `=' sign.
cannam@85 816 func_split_long_opt ()
cannam@85 817 {
cannam@85 818 my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q'
cannam@85 819 my_sed_long_arg='1s/^--[^=]*=//'
cannam@85 820
cannam@85 821 func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"`
cannam@85 822 func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"`
cannam@85 823 } # func_split_long_opt may be replaced by extended shell implementation
cannam@85 824
cannam@85 825 exit_cmd=:
cannam@85 826
cannam@85 827
cannam@85 828
cannam@85 829
cannam@85 830
cannam@85 831 magic="%%%MAGIC variable%%%"
cannam@85 832 magic_exe="%%%MAGIC EXE variable%%%"
cannam@85 833
cannam@85 834 # Global variables.
cannam@85 835 nonopt=
cannam@85 836 preserve_args=
cannam@85 837 lo2o="s/\\.lo\$/.${objext}/"
cannam@85 838 o2lo="s/\\.${objext}\$/.lo/"
cannam@85 839 extracted_archives=
cannam@85 840 extracted_serial=0
cannam@85 841
cannam@85 842 # If this variable is set in any of the actions, the command in it
cannam@85 843 # will be execed at the end. This prevents here-documents from being
cannam@85 844 # left over by shells.
cannam@85 845 exec_cmd=
cannam@85 846
cannam@85 847 # func_append var value
cannam@85 848 # Append VALUE to the end of shell variable VAR.
cannam@85 849 func_append ()
cannam@85 850 {
cannam@85 851 eval "${1}=\$${1}\${2}"
cannam@85 852 } # func_append may be replaced by extended shell implementation
cannam@85 853
cannam@85 854 # func_append_quoted var value
cannam@85 855 # Quote VALUE and append to the end of shell variable VAR, separated
cannam@85 856 # by a space.
cannam@85 857 func_append_quoted ()
cannam@85 858 {
cannam@85 859 func_quote_for_eval "${2}"
cannam@85 860 eval "${1}=\$${1}\\ \$func_quote_for_eval_result"
cannam@85 861 } # func_append_quoted may be replaced by extended shell implementation
cannam@85 862
cannam@85 863
cannam@85 864 # func_arith arithmetic-term...
cannam@85 865 func_arith ()
cannam@85 866 {
cannam@85 867 func_arith_result=`expr "${@}"`
cannam@85 868 } # func_arith may be replaced by extended shell implementation
cannam@85 869
cannam@85 870
cannam@85 871 # func_len string
cannam@85 872 # STRING may not start with a hyphen.
cannam@85 873 func_len ()
cannam@85 874 {
cannam@85 875 func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len`
cannam@85 876 } # func_len may be replaced by extended shell implementation
cannam@85 877
cannam@85 878
cannam@85 879 # func_lo2o object
cannam@85 880 func_lo2o ()
cannam@85 881 {
cannam@85 882 func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"`
cannam@85 883 } # func_lo2o may be replaced by extended shell implementation
cannam@85 884
cannam@85 885
cannam@85 886 # func_xform libobj-or-source
cannam@85 887 func_xform ()
cannam@85 888 {
cannam@85 889 func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'`
cannam@85 890 } # func_xform may be replaced by extended shell implementation
cannam@85 891
cannam@85 892
cannam@85 893 # func_fatal_configuration arg...
cannam@85 894 # Echo program name prefixed message to standard error, followed by
cannam@85 895 # a configuration failure hint, and exit.
cannam@85 896 func_fatal_configuration ()
cannam@85 897 {
cannam@85 898 func_error ${1+"$@"}
cannam@85 899 func_error "See the $PACKAGE documentation for more information."
cannam@85 900 func_fatal_error "Fatal configuration error."
cannam@85 901 }
cannam@85 902
cannam@85 903
cannam@85 904 # func_config
cannam@85 905 # Display the configuration for all the tags in this script.
cannam@85 906 func_config ()
cannam@85 907 {
cannam@85 908 re_begincf='^# ### BEGIN LIBTOOL'
cannam@85 909 re_endcf='^# ### END LIBTOOL'
cannam@85 910
cannam@85 911 # Default configuration.
cannam@85 912 $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath"
cannam@85 913
cannam@85 914 # Now print the configurations for the tags.
cannam@85 915 for tagname in $taglist; do
cannam@85 916 $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath"
cannam@85 917 done
cannam@85 918
cannam@85 919 exit $?
cannam@85 920 }
cannam@85 921
cannam@85 922 # func_features
cannam@85 923 # Display the features supported by this script.
cannam@85 924 func_features ()
cannam@85 925 {
cannam@85 926 echo "host: $host"
cannam@85 927 if test "$build_libtool_libs" = yes; then
cannam@85 928 echo "enable shared libraries"
cannam@85 929 else
cannam@85 930 echo "disable shared libraries"
cannam@85 931 fi
cannam@85 932 if test "$build_old_libs" = yes; then
cannam@85 933 echo "enable static libraries"
cannam@85 934 else
cannam@85 935 echo "disable static libraries"
cannam@85 936 fi
cannam@85 937
cannam@85 938 exit $?
cannam@85 939 }
cannam@85 940
cannam@85 941 # func_enable_tag tagname
cannam@85 942 # Verify that TAGNAME is valid, and either flag an error and exit, or
cannam@85 943 # enable the TAGNAME tag. We also add TAGNAME to the global $taglist
cannam@85 944 # variable here.
cannam@85 945 func_enable_tag ()
cannam@85 946 {
cannam@85 947 # Global variable:
cannam@85 948 tagname="$1"
cannam@85 949
cannam@85 950 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
cannam@85 951 re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
cannam@85 952 sed_extractcf="/$re_begincf/,/$re_endcf/p"
cannam@85 953
cannam@85 954 # Validate tagname.
cannam@85 955 case $tagname in
cannam@85 956 *[!-_A-Za-z0-9,/]*)
cannam@85 957 func_fatal_error "invalid tag name: $tagname"
cannam@85 958 ;;
cannam@85 959 esac
cannam@85 960
cannam@85 961 # Don't test for the "default" C tag, as we know it's
cannam@85 962 # there but not specially marked.
cannam@85 963 case $tagname in
cannam@85 964 CC) ;;
cannam@85 965 *)
cannam@85 966 if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then
cannam@85 967 taglist="$taglist $tagname"
cannam@85 968
cannam@85 969 # Evaluate the configuration. Be careful to quote the path
cannam@85 970 # and the sed script, to avoid splitting on whitespace, but
cannam@85 971 # also don't use non-portable quotes within backquotes within
cannam@85 972 # quotes we have to do it in 2 steps:
cannam@85 973 extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"`
cannam@85 974 eval "$extractedcf"
cannam@85 975 else
cannam@85 976 func_error "ignoring unknown tag $tagname"
cannam@85 977 fi
cannam@85 978 ;;
cannam@85 979 esac
cannam@85 980 }
cannam@85 981
cannam@85 982 # func_check_version_match
cannam@85 983 # Ensure that we are using m4 macros, and libtool script from the same
cannam@85 984 # release of libtool.
cannam@85 985 func_check_version_match ()
cannam@85 986 {
cannam@85 987 if test "$package_revision" != "$macro_revision"; then
cannam@85 988 if test "$VERSION" != "$macro_version"; then
cannam@85 989 if test -z "$macro_version"; then
cannam@85 990 cat >&2 <<_LT_EOF
cannam@85 991 $progname: Version mismatch error. This is $PACKAGE $VERSION, but the
cannam@85 992 $progname: definition of this LT_INIT comes from an older release.
cannam@85 993 $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
cannam@85 994 $progname: and run autoconf again.
cannam@85 995 _LT_EOF
cannam@85 996 else
cannam@85 997 cat >&2 <<_LT_EOF
cannam@85 998 $progname: Version mismatch error. This is $PACKAGE $VERSION, but the
cannam@85 999 $progname: definition of this LT_INIT comes from $PACKAGE $macro_version.
cannam@85 1000 $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
cannam@85 1001 $progname: and run autoconf again.
cannam@85 1002 _LT_EOF
cannam@85 1003 fi
cannam@85 1004 else
cannam@85 1005 cat >&2 <<_LT_EOF
cannam@85 1006 $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision,
cannam@85 1007 $progname: but the definition of this LT_INIT comes from revision $macro_revision.
cannam@85 1008 $progname: You should recreate aclocal.m4 with macros from revision $package_revision
cannam@85 1009 $progname: of $PACKAGE $VERSION and run autoconf again.
cannam@85 1010 _LT_EOF
cannam@85 1011 fi
cannam@85 1012
cannam@85 1013 exit $EXIT_MISMATCH
cannam@85 1014 fi
cannam@85 1015 }
cannam@85 1016
cannam@85 1017
cannam@85 1018 # Shorthand for --mode=foo, only valid as the first argument
cannam@85 1019 case $1 in
cannam@85 1020 clean|clea|cle|cl)
cannam@85 1021 shift; set dummy --mode clean ${1+"$@"}; shift
cannam@85 1022 ;;
cannam@85 1023 compile|compil|compi|comp|com|co|c)
cannam@85 1024 shift; set dummy --mode compile ${1+"$@"}; shift
cannam@85 1025 ;;
cannam@85 1026 execute|execut|execu|exec|exe|ex|e)
cannam@85 1027 shift; set dummy --mode execute ${1+"$@"}; shift
cannam@85 1028 ;;
cannam@85 1029 finish|finis|fini|fin|fi|f)
cannam@85 1030 shift; set dummy --mode finish ${1+"$@"}; shift
cannam@85 1031 ;;
cannam@85 1032 install|instal|insta|inst|ins|in|i)
cannam@85 1033 shift; set dummy --mode install ${1+"$@"}; shift
cannam@85 1034 ;;
cannam@85 1035 link|lin|li|l)
cannam@85 1036 shift; set dummy --mode link ${1+"$@"}; shift
cannam@85 1037 ;;
cannam@85 1038 uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)
cannam@85 1039 shift; set dummy --mode uninstall ${1+"$@"}; shift
cannam@85 1040 ;;
cannam@85 1041 esac
cannam@85 1042
cannam@85 1043
cannam@85 1044
cannam@85 1045 # Option defaults:
cannam@85 1046 opt_debug=:
cannam@85 1047 opt_dry_run=false
cannam@85 1048 opt_config=false
cannam@85 1049 opt_preserve_dup_deps=false
cannam@85 1050 opt_features=false
cannam@85 1051 opt_finish=false
cannam@85 1052 opt_help=false
cannam@85 1053 opt_help_all=false
cannam@85 1054 opt_silent=:
cannam@85 1055 opt_verbose=:
cannam@85 1056 opt_silent=false
cannam@85 1057 opt_verbose=false
cannam@85 1058
cannam@85 1059
cannam@85 1060 # Parse options once, thoroughly. This comes as soon as possible in the
cannam@85 1061 # script to make things like `--version' happen as quickly as we can.
cannam@85 1062 {
cannam@85 1063 # this just eases exit handling
cannam@85 1064 while test $# -gt 0; do
cannam@85 1065 opt="$1"
cannam@85 1066 shift
cannam@85 1067 case $opt in
cannam@85 1068 --debug|-x) opt_debug='set -x'
cannam@85 1069 func_echo "enabling shell trace mode"
cannam@85 1070 $opt_debug
cannam@85 1071 ;;
cannam@85 1072 --dry-run|--dryrun|-n)
cannam@85 1073 opt_dry_run=:
cannam@85 1074 ;;
cannam@85 1075 --config)
cannam@85 1076 opt_config=:
cannam@85 1077 func_config
cannam@85 1078 ;;
cannam@85 1079 --dlopen|-dlopen)
cannam@85 1080 optarg="$1"
cannam@85 1081 opt_dlopen="${opt_dlopen+$opt_dlopen
cannam@85 1082 }$optarg"
cannam@85 1083 shift
cannam@85 1084 ;;
cannam@85 1085 --preserve-dup-deps)
cannam@85 1086 opt_preserve_dup_deps=:
cannam@85 1087 ;;
cannam@85 1088 --features)
cannam@85 1089 opt_features=:
cannam@85 1090 func_features
cannam@85 1091 ;;
cannam@85 1092 --finish)
cannam@85 1093 opt_finish=:
cannam@85 1094 set dummy --mode finish ${1+"$@"}; shift
cannam@85 1095 ;;
cannam@85 1096 --help)
cannam@85 1097 opt_help=:
cannam@85 1098 ;;
cannam@85 1099 --help-all)
cannam@85 1100 opt_help_all=:
cannam@85 1101 opt_help=': help-all'
cannam@85 1102 ;;
cannam@85 1103 --mode)
cannam@85 1104 test $# = 0 && func_missing_arg $opt && break
cannam@85 1105 optarg="$1"
cannam@85 1106 opt_mode="$optarg"
cannam@85 1107 case $optarg in
cannam@85 1108 # Valid mode arguments:
cannam@85 1109 clean|compile|execute|finish|install|link|relink|uninstall) ;;
cannam@85 1110
cannam@85 1111 # Catch anything else as an error
cannam@85 1112 *) func_error "invalid argument for $opt"
cannam@85 1113 exit_cmd=exit
cannam@85 1114 break
cannam@85 1115 ;;
cannam@85 1116 esac
cannam@85 1117 shift
cannam@85 1118 ;;
cannam@85 1119 --no-silent|--no-quiet)
cannam@85 1120 opt_silent=false
cannam@85 1121 func_append preserve_args " $opt"
cannam@85 1122 ;;
cannam@85 1123 --no-verbose)
cannam@85 1124 opt_verbose=false
cannam@85 1125 func_append preserve_args " $opt"
cannam@85 1126 ;;
cannam@85 1127 --silent|--quiet)
cannam@85 1128 opt_silent=:
cannam@85 1129 func_append preserve_args " $opt"
cannam@85 1130 opt_verbose=false
cannam@85 1131 ;;
cannam@85 1132 --verbose|-v)
cannam@85 1133 opt_verbose=:
cannam@85 1134 func_append preserve_args " $opt"
cannam@85 1135 opt_silent=false
cannam@85 1136 ;;
cannam@85 1137 --tag)
cannam@85 1138 test $# = 0 && func_missing_arg $opt && break
cannam@85 1139 optarg="$1"
cannam@85 1140 opt_tag="$optarg"
cannam@85 1141 func_append preserve_args " $opt $optarg"
cannam@85 1142 func_enable_tag "$optarg"
cannam@85 1143 shift
cannam@85 1144 ;;
cannam@85 1145
cannam@85 1146 -\?|-h) func_usage ;;
cannam@85 1147 --help) func_help ;;
cannam@85 1148 --version) func_version ;;
cannam@85 1149
cannam@85 1150 # Separate optargs to long options:
cannam@85 1151 --*=*)
cannam@85 1152 func_split_long_opt "$opt"
cannam@85 1153 set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"}
cannam@85 1154 shift
cannam@85 1155 ;;
cannam@85 1156
cannam@85 1157 # Separate non-argument short options:
cannam@85 1158 -\?*|-h*|-n*|-v*)
cannam@85 1159 func_split_short_opt "$opt"
cannam@85 1160 set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"}
cannam@85 1161 shift
cannam@85 1162 ;;
cannam@85 1163
cannam@85 1164 --) break ;;
cannam@85 1165 -*) func_fatal_help "unrecognized option \`$opt'" ;;
cannam@85 1166 *) set dummy "$opt" ${1+"$@"}; shift; break ;;
cannam@85 1167 esac
cannam@85 1168 done
cannam@85 1169
cannam@85 1170 # Validate options:
cannam@85 1171
cannam@85 1172 # save first non-option argument
cannam@85 1173 if test "$#" -gt 0; then
cannam@85 1174 nonopt="$opt"
cannam@85 1175 shift
cannam@85 1176 fi
cannam@85 1177
cannam@85 1178 # preserve --debug
cannam@85 1179 test "$opt_debug" = : || func_append preserve_args " --debug"
cannam@85 1180
cannam@85 1181 case $host in
cannam@85 1182 *cygwin* | *mingw* | *pw32* | *cegcc*)
cannam@85 1183 # don't eliminate duplications in $postdeps and $predeps
cannam@85 1184 opt_duplicate_compiler_generated_deps=:
cannam@85 1185 ;;
cannam@85 1186 *)
cannam@85 1187 opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps
cannam@85 1188 ;;
cannam@85 1189 esac
cannam@85 1190
cannam@85 1191 $opt_help || {
cannam@85 1192 # Sanity checks first:
cannam@85 1193 func_check_version_match
cannam@85 1194
cannam@85 1195 if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
cannam@85 1196 func_fatal_configuration "not configured to build any kind of library"
cannam@85 1197 fi
cannam@85 1198
cannam@85 1199 # Darwin sucks
cannam@85 1200 eval std_shrext=\"$shrext_cmds\"
cannam@85 1201
cannam@85 1202 # Only execute mode is allowed to have -dlopen flags.
cannam@85 1203 if test -n "$opt_dlopen" && test "$opt_mode" != execute; then
cannam@85 1204 func_error "unrecognized option \`-dlopen'"
cannam@85 1205 $ECHO "$help" 1>&2
cannam@85 1206 exit $EXIT_FAILURE
cannam@85 1207 fi
cannam@85 1208
cannam@85 1209 # Change the help message to a mode-specific one.
cannam@85 1210 generic_help="$help"
cannam@85 1211 help="Try \`$progname --help --mode=$opt_mode' for more information."
cannam@85 1212 }
cannam@85 1213
cannam@85 1214
cannam@85 1215 # Bail if the options were screwed
cannam@85 1216 $exit_cmd $EXIT_FAILURE
cannam@85 1217 }
cannam@85 1218
cannam@85 1219
cannam@85 1220
cannam@85 1221
cannam@85 1222 ## ----------- ##
cannam@85 1223 ## Main. ##
cannam@85 1224 ## ----------- ##
cannam@85 1225
cannam@85 1226 # func_lalib_p file
cannam@85 1227 # True iff FILE is a libtool `.la' library or `.lo' object file.
cannam@85 1228 # This function is only a basic sanity check; it will hardly flush out
cannam@85 1229 # determined imposters.
cannam@85 1230 func_lalib_p ()
cannam@85 1231 {
cannam@85 1232 test -f "$1" &&
cannam@85 1233 $SED -e 4q "$1" 2>/dev/null \
cannam@85 1234 | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1
cannam@85 1235 }
cannam@85 1236
cannam@85 1237 # func_lalib_unsafe_p file
cannam@85 1238 # True iff FILE is a libtool `.la' library or `.lo' object file.
cannam@85 1239 # This function implements the same check as func_lalib_p without
cannam@85 1240 # resorting to external programs. To this end, it redirects stdin and
cannam@85 1241 # closes it afterwards, without saving the original file descriptor.
cannam@85 1242 # As a safety measure, use it only where a negative result would be
cannam@85 1243 # fatal anyway. Works if `file' does not exist.
cannam@85 1244 func_lalib_unsafe_p ()
cannam@85 1245 {
cannam@85 1246 lalib_p=no
cannam@85 1247 if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then
cannam@85 1248 for lalib_p_l in 1 2 3 4
cannam@85 1249 do
cannam@85 1250 read lalib_p_line
cannam@85 1251 case "$lalib_p_line" in
cannam@85 1252 \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;;
cannam@85 1253 esac
cannam@85 1254 done
cannam@85 1255 exec 0<&5 5<&-
cannam@85 1256 fi
cannam@85 1257 test "$lalib_p" = yes
cannam@85 1258 }
cannam@85 1259
cannam@85 1260 # func_ltwrapper_script_p file
cannam@85 1261 # True iff FILE is a libtool wrapper script
cannam@85 1262 # This function is only a basic sanity check; it will hardly flush out
cannam@85 1263 # determined imposters.
cannam@85 1264 func_ltwrapper_script_p ()
cannam@85 1265 {
cannam@85 1266 func_lalib_p "$1"
cannam@85 1267 }
cannam@85 1268
cannam@85 1269 # func_ltwrapper_executable_p file
cannam@85 1270 # True iff FILE is a libtool wrapper executable
cannam@85 1271 # This function is only a basic sanity check; it will hardly flush out
cannam@85 1272 # determined imposters.
cannam@85 1273 func_ltwrapper_executable_p ()
cannam@85 1274 {
cannam@85 1275 func_ltwrapper_exec_suffix=
cannam@85 1276 case $1 in
cannam@85 1277 *.exe) ;;
cannam@85 1278 *) func_ltwrapper_exec_suffix=.exe ;;
cannam@85 1279 esac
cannam@85 1280 $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1
cannam@85 1281 }
cannam@85 1282
cannam@85 1283 # func_ltwrapper_scriptname file
cannam@85 1284 # Assumes file is an ltwrapper_executable
cannam@85 1285 # uses $file to determine the appropriate filename for a
cannam@85 1286 # temporary ltwrapper_script.
cannam@85 1287 func_ltwrapper_scriptname ()
cannam@85 1288 {
cannam@85 1289 func_dirname_and_basename "$1" "" "."
cannam@85 1290 func_stripname '' '.exe' "$func_basename_result"
cannam@85 1291 func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper"
cannam@85 1292 }
cannam@85 1293
cannam@85 1294 # func_ltwrapper_p file
cannam@85 1295 # True iff FILE is a libtool wrapper script or wrapper executable
cannam@85 1296 # This function is only a basic sanity check; it will hardly flush out
cannam@85 1297 # determined imposters.
cannam@85 1298 func_ltwrapper_p ()
cannam@85 1299 {
cannam@85 1300 func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1"
cannam@85 1301 }
cannam@85 1302
cannam@85 1303
cannam@85 1304 # func_execute_cmds commands fail_cmd
cannam@85 1305 # Execute tilde-delimited COMMANDS.
cannam@85 1306 # If FAIL_CMD is given, eval that upon failure.
cannam@85 1307 # FAIL_CMD may read-access the current command in variable CMD!
cannam@85 1308 func_execute_cmds ()
cannam@85 1309 {
cannam@85 1310 $opt_debug
cannam@85 1311 save_ifs=$IFS; IFS='~'
cannam@85 1312 for cmd in $1; do
cannam@85 1313 IFS=$save_ifs
cannam@85 1314 eval cmd=\"$cmd\"
cannam@85 1315 func_show_eval "$cmd" "${2-:}"
cannam@85 1316 done
cannam@85 1317 IFS=$save_ifs
cannam@85 1318 }
cannam@85 1319
cannam@85 1320
cannam@85 1321 # func_source file
cannam@85 1322 # Source FILE, adding directory component if necessary.
cannam@85 1323 # Note that it is not necessary on cygwin/mingw to append a dot to
cannam@85 1324 # FILE even if both FILE and FILE.exe exist: automatic-append-.exe
cannam@85 1325 # behavior happens only for exec(3), not for open(2)! Also, sourcing
cannam@85 1326 # `FILE.' does not work on cygwin managed mounts.
cannam@85 1327 func_source ()
cannam@85 1328 {
cannam@85 1329 $opt_debug
cannam@85 1330 case $1 in
cannam@85 1331 */* | *\\*) . "$1" ;;
cannam@85 1332 *) . "./$1" ;;
cannam@85 1333 esac
cannam@85 1334 }
cannam@85 1335
cannam@85 1336
cannam@85 1337 # func_resolve_sysroot PATH
cannam@85 1338 # Replace a leading = in PATH with a sysroot. Store the result into
cannam@85 1339 # func_resolve_sysroot_result
cannam@85 1340 func_resolve_sysroot ()
cannam@85 1341 {
cannam@85 1342 func_resolve_sysroot_result=$1
cannam@85 1343 case $func_resolve_sysroot_result in
cannam@85 1344 =*)
cannam@85 1345 func_stripname '=' '' "$func_resolve_sysroot_result"
cannam@85 1346 func_resolve_sysroot_result=$lt_sysroot$func_stripname_result
cannam@85 1347 ;;
cannam@85 1348 esac
cannam@85 1349 }
cannam@85 1350
cannam@85 1351 # func_replace_sysroot PATH
cannam@85 1352 # If PATH begins with the sysroot, replace it with = and
cannam@85 1353 # store the result into func_replace_sysroot_result.
cannam@85 1354 func_replace_sysroot ()
cannam@85 1355 {
cannam@85 1356 case "$lt_sysroot:$1" in
cannam@85 1357 ?*:"$lt_sysroot"*)
cannam@85 1358 func_stripname "$lt_sysroot" '' "$1"
cannam@85 1359 func_replace_sysroot_result="=$func_stripname_result"
cannam@85 1360 ;;
cannam@85 1361 *)
cannam@85 1362 # Including no sysroot.
cannam@85 1363 func_replace_sysroot_result=$1
cannam@85 1364 ;;
cannam@85 1365 esac
cannam@85 1366 }
cannam@85 1367
cannam@85 1368 # func_infer_tag arg
cannam@85 1369 # Infer tagged configuration to use if any are available and
cannam@85 1370 # if one wasn't chosen via the "--tag" command line option.
cannam@85 1371 # Only attempt this if the compiler in the base compile
cannam@85 1372 # command doesn't match the default compiler.
cannam@85 1373 # arg is usually of the form 'gcc ...'
cannam@85 1374 func_infer_tag ()
cannam@85 1375 {
cannam@85 1376 $opt_debug
cannam@85 1377 if test -n "$available_tags" && test -z "$tagname"; then
cannam@85 1378 CC_quoted=
cannam@85 1379 for arg in $CC; do
cannam@85 1380 func_append_quoted CC_quoted "$arg"
cannam@85 1381 done
cannam@85 1382 CC_expanded=`func_echo_all $CC`
cannam@85 1383 CC_quoted_expanded=`func_echo_all $CC_quoted`
cannam@85 1384 case $@ in
cannam@85 1385 # Blanks in the command may have been stripped by the calling shell,
cannam@85 1386 # but not from the CC environment variable when configure was run.
cannam@85 1387 " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \
cannam@85 1388 " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;;
cannam@85 1389 # Blanks at the start of $base_compile will cause this to fail
cannam@85 1390 # if we don't check for them as well.
cannam@85 1391 *)
cannam@85 1392 for z in $available_tags; do
cannam@85 1393 if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then
cannam@85 1394 # Evaluate the configuration.
cannam@85 1395 eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
cannam@85 1396 CC_quoted=
cannam@85 1397 for arg in $CC; do
cannam@85 1398 # Double-quote args containing other shell metacharacters.
cannam@85 1399 func_append_quoted CC_quoted "$arg"
cannam@85 1400 done
cannam@85 1401 CC_expanded=`func_echo_all $CC`
cannam@85 1402 CC_quoted_expanded=`func_echo_all $CC_quoted`
cannam@85 1403 case "$@ " in
cannam@85 1404 " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \
cannam@85 1405 " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*)
cannam@85 1406 # The compiler in the base compile command matches
cannam@85 1407 # the one in the tagged configuration.
cannam@85 1408 # Assume this is the tagged configuration we want.
cannam@85 1409 tagname=$z
cannam@85 1410 break
cannam@85 1411 ;;
cannam@85 1412 esac
cannam@85 1413 fi
cannam@85 1414 done
cannam@85 1415 # If $tagname still isn't set, then no tagged configuration
cannam@85 1416 # was found and let the user know that the "--tag" command
cannam@85 1417 # line option must be used.
cannam@85 1418 if test -z "$tagname"; then
cannam@85 1419 func_echo "unable to infer tagged configuration"
cannam@85 1420 func_fatal_error "specify a tag with \`--tag'"
cannam@85 1421 # else
cannam@85 1422 # func_verbose "using $tagname tagged configuration"
cannam@85 1423 fi
cannam@85 1424 ;;
cannam@85 1425 esac
cannam@85 1426 fi
cannam@85 1427 }
cannam@85 1428
cannam@85 1429
cannam@85 1430
cannam@85 1431 # func_write_libtool_object output_name pic_name nonpic_name
cannam@85 1432 # Create a libtool object file (analogous to a ".la" file),
cannam@85 1433 # but don't create it if we're doing a dry run.
cannam@85 1434 func_write_libtool_object ()
cannam@85 1435 {
cannam@85 1436 write_libobj=${1}
cannam@85 1437 if test "$build_libtool_libs" = yes; then
cannam@85 1438 write_lobj=\'${2}\'
cannam@85 1439 else
cannam@85 1440 write_lobj=none
cannam@85 1441 fi
cannam@85 1442
cannam@85 1443 if test "$build_old_libs" = yes; then
cannam@85 1444 write_oldobj=\'${3}\'
cannam@85 1445 else
cannam@85 1446 write_oldobj=none
cannam@85 1447 fi
cannam@85 1448
cannam@85 1449 $opt_dry_run || {
cannam@85 1450 cat >${write_libobj}T <<EOF
cannam@85 1451 # $write_libobj - a libtool object file
cannam@85 1452 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@85 1453 #
cannam@85 1454 # Please DO NOT delete this file!
cannam@85 1455 # It is necessary for linking the library.
cannam@85 1456
cannam@85 1457 # Name of the PIC object.
cannam@85 1458 pic_object=$write_lobj
cannam@85 1459
cannam@85 1460 # Name of the non-PIC object
cannam@85 1461 non_pic_object=$write_oldobj
cannam@85 1462
cannam@85 1463 EOF
cannam@85 1464 $MV "${write_libobj}T" "${write_libobj}"
cannam@85 1465 }
cannam@85 1466 }
cannam@85 1467
cannam@85 1468
cannam@85 1469 ##################################################
cannam@85 1470 # FILE NAME AND PATH CONVERSION HELPER FUNCTIONS #
cannam@85 1471 ##################################################
cannam@85 1472
cannam@85 1473 # func_convert_core_file_wine_to_w32 ARG
cannam@85 1474 # Helper function used by file name conversion functions when $build is *nix,
cannam@85 1475 # and $host is mingw, cygwin, or some other w32 environment. Relies on a
cannam@85 1476 # correctly configured wine environment available, with the winepath program
cannam@85 1477 # in $build's $PATH.
cannam@85 1478 #
cannam@85 1479 # ARG is the $build file name to be converted to w32 format.
cannam@85 1480 # Result is available in $func_convert_core_file_wine_to_w32_result, and will
cannam@85 1481 # be empty on error (or when ARG is empty)
cannam@85 1482 func_convert_core_file_wine_to_w32 ()
cannam@85 1483 {
cannam@85 1484 $opt_debug
cannam@85 1485 func_convert_core_file_wine_to_w32_result="$1"
cannam@85 1486 if test -n "$1"; then
cannam@85 1487 # Unfortunately, winepath does not exit with a non-zero error code, so we
cannam@85 1488 # are forced to check the contents of stdout. On the other hand, if the
cannam@85 1489 # command is not found, the shell will set an exit code of 127 and print
cannam@85 1490 # *an error message* to stdout. So we must check for both error code of
cannam@85 1491 # zero AND non-empty stdout, which explains the odd construction:
cannam@85 1492 func_convert_core_file_wine_to_w32_tmp=`winepath -w "$1" 2>/dev/null`
cannam@85 1493 if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then
cannam@85 1494 func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" |
cannam@85 1495 $SED -e "$lt_sed_naive_backslashify"`
cannam@85 1496 else
cannam@85 1497 func_convert_core_file_wine_to_w32_result=
cannam@85 1498 fi
cannam@85 1499 fi
cannam@85 1500 }
cannam@85 1501 # end: func_convert_core_file_wine_to_w32
cannam@85 1502
cannam@85 1503
cannam@85 1504 # func_convert_core_path_wine_to_w32 ARG
cannam@85 1505 # Helper function used by path conversion functions when $build is *nix, and
cannam@85 1506 # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly
cannam@85 1507 # configured wine environment available, with the winepath program in $build's
cannam@85 1508 # $PATH. Assumes ARG has no leading or trailing path separator characters.
cannam@85 1509 #
cannam@85 1510 # ARG is path to be converted from $build format to win32.
cannam@85 1511 # Result is available in $func_convert_core_path_wine_to_w32_result.
cannam@85 1512 # Unconvertible file (directory) names in ARG are skipped; if no directory names
cannam@85 1513 # are convertible, then the result may be empty.
cannam@85 1514 func_convert_core_path_wine_to_w32 ()
cannam@85 1515 {
cannam@85 1516 $opt_debug
cannam@85 1517 # unfortunately, winepath doesn't convert paths, only file names
cannam@85 1518 func_convert_core_path_wine_to_w32_result=""
cannam@85 1519 if test -n "$1"; then
cannam@85 1520 oldIFS=$IFS
cannam@85 1521 IFS=:
cannam@85 1522 for func_convert_core_path_wine_to_w32_f in $1; do
cannam@85 1523 IFS=$oldIFS
cannam@85 1524 func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f"
cannam@85 1525 if test -n "$func_convert_core_file_wine_to_w32_result" ; then
cannam@85 1526 if test -z "$func_convert_core_path_wine_to_w32_result"; then
cannam@85 1527 func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result"
cannam@85 1528 else
cannam@85 1529 func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result"
cannam@85 1530 fi
cannam@85 1531 fi
cannam@85 1532 done
cannam@85 1533 IFS=$oldIFS
cannam@85 1534 fi
cannam@85 1535 }
cannam@85 1536 # end: func_convert_core_path_wine_to_w32
cannam@85 1537
cannam@85 1538
cannam@85 1539 # func_cygpath ARGS...
cannam@85 1540 # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when
cannam@85 1541 # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2)
cannam@85 1542 # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or
cannam@85 1543 # (2), returns the Cygwin file name or path in func_cygpath_result (input
cannam@85 1544 # file name or path is assumed to be in w32 format, as previously converted
cannam@85 1545 # from $build's *nix or MSYS format). In case (3), returns the w32 file name
cannam@85 1546 # or path in func_cygpath_result (input file name or path is assumed to be in
cannam@85 1547 # Cygwin format). Returns an empty string on error.
cannam@85 1548 #
cannam@85 1549 # ARGS are passed to cygpath, with the last one being the file name or path to
cannam@85 1550 # be converted.
cannam@85 1551 #
cannam@85 1552 # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH
cannam@85 1553 # environment variable; do not put it in $PATH.
cannam@85 1554 func_cygpath ()
cannam@85 1555 {
cannam@85 1556 $opt_debug
cannam@85 1557 if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then
cannam@85 1558 func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null`
cannam@85 1559 if test "$?" -ne 0; then
cannam@85 1560 # on failure, ensure result is empty
cannam@85 1561 func_cygpath_result=
cannam@85 1562 fi
cannam@85 1563 else
cannam@85 1564 func_cygpath_result=
cannam@85 1565 func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'"
cannam@85 1566 fi
cannam@85 1567 }
cannam@85 1568 #end: func_cygpath
cannam@85 1569
cannam@85 1570
cannam@85 1571 # func_convert_core_msys_to_w32 ARG
cannam@85 1572 # Convert file name or path ARG from MSYS format to w32 format. Return
cannam@85 1573 # result in func_convert_core_msys_to_w32_result.
cannam@85 1574 func_convert_core_msys_to_w32 ()
cannam@85 1575 {
cannam@85 1576 $opt_debug
cannam@85 1577 # awkward: cmd appends spaces to result
cannam@85 1578 func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null |
cannam@85 1579 $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"`
cannam@85 1580 }
cannam@85 1581 #end: func_convert_core_msys_to_w32
cannam@85 1582
cannam@85 1583
cannam@85 1584 # func_convert_file_check ARG1 ARG2
cannam@85 1585 # Verify that ARG1 (a file name in $build format) was converted to $host
cannam@85 1586 # format in ARG2. Otherwise, emit an error message, but continue (resetting
cannam@85 1587 # func_to_host_file_result to ARG1).
cannam@85 1588 func_convert_file_check ()
cannam@85 1589 {
cannam@85 1590 $opt_debug
cannam@85 1591 if test -z "$2" && test -n "$1" ; then
cannam@85 1592 func_error "Could not determine host file name corresponding to"
cannam@85 1593 func_error " \`$1'"
cannam@85 1594 func_error "Continuing, but uninstalled executables may not work."
cannam@85 1595 # Fallback:
cannam@85 1596 func_to_host_file_result="$1"
cannam@85 1597 fi
cannam@85 1598 }
cannam@85 1599 # end func_convert_file_check
cannam@85 1600
cannam@85 1601
cannam@85 1602 # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH
cannam@85 1603 # Verify that FROM_PATH (a path in $build format) was converted to $host
cannam@85 1604 # format in TO_PATH. Otherwise, emit an error message, but continue, resetting
cannam@85 1605 # func_to_host_file_result to a simplistic fallback value (see below).
cannam@85 1606 func_convert_path_check ()
cannam@85 1607 {
cannam@85 1608 $opt_debug
cannam@85 1609 if test -z "$4" && test -n "$3"; then
cannam@85 1610 func_error "Could not determine the host path corresponding to"
cannam@85 1611 func_error " \`$3'"
cannam@85 1612 func_error "Continuing, but uninstalled executables may not work."
cannam@85 1613 # Fallback. This is a deliberately simplistic "conversion" and
cannam@85 1614 # should not be "improved". See libtool.info.
cannam@85 1615 if test "x$1" != "x$2"; then
cannam@85 1616 lt_replace_pathsep_chars="s|$1|$2|g"
cannam@85 1617 func_to_host_path_result=`echo "$3" |
cannam@85 1618 $SED -e "$lt_replace_pathsep_chars"`
cannam@85 1619 else
cannam@85 1620 func_to_host_path_result="$3"
cannam@85 1621 fi
cannam@85 1622 fi
cannam@85 1623 }
cannam@85 1624 # end func_convert_path_check
cannam@85 1625
cannam@85 1626
cannam@85 1627 # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG
cannam@85 1628 # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT
cannam@85 1629 # and appending REPL if ORIG matches BACKPAT.
cannam@85 1630 func_convert_path_front_back_pathsep ()
cannam@85 1631 {
cannam@85 1632 $opt_debug
cannam@85 1633 case $4 in
cannam@85 1634 $1 ) func_to_host_path_result="$3$func_to_host_path_result"
cannam@85 1635 ;;
cannam@85 1636 esac
cannam@85 1637 case $4 in
cannam@85 1638 $2 ) func_append func_to_host_path_result "$3"
cannam@85 1639 ;;
cannam@85 1640 esac
cannam@85 1641 }
cannam@85 1642 # end func_convert_path_front_back_pathsep
cannam@85 1643
cannam@85 1644
cannam@85 1645 ##################################################
cannam@85 1646 # $build to $host FILE NAME CONVERSION FUNCTIONS #
cannam@85 1647 ##################################################
cannam@85 1648 # invoked via `$to_host_file_cmd ARG'
cannam@85 1649 #
cannam@85 1650 # In each case, ARG is the path to be converted from $build to $host format.
cannam@85 1651 # Result will be available in $func_to_host_file_result.
cannam@85 1652
cannam@85 1653
cannam@85 1654 # func_to_host_file ARG
cannam@85 1655 # Converts the file name ARG from $build format to $host format. Return result
cannam@85 1656 # in func_to_host_file_result.
cannam@85 1657 func_to_host_file ()
cannam@85 1658 {
cannam@85 1659 $opt_debug
cannam@85 1660 $to_host_file_cmd "$1"
cannam@85 1661 }
cannam@85 1662 # end func_to_host_file
cannam@85 1663
cannam@85 1664
cannam@85 1665 # func_to_tool_file ARG LAZY
cannam@85 1666 # converts the file name ARG from $build format to toolchain format. Return
cannam@85 1667 # result in func_to_tool_file_result. If the conversion in use is listed
cannam@85 1668 # in (the comma separated) LAZY, no conversion takes place.
cannam@85 1669 func_to_tool_file ()
cannam@85 1670 {
cannam@85 1671 $opt_debug
cannam@85 1672 case ,$2, in
cannam@85 1673 *,"$to_tool_file_cmd",*)
cannam@85 1674 func_to_tool_file_result=$1
cannam@85 1675 ;;
cannam@85 1676 *)
cannam@85 1677 $to_tool_file_cmd "$1"
cannam@85 1678 func_to_tool_file_result=$func_to_host_file_result
cannam@85 1679 ;;
cannam@85 1680 esac
cannam@85 1681 }
cannam@85 1682 # end func_to_tool_file
cannam@85 1683
cannam@85 1684
cannam@85 1685 # func_convert_file_noop ARG
cannam@85 1686 # Copy ARG to func_to_host_file_result.
cannam@85 1687 func_convert_file_noop ()
cannam@85 1688 {
cannam@85 1689 func_to_host_file_result="$1"
cannam@85 1690 }
cannam@85 1691 # end func_convert_file_noop
cannam@85 1692
cannam@85 1693
cannam@85 1694 # func_convert_file_msys_to_w32 ARG
cannam@85 1695 # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic
cannam@85 1696 # conversion to w32 is not available inside the cwrapper. Returns result in
cannam@85 1697 # func_to_host_file_result.
cannam@85 1698 func_convert_file_msys_to_w32 ()
cannam@85 1699 {
cannam@85 1700 $opt_debug
cannam@85 1701 func_to_host_file_result="$1"
cannam@85 1702 if test -n "$1"; then
cannam@85 1703 func_convert_core_msys_to_w32 "$1"
cannam@85 1704 func_to_host_file_result="$func_convert_core_msys_to_w32_result"
cannam@85 1705 fi
cannam@85 1706 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@85 1707 }
cannam@85 1708 # end func_convert_file_msys_to_w32
cannam@85 1709
cannam@85 1710
cannam@85 1711 # func_convert_file_cygwin_to_w32 ARG
cannam@85 1712 # Convert file name ARG from Cygwin to w32 format. Returns result in
cannam@85 1713 # func_to_host_file_result.
cannam@85 1714 func_convert_file_cygwin_to_w32 ()
cannam@85 1715 {
cannam@85 1716 $opt_debug
cannam@85 1717 func_to_host_file_result="$1"
cannam@85 1718 if test -n "$1"; then
cannam@85 1719 # because $build is cygwin, we call "the" cygpath in $PATH; no need to use
cannam@85 1720 # LT_CYGPATH in this case.
cannam@85 1721 func_to_host_file_result=`cygpath -m "$1"`
cannam@85 1722 fi
cannam@85 1723 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@85 1724 }
cannam@85 1725 # end func_convert_file_cygwin_to_w32
cannam@85 1726
cannam@85 1727
cannam@85 1728 # func_convert_file_nix_to_w32 ARG
cannam@85 1729 # Convert file name ARG from *nix to w32 format. Requires a wine environment
cannam@85 1730 # and a working winepath. Returns result in func_to_host_file_result.
cannam@85 1731 func_convert_file_nix_to_w32 ()
cannam@85 1732 {
cannam@85 1733 $opt_debug
cannam@85 1734 func_to_host_file_result="$1"
cannam@85 1735 if test -n "$1"; then
cannam@85 1736 func_convert_core_file_wine_to_w32 "$1"
cannam@85 1737 func_to_host_file_result="$func_convert_core_file_wine_to_w32_result"
cannam@85 1738 fi
cannam@85 1739 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@85 1740 }
cannam@85 1741 # end func_convert_file_nix_to_w32
cannam@85 1742
cannam@85 1743
cannam@85 1744 # func_convert_file_msys_to_cygwin ARG
cannam@85 1745 # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set.
cannam@85 1746 # Returns result in func_to_host_file_result.
cannam@85 1747 func_convert_file_msys_to_cygwin ()
cannam@85 1748 {
cannam@85 1749 $opt_debug
cannam@85 1750 func_to_host_file_result="$1"
cannam@85 1751 if test -n "$1"; then
cannam@85 1752 func_convert_core_msys_to_w32 "$1"
cannam@85 1753 func_cygpath -u "$func_convert_core_msys_to_w32_result"
cannam@85 1754 func_to_host_file_result="$func_cygpath_result"
cannam@85 1755 fi
cannam@85 1756 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@85 1757 }
cannam@85 1758 # end func_convert_file_msys_to_cygwin
cannam@85 1759
cannam@85 1760
cannam@85 1761 # func_convert_file_nix_to_cygwin ARG
cannam@85 1762 # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed
cannam@85 1763 # in a wine environment, working winepath, and LT_CYGPATH set. Returns result
cannam@85 1764 # in func_to_host_file_result.
cannam@85 1765 func_convert_file_nix_to_cygwin ()
cannam@85 1766 {
cannam@85 1767 $opt_debug
cannam@85 1768 func_to_host_file_result="$1"
cannam@85 1769 if test -n "$1"; then
cannam@85 1770 # convert from *nix to w32, then use cygpath to convert from w32 to cygwin.
cannam@85 1771 func_convert_core_file_wine_to_w32 "$1"
cannam@85 1772 func_cygpath -u "$func_convert_core_file_wine_to_w32_result"
cannam@85 1773 func_to_host_file_result="$func_cygpath_result"
cannam@85 1774 fi
cannam@85 1775 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@85 1776 }
cannam@85 1777 # end func_convert_file_nix_to_cygwin
cannam@85 1778
cannam@85 1779
cannam@85 1780 #############################################
cannam@85 1781 # $build to $host PATH CONVERSION FUNCTIONS #
cannam@85 1782 #############################################
cannam@85 1783 # invoked via `$to_host_path_cmd ARG'
cannam@85 1784 #
cannam@85 1785 # In each case, ARG is the path to be converted from $build to $host format.
cannam@85 1786 # The result will be available in $func_to_host_path_result.
cannam@85 1787 #
cannam@85 1788 # Path separators are also converted from $build format to $host format. If
cannam@85 1789 # ARG begins or ends with a path separator character, it is preserved (but
cannam@85 1790 # converted to $host format) on output.
cannam@85 1791 #
cannam@85 1792 # All path conversion functions are named using the following convention:
cannam@85 1793 # file name conversion function : func_convert_file_X_to_Y ()
cannam@85 1794 # path conversion function : func_convert_path_X_to_Y ()
cannam@85 1795 # where, for any given $build/$host combination the 'X_to_Y' value is the
cannam@85 1796 # same. If conversion functions are added for new $build/$host combinations,
cannam@85 1797 # the two new functions must follow this pattern, or func_init_to_host_path_cmd
cannam@85 1798 # will break.
cannam@85 1799
cannam@85 1800
cannam@85 1801 # func_init_to_host_path_cmd
cannam@85 1802 # Ensures that function "pointer" variable $to_host_path_cmd is set to the
cannam@85 1803 # appropriate value, based on the value of $to_host_file_cmd.
cannam@85 1804 to_host_path_cmd=
cannam@85 1805 func_init_to_host_path_cmd ()
cannam@85 1806 {
cannam@85 1807 $opt_debug
cannam@85 1808 if test -z "$to_host_path_cmd"; then
cannam@85 1809 func_stripname 'func_convert_file_' '' "$to_host_file_cmd"
cannam@85 1810 to_host_path_cmd="func_convert_path_${func_stripname_result}"
cannam@85 1811 fi
cannam@85 1812 }
cannam@85 1813
cannam@85 1814
cannam@85 1815 # func_to_host_path ARG
cannam@85 1816 # Converts the path ARG from $build format to $host format. Return result
cannam@85 1817 # in func_to_host_path_result.
cannam@85 1818 func_to_host_path ()
cannam@85 1819 {
cannam@85 1820 $opt_debug
cannam@85 1821 func_init_to_host_path_cmd
cannam@85 1822 $to_host_path_cmd "$1"
cannam@85 1823 }
cannam@85 1824 # end func_to_host_path
cannam@85 1825
cannam@85 1826
cannam@85 1827 # func_convert_path_noop ARG
cannam@85 1828 # Copy ARG to func_to_host_path_result.
cannam@85 1829 func_convert_path_noop ()
cannam@85 1830 {
cannam@85 1831 func_to_host_path_result="$1"
cannam@85 1832 }
cannam@85 1833 # end func_convert_path_noop
cannam@85 1834
cannam@85 1835
cannam@85 1836 # func_convert_path_msys_to_w32 ARG
cannam@85 1837 # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic
cannam@85 1838 # conversion to w32 is not available inside the cwrapper. Returns result in
cannam@85 1839 # func_to_host_path_result.
cannam@85 1840 func_convert_path_msys_to_w32 ()
cannam@85 1841 {
cannam@85 1842 $opt_debug
cannam@85 1843 func_to_host_path_result="$1"
cannam@85 1844 if test -n "$1"; then
cannam@85 1845 # Remove leading and trailing path separator characters from ARG. MSYS
cannam@85 1846 # behavior is inconsistent here; cygpath turns them into '.;' and ';.';
cannam@85 1847 # and winepath ignores them completely.
cannam@85 1848 func_stripname : : "$1"
cannam@85 1849 func_to_host_path_tmp1=$func_stripname_result
cannam@85 1850 func_convert_core_msys_to_w32 "$func_to_host_path_tmp1"
cannam@85 1851 func_to_host_path_result="$func_convert_core_msys_to_w32_result"
cannam@85 1852 func_convert_path_check : ";" \
cannam@85 1853 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@85 1854 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
cannam@85 1855 fi
cannam@85 1856 }
cannam@85 1857 # end func_convert_path_msys_to_w32
cannam@85 1858
cannam@85 1859
cannam@85 1860 # func_convert_path_cygwin_to_w32 ARG
cannam@85 1861 # Convert path ARG from Cygwin to w32 format. Returns result in
cannam@85 1862 # func_to_host_file_result.
cannam@85 1863 func_convert_path_cygwin_to_w32 ()
cannam@85 1864 {
cannam@85 1865 $opt_debug
cannam@85 1866 func_to_host_path_result="$1"
cannam@85 1867 if test -n "$1"; then
cannam@85 1868 # See func_convert_path_msys_to_w32:
cannam@85 1869 func_stripname : : "$1"
cannam@85 1870 func_to_host_path_tmp1=$func_stripname_result
cannam@85 1871 func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"`
cannam@85 1872 func_convert_path_check : ";" \
cannam@85 1873 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@85 1874 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
cannam@85 1875 fi
cannam@85 1876 }
cannam@85 1877 # end func_convert_path_cygwin_to_w32
cannam@85 1878
cannam@85 1879
cannam@85 1880 # func_convert_path_nix_to_w32 ARG
cannam@85 1881 # Convert path ARG from *nix to w32 format. Requires a wine environment and
cannam@85 1882 # a working winepath. Returns result in func_to_host_file_result.
cannam@85 1883 func_convert_path_nix_to_w32 ()
cannam@85 1884 {
cannam@85 1885 $opt_debug
cannam@85 1886 func_to_host_path_result="$1"
cannam@85 1887 if test -n "$1"; then
cannam@85 1888 # See func_convert_path_msys_to_w32:
cannam@85 1889 func_stripname : : "$1"
cannam@85 1890 func_to_host_path_tmp1=$func_stripname_result
cannam@85 1891 func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1"
cannam@85 1892 func_to_host_path_result="$func_convert_core_path_wine_to_w32_result"
cannam@85 1893 func_convert_path_check : ";" \
cannam@85 1894 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@85 1895 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
cannam@85 1896 fi
cannam@85 1897 }
cannam@85 1898 # end func_convert_path_nix_to_w32
cannam@85 1899
cannam@85 1900
cannam@85 1901 # func_convert_path_msys_to_cygwin ARG
cannam@85 1902 # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set.
cannam@85 1903 # Returns result in func_to_host_file_result.
cannam@85 1904 func_convert_path_msys_to_cygwin ()
cannam@85 1905 {
cannam@85 1906 $opt_debug
cannam@85 1907 func_to_host_path_result="$1"
cannam@85 1908 if test -n "$1"; then
cannam@85 1909 # See func_convert_path_msys_to_w32:
cannam@85 1910 func_stripname : : "$1"
cannam@85 1911 func_to_host_path_tmp1=$func_stripname_result
cannam@85 1912 func_convert_core_msys_to_w32 "$func_to_host_path_tmp1"
cannam@85 1913 func_cygpath -u -p "$func_convert_core_msys_to_w32_result"
cannam@85 1914 func_to_host_path_result="$func_cygpath_result"
cannam@85 1915 func_convert_path_check : : \
cannam@85 1916 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@85 1917 func_convert_path_front_back_pathsep ":*" "*:" : "$1"
cannam@85 1918 fi
cannam@85 1919 }
cannam@85 1920 # end func_convert_path_msys_to_cygwin
cannam@85 1921
cannam@85 1922
cannam@85 1923 # func_convert_path_nix_to_cygwin ARG
cannam@85 1924 # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a
cannam@85 1925 # a wine environment, working winepath, and LT_CYGPATH set. Returns result in
cannam@85 1926 # func_to_host_file_result.
cannam@85 1927 func_convert_path_nix_to_cygwin ()
cannam@85 1928 {
cannam@85 1929 $opt_debug
cannam@85 1930 func_to_host_path_result="$1"
cannam@85 1931 if test -n "$1"; then
cannam@85 1932 # Remove leading and trailing path separator characters from
cannam@85 1933 # ARG. msys behavior is inconsistent here, cygpath turns them
cannam@85 1934 # into '.;' and ';.', and winepath ignores them completely.
cannam@85 1935 func_stripname : : "$1"
cannam@85 1936 func_to_host_path_tmp1=$func_stripname_result
cannam@85 1937 func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1"
cannam@85 1938 func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result"
cannam@85 1939 func_to_host_path_result="$func_cygpath_result"
cannam@85 1940 func_convert_path_check : : \
cannam@85 1941 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@85 1942 func_convert_path_front_back_pathsep ":*" "*:" : "$1"
cannam@85 1943 fi
cannam@85 1944 }
cannam@85 1945 # end func_convert_path_nix_to_cygwin
cannam@85 1946
cannam@85 1947
cannam@85 1948 # func_mode_compile arg...
cannam@85 1949 func_mode_compile ()
cannam@85 1950 {
cannam@85 1951 $opt_debug
cannam@85 1952 # Get the compilation command and the source file.
cannam@85 1953 base_compile=
cannam@85 1954 srcfile="$nonopt" # always keep a non-empty value in "srcfile"
cannam@85 1955 suppress_opt=yes
cannam@85 1956 suppress_output=
cannam@85 1957 arg_mode=normal
cannam@85 1958 libobj=
cannam@85 1959 later=
cannam@85 1960 pie_flag=
cannam@85 1961
cannam@85 1962 for arg
cannam@85 1963 do
cannam@85 1964 case $arg_mode in
cannam@85 1965 arg )
cannam@85 1966 # do not "continue". Instead, add this to base_compile
cannam@85 1967 lastarg="$arg"
cannam@85 1968 arg_mode=normal
cannam@85 1969 ;;
cannam@85 1970
cannam@85 1971 target )
cannam@85 1972 libobj="$arg"
cannam@85 1973 arg_mode=normal
cannam@85 1974 continue
cannam@85 1975 ;;
cannam@85 1976
cannam@85 1977 normal )
cannam@85 1978 # Accept any command-line options.
cannam@85 1979 case $arg in
cannam@85 1980 -o)
cannam@85 1981 test -n "$libobj" && \
cannam@85 1982 func_fatal_error "you cannot specify \`-o' more than once"
cannam@85 1983 arg_mode=target
cannam@85 1984 continue
cannam@85 1985 ;;
cannam@85 1986
cannam@85 1987 -pie | -fpie | -fPIE)
cannam@85 1988 func_append pie_flag " $arg"
cannam@85 1989 continue
cannam@85 1990 ;;
cannam@85 1991
cannam@85 1992 -shared | -static | -prefer-pic | -prefer-non-pic)
cannam@85 1993 func_append later " $arg"
cannam@85 1994 continue
cannam@85 1995 ;;
cannam@85 1996
cannam@85 1997 -no-suppress)
cannam@85 1998 suppress_opt=no
cannam@85 1999 continue
cannam@85 2000 ;;
cannam@85 2001
cannam@85 2002 -Xcompiler)
cannam@85 2003 arg_mode=arg # the next one goes into the "base_compile" arg list
cannam@85 2004 continue # The current "srcfile" will either be retained or
cannam@85 2005 ;; # replaced later. I would guess that would be a bug.
cannam@85 2006
cannam@85 2007 -Wc,*)
cannam@85 2008 func_stripname '-Wc,' '' "$arg"
cannam@85 2009 args=$func_stripname_result
cannam@85 2010 lastarg=
cannam@85 2011 save_ifs="$IFS"; IFS=','
cannam@85 2012 for arg in $args; do
cannam@85 2013 IFS="$save_ifs"
cannam@85 2014 func_append_quoted lastarg "$arg"
cannam@85 2015 done
cannam@85 2016 IFS="$save_ifs"
cannam@85 2017 func_stripname ' ' '' "$lastarg"
cannam@85 2018 lastarg=$func_stripname_result
cannam@85 2019
cannam@85 2020 # Add the arguments to base_compile.
cannam@85 2021 func_append base_compile " $lastarg"
cannam@85 2022 continue
cannam@85 2023 ;;
cannam@85 2024
cannam@85 2025 *)
cannam@85 2026 # Accept the current argument as the source file.
cannam@85 2027 # The previous "srcfile" becomes the current argument.
cannam@85 2028 #
cannam@85 2029 lastarg="$srcfile"
cannam@85 2030 srcfile="$arg"
cannam@85 2031 ;;
cannam@85 2032 esac # case $arg
cannam@85 2033 ;;
cannam@85 2034 esac # case $arg_mode
cannam@85 2035
cannam@85 2036 # Aesthetically quote the previous argument.
cannam@85 2037 func_append_quoted base_compile "$lastarg"
cannam@85 2038 done # for arg
cannam@85 2039
cannam@85 2040 case $arg_mode in
cannam@85 2041 arg)
cannam@85 2042 func_fatal_error "you must specify an argument for -Xcompile"
cannam@85 2043 ;;
cannam@85 2044 target)
cannam@85 2045 func_fatal_error "you must specify a target with \`-o'"
cannam@85 2046 ;;
cannam@85 2047 *)
cannam@85 2048 # Get the name of the library object.
cannam@85 2049 test -z "$libobj" && {
cannam@85 2050 func_basename "$srcfile"
cannam@85 2051 libobj="$func_basename_result"
cannam@85 2052 }
cannam@85 2053 ;;
cannam@85 2054 esac
cannam@85 2055
cannam@85 2056 # Recognize several different file suffixes.
cannam@85 2057 # If the user specifies -o file.o, it is replaced with file.lo
cannam@85 2058 case $libobj in
cannam@85 2059 *.[cCFSifmso] | \
cannam@85 2060 *.ada | *.adb | *.ads | *.asm | \
cannam@85 2061 *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \
cannam@85 2062 *.[fF][09]? | *.for | *.java | *.obj | *.sx | *.cu | *.cup)
cannam@85 2063 func_xform "$libobj"
cannam@85 2064 libobj=$func_xform_result
cannam@85 2065 ;;
cannam@85 2066 esac
cannam@85 2067
cannam@85 2068 case $libobj in
cannam@85 2069 *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;;
cannam@85 2070 *)
cannam@85 2071 func_fatal_error "cannot determine name of library object from \`$libobj'"
cannam@85 2072 ;;
cannam@85 2073 esac
cannam@85 2074
cannam@85 2075 func_infer_tag $base_compile
cannam@85 2076
cannam@85 2077 for arg in $later; do
cannam@85 2078 case $arg in
cannam@85 2079 -shared)
cannam@85 2080 test "$build_libtool_libs" != yes && \
cannam@85 2081 func_fatal_configuration "can not build a shared library"
cannam@85 2082 build_old_libs=no
cannam@85 2083 continue
cannam@85 2084 ;;
cannam@85 2085
cannam@85 2086 -static)
cannam@85 2087 build_libtool_libs=no
cannam@85 2088 build_old_libs=yes
cannam@85 2089 continue
cannam@85 2090 ;;
cannam@85 2091
cannam@85 2092 -prefer-pic)
cannam@85 2093 pic_mode=yes
cannam@85 2094 continue
cannam@85 2095 ;;
cannam@85 2096
cannam@85 2097 -prefer-non-pic)
cannam@85 2098 pic_mode=no
cannam@85 2099 continue
cannam@85 2100 ;;
cannam@85 2101 esac
cannam@85 2102 done
cannam@85 2103
cannam@85 2104 func_quote_for_eval "$libobj"
cannam@85 2105 test "X$libobj" != "X$func_quote_for_eval_result" \
cannam@85 2106 && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \
cannam@85 2107 && func_warning "libobj name \`$libobj' may not contain shell special characters."
cannam@85 2108 func_dirname_and_basename "$obj" "/" ""
cannam@85 2109 objname="$func_basename_result"
cannam@85 2110 xdir="$func_dirname_result"
cannam@85 2111 lobj=${xdir}$objdir/$objname
cannam@85 2112
cannam@85 2113 test -z "$base_compile" && \
cannam@85 2114 func_fatal_help "you must specify a compilation command"
cannam@85 2115
cannam@85 2116 # Delete any leftover library objects.
cannam@85 2117 if test "$build_old_libs" = yes; then
cannam@85 2118 removelist="$obj $lobj $libobj ${libobj}T"
cannam@85 2119 else
cannam@85 2120 removelist="$lobj $libobj ${libobj}T"
cannam@85 2121 fi
cannam@85 2122
cannam@85 2123 # On Cygwin there's no "real" PIC flag so we must build both object types
cannam@85 2124 case $host_os in
cannam@85 2125 cygwin* | mingw* | pw32* | os2* | cegcc*)
cannam@85 2126 pic_mode=default
cannam@85 2127 ;;
cannam@85 2128 esac
cannam@85 2129 if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then
cannam@85 2130 # non-PIC code in shared libraries is not supported
cannam@85 2131 pic_mode=default
cannam@85 2132 fi
cannam@85 2133
cannam@85 2134 # Calculate the filename of the output object if compiler does
cannam@85 2135 # not support -o with -c
cannam@85 2136 if test "$compiler_c_o" = no; then
cannam@85 2137 output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext}
cannam@85 2138 lockfile="$output_obj.lock"
cannam@85 2139 else
cannam@85 2140 output_obj=
cannam@85 2141 need_locks=no
cannam@85 2142 lockfile=
cannam@85 2143 fi
cannam@85 2144
cannam@85 2145 # Lock this critical section if it is needed
cannam@85 2146 # We use this script file to make the link, it avoids creating a new file
cannam@85 2147 if test "$need_locks" = yes; then
cannam@85 2148 until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do
cannam@85 2149 func_echo "Waiting for $lockfile to be removed"
cannam@85 2150 sleep 2
cannam@85 2151 done
cannam@85 2152 elif test "$need_locks" = warn; then
cannam@85 2153 if test -f "$lockfile"; then
cannam@85 2154 $ECHO "\
cannam@85 2155 *** ERROR, $lockfile exists and contains:
cannam@85 2156 `cat $lockfile 2>/dev/null`
cannam@85 2157
cannam@85 2158 This indicates that another process is trying to use the same
cannam@85 2159 temporary object file, and libtool could not work around it because
cannam@85 2160 your compiler does not support \`-c' and \`-o' together. If you
cannam@85 2161 repeat this compilation, it may succeed, by chance, but you had better
cannam@85 2162 avoid parallel builds (make -j) in this platform, or get a better
cannam@85 2163 compiler."
cannam@85 2164
cannam@85 2165 $opt_dry_run || $RM $removelist
cannam@85 2166 exit $EXIT_FAILURE
cannam@85 2167 fi
cannam@85 2168 func_append removelist " $output_obj"
cannam@85 2169 $ECHO "$srcfile" > "$lockfile"
cannam@85 2170 fi
cannam@85 2171
cannam@85 2172 $opt_dry_run || $RM $removelist
cannam@85 2173 func_append removelist " $lockfile"
cannam@85 2174 trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15
cannam@85 2175
cannam@85 2176 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32
cannam@85 2177 srcfile=$func_to_tool_file_result
cannam@85 2178 func_quote_for_eval "$srcfile"
cannam@85 2179 qsrcfile=$func_quote_for_eval_result
cannam@85 2180
cannam@85 2181 # Only build a PIC object if we are building libtool libraries.
cannam@85 2182 if test "$build_libtool_libs" = yes; then
cannam@85 2183 # Without this assignment, base_compile gets emptied.
cannam@85 2184 fbsd_hideous_sh_bug=$base_compile
cannam@85 2185
cannam@85 2186 if test "$pic_mode" != no; then
cannam@85 2187 command="$base_compile $qsrcfile $pic_flag"
cannam@85 2188 else
cannam@85 2189 # Don't build PIC code
cannam@85 2190 command="$base_compile $qsrcfile"
cannam@85 2191 fi
cannam@85 2192
cannam@85 2193 func_mkdir_p "$xdir$objdir"
cannam@85 2194
cannam@85 2195 if test -z "$output_obj"; then
cannam@85 2196 # Place PIC objects in $objdir
cannam@85 2197 func_append command " -o $lobj"
cannam@85 2198 fi
cannam@85 2199
cannam@85 2200 func_show_eval_locale "$command" \
cannam@85 2201 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE'
cannam@85 2202
cannam@85 2203 if test "$need_locks" = warn &&
cannam@85 2204 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
cannam@85 2205 $ECHO "\
cannam@85 2206 *** ERROR, $lockfile contains:
cannam@85 2207 `cat $lockfile 2>/dev/null`
cannam@85 2208
cannam@85 2209 but it should contain:
cannam@85 2210 $srcfile
cannam@85 2211
cannam@85 2212 This indicates that another process is trying to use the same
cannam@85 2213 temporary object file, and libtool could not work around it because
cannam@85 2214 your compiler does not support \`-c' and \`-o' together. If you
cannam@85 2215 repeat this compilation, it may succeed, by chance, but you had better
cannam@85 2216 avoid parallel builds (make -j) in this platform, or get a better
cannam@85 2217 compiler."
cannam@85 2218
cannam@85 2219 $opt_dry_run || $RM $removelist
cannam@85 2220 exit $EXIT_FAILURE
cannam@85 2221 fi
cannam@85 2222
cannam@85 2223 # Just move the object if needed, then go on to compile the next one
cannam@85 2224 if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then
cannam@85 2225 func_show_eval '$MV "$output_obj" "$lobj"' \
cannam@85 2226 'error=$?; $opt_dry_run || $RM $removelist; exit $error'
cannam@85 2227 fi
cannam@85 2228
cannam@85 2229 # Allow error messages only from the first compilation.
cannam@85 2230 if test "$suppress_opt" = yes; then
cannam@85 2231 suppress_output=' >/dev/null 2>&1'
cannam@85 2232 fi
cannam@85 2233 fi
cannam@85 2234
cannam@85 2235 # Only build a position-dependent object if we build old libraries.
cannam@85 2236 if test "$build_old_libs" = yes; then
cannam@85 2237 if test "$pic_mode" != yes; then
cannam@85 2238 # Don't build PIC code
cannam@85 2239 command="$base_compile $qsrcfile$pie_flag"
cannam@85 2240 else
cannam@85 2241 command="$base_compile $qsrcfile $pic_flag"
cannam@85 2242 fi
cannam@85 2243 if test "$compiler_c_o" = yes; then
cannam@85 2244 func_append command " -o $obj"
cannam@85 2245 fi
cannam@85 2246
cannam@85 2247 # Suppress compiler output if we already did a PIC compilation.
cannam@85 2248 func_append command "$suppress_output"
cannam@85 2249 func_show_eval_locale "$command" \
cannam@85 2250 '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE'
cannam@85 2251
cannam@85 2252 if test "$need_locks" = warn &&
cannam@85 2253 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
cannam@85 2254 $ECHO "\
cannam@85 2255 *** ERROR, $lockfile contains:
cannam@85 2256 `cat $lockfile 2>/dev/null`
cannam@85 2257
cannam@85 2258 but it should contain:
cannam@85 2259 $srcfile
cannam@85 2260
cannam@85 2261 This indicates that another process is trying to use the same
cannam@85 2262 temporary object file, and libtool could not work around it because
cannam@85 2263 your compiler does not support \`-c' and \`-o' together. If you
cannam@85 2264 repeat this compilation, it may succeed, by chance, but you had better
cannam@85 2265 avoid parallel builds (make -j) in this platform, or get a better
cannam@85 2266 compiler."
cannam@85 2267
cannam@85 2268 $opt_dry_run || $RM $removelist
cannam@85 2269 exit $EXIT_FAILURE
cannam@85 2270 fi
cannam@85 2271
cannam@85 2272 # Just move the object if needed
cannam@85 2273 if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then
cannam@85 2274 func_show_eval '$MV "$output_obj" "$obj"' \
cannam@85 2275 'error=$?; $opt_dry_run || $RM $removelist; exit $error'
cannam@85 2276 fi
cannam@85 2277 fi
cannam@85 2278
cannam@85 2279 $opt_dry_run || {
cannam@85 2280 func_write_libtool_object "$libobj" "$objdir/$objname" "$objname"
cannam@85 2281
cannam@85 2282 # Unlock the critical section if it was locked
cannam@85 2283 if test "$need_locks" != no; then
cannam@85 2284 removelist=$lockfile
cannam@85 2285 $RM "$lockfile"
cannam@85 2286 fi
cannam@85 2287 }
cannam@85 2288
cannam@85 2289 exit $EXIT_SUCCESS
cannam@85 2290 }
cannam@85 2291
cannam@85 2292 $opt_help || {
cannam@85 2293 test "$opt_mode" = compile && func_mode_compile ${1+"$@"}
cannam@85 2294 }
cannam@85 2295
cannam@85 2296 func_mode_help ()
cannam@85 2297 {
cannam@85 2298 # We need to display help for each of the modes.
cannam@85 2299 case $opt_mode in
cannam@85 2300 "")
cannam@85 2301 # Generic help is extracted from the usage comments
cannam@85 2302 # at the start of this file.
cannam@85 2303 func_help
cannam@85 2304 ;;
cannam@85 2305
cannam@85 2306 clean)
cannam@85 2307 $ECHO \
cannam@85 2308 "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
cannam@85 2309
cannam@85 2310 Remove files from the build directory.
cannam@85 2311
cannam@85 2312 RM is the name of the program to use to delete files associated with each FILE
cannam@85 2313 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
cannam@85 2314 to RM.
cannam@85 2315
cannam@85 2316 If FILE is a libtool library, object or program, all the files associated
cannam@85 2317 with it are deleted. Otherwise, only FILE itself is deleted using RM."
cannam@85 2318 ;;
cannam@85 2319
cannam@85 2320 compile)
cannam@85 2321 $ECHO \
cannam@85 2322 "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
cannam@85 2323
cannam@85 2324 Compile a source file into a libtool library object.
cannam@85 2325
cannam@85 2326 This mode accepts the following additional options:
cannam@85 2327
cannam@85 2328 -o OUTPUT-FILE set the output file name to OUTPUT-FILE
cannam@85 2329 -no-suppress do not suppress compiler output for multiple passes
cannam@85 2330 -prefer-pic try to build PIC objects only
cannam@85 2331 -prefer-non-pic try to build non-PIC objects only
cannam@85 2332 -shared do not build a \`.o' file suitable for static linking
cannam@85 2333 -static only build a \`.o' file suitable for static linking
cannam@85 2334 -Wc,FLAG pass FLAG directly to the compiler
cannam@85 2335
cannam@85 2336 COMPILE-COMMAND is a command to be used in creating a \`standard' object file
cannam@85 2337 from the given SOURCEFILE.
cannam@85 2338
cannam@85 2339 The output file name is determined by removing the directory component from
cannam@85 2340 SOURCEFILE, then substituting the C source code suffix \`.c' with the
cannam@85 2341 library object suffix, \`.lo'."
cannam@85 2342 ;;
cannam@85 2343
cannam@85 2344 execute)
cannam@85 2345 $ECHO \
cannam@85 2346 "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]...
cannam@85 2347
cannam@85 2348 Automatically set library path, then run a program.
cannam@85 2349
cannam@85 2350 This mode accepts the following additional options:
cannam@85 2351
cannam@85 2352 -dlopen FILE add the directory containing FILE to the library path
cannam@85 2353
cannam@85 2354 This mode sets the library path environment variable according to \`-dlopen'
cannam@85 2355 flags.
cannam@85 2356
cannam@85 2357 If any of the ARGS are libtool executable wrappers, then they are translated
cannam@85 2358 into their corresponding uninstalled binary, and any of their required library
cannam@85 2359 directories are added to the library path.
cannam@85 2360
cannam@85 2361 Then, COMMAND is executed, with ARGS as arguments."
cannam@85 2362 ;;
cannam@85 2363
cannam@85 2364 finish)
cannam@85 2365 $ECHO \
cannam@85 2366 "Usage: $progname [OPTION]... --mode=finish [LIBDIR]...
cannam@85 2367
cannam@85 2368 Complete the installation of libtool libraries.
cannam@85 2369
cannam@85 2370 Each LIBDIR is a directory that contains libtool libraries.
cannam@85 2371
cannam@85 2372 The commands that this mode executes may require superuser privileges. Use
cannam@85 2373 the \`--dry-run' option if you just want to see what would be executed."
cannam@85 2374 ;;
cannam@85 2375
cannam@85 2376 install)
cannam@85 2377 $ECHO \
cannam@85 2378 "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND...
cannam@85 2379
cannam@85 2380 Install executables or libraries.
cannam@85 2381
cannam@85 2382 INSTALL-COMMAND is the installation command. The first component should be
cannam@85 2383 either the \`install' or \`cp' program.
cannam@85 2384
cannam@85 2385 The following components of INSTALL-COMMAND are treated specially:
cannam@85 2386
cannam@85 2387 -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation
cannam@85 2388
cannam@85 2389 The rest of the components are interpreted as arguments to that command (only
cannam@85 2390 BSD-compatible install options are recognized)."
cannam@85 2391 ;;
cannam@85 2392
cannam@85 2393 link)
cannam@85 2394 $ECHO \
cannam@85 2395 "Usage: $progname [OPTION]... --mode=link LINK-COMMAND...
cannam@85 2396
cannam@85 2397 Link object files or libraries together to form another library, or to
cannam@85 2398 create an executable program.
cannam@85 2399
cannam@85 2400 LINK-COMMAND is a command using the C compiler that you would use to create
cannam@85 2401 a program from several object files.
cannam@85 2402
cannam@85 2403 The following components of LINK-COMMAND are treated specially:
cannam@85 2404
cannam@85 2405 -all-static do not do any dynamic linking at all
cannam@85 2406 -avoid-version do not add a version suffix if possible
cannam@85 2407 -bindir BINDIR specify path to binaries directory (for systems where
cannam@85 2408 libraries must be found in the PATH setting at runtime)
cannam@85 2409 -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
cannam@85 2410 -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols
cannam@85 2411 -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
cannam@85 2412 -export-symbols SYMFILE
cannam@85 2413 try to export only the symbols listed in SYMFILE
cannam@85 2414 -export-symbols-regex REGEX
cannam@85 2415 try to export only the symbols matching REGEX
cannam@85 2416 -LLIBDIR search LIBDIR for required installed libraries
cannam@85 2417 -lNAME OUTPUT-FILE requires the installed library libNAME
cannam@85 2418 -module build a library that can dlopened
cannam@85 2419 -no-fast-install disable the fast-install mode
cannam@85 2420 -no-install link a not-installable executable
cannam@85 2421 -no-undefined declare that a library does not refer to external symbols
cannam@85 2422 -o OUTPUT-FILE create OUTPUT-FILE from the specified objects
cannam@85 2423 -objectlist FILE Use a list of object files found in FILE to specify objects
cannam@85 2424 -precious-files-regex REGEX
cannam@85 2425 don't remove output files matching REGEX
cannam@85 2426 -release RELEASE specify package release information
cannam@85 2427 -rpath LIBDIR the created library will eventually be installed in LIBDIR
cannam@85 2428 -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries
cannam@85 2429 -shared only do dynamic linking of libtool libraries
cannam@85 2430 -shrext SUFFIX override the standard shared library file extension
cannam@85 2431 -static do not do any dynamic linking of uninstalled libtool libraries
cannam@85 2432 -static-libtool-libs
cannam@85 2433 do not do any dynamic linking of libtool libraries
cannam@85 2434 -version-info CURRENT[:REVISION[:AGE]]
cannam@85 2435 specify library version info [each variable defaults to 0]
cannam@85 2436 -weak LIBNAME declare that the target provides the LIBNAME interface
cannam@85 2437 -Wc,FLAG
cannam@85 2438 -Xcompiler FLAG pass linker-specific FLAG directly to the compiler
cannam@85 2439 -Wl,FLAG
cannam@85 2440 -Xlinker FLAG pass linker-specific FLAG directly to the linker
cannam@85 2441 -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC)
cannam@85 2442
cannam@85 2443 All other options (arguments beginning with \`-') are ignored.
cannam@85 2444
cannam@85 2445 Every other argument is treated as a filename. Files ending in \`.la' are
cannam@85 2446 treated as uninstalled libtool libraries, other files are standard or library
cannam@85 2447 object files.
cannam@85 2448
cannam@85 2449 If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
cannam@85 2450 only library objects (\`.lo' files) may be specified, and \`-rpath' is
cannam@85 2451 required, except when creating a convenience library.
cannam@85 2452
cannam@85 2453 If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
cannam@85 2454 using \`ar' and \`ranlib', or on Windows using \`lib'.
cannam@85 2455
cannam@85 2456 If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
cannam@85 2457 is created, otherwise an executable program is created."
cannam@85 2458 ;;
cannam@85 2459
cannam@85 2460 uninstall)
cannam@85 2461 $ECHO \
cannam@85 2462 "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
cannam@85 2463
cannam@85 2464 Remove libraries from an installation directory.
cannam@85 2465
cannam@85 2466 RM is the name of the program to use to delete files associated with each FILE
cannam@85 2467 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
cannam@85 2468 to RM.
cannam@85 2469
cannam@85 2470 If FILE is a libtool library, all the files associated with it are deleted.
cannam@85 2471 Otherwise, only FILE itself is deleted using RM."
cannam@85 2472 ;;
cannam@85 2473
cannam@85 2474 *)
cannam@85 2475 func_fatal_help "invalid operation mode \`$opt_mode'"
cannam@85 2476 ;;
cannam@85 2477 esac
cannam@85 2478
cannam@85 2479 echo
cannam@85 2480 $ECHO "Try \`$progname --help' for more information about other modes."
cannam@85 2481 }
cannam@85 2482
cannam@85 2483 # Now that we've collected a possible --mode arg, show help if necessary
cannam@85 2484 if $opt_help; then
cannam@85 2485 if test "$opt_help" = :; then
cannam@85 2486 func_mode_help
cannam@85 2487 else
cannam@85 2488 {
cannam@85 2489 func_help noexit
cannam@85 2490 for opt_mode in compile link execute install finish uninstall clean; do
cannam@85 2491 func_mode_help
cannam@85 2492 done
cannam@85 2493 } | sed -n '1p; 2,$s/^Usage:/ or: /p'
cannam@85 2494 {
cannam@85 2495 func_help noexit
cannam@85 2496 for opt_mode in compile link execute install finish uninstall clean; do
cannam@85 2497 echo
cannam@85 2498 func_mode_help
cannam@85 2499 done
cannam@85 2500 } |
cannam@85 2501 sed '1d
cannam@85 2502 /^When reporting/,/^Report/{
cannam@85 2503 H
cannam@85 2504 d
cannam@85 2505 }
cannam@85 2506 $x
cannam@85 2507 /information about other modes/d
cannam@85 2508 /more detailed .*MODE/d
cannam@85 2509 s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/'
cannam@85 2510 fi
cannam@85 2511 exit $?
cannam@85 2512 fi
cannam@85 2513
cannam@85 2514
cannam@85 2515 # func_mode_execute arg...
cannam@85 2516 func_mode_execute ()
cannam@85 2517 {
cannam@85 2518 $opt_debug
cannam@85 2519 # The first argument is the command name.
cannam@85 2520 cmd="$nonopt"
cannam@85 2521 test -z "$cmd" && \
cannam@85 2522 func_fatal_help "you must specify a COMMAND"
cannam@85 2523
cannam@85 2524 # Handle -dlopen flags immediately.
cannam@85 2525 for file in $opt_dlopen; do
cannam@85 2526 test -f "$file" \
cannam@85 2527 || func_fatal_help "\`$file' is not a file"
cannam@85 2528
cannam@85 2529 dir=
cannam@85 2530 case $file in
cannam@85 2531 *.la)
cannam@85 2532 func_resolve_sysroot "$file"
cannam@85 2533 file=$func_resolve_sysroot_result
cannam@85 2534
cannam@85 2535 # Check to see that this really is a libtool archive.
cannam@85 2536 func_lalib_unsafe_p "$file" \
cannam@85 2537 || func_fatal_help "\`$lib' is not a valid libtool archive"
cannam@85 2538
cannam@85 2539 # Read the libtool library.
cannam@85 2540 dlname=
cannam@85 2541 library_names=
cannam@85 2542 func_source "$file"
cannam@85 2543
cannam@85 2544 # Skip this library if it cannot be dlopened.
cannam@85 2545 if test -z "$dlname"; then
cannam@85 2546 # Warn if it was a shared library.
cannam@85 2547 test -n "$library_names" && \
cannam@85 2548 func_warning "\`$file' was not linked with \`-export-dynamic'"
cannam@85 2549 continue
cannam@85 2550 fi
cannam@85 2551
cannam@85 2552 func_dirname "$file" "" "."
cannam@85 2553 dir="$func_dirname_result"
cannam@85 2554
cannam@85 2555 if test -f "$dir/$objdir/$dlname"; then
cannam@85 2556 func_append dir "/$objdir"
cannam@85 2557 else
cannam@85 2558 if test ! -f "$dir/$dlname"; then
cannam@85 2559 func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'"
cannam@85 2560 fi
cannam@85 2561 fi
cannam@85 2562 ;;
cannam@85 2563
cannam@85 2564 *.lo)
cannam@85 2565 # Just add the directory containing the .lo file.
cannam@85 2566 func_dirname "$file" "" "."
cannam@85 2567 dir="$func_dirname_result"
cannam@85 2568 ;;
cannam@85 2569
cannam@85 2570 *)
cannam@85 2571 func_warning "\`-dlopen' is ignored for non-libtool libraries and objects"
cannam@85 2572 continue
cannam@85 2573 ;;
cannam@85 2574 esac
cannam@85 2575
cannam@85 2576 # Get the absolute pathname.
cannam@85 2577 absdir=`cd "$dir" && pwd`
cannam@85 2578 test -n "$absdir" && dir="$absdir"
cannam@85 2579
cannam@85 2580 # Now add the directory to shlibpath_var.
cannam@85 2581 if eval "test -z \"\$$shlibpath_var\""; then
cannam@85 2582 eval "$shlibpath_var=\"\$dir\""
cannam@85 2583 else
cannam@85 2584 eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
cannam@85 2585 fi
cannam@85 2586 done
cannam@85 2587
cannam@85 2588 # This variable tells wrapper scripts just to set shlibpath_var
cannam@85 2589 # rather than running their programs.
cannam@85 2590 libtool_execute_magic="$magic"
cannam@85 2591
cannam@85 2592 # Check if any of the arguments is a wrapper script.
cannam@85 2593 args=
cannam@85 2594 for file
cannam@85 2595 do
cannam@85 2596 case $file in
cannam@85 2597 -* | *.la | *.lo ) ;;
cannam@85 2598 *)
cannam@85 2599 # Do a test to see if this is really a libtool program.
cannam@85 2600 if func_ltwrapper_script_p "$file"; then
cannam@85 2601 func_source "$file"
cannam@85 2602 # Transform arg to wrapped name.
cannam@85 2603 file="$progdir/$program"
cannam@85 2604 elif func_ltwrapper_executable_p "$file"; then
cannam@85 2605 func_ltwrapper_scriptname "$file"
cannam@85 2606 func_source "$func_ltwrapper_scriptname_result"
cannam@85 2607 # Transform arg to wrapped name.
cannam@85 2608 file="$progdir/$program"
cannam@85 2609 fi
cannam@85 2610 ;;
cannam@85 2611 esac
cannam@85 2612 # Quote arguments (to preserve shell metacharacters).
cannam@85 2613 func_append_quoted args "$file"
cannam@85 2614 done
cannam@85 2615
cannam@85 2616 if test "X$opt_dry_run" = Xfalse; then
cannam@85 2617 if test -n "$shlibpath_var"; then
cannam@85 2618 # Export the shlibpath_var.
cannam@85 2619 eval "export $shlibpath_var"
cannam@85 2620 fi
cannam@85 2621
cannam@85 2622 # Restore saved environment variables
cannam@85 2623 for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
cannam@85 2624 do
cannam@85 2625 eval "if test \"\${save_$lt_var+set}\" = set; then
cannam@85 2626 $lt_var=\$save_$lt_var; export $lt_var
cannam@85 2627 else
cannam@85 2628 $lt_unset $lt_var
cannam@85 2629 fi"
cannam@85 2630 done
cannam@85 2631
cannam@85 2632 # Now prepare to actually exec the command.
cannam@85 2633 exec_cmd="\$cmd$args"
cannam@85 2634 else
cannam@85 2635 # Display what would be done.
cannam@85 2636 if test -n "$shlibpath_var"; then
cannam@85 2637 eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\""
cannam@85 2638 echo "export $shlibpath_var"
cannam@85 2639 fi
cannam@85 2640 $ECHO "$cmd$args"
cannam@85 2641 exit $EXIT_SUCCESS
cannam@85 2642 fi
cannam@85 2643 }
cannam@85 2644
cannam@85 2645 test "$opt_mode" = execute && func_mode_execute ${1+"$@"}
cannam@85 2646
cannam@85 2647
cannam@85 2648 # func_mode_finish arg...
cannam@85 2649 func_mode_finish ()
cannam@85 2650 {
cannam@85 2651 $opt_debug
cannam@85 2652 libs=
cannam@85 2653 libdirs=
cannam@85 2654 admincmds=
cannam@85 2655
cannam@85 2656 for opt in "$nonopt" ${1+"$@"}
cannam@85 2657 do
cannam@85 2658 if test -d "$opt"; then
cannam@85 2659 func_append libdirs " $opt"
cannam@85 2660
cannam@85 2661 elif test -f "$opt"; then
cannam@85 2662 if func_lalib_unsafe_p "$opt"; then
cannam@85 2663 func_append libs " $opt"
cannam@85 2664 else
cannam@85 2665 func_warning "\`$opt' is not a valid libtool archive"
cannam@85 2666 fi
cannam@85 2667
cannam@85 2668 else
cannam@85 2669 func_fatal_error "invalid argument \`$opt'"
cannam@85 2670 fi
cannam@85 2671 done
cannam@85 2672
cannam@85 2673 if test -n "$libs"; then
cannam@85 2674 if test -n "$lt_sysroot"; then
cannam@85 2675 sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"`
cannam@85 2676 sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;"
cannam@85 2677 else
cannam@85 2678 sysroot_cmd=
cannam@85 2679 fi
cannam@85 2680
cannam@85 2681 # Remove sysroot references
cannam@85 2682 if $opt_dry_run; then
cannam@85 2683 for lib in $libs; do
cannam@85 2684 echo "removing references to $lt_sysroot and \`=' prefixes from $lib"
cannam@85 2685 done
cannam@85 2686 else
cannam@85 2687 tmpdir=`func_mktempdir`
cannam@85 2688 for lib in $libs; do
cannam@85 2689 sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \
cannam@85 2690 > $tmpdir/tmp-la
cannam@85 2691 mv -f $tmpdir/tmp-la $lib
cannam@85 2692 done
cannam@85 2693 ${RM}r "$tmpdir"
cannam@85 2694 fi
cannam@85 2695 fi
cannam@85 2696
cannam@85 2697 if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
cannam@85 2698 for libdir in $libdirs; do
cannam@85 2699 if test -n "$finish_cmds"; then
cannam@85 2700 # Do each command in the finish commands.
cannam@85 2701 func_execute_cmds "$finish_cmds" 'admincmds="$admincmds
cannam@85 2702 '"$cmd"'"'
cannam@85 2703 fi
cannam@85 2704 if test -n "$finish_eval"; then
cannam@85 2705 # Do the single finish_eval.
cannam@85 2706 eval cmds=\"$finish_eval\"
cannam@85 2707 $opt_dry_run || eval "$cmds" || func_append admincmds "
cannam@85 2708 $cmds"
cannam@85 2709 fi
cannam@85 2710 done
cannam@85 2711 fi
cannam@85 2712
cannam@85 2713 # Exit here if they wanted silent mode.
cannam@85 2714 $opt_silent && exit $EXIT_SUCCESS
cannam@85 2715
cannam@85 2716 if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
cannam@85 2717 echo "----------------------------------------------------------------------"
cannam@85 2718 echo "Libraries have been installed in:"
cannam@85 2719 for libdir in $libdirs; do
cannam@85 2720 $ECHO " $libdir"
cannam@85 2721 done
cannam@85 2722 echo
cannam@85 2723 echo "If you ever happen to want to link against installed libraries"
cannam@85 2724 echo "in a given directory, LIBDIR, you must either use libtool, and"
cannam@85 2725 echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
cannam@85 2726 echo "flag during linking and do at least one of the following:"
cannam@85 2727 if test -n "$shlibpath_var"; then
cannam@85 2728 echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
cannam@85 2729 echo " during execution"
cannam@85 2730 fi
cannam@85 2731 if test -n "$runpath_var"; then
cannam@85 2732 echo " - add LIBDIR to the \`$runpath_var' environment variable"
cannam@85 2733 echo " during linking"
cannam@85 2734 fi
cannam@85 2735 if test -n "$hardcode_libdir_flag_spec"; then
cannam@85 2736 libdir=LIBDIR
cannam@85 2737 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@85 2738
cannam@85 2739 $ECHO " - use the \`$flag' linker flag"
cannam@85 2740 fi
cannam@85 2741 if test -n "$admincmds"; then
cannam@85 2742 $ECHO " - have your system administrator run these commands:$admincmds"
cannam@85 2743 fi
cannam@85 2744 if test -f /etc/ld.so.conf; then
cannam@85 2745 echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
cannam@85 2746 fi
cannam@85 2747 echo
cannam@85 2748
cannam@85 2749 echo "See any operating system documentation about shared libraries for"
cannam@85 2750 case $host in
cannam@85 2751 solaris2.[6789]|solaris2.1[0-9])
cannam@85 2752 echo "more information, such as the ld(1), crle(1) and ld.so(8) manual"
cannam@85 2753 echo "pages."
cannam@85 2754 ;;
cannam@85 2755 *)
cannam@85 2756 echo "more information, such as the ld(1) and ld.so(8) manual pages."
cannam@85 2757 ;;
cannam@85 2758 esac
cannam@85 2759 echo "----------------------------------------------------------------------"
cannam@85 2760 fi
cannam@85 2761 exit $EXIT_SUCCESS
cannam@85 2762 }
cannam@85 2763
cannam@85 2764 test "$opt_mode" = finish && func_mode_finish ${1+"$@"}
cannam@85 2765
cannam@85 2766
cannam@85 2767 # func_mode_install arg...
cannam@85 2768 func_mode_install ()
cannam@85 2769 {
cannam@85 2770 $opt_debug
cannam@85 2771 # There may be an optional sh(1) argument at the beginning of
cannam@85 2772 # install_prog (especially on Windows NT).
cannam@85 2773 if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
cannam@85 2774 # Allow the use of GNU shtool's install command.
cannam@85 2775 case $nonopt in *shtool*) :;; *) false;; esac; then
cannam@85 2776 # Aesthetically quote it.
cannam@85 2777 func_quote_for_eval "$nonopt"
cannam@85 2778 install_prog="$func_quote_for_eval_result "
cannam@85 2779 arg=$1
cannam@85 2780 shift
cannam@85 2781 else
cannam@85 2782 install_prog=
cannam@85 2783 arg=$nonopt
cannam@85 2784 fi
cannam@85 2785
cannam@85 2786 # The real first argument should be the name of the installation program.
cannam@85 2787 # Aesthetically quote it.
cannam@85 2788 func_quote_for_eval "$arg"
cannam@85 2789 func_append install_prog "$func_quote_for_eval_result"
cannam@85 2790 install_shared_prog=$install_prog
cannam@85 2791 case " $install_prog " in
cannam@85 2792 *[\\\ /]cp\ *) install_cp=: ;;
cannam@85 2793 *) install_cp=false ;;
cannam@85 2794 esac
cannam@85 2795
cannam@85 2796 # We need to accept at least all the BSD install flags.
cannam@85 2797 dest=
cannam@85 2798 files=
cannam@85 2799 opts=
cannam@85 2800 prev=
cannam@85 2801 install_type=
cannam@85 2802 isdir=no
cannam@85 2803 stripme=
cannam@85 2804 no_mode=:
cannam@85 2805 for arg
cannam@85 2806 do
cannam@85 2807 arg2=
cannam@85 2808 if test -n "$dest"; then
cannam@85 2809 func_append files " $dest"
cannam@85 2810 dest=$arg
cannam@85 2811 continue
cannam@85 2812 fi
cannam@85 2813
cannam@85 2814 case $arg in
cannam@85 2815 -d) isdir=yes ;;
cannam@85 2816 -f)
cannam@85 2817 if $install_cp; then :; else
cannam@85 2818 prev=$arg
cannam@85 2819 fi
cannam@85 2820 ;;
cannam@85 2821 -g | -m | -o)
cannam@85 2822 prev=$arg
cannam@85 2823 ;;
cannam@85 2824 -s)
cannam@85 2825 stripme=" -s"
cannam@85 2826 continue
cannam@85 2827 ;;
cannam@85 2828 -*)
cannam@85 2829 ;;
cannam@85 2830 *)
cannam@85 2831 # If the previous option needed an argument, then skip it.
cannam@85 2832 if test -n "$prev"; then
cannam@85 2833 if test "x$prev" = x-m && test -n "$install_override_mode"; then
cannam@85 2834 arg2=$install_override_mode
cannam@85 2835 no_mode=false
cannam@85 2836 fi
cannam@85 2837 prev=
cannam@85 2838 else
cannam@85 2839 dest=$arg
cannam@85 2840 continue
cannam@85 2841 fi
cannam@85 2842 ;;
cannam@85 2843 esac
cannam@85 2844
cannam@85 2845 # Aesthetically quote the argument.
cannam@85 2846 func_quote_for_eval "$arg"
cannam@85 2847 func_append install_prog " $func_quote_for_eval_result"
cannam@85 2848 if test -n "$arg2"; then
cannam@85 2849 func_quote_for_eval "$arg2"
cannam@85 2850 fi
cannam@85 2851 func_append install_shared_prog " $func_quote_for_eval_result"
cannam@85 2852 done
cannam@85 2853
cannam@85 2854 test -z "$install_prog" && \
cannam@85 2855 func_fatal_help "you must specify an install program"
cannam@85 2856
cannam@85 2857 test -n "$prev" && \
cannam@85 2858 func_fatal_help "the \`$prev' option requires an argument"
cannam@85 2859
cannam@85 2860 if test -n "$install_override_mode" && $no_mode; then
cannam@85 2861 if $install_cp; then :; else
cannam@85 2862 func_quote_for_eval "$install_override_mode"
cannam@85 2863 func_append install_shared_prog " -m $func_quote_for_eval_result"
cannam@85 2864 fi
cannam@85 2865 fi
cannam@85 2866
cannam@85 2867 if test -z "$files"; then
cannam@85 2868 if test -z "$dest"; then
cannam@85 2869 func_fatal_help "no file or destination specified"
cannam@85 2870 else
cannam@85 2871 func_fatal_help "you must specify a destination"
cannam@85 2872 fi
cannam@85 2873 fi
cannam@85 2874
cannam@85 2875 # Strip any trailing slash from the destination.
cannam@85 2876 func_stripname '' '/' "$dest"
cannam@85 2877 dest=$func_stripname_result
cannam@85 2878
cannam@85 2879 # Check to see that the destination is a directory.
cannam@85 2880 test -d "$dest" && isdir=yes
cannam@85 2881 if test "$isdir" = yes; then
cannam@85 2882 destdir="$dest"
cannam@85 2883 destname=
cannam@85 2884 else
cannam@85 2885 func_dirname_and_basename "$dest" "" "."
cannam@85 2886 destdir="$func_dirname_result"
cannam@85 2887 destname="$func_basename_result"
cannam@85 2888
cannam@85 2889 # Not a directory, so check to see that there is only one file specified.
cannam@85 2890 set dummy $files; shift
cannam@85 2891 test "$#" -gt 1 && \
cannam@85 2892 func_fatal_help "\`$dest' is not a directory"
cannam@85 2893 fi
cannam@85 2894 case $destdir in
cannam@85 2895 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@85 2896 *)
cannam@85 2897 for file in $files; do
cannam@85 2898 case $file in
cannam@85 2899 *.lo) ;;
cannam@85 2900 *)
cannam@85 2901 func_fatal_help "\`$destdir' must be an absolute directory name"
cannam@85 2902 ;;
cannam@85 2903 esac
cannam@85 2904 done
cannam@85 2905 ;;
cannam@85 2906 esac
cannam@85 2907
cannam@85 2908 # This variable tells wrapper scripts just to set variables rather
cannam@85 2909 # than running their programs.
cannam@85 2910 libtool_install_magic="$magic"
cannam@85 2911
cannam@85 2912 staticlibs=
cannam@85 2913 future_libdirs=
cannam@85 2914 current_libdirs=
cannam@85 2915 for file in $files; do
cannam@85 2916
cannam@85 2917 # Do each installation.
cannam@85 2918 case $file in
cannam@85 2919 *.$libext)
cannam@85 2920 # Do the static libraries later.
cannam@85 2921 func_append staticlibs " $file"
cannam@85 2922 ;;
cannam@85 2923
cannam@85 2924 *.la)
cannam@85 2925 func_resolve_sysroot "$file"
cannam@85 2926 file=$func_resolve_sysroot_result
cannam@85 2927
cannam@85 2928 # Check to see that this really is a libtool archive.
cannam@85 2929 func_lalib_unsafe_p "$file" \
cannam@85 2930 || func_fatal_help "\`$file' is not a valid libtool archive"
cannam@85 2931
cannam@85 2932 library_names=
cannam@85 2933 old_library=
cannam@85 2934 relink_command=
cannam@85 2935 func_source "$file"
cannam@85 2936
cannam@85 2937 # Add the libdir to current_libdirs if it is the destination.
cannam@85 2938 if test "X$destdir" = "X$libdir"; then
cannam@85 2939 case "$current_libdirs " in
cannam@85 2940 *" $libdir "*) ;;
cannam@85 2941 *) func_append current_libdirs " $libdir" ;;
cannam@85 2942 esac
cannam@85 2943 else
cannam@85 2944 # Note the libdir as a future libdir.
cannam@85 2945 case "$future_libdirs " in
cannam@85 2946 *" $libdir "*) ;;
cannam@85 2947 *) func_append future_libdirs " $libdir" ;;
cannam@85 2948 esac
cannam@85 2949 fi
cannam@85 2950
cannam@85 2951 func_dirname "$file" "/" ""
cannam@85 2952 dir="$func_dirname_result"
cannam@85 2953 func_append dir "$objdir"
cannam@85 2954
cannam@85 2955 if test -n "$relink_command"; then
cannam@85 2956 # Determine the prefix the user has applied to our future dir.
cannam@85 2957 inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"`
cannam@85 2958
cannam@85 2959 # Don't allow the user to place us outside of our expected
cannam@85 2960 # location b/c this prevents finding dependent libraries that
cannam@85 2961 # are installed to the same prefix.
cannam@85 2962 # At present, this check doesn't affect windows .dll's that
cannam@85 2963 # are installed into $libdir/../bin (currently, that works fine)
cannam@85 2964 # but it's something to keep an eye on.
cannam@85 2965 test "$inst_prefix_dir" = "$destdir" && \
cannam@85 2966 func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir"
cannam@85 2967
cannam@85 2968 if test -n "$inst_prefix_dir"; then
cannam@85 2969 # Stick the inst_prefix_dir data into the link command.
cannam@85 2970 relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
cannam@85 2971 else
cannam@85 2972 relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
cannam@85 2973 fi
cannam@85 2974
cannam@85 2975 func_warning "relinking \`$file'"
cannam@85 2976 func_show_eval "$relink_command" \
cannam@85 2977 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"'
cannam@85 2978 fi
cannam@85 2979
cannam@85 2980 # See the names of the shared library.
cannam@85 2981 set dummy $library_names; shift
cannam@85 2982 if test -n "$1"; then
cannam@85 2983 realname="$1"
cannam@85 2984 shift
cannam@85 2985
cannam@85 2986 srcname="$realname"
cannam@85 2987 test -n "$relink_command" && srcname="$realname"T
cannam@85 2988
cannam@85 2989 # Install the shared library and build the symlinks.
cannam@85 2990 func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \
cannam@85 2991 'exit $?'
cannam@85 2992 tstripme="$stripme"
cannam@85 2993 case $host_os in
cannam@85 2994 cygwin* | mingw* | pw32* | cegcc*)
cannam@85 2995 case $realname in
cannam@85 2996 *.dll.a)
cannam@85 2997 tstripme=""
cannam@85 2998 ;;
cannam@85 2999 esac
cannam@85 3000 ;;
cannam@85 3001 esac
cannam@85 3002 if test -n "$tstripme" && test -n "$striplib"; then
cannam@85 3003 func_show_eval "$striplib $destdir/$realname" 'exit $?'
cannam@85 3004 fi
cannam@85 3005
cannam@85 3006 if test "$#" -gt 0; then
cannam@85 3007 # Delete the old symlinks, and create new ones.
cannam@85 3008 # Try `ln -sf' first, because the `ln' binary might depend on
cannam@85 3009 # the symlink we replace! Solaris /bin/ln does not understand -f,
cannam@85 3010 # so we also need to try rm && ln -s.
cannam@85 3011 for linkname
cannam@85 3012 do
cannam@85 3013 test "$linkname" != "$realname" \
cannam@85 3014 && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })"
cannam@85 3015 done
cannam@85 3016 fi
cannam@85 3017
cannam@85 3018 # Do each command in the postinstall commands.
cannam@85 3019 lib="$destdir/$realname"
cannam@85 3020 func_execute_cmds "$postinstall_cmds" 'exit $?'
cannam@85 3021 fi
cannam@85 3022
cannam@85 3023 # Install the pseudo-library for information purposes.
cannam@85 3024 func_basename "$file"
cannam@85 3025 name="$func_basename_result"
cannam@85 3026 instname="$dir/$name"i
cannam@85 3027 func_show_eval "$install_prog $instname $destdir/$name" 'exit $?'
cannam@85 3028
cannam@85 3029 # Maybe install the static library, too.
cannam@85 3030 test -n "$old_library" && func_append staticlibs " $dir/$old_library"
cannam@85 3031 ;;
cannam@85 3032
cannam@85 3033 *.lo)
cannam@85 3034 # Install (i.e. copy) a libtool object.
cannam@85 3035
cannam@85 3036 # Figure out destination file name, if it wasn't already specified.
cannam@85 3037 if test -n "$destname"; then
cannam@85 3038 destfile="$destdir/$destname"
cannam@85 3039 else
cannam@85 3040 func_basename "$file"
cannam@85 3041 destfile="$func_basename_result"
cannam@85 3042 destfile="$destdir/$destfile"
cannam@85 3043 fi
cannam@85 3044
cannam@85 3045 # Deduce the name of the destination old-style object file.
cannam@85 3046 case $destfile in
cannam@85 3047 *.lo)
cannam@85 3048 func_lo2o "$destfile"
cannam@85 3049 staticdest=$func_lo2o_result
cannam@85 3050 ;;
cannam@85 3051 *.$objext)
cannam@85 3052 staticdest="$destfile"
cannam@85 3053 destfile=
cannam@85 3054 ;;
cannam@85 3055 *)
cannam@85 3056 func_fatal_help "cannot copy a libtool object to \`$destfile'"
cannam@85 3057 ;;
cannam@85 3058 esac
cannam@85 3059
cannam@85 3060 # Install the libtool object if requested.
cannam@85 3061 test -n "$destfile" && \
cannam@85 3062 func_show_eval "$install_prog $file $destfile" 'exit $?'
cannam@85 3063
cannam@85 3064 # Install the old object if enabled.
cannam@85 3065 if test "$build_old_libs" = yes; then
cannam@85 3066 # Deduce the name of the old-style object file.
cannam@85 3067 func_lo2o "$file"
cannam@85 3068 staticobj=$func_lo2o_result
cannam@85 3069 func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?'
cannam@85 3070 fi
cannam@85 3071 exit $EXIT_SUCCESS
cannam@85 3072 ;;
cannam@85 3073
cannam@85 3074 *)
cannam@85 3075 # Figure out destination file name, if it wasn't already specified.
cannam@85 3076 if test -n "$destname"; then
cannam@85 3077 destfile="$destdir/$destname"
cannam@85 3078 else
cannam@85 3079 func_basename "$file"
cannam@85 3080 destfile="$func_basename_result"
cannam@85 3081 destfile="$destdir/$destfile"
cannam@85 3082 fi
cannam@85 3083
cannam@85 3084 # If the file is missing, and there is a .exe on the end, strip it
cannam@85 3085 # because it is most likely a libtool script we actually want to
cannam@85 3086 # install
cannam@85 3087 stripped_ext=""
cannam@85 3088 case $file in
cannam@85 3089 *.exe)
cannam@85 3090 if test ! -f "$file"; then
cannam@85 3091 func_stripname '' '.exe' "$file"
cannam@85 3092 file=$func_stripname_result
cannam@85 3093 stripped_ext=".exe"
cannam@85 3094 fi
cannam@85 3095 ;;
cannam@85 3096 esac
cannam@85 3097
cannam@85 3098 # Do a test to see if this is really a libtool program.
cannam@85 3099 case $host in
cannam@85 3100 *cygwin* | *mingw*)
cannam@85 3101 if func_ltwrapper_executable_p "$file"; then
cannam@85 3102 func_ltwrapper_scriptname "$file"
cannam@85 3103 wrapper=$func_ltwrapper_scriptname_result
cannam@85 3104 else
cannam@85 3105 func_stripname '' '.exe' "$file"
cannam@85 3106 wrapper=$func_stripname_result
cannam@85 3107 fi
cannam@85 3108 ;;
cannam@85 3109 *)
cannam@85 3110 wrapper=$file
cannam@85 3111 ;;
cannam@85 3112 esac
cannam@85 3113 if func_ltwrapper_script_p "$wrapper"; then
cannam@85 3114 notinst_deplibs=
cannam@85 3115 relink_command=
cannam@85 3116
cannam@85 3117 func_source "$wrapper"
cannam@85 3118
cannam@85 3119 # Check the variables that should have been set.
cannam@85 3120 test -z "$generated_by_libtool_version" && \
cannam@85 3121 func_fatal_error "invalid libtool wrapper script \`$wrapper'"
cannam@85 3122
cannam@85 3123 finalize=yes
cannam@85 3124 for lib in $notinst_deplibs; do
cannam@85 3125 # Check to see that each library is installed.
cannam@85 3126 libdir=
cannam@85 3127 if test -f "$lib"; then
cannam@85 3128 func_source "$lib"
cannam@85 3129 fi
cannam@85 3130 libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test
cannam@85 3131 if test -n "$libdir" && test ! -f "$libfile"; then
cannam@85 3132 func_warning "\`$lib' has not been installed in \`$libdir'"
cannam@85 3133 finalize=no
cannam@85 3134 fi
cannam@85 3135 done
cannam@85 3136
cannam@85 3137 relink_command=
cannam@85 3138 func_source "$wrapper"
cannam@85 3139
cannam@85 3140 outputname=
cannam@85 3141 if test "$fast_install" = no && test -n "$relink_command"; then
cannam@85 3142 $opt_dry_run || {
cannam@85 3143 if test "$finalize" = yes; then
cannam@85 3144 tmpdir=`func_mktempdir`
cannam@85 3145 func_basename "$file$stripped_ext"
cannam@85 3146 file="$func_basename_result"
cannam@85 3147 outputname="$tmpdir/$file"
cannam@85 3148 # Replace the output file specification.
cannam@85 3149 relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'`
cannam@85 3150
cannam@85 3151 $opt_silent || {
cannam@85 3152 func_quote_for_expand "$relink_command"
cannam@85 3153 eval "func_echo $func_quote_for_expand_result"
cannam@85 3154 }
cannam@85 3155 if eval "$relink_command"; then :
cannam@85 3156 else
cannam@85 3157 func_error "error: relink \`$file' with the above command before installing it"
cannam@85 3158 $opt_dry_run || ${RM}r "$tmpdir"
cannam@85 3159 continue
cannam@85 3160 fi
cannam@85 3161 file="$outputname"
cannam@85 3162 else
cannam@85 3163 func_warning "cannot relink \`$file'"
cannam@85 3164 fi
cannam@85 3165 }
cannam@85 3166 else
cannam@85 3167 # Install the binary that we compiled earlier.
cannam@85 3168 file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"`
cannam@85 3169 fi
cannam@85 3170 fi
cannam@85 3171
cannam@85 3172 # remove .exe since cygwin /usr/bin/install will append another
cannam@85 3173 # one anyway
cannam@85 3174 case $install_prog,$host in
cannam@85 3175 */usr/bin/install*,*cygwin*)
cannam@85 3176 case $file:$destfile in
cannam@85 3177 *.exe:*.exe)
cannam@85 3178 # this is ok
cannam@85 3179 ;;
cannam@85 3180 *.exe:*)
cannam@85 3181 destfile=$destfile.exe
cannam@85 3182 ;;
cannam@85 3183 *:*.exe)
cannam@85 3184 func_stripname '' '.exe' "$destfile"
cannam@85 3185 destfile=$func_stripname_result
cannam@85 3186 ;;
cannam@85 3187 esac
cannam@85 3188 ;;
cannam@85 3189 esac
cannam@85 3190 func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?'
cannam@85 3191 $opt_dry_run || if test -n "$outputname"; then
cannam@85 3192 ${RM}r "$tmpdir"
cannam@85 3193 fi
cannam@85 3194 ;;
cannam@85 3195 esac
cannam@85 3196 done
cannam@85 3197
cannam@85 3198 for file in $staticlibs; do
cannam@85 3199 func_basename "$file"
cannam@85 3200 name="$func_basename_result"
cannam@85 3201
cannam@85 3202 # Set up the ranlib parameters.
cannam@85 3203 oldlib="$destdir/$name"
cannam@85 3204
cannam@85 3205 func_show_eval "$install_prog \$file \$oldlib" 'exit $?'
cannam@85 3206
cannam@85 3207 if test -n "$stripme" && test -n "$old_striplib"; then
cannam@85 3208 func_show_eval "$old_striplib $oldlib" 'exit $?'
cannam@85 3209 fi
cannam@85 3210
cannam@85 3211 # Do each command in the postinstall commands.
cannam@85 3212 func_execute_cmds "$old_postinstall_cmds" 'exit $?'
cannam@85 3213 done
cannam@85 3214
cannam@85 3215 test -n "$future_libdirs" && \
cannam@85 3216 func_warning "remember to run \`$progname --finish$future_libdirs'"
cannam@85 3217
cannam@85 3218 if test -n "$current_libdirs"; then
cannam@85 3219 # Maybe just do a dry run.
cannam@85 3220 $opt_dry_run && current_libdirs=" -n$current_libdirs"
cannam@85 3221 exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs'
cannam@85 3222 else
cannam@85 3223 exit $EXIT_SUCCESS
cannam@85 3224 fi
cannam@85 3225 }
cannam@85 3226
cannam@85 3227 test "$opt_mode" = install && func_mode_install ${1+"$@"}
cannam@85 3228
cannam@85 3229
cannam@85 3230 # func_generate_dlsyms outputname originator pic_p
cannam@85 3231 # Extract symbols from dlprefiles and create ${outputname}S.o with
cannam@85 3232 # a dlpreopen symbol table.
cannam@85 3233 func_generate_dlsyms ()
cannam@85 3234 {
cannam@85 3235 $opt_debug
cannam@85 3236 my_outputname="$1"
cannam@85 3237 my_originator="$2"
cannam@85 3238 my_pic_p="${3-no}"
cannam@85 3239 my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'`
cannam@85 3240 my_dlsyms=
cannam@85 3241
cannam@85 3242 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@85 3243 if test -n "$NM" && test -n "$global_symbol_pipe"; then
cannam@85 3244 my_dlsyms="${my_outputname}S.c"
cannam@85 3245 else
cannam@85 3246 func_error "not configured to extract global symbols from dlpreopened files"
cannam@85 3247 fi
cannam@85 3248 fi
cannam@85 3249
cannam@85 3250 if test -n "$my_dlsyms"; then
cannam@85 3251 case $my_dlsyms in
cannam@85 3252 "") ;;
cannam@85 3253 *.c)
cannam@85 3254 # Discover the nlist of each of the dlfiles.
cannam@85 3255 nlist="$output_objdir/${my_outputname}.nm"
cannam@85 3256
cannam@85 3257 func_show_eval "$RM $nlist ${nlist}S ${nlist}T"
cannam@85 3258
cannam@85 3259 # Parse the name list into a source file.
cannam@85 3260 func_verbose "creating $output_objdir/$my_dlsyms"
cannam@85 3261
cannam@85 3262 $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\
cannam@85 3263 /* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */
cannam@85 3264 /* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */
cannam@85 3265
cannam@85 3266 #ifdef __cplusplus
cannam@85 3267 extern \"C\" {
cannam@85 3268 #endif
cannam@85 3269
cannam@85 3270 #if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4))
cannam@85 3271 #pragma GCC diagnostic ignored \"-Wstrict-prototypes\"
cannam@85 3272 #endif
cannam@85 3273
cannam@85 3274 /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */
cannam@85 3275 #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE)
cannam@85 3276 /* DATA imports from DLLs on WIN32 con't be const, because runtime
cannam@85 3277 relocations are performed -- see ld's documentation on pseudo-relocs. */
cannam@85 3278 # define LT_DLSYM_CONST
cannam@85 3279 #elif defined(__osf__)
cannam@85 3280 /* This system does not cope well with relocations in const data. */
cannam@85 3281 # define LT_DLSYM_CONST
cannam@85 3282 #else
cannam@85 3283 # define LT_DLSYM_CONST const
cannam@85 3284 #endif
cannam@85 3285
cannam@85 3286 /* External symbol declarations for the compiler. */\
cannam@85 3287 "
cannam@85 3288
cannam@85 3289 if test "$dlself" = yes; then
cannam@85 3290 func_verbose "generating symbol list for \`$output'"
cannam@85 3291
cannam@85 3292 $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist"
cannam@85 3293
cannam@85 3294 # Add our own program objects to the symbol list.
cannam@85 3295 progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@85 3296 for progfile in $progfiles; do
cannam@85 3297 func_to_tool_file "$progfile" func_convert_file_msys_to_w32
cannam@85 3298 func_verbose "extracting global C symbols from \`$func_to_tool_file_result'"
cannam@85 3299 $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'"
cannam@85 3300 done
cannam@85 3301
cannam@85 3302 if test -n "$exclude_expsyms"; then
cannam@85 3303 $opt_dry_run || {
cannam@85 3304 eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
cannam@85 3305 eval '$MV "$nlist"T "$nlist"'
cannam@85 3306 }
cannam@85 3307 fi
cannam@85 3308
cannam@85 3309 if test -n "$export_symbols_regex"; then
cannam@85 3310 $opt_dry_run || {
cannam@85 3311 eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T'
cannam@85 3312 eval '$MV "$nlist"T "$nlist"'
cannam@85 3313 }
cannam@85 3314 fi
cannam@85 3315
cannam@85 3316 # Prepare the list of exported symbols
cannam@85 3317 if test -z "$export_symbols"; then
cannam@85 3318 export_symbols="$output_objdir/$outputname.exp"
cannam@85 3319 $opt_dry_run || {
cannam@85 3320 $RM $export_symbols
cannam@85 3321 eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
cannam@85 3322 case $host in
cannam@85 3323 *cygwin* | *mingw* | *cegcc* )
cannam@85 3324 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
cannam@85 3325 eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"'
cannam@85 3326 ;;
cannam@85 3327 esac
cannam@85 3328 }
cannam@85 3329 else
cannam@85 3330 $opt_dry_run || {
cannam@85 3331 eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"'
cannam@85 3332 eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T'
cannam@85 3333 eval '$MV "$nlist"T "$nlist"'
cannam@85 3334 case $host in
cannam@85 3335 *cygwin* | *mingw* | *cegcc* )
cannam@85 3336 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
cannam@85 3337 eval 'cat "$nlist" >> "$output_objdir/$outputname.def"'
cannam@85 3338 ;;
cannam@85 3339 esac
cannam@85 3340 }
cannam@85 3341 fi
cannam@85 3342 fi
cannam@85 3343
cannam@85 3344 for dlprefile in $dlprefiles; do
cannam@85 3345 func_verbose "extracting global C symbols from \`$dlprefile'"
cannam@85 3346 func_basename "$dlprefile"
cannam@85 3347 name="$func_basename_result"
cannam@85 3348 case $host in
cannam@85 3349 *cygwin* | *mingw* | *cegcc* )
cannam@85 3350 # if an import library, we need to obtain dlname
cannam@85 3351 if func_win32_import_lib_p "$dlprefile"; then
cannam@85 3352 func_tr_sh "$dlprefile"
cannam@85 3353 eval "curr_lafile=\$libfile_$func_tr_sh_result"
cannam@85 3354 dlprefile_dlbasename=""
cannam@85 3355 if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then
cannam@85 3356 # Use subshell, to avoid clobbering current variable values
cannam@85 3357 dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"`
cannam@85 3358 if test -n "$dlprefile_dlname" ; then
cannam@85 3359 func_basename "$dlprefile_dlname"
cannam@85 3360 dlprefile_dlbasename="$func_basename_result"
cannam@85 3361 else
cannam@85 3362 # no lafile. user explicitly requested -dlpreopen <import library>.
cannam@85 3363 $sharedlib_from_linklib_cmd "$dlprefile"
cannam@85 3364 dlprefile_dlbasename=$sharedlib_from_linklib_result
cannam@85 3365 fi
cannam@85 3366 fi
cannam@85 3367 $opt_dry_run || {
cannam@85 3368 if test -n "$dlprefile_dlbasename" ; then
cannam@85 3369 eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"'
cannam@85 3370 else
cannam@85 3371 func_warning "Could not compute DLL name from $name"
cannam@85 3372 eval '$ECHO ": $name " >> "$nlist"'
cannam@85 3373 fi
cannam@85 3374 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
cannam@85 3375 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe |
cannam@85 3376 $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'"
cannam@85 3377 }
cannam@85 3378 else # not an import lib
cannam@85 3379 $opt_dry_run || {
cannam@85 3380 eval '$ECHO ": $name " >> "$nlist"'
cannam@85 3381 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
cannam@85 3382 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
cannam@85 3383 }
cannam@85 3384 fi
cannam@85 3385 ;;
cannam@85 3386 *)
cannam@85 3387 $opt_dry_run || {
cannam@85 3388 eval '$ECHO ": $name " >> "$nlist"'
cannam@85 3389 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
cannam@85 3390 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
cannam@85 3391 }
cannam@85 3392 ;;
cannam@85 3393 esac
cannam@85 3394 done
cannam@85 3395
cannam@85 3396 $opt_dry_run || {
cannam@85 3397 # Make sure we have at least an empty file.
cannam@85 3398 test -f "$nlist" || : > "$nlist"
cannam@85 3399
cannam@85 3400 if test -n "$exclude_expsyms"; then
cannam@85 3401 $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
cannam@85 3402 $MV "$nlist"T "$nlist"
cannam@85 3403 fi
cannam@85 3404
cannam@85 3405 # Try sorting and uniquifying the output.
cannam@85 3406 if $GREP -v "^: " < "$nlist" |
cannam@85 3407 if sort -k 3 </dev/null >/dev/null 2>&1; then
cannam@85 3408 sort -k 3
cannam@85 3409 else
cannam@85 3410 sort +2
cannam@85 3411 fi |
cannam@85 3412 uniq > "$nlist"S; then
cannam@85 3413 :
cannam@85 3414 else
cannam@85 3415 $GREP -v "^: " < "$nlist" > "$nlist"S
cannam@85 3416 fi
cannam@85 3417
cannam@85 3418 if test -f "$nlist"S; then
cannam@85 3419 eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"'
cannam@85 3420 else
cannam@85 3421 echo '/* NONE */' >> "$output_objdir/$my_dlsyms"
cannam@85 3422 fi
cannam@85 3423
cannam@85 3424 echo >> "$output_objdir/$my_dlsyms" "\
cannam@85 3425
cannam@85 3426 /* The mapping between symbol names and symbols. */
cannam@85 3427 typedef struct {
cannam@85 3428 const char *name;
cannam@85 3429 void *address;
cannam@85 3430 } lt_dlsymlist;
cannam@85 3431 extern LT_DLSYM_CONST lt_dlsymlist
cannam@85 3432 lt_${my_prefix}_LTX_preloaded_symbols[];
cannam@85 3433 LT_DLSYM_CONST lt_dlsymlist
cannam@85 3434 lt_${my_prefix}_LTX_preloaded_symbols[] =
cannam@85 3435 {\
cannam@85 3436 { \"$my_originator\", (void *) 0 },"
cannam@85 3437
cannam@85 3438 case $need_lib_prefix in
cannam@85 3439 no)
cannam@85 3440 eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms"
cannam@85 3441 ;;
cannam@85 3442 *)
cannam@85 3443 eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms"
cannam@85 3444 ;;
cannam@85 3445 esac
cannam@85 3446 echo >> "$output_objdir/$my_dlsyms" "\
cannam@85 3447 {0, (void *) 0}
cannam@85 3448 };
cannam@85 3449
cannam@85 3450 /* This works around a problem in FreeBSD linker */
cannam@85 3451 #ifdef FREEBSD_WORKAROUND
cannam@85 3452 static const void *lt_preloaded_setup() {
cannam@85 3453 return lt_${my_prefix}_LTX_preloaded_symbols;
cannam@85 3454 }
cannam@85 3455 #endif
cannam@85 3456
cannam@85 3457 #ifdef __cplusplus
cannam@85 3458 }
cannam@85 3459 #endif\
cannam@85 3460 "
cannam@85 3461 } # !$opt_dry_run
cannam@85 3462
cannam@85 3463 pic_flag_for_symtable=
cannam@85 3464 case "$compile_command " in
cannam@85 3465 *" -static "*) ;;
cannam@85 3466 *)
cannam@85 3467 case $host in
cannam@85 3468 # compiling the symbol table file with pic_flag works around
cannam@85 3469 # a FreeBSD bug that causes programs to crash when -lm is
cannam@85 3470 # linked before any other PIC object. But we must not use
cannam@85 3471 # pic_flag when linking with -static. The problem exists in
cannam@85 3472 # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
cannam@85 3473 *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
cannam@85 3474 pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;;
cannam@85 3475 *-*-hpux*)
cannam@85 3476 pic_flag_for_symtable=" $pic_flag" ;;
cannam@85 3477 *)
cannam@85 3478 if test "X$my_pic_p" != Xno; then
cannam@85 3479 pic_flag_for_symtable=" $pic_flag"
cannam@85 3480 fi
cannam@85 3481 ;;
cannam@85 3482 esac
cannam@85 3483 ;;
cannam@85 3484 esac
cannam@85 3485 symtab_cflags=
cannam@85 3486 for arg in $LTCFLAGS; do
cannam@85 3487 case $arg in
cannam@85 3488 -pie | -fpie | -fPIE) ;;
cannam@85 3489 *) func_append symtab_cflags " $arg" ;;
cannam@85 3490 esac
cannam@85 3491 done
cannam@85 3492
cannam@85 3493 # Now compile the dynamic symbol file.
cannam@85 3494 func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?'
cannam@85 3495
cannam@85 3496 # Clean up the generated files.
cannam@85 3497 func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"'
cannam@85 3498
cannam@85 3499 # Transform the symbol file into the correct name.
cannam@85 3500 symfileobj="$output_objdir/${my_outputname}S.$objext"
cannam@85 3501 case $host in
cannam@85 3502 *cygwin* | *mingw* | *cegcc* )
cannam@85 3503 if test -f "$output_objdir/$my_outputname.def"; then
cannam@85 3504 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
cannam@85 3505 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
cannam@85 3506 else
cannam@85 3507 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@85 3508 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@85 3509 fi
cannam@85 3510 ;;
cannam@85 3511 *)
cannam@85 3512 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@85 3513 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@85 3514 ;;
cannam@85 3515 esac
cannam@85 3516 ;;
cannam@85 3517 *)
cannam@85 3518 func_fatal_error "unknown suffix for \`$my_dlsyms'"
cannam@85 3519 ;;
cannam@85 3520 esac
cannam@85 3521 else
cannam@85 3522 # We keep going just in case the user didn't refer to
cannam@85 3523 # lt_preloaded_symbols. The linker will fail if global_symbol_pipe
cannam@85 3524 # really was required.
cannam@85 3525
cannam@85 3526 # Nullify the symbol file.
cannam@85 3527 compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"`
cannam@85 3528 finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"`
cannam@85 3529 fi
cannam@85 3530 }
cannam@85 3531
cannam@85 3532 # func_win32_libid arg
cannam@85 3533 # return the library type of file 'arg'
cannam@85 3534 #
cannam@85 3535 # Need a lot of goo to handle *both* DLLs and import libs
cannam@85 3536 # Has to be a shell function in order to 'eat' the argument
cannam@85 3537 # that is supplied when $file_magic_command is called.
cannam@85 3538 # Despite the name, also deal with 64 bit binaries.
cannam@85 3539 func_win32_libid ()
cannam@85 3540 {
cannam@85 3541 $opt_debug
cannam@85 3542 win32_libid_type="unknown"
cannam@85 3543 win32_fileres=`file -L $1 2>/dev/null`
cannam@85 3544 case $win32_fileres in
cannam@85 3545 *ar\ archive\ import\ library*) # definitely import
cannam@85 3546 win32_libid_type="x86 archive import"
cannam@85 3547 ;;
cannam@85 3548 *ar\ archive*) # could be an import, or static
cannam@85 3549 # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD.
cannam@85 3550 if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null |
cannam@85 3551 $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then
cannam@85 3552 func_to_tool_file "$1" func_convert_file_msys_to_w32
cannam@85 3553 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" |
cannam@85 3554 $SED -n -e '
cannam@85 3555 1,100{
cannam@85 3556 / I /{
cannam@85 3557 s,.*,import,
cannam@85 3558 p
cannam@85 3559 q
cannam@85 3560 }
cannam@85 3561 }'`
cannam@85 3562 case $win32_nmres in
cannam@85 3563 import*) win32_libid_type="x86 archive import";;
cannam@85 3564 *) win32_libid_type="x86 archive static";;
cannam@85 3565 esac
cannam@85 3566 fi
cannam@85 3567 ;;
cannam@85 3568 *DLL*)
cannam@85 3569 win32_libid_type="x86 DLL"
cannam@85 3570 ;;
cannam@85 3571 *executable*) # but shell scripts are "executable" too...
cannam@85 3572 case $win32_fileres in
cannam@85 3573 *MS\ Windows\ PE\ Intel*)
cannam@85 3574 win32_libid_type="x86 DLL"
cannam@85 3575 ;;
cannam@85 3576 esac
cannam@85 3577 ;;
cannam@85 3578 esac
cannam@85 3579 $ECHO "$win32_libid_type"
cannam@85 3580 }
cannam@85 3581
cannam@85 3582 # func_cygming_dll_for_implib ARG
cannam@85 3583 #
cannam@85 3584 # Platform-specific function to extract the
cannam@85 3585 # name of the DLL associated with the specified
cannam@85 3586 # import library ARG.
cannam@85 3587 # Invoked by eval'ing the libtool variable
cannam@85 3588 # $sharedlib_from_linklib_cmd
cannam@85 3589 # Result is available in the variable
cannam@85 3590 # $sharedlib_from_linklib_result
cannam@85 3591 func_cygming_dll_for_implib ()
cannam@85 3592 {
cannam@85 3593 $opt_debug
cannam@85 3594 sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"`
cannam@85 3595 }
cannam@85 3596
cannam@85 3597 # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs
cannam@85 3598 #
cannam@85 3599 # The is the core of a fallback implementation of a
cannam@85 3600 # platform-specific function to extract the name of the
cannam@85 3601 # DLL associated with the specified import library LIBNAME.
cannam@85 3602 #
cannam@85 3603 # SECTION_NAME is either .idata$6 or .idata$7, depending
cannam@85 3604 # on the platform and compiler that created the implib.
cannam@85 3605 #
cannam@85 3606 # Echos the name of the DLL associated with the
cannam@85 3607 # specified import library.
cannam@85 3608 func_cygming_dll_for_implib_fallback_core ()
cannam@85 3609 {
cannam@85 3610 $opt_debug
cannam@85 3611 match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"`
cannam@85 3612 $OBJDUMP -s --section "$1" "$2" 2>/dev/null |
cannam@85 3613 $SED '/^Contents of section '"$match_literal"':/{
cannam@85 3614 # Place marker at beginning of archive member dllname section
cannam@85 3615 s/.*/====MARK====/
cannam@85 3616 p
cannam@85 3617 d
cannam@85 3618 }
cannam@85 3619 # These lines can sometimes be longer than 43 characters, but
cannam@85 3620 # are always uninteresting
cannam@85 3621 /:[ ]*file format pe[i]\{,1\}-/d
cannam@85 3622 /^In archive [^:]*:/d
cannam@85 3623 # Ensure marker is printed
cannam@85 3624 /^====MARK====/p
cannam@85 3625 # Remove all lines with less than 43 characters
cannam@85 3626 /^.\{43\}/!d
cannam@85 3627 # From remaining lines, remove first 43 characters
cannam@85 3628 s/^.\{43\}//' |
cannam@85 3629 $SED -n '
cannam@85 3630 # Join marker and all lines until next marker into a single line
cannam@85 3631 /^====MARK====/ b para
cannam@85 3632 H
cannam@85 3633 $ b para
cannam@85 3634 b
cannam@85 3635 :para
cannam@85 3636 x
cannam@85 3637 s/\n//g
cannam@85 3638 # Remove the marker
cannam@85 3639 s/^====MARK====//
cannam@85 3640 # Remove trailing dots and whitespace
cannam@85 3641 s/[\. \t]*$//
cannam@85 3642 # Print
cannam@85 3643 /./p' |
cannam@85 3644 # we now have a list, one entry per line, of the stringified
cannam@85 3645 # contents of the appropriate section of all members of the
cannam@85 3646 # archive which possess that section. Heuristic: eliminate
cannam@85 3647 # all those which have a first or second character that is
cannam@85 3648 # a '.' (that is, objdump's representation of an unprintable
cannam@85 3649 # character.) This should work for all archives with less than
cannam@85 3650 # 0x302f exports -- but will fail for DLLs whose name actually
cannam@85 3651 # begins with a literal '.' or a single character followed by
cannam@85 3652 # a '.'.
cannam@85 3653 #
cannam@85 3654 # Of those that remain, print the first one.
cannam@85 3655 $SED -e '/^\./d;/^.\./d;q'
cannam@85 3656 }
cannam@85 3657
cannam@85 3658 # func_cygming_gnu_implib_p ARG
cannam@85 3659 # This predicate returns with zero status (TRUE) if
cannam@85 3660 # ARG is a GNU/binutils-style import library. Returns
cannam@85 3661 # with nonzero status (FALSE) otherwise.
cannam@85 3662 func_cygming_gnu_implib_p ()
cannam@85 3663 {
cannam@85 3664 $opt_debug
cannam@85 3665 func_to_tool_file "$1" func_convert_file_msys_to_w32
cannam@85 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)$'`
cannam@85 3667 test -n "$func_cygming_gnu_implib_tmp"
cannam@85 3668 }
cannam@85 3669
cannam@85 3670 # func_cygming_ms_implib_p ARG
cannam@85 3671 # This predicate returns with zero status (TRUE) if
cannam@85 3672 # ARG is an MS-style import library. Returns
cannam@85 3673 # with nonzero status (FALSE) otherwise.
cannam@85 3674 func_cygming_ms_implib_p ()
cannam@85 3675 {
cannam@85 3676 $opt_debug
cannam@85 3677 func_to_tool_file "$1" func_convert_file_msys_to_w32
cannam@85 3678 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'`
cannam@85 3679 test -n "$func_cygming_ms_implib_tmp"
cannam@85 3680 }
cannam@85 3681
cannam@85 3682 # func_cygming_dll_for_implib_fallback ARG
cannam@85 3683 # Platform-specific function to extract the
cannam@85 3684 # name of the DLL associated with the specified
cannam@85 3685 # import library ARG.
cannam@85 3686 #
cannam@85 3687 # This fallback implementation is for use when $DLLTOOL
cannam@85 3688 # does not support the --identify-strict option.
cannam@85 3689 # Invoked by eval'ing the libtool variable
cannam@85 3690 # $sharedlib_from_linklib_cmd
cannam@85 3691 # Result is available in the variable
cannam@85 3692 # $sharedlib_from_linklib_result
cannam@85 3693 func_cygming_dll_for_implib_fallback ()
cannam@85 3694 {
cannam@85 3695 $opt_debug
cannam@85 3696 if func_cygming_gnu_implib_p "$1" ; then
cannam@85 3697 # binutils import library
cannam@85 3698 sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"`
cannam@85 3699 elif func_cygming_ms_implib_p "$1" ; then
cannam@85 3700 # ms-generated import library
cannam@85 3701 sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"`
cannam@85 3702 else
cannam@85 3703 # unknown
cannam@85 3704 sharedlib_from_linklib_result=""
cannam@85 3705 fi
cannam@85 3706 }
cannam@85 3707
cannam@85 3708
cannam@85 3709 # func_extract_an_archive dir oldlib
cannam@85 3710 func_extract_an_archive ()
cannam@85 3711 {
cannam@85 3712 $opt_debug
cannam@85 3713 f_ex_an_ar_dir="$1"; shift
cannam@85 3714 f_ex_an_ar_oldlib="$1"
cannam@85 3715 if test "$lock_old_archive_extraction" = yes; then
cannam@85 3716 lockfile=$f_ex_an_ar_oldlib.lock
cannam@85 3717 until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do
cannam@85 3718 func_echo "Waiting for $lockfile to be removed"
cannam@85 3719 sleep 2
cannam@85 3720 done
cannam@85 3721 fi
cannam@85 3722 func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \
cannam@85 3723 'stat=$?; rm -f "$lockfile"; exit $stat'
cannam@85 3724 if test "$lock_old_archive_extraction" = yes; then
cannam@85 3725 $opt_dry_run || rm -f "$lockfile"
cannam@85 3726 fi
cannam@85 3727 if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
cannam@85 3728 :
cannam@85 3729 else
cannam@85 3730 func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib"
cannam@85 3731 fi
cannam@85 3732 }
cannam@85 3733
cannam@85 3734
cannam@85 3735 # func_extract_archives gentop oldlib ...
cannam@85 3736 func_extract_archives ()
cannam@85 3737 {
cannam@85 3738 $opt_debug
cannam@85 3739 my_gentop="$1"; shift
cannam@85 3740 my_oldlibs=${1+"$@"}
cannam@85 3741 my_oldobjs=""
cannam@85 3742 my_xlib=""
cannam@85 3743 my_xabs=""
cannam@85 3744 my_xdir=""
cannam@85 3745
cannam@85 3746 for my_xlib in $my_oldlibs; do
cannam@85 3747 # Extract the objects.
cannam@85 3748 case $my_xlib in
cannam@85 3749 [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;;
cannam@85 3750 *) my_xabs=`pwd`"/$my_xlib" ;;
cannam@85 3751 esac
cannam@85 3752 func_basename "$my_xlib"
cannam@85 3753 my_xlib="$func_basename_result"
cannam@85 3754 my_xlib_u=$my_xlib
cannam@85 3755 while :; do
cannam@85 3756 case " $extracted_archives " in
cannam@85 3757 *" $my_xlib_u "*)
cannam@85 3758 func_arith $extracted_serial + 1
cannam@85 3759 extracted_serial=$func_arith_result
cannam@85 3760 my_xlib_u=lt$extracted_serial-$my_xlib ;;
cannam@85 3761 *) break ;;
cannam@85 3762 esac
cannam@85 3763 done
cannam@85 3764 extracted_archives="$extracted_archives $my_xlib_u"
cannam@85 3765 my_xdir="$my_gentop/$my_xlib_u"
cannam@85 3766
cannam@85 3767 func_mkdir_p "$my_xdir"
cannam@85 3768
cannam@85 3769 case $host in
cannam@85 3770 *-darwin*)
cannam@85 3771 func_verbose "Extracting $my_xabs"
cannam@85 3772 # Do not bother doing anything if just a dry run
cannam@85 3773 $opt_dry_run || {
cannam@85 3774 darwin_orig_dir=`pwd`
cannam@85 3775 cd $my_xdir || exit $?
cannam@85 3776 darwin_archive=$my_xabs
cannam@85 3777 darwin_curdir=`pwd`
cannam@85 3778 darwin_base_archive=`basename "$darwin_archive"`
cannam@85 3779 darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true`
cannam@85 3780 if test -n "$darwin_arches"; then
cannam@85 3781 darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'`
cannam@85 3782 darwin_arch=
cannam@85 3783 func_verbose "$darwin_base_archive has multiple architectures $darwin_arches"
cannam@85 3784 for darwin_arch in $darwin_arches ; do
cannam@85 3785 func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}"
cannam@85 3786 $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}"
cannam@85 3787 cd "unfat-$$/${darwin_base_archive}-${darwin_arch}"
cannam@85 3788 func_extract_an_archive "`pwd`" "${darwin_base_archive}"
cannam@85 3789 cd "$darwin_curdir"
cannam@85 3790 $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}"
cannam@85 3791 done # $darwin_arches
cannam@85 3792 ## Okay now we've a bunch of thin objects, gotta fatten them up :)
cannam@85 3793 darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u`
cannam@85 3794 darwin_file=
cannam@85 3795 darwin_files=
cannam@85 3796 for darwin_file in $darwin_filelist; do
cannam@85 3797 darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP`
cannam@85 3798 $LIPO -create -output "$darwin_file" $darwin_files
cannam@85 3799 done # $darwin_filelist
cannam@85 3800 $RM -rf unfat-$$
cannam@85 3801 cd "$darwin_orig_dir"
cannam@85 3802 else
cannam@85 3803 cd $darwin_orig_dir
cannam@85 3804 func_extract_an_archive "$my_xdir" "$my_xabs"
cannam@85 3805 fi # $darwin_arches
cannam@85 3806 } # !$opt_dry_run
cannam@85 3807 ;;
cannam@85 3808 *)
cannam@85 3809 func_extract_an_archive "$my_xdir" "$my_xabs"
cannam@85 3810 ;;
cannam@85 3811 esac
cannam@85 3812 my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP`
cannam@85 3813 done
cannam@85 3814
cannam@85 3815 func_extract_archives_result="$my_oldobjs"
cannam@85 3816 }
cannam@85 3817
cannam@85 3818
cannam@85 3819 # func_emit_wrapper [arg=no]
cannam@85 3820 #
cannam@85 3821 # Emit a libtool wrapper script on stdout.
cannam@85 3822 # Don't directly open a file because we may want to
cannam@85 3823 # incorporate the script contents within a cygwin/mingw
cannam@85 3824 # wrapper executable. Must ONLY be called from within
cannam@85 3825 # func_mode_link because it depends on a number of variables
cannam@85 3826 # set therein.
cannam@85 3827 #
cannam@85 3828 # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR
cannam@85 3829 # variable will take. If 'yes', then the emitted script
cannam@85 3830 # will assume that the directory in which it is stored is
cannam@85 3831 # the $objdir directory. This is a cygwin/mingw-specific
cannam@85 3832 # behavior.
cannam@85 3833 func_emit_wrapper ()
cannam@85 3834 {
cannam@85 3835 func_emit_wrapper_arg1=${1-no}
cannam@85 3836
cannam@85 3837 $ECHO "\
cannam@85 3838 #! $SHELL
cannam@85 3839
cannam@85 3840 # $output - temporary wrapper script for $objdir/$outputname
cannam@85 3841 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@85 3842 #
cannam@85 3843 # The $output program cannot be directly executed until all the libtool
cannam@85 3844 # libraries that it depends on are installed.
cannam@85 3845 #
cannam@85 3846 # This wrapper script should never be moved out of the build directory.
cannam@85 3847 # If it is, it will not operate correctly.
cannam@85 3848
cannam@85 3849 # Sed substitution that helps us do robust quoting. It backslashifies
cannam@85 3850 # metacharacters that are still active within double-quoted strings.
cannam@85 3851 sed_quote_subst='$sed_quote_subst'
cannam@85 3852
cannam@85 3853 # Be Bourne compatible
cannam@85 3854 if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then
cannam@85 3855 emulate sh
cannam@85 3856 NULLCMD=:
cannam@85 3857 # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which
cannam@85 3858 # is contrary to our usage. Disable this feature.
cannam@85 3859 alias -g '\${1+\"\$@\"}'='\"\$@\"'
cannam@85 3860 setopt NO_GLOB_SUBST
cannam@85 3861 else
cannam@85 3862 case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac
cannam@85 3863 fi
cannam@85 3864 BIN_SH=xpg4; export BIN_SH # for Tru64
cannam@85 3865 DUALCASE=1; export DUALCASE # for MKS sh
cannam@85 3866
cannam@85 3867 # The HP-UX ksh and POSIX shell print the target directory to stdout
cannam@85 3868 # if CDPATH is set.
cannam@85 3869 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
cannam@85 3870
cannam@85 3871 relink_command=\"$relink_command\"
cannam@85 3872
cannam@85 3873 # This environment variable determines our operation mode.
cannam@85 3874 if test \"\$libtool_install_magic\" = \"$magic\"; then
cannam@85 3875 # install mode needs the following variables:
cannam@85 3876 generated_by_libtool_version='$macro_version'
cannam@85 3877 notinst_deplibs='$notinst_deplibs'
cannam@85 3878 else
cannam@85 3879 # When we are sourced in execute mode, \$file and \$ECHO are already set.
cannam@85 3880 if test \"\$libtool_execute_magic\" != \"$magic\"; then
cannam@85 3881 file=\"\$0\""
cannam@85 3882
cannam@85 3883 qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"`
cannam@85 3884 $ECHO "\
cannam@85 3885
cannam@85 3886 # A function that is used when there is no print builtin or printf.
cannam@85 3887 func_fallback_echo ()
cannam@85 3888 {
cannam@85 3889 eval 'cat <<_LTECHO_EOF
cannam@85 3890 \$1
cannam@85 3891 _LTECHO_EOF'
cannam@85 3892 }
cannam@85 3893 ECHO=\"$qECHO\"
cannam@85 3894 fi
cannam@85 3895
cannam@85 3896 # Very basic option parsing. These options are (a) specific to
cannam@85 3897 # the libtool wrapper, (b) are identical between the wrapper
cannam@85 3898 # /script/ and the wrapper /executable/ which is used only on
cannam@85 3899 # windows platforms, and (c) all begin with the string "--lt-"
cannam@85 3900 # (application programs are unlikely to have options which match
cannam@85 3901 # this pattern).
cannam@85 3902 #
cannam@85 3903 # There are only two supported options: --lt-debug and
cannam@85 3904 # --lt-dump-script. There is, deliberately, no --lt-help.
cannam@85 3905 #
cannam@85 3906 # The first argument to this parsing function should be the
cannam@85 3907 # script's $0 value, followed by "$@".
cannam@85 3908 lt_option_debug=
cannam@85 3909 func_parse_lt_options ()
cannam@85 3910 {
cannam@85 3911 lt_script_arg0=\$0
cannam@85 3912 shift
cannam@85 3913 for lt_opt
cannam@85 3914 do
cannam@85 3915 case \"\$lt_opt\" in
cannam@85 3916 --lt-debug) lt_option_debug=1 ;;
cannam@85 3917 --lt-dump-script)
cannam@85 3918 lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\`
cannam@85 3919 test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=.
cannam@85 3920 lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\`
cannam@85 3921 cat \"\$lt_dump_D/\$lt_dump_F\"
cannam@85 3922 exit 0
cannam@85 3923 ;;
cannam@85 3924 --lt-*)
cannam@85 3925 \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2
cannam@85 3926 exit 1
cannam@85 3927 ;;
cannam@85 3928 esac
cannam@85 3929 done
cannam@85 3930
cannam@85 3931 # Print the debug banner immediately:
cannam@85 3932 if test -n \"\$lt_option_debug\"; then
cannam@85 3933 echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2
cannam@85 3934 fi
cannam@85 3935 }
cannam@85 3936
cannam@85 3937 # Used when --lt-debug. Prints its arguments to stdout
cannam@85 3938 # (redirection is the responsibility of the caller)
cannam@85 3939 func_lt_dump_args ()
cannam@85 3940 {
cannam@85 3941 lt_dump_args_N=1;
cannam@85 3942 for lt_arg
cannam@85 3943 do
cannam@85 3944 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\"
cannam@85 3945 lt_dump_args_N=\`expr \$lt_dump_args_N + 1\`
cannam@85 3946 done
cannam@85 3947 }
cannam@85 3948
cannam@85 3949 # Core function for launching the target application
cannam@85 3950 func_exec_program_core ()
cannam@85 3951 {
cannam@85 3952 "
cannam@85 3953 case $host in
cannam@85 3954 # Backslashes separate directories on plain windows
cannam@85 3955 *-*-mingw | *-*-os2* | *-cegcc*)
cannam@85 3956 $ECHO "\
cannam@85 3957 if test -n \"\$lt_option_debug\"; then
cannam@85 3958 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2
cannam@85 3959 func_lt_dump_args \${1+\"\$@\"} 1>&2
cannam@85 3960 fi
cannam@85 3961 exec \"\$progdir\\\\\$program\" \${1+\"\$@\"}
cannam@85 3962 "
cannam@85 3963 ;;
cannam@85 3964
cannam@85 3965 *)
cannam@85 3966 $ECHO "\
cannam@85 3967 if test -n \"\$lt_option_debug\"; then
cannam@85 3968 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2
cannam@85 3969 func_lt_dump_args \${1+\"\$@\"} 1>&2
cannam@85 3970 fi
cannam@85 3971 exec \"\$progdir/\$program\" \${1+\"\$@\"}
cannam@85 3972 "
cannam@85 3973 ;;
cannam@85 3974 esac
cannam@85 3975 $ECHO "\
cannam@85 3976 \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2
cannam@85 3977 exit 1
cannam@85 3978 }
cannam@85 3979
cannam@85 3980 # A function to encapsulate launching the target application
cannam@85 3981 # Strips options in the --lt-* namespace from \$@ and
cannam@85 3982 # launches target application with the remaining arguments.
cannam@85 3983 func_exec_program ()
cannam@85 3984 {
cannam@85 3985 for lt_wr_arg
cannam@85 3986 do
cannam@85 3987 case \$lt_wr_arg in
cannam@85 3988 --lt-*) ;;
cannam@85 3989 *) set x \"\$@\" \"\$lt_wr_arg\"; shift;;
cannam@85 3990 esac
cannam@85 3991 shift
cannam@85 3992 done
cannam@85 3993 func_exec_program_core \${1+\"\$@\"}
cannam@85 3994 }
cannam@85 3995
cannam@85 3996 # Parse options
cannam@85 3997 func_parse_lt_options \"\$0\" \${1+\"\$@\"}
cannam@85 3998
cannam@85 3999 # Find the directory that this script lives in.
cannam@85 4000 thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\`
cannam@85 4001 test \"x\$thisdir\" = \"x\$file\" && thisdir=.
cannam@85 4002
cannam@85 4003 # Follow symbolic links until we get to the real thisdir.
cannam@85 4004 file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\`
cannam@85 4005 while test -n \"\$file\"; do
cannam@85 4006 destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\`
cannam@85 4007
cannam@85 4008 # If there was a directory component, then change thisdir.
cannam@85 4009 if test \"x\$destdir\" != \"x\$file\"; then
cannam@85 4010 case \"\$destdir\" in
cannam@85 4011 [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
cannam@85 4012 *) thisdir=\"\$thisdir/\$destdir\" ;;
cannam@85 4013 esac
cannam@85 4014 fi
cannam@85 4015
cannam@85 4016 file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\`
cannam@85 4017 file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\`
cannam@85 4018 done
cannam@85 4019
cannam@85 4020 # Usually 'no', except on cygwin/mingw when embedded into
cannam@85 4021 # the cwrapper.
cannam@85 4022 WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1
cannam@85 4023 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then
cannam@85 4024 # special case for '.'
cannam@85 4025 if test \"\$thisdir\" = \".\"; then
cannam@85 4026 thisdir=\`pwd\`
cannam@85 4027 fi
cannam@85 4028 # remove .libs from thisdir
cannam@85 4029 case \"\$thisdir\" in
cannam@85 4030 *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;;
cannam@85 4031 $objdir ) thisdir=. ;;
cannam@85 4032 esac
cannam@85 4033 fi
cannam@85 4034
cannam@85 4035 # Try to get the absolute directory name.
cannam@85 4036 absdir=\`cd \"\$thisdir\" && pwd\`
cannam@85 4037 test -n \"\$absdir\" && thisdir=\"\$absdir\"
cannam@85 4038 "
cannam@85 4039
cannam@85 4040 if test "$fast_install" = yes; then
cannam@85 4041 $ECHO "\
cannam@85 4042 program=lt-'$outputname'$exeext
cannam@85 4043 progdir=\"\$thisdir/$objdir\"
cannam@85 4044
cannam@85 4045 if test ! -f \"\$progdir/\$program\" ||
cannam@85 4046 { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\
cannam@85 4047 test \"X\$file\" != \"X\$progdir/\$program\"; }; then
cannam@85 4048
cannam@85 4049 file=\"\$\$-\$program\"
cannam@85 4050
cannam@85 4051 if test ! -d \"\$progdir\"; then
cannam@85 4052 $MKDIR \"\$progdir\"
cannam@85 4053 else
cannam@85 4054 $RM \"\$progdir/\$file\"
cannam@85 4055 fi"
cannam@85 4056
cannam@85 4057 $ECHO "\
cannam@85 4058
cannam@85 4059 # relink executable if necessary
cannam@85 4060 if test -n \"\$relink_command\"; then
cannam@85 4061 if relink_command_output=\`eval \$relink_command 2>&1\`; then :
cannam@85 4062 else
cannam@85 4063 $ECHO \"\$relink_command_output\" >&2
cannam@85 4064 $RM \"\$progdir/\$file\"
cannam@85 4065 exit 1
cannam@85 4066 fi
cannam@85 4067 fi
cannam@85 4068
cannam@85 4069 $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
cannam@85 4070 { $RM \"\$progdir/\$program\";
cannam@85 4071 $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; }
cannam@85 4072 $RM \"\$progdir/\$file\"
cannam@85 4073 fi"
cannam@85 4074 else
cannam@85 4075 $ECHO "\
cannam@85 4076 program='$outputname'
cannam@85 4077 progdir=\"\$thisdir/$objdir\"
cannam@85 4078 "
cannam@85 4079 fi
cannam@85 4080
cannam@85 4081 $ECHO "\
cannam@85 4082
cannam@85 4083 if test -f \"\$progdir/\$program\"; then"
cannam@85 4084
cannam@85 4085 # fixup the dll searchpath if we need to.
cannam@85 4086 #
cannam@85 4087 # Fix the DLL searchpath if we need to. Do this before prepending
cannam@85 4088 # to shlibpath, because on Windows, both are PATH and uninstalled
cannam@85 4089 # libraries must come first.
cannam@85 4090 if test -n "$dllsearchpath"; then
cannam@85 4091 $ECHO "\
cannam@85 4092 # Add the dll search path components to the executable PATH
cannam@85 4093 PATH=$dllsearchpath:\$PATH
cannam@85 4094 "
cannam@85 4095 fi
cannam@85 4096
cannam@85 4097 # Export our shlibpath_var if we have one.
cannam@85 4098 if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
cannam@85 4099 $ECHO "\
cannam@85 4100 # Add our own library path to $shlibpath_var
cannam@85 4101 $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
cannam@85 4102
cannam@85 4103 # Some systems cannot cope with colon-terminated $shlibpath_var
cannam@85 4104 # The second colon is a workaround for a bug in BeOS R4 sed
cannam@85 4105 $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\`
cannam@85 4106
cannam@85 4107 export $shlibpath_var
cannam@85 4108 "
cannam@85 4109 fi
cannam@85 4110
cannam@85 4111 $ECHO "\
cannam@85 4112 if test \"\$libtool_execute_magic\" != \"$magic\"; then
cannam@85 4113 # Run the actual program with our arguments.
cannam@85 4114 func_exec_program \${1+\"\$@\"}
cannam@85 4115 fi
cannam@85 4116 else
cannam@85 4117 # The program doesn't exist.
cannam@85 4118 \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2
cannam@85 4119 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2
cannam@85 4120 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2
cannam@85 4121 exit 1
cannam@85 4122 fi
cannam@85 4123 fi\
cannam@85 4124 "
cannam@85 4125 }
cannam@85 4126
cannam@85 4127
cannam@85 4128 # func_emit_cwrapperexe_src
cannam@85 4129 # emit the source code for a wrapper executable on stdout
cannam@85 4130 # Must ONLY be called from within func_mode_link because
cannam@85 4131 # it depends on a number of variable set therein.
cannam@85 4132 func_emit_cwrapperexe_src ()
cannam@85 4133 {
cannam@85 4134 cat <<EOF
cannam@85 4135
cannam@85 4136 /* $cwrappersource - temporary wrapper executable for $objdir/$outputname
cannam@85 4137 Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@85 4138
cannam@85 4139 The $output program cannot be directly executed until all the libtool
cannam@85 4140 libraries that it depends on are installed.
cannam@85 4141
cannam@85 4142 This wrapper executable should never be moved out of the build directory.
cannam@85 4143 If it is, it will not operate correctly.
cannam@85 4144 */
cannam@85 4145 EOF
cannam@85 4146 cat <<"EOF"
cannam@85 4147 #ifdef _MSC_VER
cannam@85 4148 # define _CRT_SECURE_NO_DEPRECATE 1
cannam@85 4149 #endif
cannam@85 4150 #include <stdio.h>
cannam@85 4151 #include <stdlib.h>
cannam@85 4152 #ifdef _MSC_VER
cannam@85 4153 # include <direct.h>
cannam@85 4154 # include <process.h>
cannam@85 4155 # include <io.h>
cannam@85 4156 #else
cannam@85 4157 # include <unistd.h>
cannam@85 4158 # include <stdint.h>
cannam@85 4159 # ifdef __CYGWIN__
cannam@85 4160 # include <io.h>
cannam@85 4161 # endif
cannam@85 4162 #endif
cannam@85 4163 #include <malloc.h>
cannam@85 4164 #include <stdarg.h>
cannam@85 4165 #include <assert.h>
cannam@85 4166 #include <string.h>
cannam@85 4167 #include <ctype.h>
cannam@85 4168 #include <errno.h>
cannam@85 4169 #include <fcntl.h>
cannam@85 4170 #include <sys/stat.h>
cannam@85 4171
cannam@85 4172 /* declarations of non-ANSI functions */
cannam@85 4173 #if defined(__MINGW32__)
cannam@85 4174 # ifdef __STRICT_ANSI__
cannam@85 4175 int _putenv (const char *);
cannam@85 4176 # endif
cannam@85 4177 #elif defined(__CYGWIN__)
cannam@85 4178 # ifdef __STRICT_ANSI__
cannam@85 4179 char *realpath (const char *, char *);
cannam@85 4180 int putenv (char *);
cannam@85 4181 int setenv (const char *, const char *, int);
cannam@85 4182 # endif
cannam@85 4183 /* #elif defined (other platforms) ... */
cannam@85 4184 #endif
cannam@85 4185
cannam@85 4186 /* portability defines, excluding path handling macros */
cannam@85 4187 #if defined(_MSC_VER)
cannam@85 4188 # define setmode _setmode
cannam@85 4189 # define stat _stat
cannam@85 4190 # define chmod _chmod
cannam@85 4191 # define getcwd _getcwd
cannam@85 4192 # define putenv _putenv
cannam@85 4193 # define S_IXUSR _S_IEXEC
cannam@85 4194 # ifndef _INTPTR_T_DEFINED
cannam@85 4195 # define _INTPTR_T_DEFINED
cannam@85 4196 # define intptr_t int
cannam@85 4197 # endif
cannam@85 4198 #elif defined(__MINGW32__)
cannam@85 4199 # define setmode _setmode
cannam@85 4200 # define stat _stat
cannam@85 4201 # define chmod _chmod
cannam@85 4202 # define getcwd _getcwd
cannam@85 4203 # define putenv _putenv
cannam@85 4204 #elif defined(__CYGWIN__)
cannam@85 4205 # define HAVE_SETENV
cannam@85 4206 # define FOPEN_WB "wb"
cannam@85 4207 /* #elif defined (other platforms) ... */
cannam@85 4208 #endif
cannam@85 4209
cannam@85 4210 #if defined(PATH_MAX)
cannam@85 4211 # define LT_PATHMAX PATH_MAX
cannam@85 4212 #elif defined(MAXPATHLEN)
cannam@85 4213 # define LT_PATHMAX MAXPATHLEN
cannam@85 4214 #else
cannam@85 4215 # define LT_PATHMAX 1024
cannam@85 4216 #endif
cannam@85 4217
cannam@85 4218 #ifndef S_IXOTH
cannam@85 4219 # define S_IXOTH 0
cannam@85 4220 #endif
cannam@85 4221 #ifndef S_IXGRP
cannam@85 4222 # define S_IXGRP 0
cannam@85 4223 #endif
cannam@85 4224
cannam@85 4225 /* path handling portability macros */
cannam@85 4226 #ifndef DIR_SEPARATOR
cannam@85 4227 # define DIR_SEPARATOR '/'
cannam@85 4228 # define PATH_SEPARATOR ':'
cannam@85 4229 #endif
cannam@85 4230
cannam@85 4231 #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \
cannam@85 4232 defined (__OS2__)
cannam@85 4233 # define HAVE_DOS_BASED_FILE_SYSTEM
cannam@85 4234 # define FOPEN_WB "wb"
cannam@85 4235 # ifndef DIR_SEPARATOR_2
cannam@85 4236 # define DIR_SEPARATOR_2 '\\'
cannam@85 4237 # endif
cannam@85 4238 # ifndef PATH_SEPARATOR_2
cannam@85 4239 # define PATH_SEPARATOR_2 ';'
cannam@85 4240 # endif
cannam@85 4241 #endif
cannam@85 4242
cannam@85 4243 #ifndef DIR_SEPARATOR_2
cannam@85 4244 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
cannam@85 4245 #else /* DIR_SEPARATOR_2 */
cannam@85 4246 # define IS_DIR_SEPARATOR(ch) \
cannam@85 4247 (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
cannam@85 4248 #endif /* DIR_SEPARATOR_2 */
cannam@85 4249
cannam@85 4250 #ifndef PATH_SEPARATOR_2
cannam@85 4251 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR)
cannam@85 4252 #else /* PATH_SEPARATOR_2 */
cannam@85 4253 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2)
cannam@85 4254 #endif /* PATH_SEPARATOR_2 */
cannam@85 4255
cannam@85 4256 #ifndef FOPEN_WB
cannam@85 4257 # define FOPEN_WB "w"
cannam@85 4258 #endif
cannam@85 4259 #ifndef _O_BINARY
cannam@85 4260 # define _O_BINARY 0
cannam@85 4261 #endif
cannam@85 4262
cannam@85 4263 #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type)))
cannam@85 4264 #define XFREE(stale) do { \
cannam@85 4265 if (stale) { free ((void *) stale); stale = 0; } \
cannam@85 4266 } while (0)
cannam@85 4267
cannam@85 4268 #if defined(LT_DEBUGWRAPPER)
cannam@85 4269 static int lt_debug = 1;
cannam@85 4270 #else
cannam@85 4271 static int lt_debug = 0;
cannam@85 4272 #endif
cannam@85 4273
cannam@85 4274 const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */
cannam@85 4275
cannam@85 4276 void *xmalloc (size_t num);
cannam@85 4277 char *xstrdup (const char *string);
cannam@85 4278 const char *base_name (const char *name);
cannam@85 4279 char *find_executable (const char *wrapper);
cannam@85 4280 char *chase_symlinks (const char *pathspec);
cannam@85 4281 int make_executable (const char *path);
cannam@85 4282 int check_executable (const char *path);
cannam@85 4283 char *strendzap (char *str, const char *pat);
cannam@85 4284 void lt_debugprintf (const char *file, int line, const char *fmt, ...);
cannam@85 4285 void lt_fatal (const char *file, int line, const char *message, ...);
cannam@85 4286 static const char *nonnull (const char *s);
cannam@85 4287 static const char *nonempty (const char *s);
cannam@85 4288 void lt_setenv (const char *name, const char *value);
cannam@85 4289 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
cannam@85 4290 void lt_update_exe_path (const char *name, const char *value);
cannam@85 4291 void lt_update_lib_path (const char *name, const char *value);
cannam@85 4292 char **prepare_spawn (char **argv);
cannam@85 4293 void lt_dump_script (FILE *f);
cannam@85 4294 EOF
cannam@85 4295
cannam@85 4296 cat <<EOF
cannam@85 4297 volatile const char * MAGIC_EXE = "$magic_exe";
cannam@85 4298 const char * LIB_PATH_VARNAME = "$shlibpath_var";
cannam@85 4299 EOF
cannam@85 4300
cannam@85 4301 if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
cannam@85 4302 func_to_host_path "$temp_rpath"
cannam@85 4303 cat <<EOF
cannam@85 4304 const char * LIB_PATH_VALUE = "$func_to_host_path_result";
cannam@85 4305 EOF
cannam@85 4306 else
cannam@85 4307 cat <<"EOF"
cannam@85 4308 const char * LIB_PATH_VALUE = "";
cannam@85 4309 EOF
cannam@85 4310 fi
cannam@85 4311
cannam@85 4312 if test -n "$dllsearchpath"; then
cannam@85 4313 func_to_host_path "$dllsearchpath:"
cannam@85 4314 cat <<EOF
cannam@85 4315 const char * EXE_PATH_VARNAME = "PATH";
cannam@85 4316 const char * EXE_PATH_VALUE = "$func_to_host_path_result";
cannam@85 4317 EOF
cannam@85 4318 else
cannam@85 4319 cat <<"EOF"
cannam@85 4320 const char * EXE_PATH_VARNAME = "";
cannam@85 4321 const char * EXE_PATH_VALUE = "";
cannam@85 4322 EOF
cannam@85 4323 fi
cannam@85 4324
cannam@85 4325 if test "$fast_install" = yes; then
cannam@85 4326 cat <<EOF
cannam@85 4327 const char * TARGET_PROGRAM_NAME = "lt-$outputname"; /* hopefully, no .exe */
cannam@85 4328 EOF
cannam@85 4329 else
cannam@85 4330 cat <<EOF
cannam@85 4331 const char * TARGET_PROGRAM_NAME = "$outputname"; /* hopefully, no .exe */
cannam@85 4332 EOF
cannam@85 4333 fi
cannam@85 4334
cannam@85 4335
cannam@85 4336 cat <<"EOF"
cannam@85 4337
cannam@85 4338 #define LTWRAPPER_OPTION_PREFIX "--lt-"
cannam@85 4339
cannam@85 4340 static const char *ltwrapper_option_prefix = LTWRAPPER_OPTION_PREFIX;
cannam@85 4341 static const char *dumpscript_opt = LTWRAPPER_OPTION_PREFIX "dump-script";
cannam@85 4342 static const char *debug_opt = LTWRAPPER_OPTION_PREFIX "debug";
cannam@85 4343
cannam@85 4344 int
cannam@85 4345 main (int argc, char *argv[])
cannam@85 4346 {
cannam@85 4347 char **newargz;
cannam@85 4348 int newargc;
cannam@85 4349 char *tmp_pathspec;
cannam@85 4350 char *actual_cwrapper_path;
cannam@85 4351 char *actual_cwrapper_name;
cannam@85 4352 char *target_name;
cannam@85 4353 char *lt_argv_zero;
cannam@85 4354 intptr_t rval = 127;
cannam@85 4355
cannam@85 4356 int i;
cannam@85 4357
cannam@85 4358 program_name = (char *) xstrdup (base_name (argv[0]));
cannam@85 4359 newargz = XMALLOC (char *, argc + 1);
cannam@85 4360
cannam@85 4361 /* very simple arg parsing; don't want to rely on getopt
cannam@85 4362 * also, copy all non cwrapper options to newargz, except
cannam@85 4363 * argz[0], which is handled differently
cannam@85 4364 */
cannam@85 4365 newargc=0;
cannam@85 4366 for (i = 1; i < argc; i++)
cannam@85 4367 {
cannam@85 4368 if (strcmp (argv[i], dumpscript_opt) == 0)
cannam@85 4369 {
cannam@85 4370 EOF
cannam@85 4371 case "$host" in
cannam@85 4372 *mingw* | *cygwin* )
cannam@85 4373 # make stdout use "unix" line endings
cannam@85 4374 echo " setmode(1,_O_BINARY);"
cannam@85 4375 ;;
cannam@85 4376 esac
cannam@85 4377
cannam@85 4378 cat <<"EOF"
cannam@85 4379 lt_dump_script (stdout);
cannam@85 4380 return 0;
cannam@85 4381 }
cannam@85 4382 if (strcmp (argv[i], debug_opt) == 0)
cannam@85 4383 {
cannam@85 4384 lt_debug = 1;
cannam@85 4385 continue;
cannam@85 4386 }
cannam@85 4387 if (strcmp (argv[i], ltwrapper_option_prefix) == 0)
cannam@85 4388 {
cannam@85 4389 /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX
cannam@85 4390 namespace, but it is not one of the ones we know about and
cannam@85 4391 have already dealt with, above (inluding dump-script), then
cannam@85 4392 report an error. Otherwise, targets might begin to believe
cannam@85 4393 they are allowed to use options in the LTWRAPPER_OPTION_PREFIX
cannam@85 4394 namespace. The first time any user complains about this, we'll
cannam@85 4395 need to make LTWRAPPER_OPTION_PREFIX a configure-time option
cannam@85 4396 or a configure.ac-settable value.
cannam@85 4397 */
cannam@85 4398 lt_fatal (__FILE__, __LINE__,
cannam@85 4399 "unrecognized %s option: '%s'",
cannam@85 4400 ltwrapper_option_prefix, argv[i]);
cannam@85 4401 }
cannam@85 4402 /* otherwise ... */
cannam@85 4403 newargz[++newargc] = xstrdup (argv[i]);
cannam@85 4404 }
cannam@85 4405 newargz[++newargc] = NULL;
cannam@85 4406
cannam@85 4407 EOF
cannam@85 4408 cat <<EOF
cannam@85 4409 /* The GNU banner must be the first non-error debug message */
cannam@85 4410 lt_debugprintf (__FILE__, __LINE__, "libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\n");
cannam@85 4411 EOF
cannam@85 4412 cat <<"EOF"
cannam@85 4413 lt_debugprintf (__FILE__, __LINE__, "(main) argv[0]: %s\n", argv[0]);
cannam@85 4414 lt_debugprintf (__FILE__, __LINE__, "(main) program_name: %s\n", program_name);
cannam@85 4415
cannam@85 4416 tmp_pathspec = find_executable (argv[0]);
cannam@85 4417 if (tmp_pathspec == NULL)
cannam@85 4418 lt_fatal (__FILE__, __LINE__, "couldn't find %s", argv[0]);
cannam@85 4419 lt_debugprintf (__FILE__, __LINE__,
cannam@85 4420 "(main) found exe (before symlink chase) at: %s\n",
cannam@85 4421 tmp_pathspec);
cannam@85 4422
cannam@85 4423 actual_cwrapper_path = chase_symlinks (tmp_pathspec);
cannam@85 4424 lt_debugprintf (__FILE__, __LINE__,
cannam@85 4425 "(main) found exe (after symlink chase) at: %s\n",
cannam@85 4426 actual_cwrapper_path);
cannam@85 4427 XFREE (tmp_pathspec);
cannam@85 4428
cannam@85 4429 actual_cwrapper_name = xstrdup (base_name (actual_cwrapper_path));
cannam@85 4430 strendzap (actual_cwrapper_path, actual_cwrapper_name);
cannam@85 4431
cannam@85 4432 /* wrapper name transforms */
cannam@85 4433 strendzap (actual_cwrapper_name, ".exe");
cannam@85 4434 tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
cannam@85 4435 XFREE (actual_cwrapper_name);
cannam@85 4436 actual_cwrapper_name = tmp_pathspec;
cannam@85 4437 tmp_pathspec = 0;
cannam@85 4438
cannam@85 4439 /* target_name transforms -- use actual target program name; might have lt- prefix */
cannam@85 4440 target_name = xstrdup (base_name (TARGET_PROGRAM_NAME));
cannam@85 4441 strendzap (target_name, ".exe");
cannam@85 4442 tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
cannam@85 4443 XFREE (target_name);
cannam@85 4444 target_name = tmp_pathspec;
cannam@85 4445 tmp_pathspec = 0;
cannam@85 4446
cannam@85 4447 lt_debugprintf (__FILE__, __LINE__,
cannam@85 4448 "(main) libtool target name: %s\n",
cannam@85 4449 target_name);
cannam@85 4450 EOF
cannam@85 4451
cannam@85 4452 cat <<EOF
cannam@85 4453 newargz[0] =
cannam@85 4454 XMALLOC (char, (strlen (actual_cwrapper_path) +
cannam@85 4455 strlen ("$objdir") + 1 + strlen (actual_cwrapper_name) + 1));
cannam@85 4456 strcpy (newargz[0], actual_cwrapper_path);
cannam@85 4457 strcat (newargz[0], "$objdir");
cannam@85 4458 strcat (newargz[0], "/");
cannam@85 4459 EOF
cannam@85 4460
cannam@85 4461 cat <<"EOF"
cannam@85 4462 /* stop here, and copy so we don't have to do this twice */
cannam@85 4463 tmp_pathspec = xstrdup (newargz[0]);
cannam@85 4464
cannam@85 4465 /* do NOT want the lt- prefix here, so use actual_cwrapper_name */
cannam@85 4466 strcat (newargz[0], actual_cwrapper_name);
cannam@85 4467
cannam@85 4468 /* DO want the lt- prefix here if it exists, so use target_name */
cannam@85 4469 lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
cannam@85 4470 XFREE (tmp_pathspec);
cannam@85 4471 tmp_pathspec = NULL;
cannam@85 4472 EOF
cannam@85 4473
cannam@85 4474 case $host_os in
cannam@85 4475 mingw*)
cannam@85 4476 cat <<"EOF"
cannam@85 4477 {
cannam@85 4478 char* p;
cannam@85 4479 while ((p = strchr (newargz[0], '\\')) != NULL)
cannam@85 4480 {
cannam@85 4481 *p = '/';
cannam@85 4482 }
cannam@85 4483 while ((p = strchr (lt_argv_zero, '\\')) != NULL)
cannam@85 4484 {
cannam@85 4485 *p = '/';
cannam@85 4486 }
cannam@85 4487 }
cannam@85 4488 EOF
cannam@85 4489 ;;
cannam@85 4490 esac
cannam@85 4491
cannam@85 4492 cat <<"EOF"
cannam@85 4493 XFREE (target_name);
cannam@85 4494 XFREE (actual_cwrapper_path);
cannam@85 4495 XFREE (actual_cwrapper_name);
cannam@85 4496
cannam@85 4497 lt_setenv ("BIN_SH", "xpg4"); /* for Tru64 */
cannam@85 4498 lt_setenv ("DUALCASE", "1"); /* for MSK sh */
cannam@85 4499 /* Update the DLL searchpath. EXE_PATH_VALUE ($dllsearchpath) must
cannam@85 4500 be prepended before (that is, appear after) LIB_PATH_VALUE ($temp_rpath)
cannam@85 4501 because on Windows, both *_VARNAMEs are PATH but uninstalled
cannam@85 4502 libraries must come first. */
cannam@85 4503 lt_update_exe_path (EXE_PATH_VARNAME, EXE_PATH_VALUE);
cannam@85 4504 lt_update_lib_path (LIB_PATH_VARNAME, LIB_PATH_VALUE);
cannam@85 4505
cannam@85 4506 lt_debugprintf (__FILE__, __LINE__, "(main) lt_argv_zero: %s\n",
cannam@85 4507 nonnull (lt_argv_zero));
cannam@85 4508 for (i = 0; i < newargc; i++)
cannam@85 4509 {
cannam@85 4510 lt_debugprintf (__FILE__, __LINE__, "(main) newargz[%d]: %s\n",
cannam@85 4511 i, nonnull (newargz[i]));
cannam@85 4512 }
cannam@85 4513
cannam@85 4514 EOF
cannam@85 4515
cannam@85 4516 case $host_os in
cannam@85 4517 mingw*)
cannam@85 4518 cat <<"EOF"
cannam@85 4519 /* execv doesn't actually work on mingw as expected on unix */
cannam@85 4520 newargz = prepare_spawn (newargz);
cannam@85 4521 rval = _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz);
cannam@85 4522 if (rval == -1)
cannam@85 4523 {
cannam@85 4524 /* failed to start process */
cannam@85 4525 lt_debugprintf (__FILE__, __LINE__,
cannam@85 4526 "(main) failed to launch target \"%s\": %s\n",
cannam@85 4527 lt_argv_zero, nonnull (strerror (errno)));
cannam@85 4528 return 127;
cannam@85 4529 }
cannam@85 4530 return rval;
cannam@85 4531 EOF
cannam@85 4532 ;;
cannam@85 4533 *)
cannam@85 4534 cat <<"EOF"
cannam@85 4535 execv (lt_argv_zero, newargz);
cannam@85 4536 return rval; /* =127, but avoids unused variable warning */
cannam@85 4537 EOF
cannam@85 4538 ;;
cannam@85 4539 esac
cannam@85 4540
cannam@85 4541 cat <<"EOF"
cannam@85 4542 }
cannam@85 4543
cannam@85 4544 void *
cannam@85 4545 xmalloc (size_t num)
cannam@85 4546 {
cannam@85 4547 void *p = (void *) malloc (num);
cannam@85 4548 if (!p)
cannam@85 4549 lt_fatal (__FILE__, __LINE__, "memory exhausted");
cannam@85 4550
cannam@85 4551 return p;
cannam@85 4552 }
cannam@85 4553
cannam@85 4554 char *
cannam@85 4555 xstrdup (const char *string)
cannam@85 4556 {
cannam@85 4557 return string ? strcpy ((char *) xmalloc (strlen (string) + 1),
cannam@85 4558 string) : NULL;
cannam@85 4559 }
cannam@85 4560
cannam@85 4561 const char *
cannam@85 4562 base_name (const char *name)
cannam@85 4563 {
cannam@85 4564 const char *base;
cannam@85 4565
cannam@85 4566 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
cannam@85 4567 /* Skip over the disk name in MSDOS pathnames. */
cannam@85 4568 if (isalpha ((unsigned char) name[0]) && name[1] == ':')
cannam@85 4569 name += 2;
cannam@85 4570 #endif
cannam@85 4571
cannam@85 4572 for (base = name; *name; name++)
cannam@85 4573 if (IS_DIR_SEPARATOR (*name))
cannam@85 4574 base = name + 1;
cannam@85 4575 return base;
cannam@85 4576 }
cannam@85 4577
cannam@85 4578 int
cannam@85 4579 check_executable (const char *path)
cannam@85 4580 {
cannam@85 4581 struct stat st;
cannam@85 4582
cannam@85 4583 lt_debugprintf (__FILE__, __LINE__, "(check_executable): %s\n",
cannam@85 4584 nonempty (path));
cannam@85 4585 if ((!path) || (!*path))
cannam@85 4586 return 0;
cannam@85 4587
cannam@85 4588 if ((stat (path, &st) >= 0)
cannam@85 4589 && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
cannam@85 4590 return 1;
cannam@85 4591 else
cannam@85 4592 return 0;
cannam@85 4593 }
cannam@85 4594
cannam@85 4595 int
cannam@85 4596 make_executable (const char *path)
cannam@85 4597 {
cannam@85 4598 int rval = 0;
cannam@85 4599 struct stat st;
cannam@85 4600
cannam@85 4601 lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n",
cannam@85 4602 nonempty (path));
cannam@85 4603 if ((!path) || (!*path))
cannam@85 4604 return 0;
cannam@85 4605
cannam@85 4606 if (stat (path, &st) >= 0)
cannam@85 4607 {
cannam@85 4608 rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR);
cannam@85 4609 }
cannam@85 4610 return rval;
cannam@85 4611 }
cannam@85 4612
cannam@85 4613 /* Searches for the full path of the wrapper. Returns
cannam@85 4614 newly allocated full path name if found, NULL otherwise
cannam@85 4615 Does not chase symlinks, even on platforms that support them.
cannam@85 4616 */
cannam@85 4617 char *
cannam@85 4618 find_executable (const char *wrapper)
cannam@85 4619 {
cannam@85 4620 int has_slash = 0;
cannam@85 4621 const char *p;
cannam@85 4622 const char *p_next;
cannam@85 4623 /* static buffer for getcwd */
cannam@85 4624 char tmp[LT_PATHMAX + 1];
cannam@85 4625 int tmp_len;
cannam@85 4626 char *concat_name;
cannam@85 4627
cannam@85 4628 lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n",
cannam@85 4629 nonempty (wrapper));
cannam@85 4630
cannam@85 4631 if ((wrapper == NULL) || (*wrapper == '\0'))
cannam@85 4632 return NULL;
cannam@85 4633
cannam@85 4634 /* Absolute path? */
cannam@85 4635 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
cannam@85 4636 if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':')
cannam@85 4637 {
cannam@85 4638 concat_name = xstrdup (wrapper);
cannam@85 4639 if (check_executable (concat_name))
cannam@85 4640 return concat_name;
cannam@85 4641 XFREE (concat_name);
cannam@85 4642 }
cannam@85 4643 else
cannam@85 4644 {
cannam@85 4645 #endif
cannam@85 4646 if (IS_DIR_SEPARATOR (wrapper[0]))
cannam@85 4647 {
cannam@85 4648 concat_name = xstrdup (wrapper);
cannam@85 4649 if (check_executable (concat_name))
cannam@85 4650 return concat_name;
cannam@85 4651 XFREE (concat_name);
cannam@85 4652 }
cannam@85 4653 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
cannam@85 4654 }
cannam@85 4655 #endif
cannam@85 4656
cannam@85 4657 for (p = wrapper; *p; p++)
cannam@85 4658 if (*p == '/')
cannam@85 4659 {
cannam@85 4660 has_slash = 1;
cannam@85 4661 break;
cannam@85 4662 }
cannam@85 4663 if (!has_slash)
cannam@85 4664 {
cannam@85 4665 /* no slashes; search PATH */
cannam@85 4666 const char *path = getenv ("PATH");
cannam@85 4667 if (path != NULL)
cannam@85 4668 {
cannam@85 4669 for (p = path; *p; p = p_next)
cannam@85 4670 {
cannam@85 4671 const char *q;
cannam@85 4672 size_t p_len;
cannam@85 4673 for (q = p; *q; q++)
cannam@85 4674 if (IS_PATH_SEPARATOR (*q))
cannam@85 4675 break;
cannam@85 4676 p_len = q - p;
cannam@85 4677 p_next = (*q == '\0' ? q : q + 1);
cannam@85 4678 if (p_len == 0)
cannam@85 4679 {
cannam@85 4680 /* empty path: current directory */
cannam@85 4681 if (getcwd (tmp, LT_PATHMAX) == NULL)
cannam@85 4682 lt_fatal (__FILE__, __LINE__, "getcwd failed: %s",
cannam@85 4683 nonnull (strerror (errno)));
cannam@85 4684 tmp_len = strlen (tmp);
cannam@85 4685 concat_name =
cannam@85 4686 XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
cannam@85 4687 memcpy (concat_name, tmp, tmp_len);
cannam@85 4688 concat_name[tmp_len] = '/';
cannam@85 4689 strcpy (concat_name + tmp_len + 1, wrapper);
cannam@85 4690 }
cannam@85 4691 else
cannam@85 4692 {
cannam@85 4693 concat_name =
cannam@85 4694 XMALLOC (char, p_len + 1 + strlen (wrapper) + 1);
cannam@85 4695 memcpy (concat_name, p, p_len);
cannam@85 4696 concat_name[p_len] = '/';
cannam@85 4697 strcpy (concat_name + p_len + 1, wrapper);
cannam@85 4698 }
cannam@85 4699 if (check_executable (concat_name))
cannam@85 4700 return concat_name;
cannam@85 4701 XFREE (concat_name);
cannam@85 4702 }
cannam@85 4703 }
cannam@85 4704 /* not found in PATH; assume curdir */
cannam@85 4705 }
cannam@85 4706 /* Relative path | not found in path: prepend cwd */
cannam@85 4707 if (getcwd (tmp, LT_PATHMAX) == NULL)
cannam@85 4708 lt_fatal (__FILE__, __LINE__, "getcwd failed: %s",
cannam@85 4709 nonnull (strerror (errno)));
cannam@85 4710 tmp_len = strlen (tmp);
cannam@85 4711 concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
cannam@85 4712 memcpy (concat_name, tmp, tmp_len);
cannam@85 4713 concat_name[tmp_len] = '/';
cannam@85 4714 strcpy (concat_name + tmp_len + 1, wrapper);
cannam@85 4715
cannam@85 4716 if (check_executable (concat_name))
cannam@85 4717 return concat_name;
cannam@85 4718 XFREE (concat_name);
cannam@85 4719 return NULL;
cannam@85 4720 }
cannam@85 4721
cannam@85 4722 char *
cannam@85 4723 chase_symlinks (const char *pathspec)
cannam@85 4724 {
cannam@85 4725 #ifndef S_ISLNK
cannam@85 4726 return xstrdup (pathspec);
cannam@85 4727 #else
cannam@85 4728 char buf[LT_PATHMAX];
cannam@85 4729 struct stat s;
cannam@85 4730 char *tmp_pathspec = xstrdup (pathspec);
cannam@85 4731 char *p;
cannam@85 4732 int has_symlinks = 0;
cannam@85 4733 while (strlen (tmp_pathspec) && !has_symlinks)
cannam@85 4734 {
cannam@85 4735 lt_debugprintf (__FILE__, __LINE__,
cannam@85 4736 "checking path component for symlinks: %s\n",
cannam@85 4737 tmp_pathspec);
cannam@85 4738 if (lstat (tmp_pathspec, &s) == 0)
cannam@85 4739 {
cannam@85 4740 if (S_ISLNK (s.st_mode) != 0)
cannam@85 4741 {
cannam@85 4742 has_symlinks = 1;
cannam@85 4743 break;
cannam@85 4744 }
cannam@85 4745
cannam@85 4746 /* search backwards for last DIR_SEPARATOR */
cannam@85 4747 p = tmp_pathspec + strlen (tmp_pathspec) - 1;
cannam@85 4748 while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
cannam@85 4749 p--;
cannam@85 4750 if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
cannam@85 4751 {
cannam@85 4752 /* no more DIR_SEPARATORS left */
cannam@85 4753 break;
cannam@85 4754 }
cannam@85 4755 *p = '\0';
cannam@85 4756 }
cannam@85 4757 else
cannam@85 4758 {
cannam@85 4759 lt_fatal (__FILE__, __LINE__,
cannam@85 4760 "error accessing file \"%s\": %s",
cannam@85 4761 tmp_pathspec, nonnull (strerror (errno)));
cannam@85 4762 }
cannam@85 4763 }
cannam@85 4764 XFREE (tmp_pathspec);
cannam@85 4765
cannam@85 4766 if (!has_symlinks)
cannam@85 4767 {
cannam@85 4768 return xstrdup (pathspec);
cannam@85 4769 }
cannam@85 4770
cannam@85 4771 tmp_pathspec = realpath (pathspec, buf);
cannam@85 4772 if (tmp_pathspec == 0)
cannam@85 4773 {
cannam@85 4774 lt_fatal (__FILE__, __LINE__,
cannam@85 4775 "could not follow symlinks for %s", pathspec);
cannam@85 4776 }
cannam@85 4777 return xstrdup (tmp_pathspec);
cannam@85 4778 #endif
cannam@85 4779 }
cannam@85 4780
cannam@85 4781 char *
cannam@85 4782 strendzap (char *str, const char *pat)
cannam@85 4783 {
cannam@85 4784 size_t len, patlen;
cannam@85 4785
cannam@85 4786 assert (str != NULL);
cannam@85 4787 assert (pat != NULL);
cannam@85 4788
cannam@85 4789 len = strlen (str);
cannam@85 4790 patlen = strlen (pat);
cannam@85 4791
cannam@85 4792 if (patlen <= len)
cannam@85 4793 {
cannam@85 4794 str += len - patlen;
cannam@85 4795 if (strcmp (str, pat) == 0)
cannam@85 4796 *str = '\0';
cannam@85 4797 }
cannam@85 4798 return str;
cannam@85 4799 }
cannam@85 4800
cannam@85 4801 void
cannam@85 4802 lt_debugprintf (const char *file, int line, const char *fmt, ...)
cannam@85 4803 {
cannam@85 4804 va_list args;
cannam@85 4805 if (lt_debug)
cannam@85 4806 {
cannam@85 4807 (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line);
cannam@85 4808 va_start (args, fmt);
cannam@85 4809 (void) vfprintf (stderr, fmt, args);
cannam@85 4810 va_end (args);
cannam@85 4811 }
cannam@85 4812 }
cannam@85 4813
cannam@85 4814 static void
cannam@85 4815 lt_error_core (int exit_status, const char *file,
cannam@85 4816 int line, const char *mode,
cannam@85 4817 const char *message, va_list ap)
cannam@85 4818 {
cannam@85 4819 fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode);
cannam@85 4820 vfprintf (stderr, message, ap);
cannam@85 4821 fprintf (stderr, ".\n");
cannam@85 4822
cannam@85 4823 if (exit_status >= 0)
cannam@85 4824 exit (exit_status);
cannam@85 4825 }
cannam@85 4826
cannam@85 4827 void
cannam@85 4828 lt_fatal (const char *file, int line, const char *message, ...)
cannam@85 4829 {
cannam@85 4830 va_list ap;
cannam@85 4831 va_start (ap, message);
cannam@85 4832 lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap);
cannam@85 4833 va_end (ap);
cannam@85 4834 }
cannam@85 4835
cannam@85 4836 static const char *
cannam@85 4837 nonnull (const char *s)
cannam@85 4838 {
cannam@85 4839 return s ? s : "(null)";
cannam@85 4840 }
cannam@85 4841
cannam@85 4842 static const char *
cannam@85 4843 nonempty (const char *s)
cannam@85 4844 {
cannam@85 4845 return (s && !*s) ? "(empty)" : nonnull (s);
cannam@85 4846 }
cannam@85 4847
cannam@85 4848 void
cannam@85 4849 lt_setenv (const char *name, const char *value)
cannam@85 4850 {
cannam@85 4851 lt_debugprintf (__FILE__, __LINE__,
cannam@85 4852 "(lt_setenv) setting '%s' to '%s'\n",
cannam@85 4853 nonnull (name), nonnull (value));
cannam@85 4854 {
cannam@85 4855 #ifdef HAVE_SETENV
cannam@85 4856 /* always make a copy, for consistency with !HAVE_SETENV */
cannam@85 4857 char *str = xstrdup (value);
cannam@85 4858 setenv (name, str, 1);
cannam@85 4859 #else
cannam@85 4860 int len = strlen (name) + 1 + strlen (value) + 1;
cannam@85 4861 char *str = XMALLOC (char, len);
cannam@85 4862 sprintf (str, "%s=%s", name, value);
cannam@85 4863 if (putenv (str) != EXIT_SUCCESS)
cannam@85 4864 {
cannam@85 4865 XFREE (str);
cannam@85 4866 }
cannam@85 4867 #endif
cannam@85 4868 }
cannam@85 4869 }
cannam@85 4870
cannam@85 4871 char *
cannam@85 4872 lt_extend_str (const char *orig_value, const char *add, int to_end)
cannam@85 4873 {
cannam@85 4874 char *new_value;
cannam@85 4875 if (orig_value && *orig_value)
cannam@85 4876 {
cannam@85 4877 int orig_value_len = strlen (orig_value);
cannam@85 4878 int add_len = strlen (add);
cannam@85 4879 new_value = XMALLOC (char, add_len + orig_value_len + 1);
cannam@85 4880 if (to_end)
cannam@85 4881 {
cannam@85 4882 strcpy (new_value, orig_value);
cannam@85 4883 strcpy (new_value + orig_value_len, add);
cannam@85 4884 }
cannam@85 4885 else
cannam@85 4886 {
cannam@85 4887 strcpy (new_value, add);
cannam@85 4888 strcpy (new_value + add_len, orig_value);
cannam@85 4889 }
cannam@85 4890 }
cannam@85 4891 else
cannam@85 4892 {
cannam@85 4893 new_value = xstrdup (add);
cannam@85 4894 }
cannam@85 4895 return new_value;
cannam@85 4896 }
cannam@85 4897
cannam@85 4898 void
cannam@85 4899 lt_update_exe_path (const char *name, const char *value)
cannam@85 4900 {
cannam@85 4901 lt_debugprintf (__FILE__, __LINE__,
cannam@85 4902 "(lt_update_exe_path) modifying '%s' by prepending '%s'\n",
cannam@85 4903 nonnull (name), nonnull (value));
cannam@85 4904
cannam@85 4905 if (name && *name && value && *value)
cannam@85 4906 {
cannam@85 4907 char *new_value = lt_extend_str (getenv (name), value, 0);
cannam@85 4908 /* some systems can't cope with a ':'-terminated path #' */
cannam@85 4909 int len = strlen (new_value);
cannam@85 4910 while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1]))
cannam@85 4911 {
cannam@85 4912 new_value[len-1] = '\0';
cannam@85 4913 }
cannam@85 4914 lt_setenv (name, new_value);
cannam@85 4915 XFREE (new_value);
cannam@85 4916 }
cannam@85 4917 }
cannam@85 4918
cannam@85 4919 void
cannam@85 4920 lt_update_lib_path (const char *name, const char *value)
cannam@85 4921 {
cannam@85 4922 lt_debugprintf (__FILE__, __LINE__,
cannam@85 4923 "(lt_update_lib_path) modifying '%s' by prepending '%s'\n",
cannam@85 4924 nonnull (name), nonnull (value));
cannam@85 4925
cannam@85 4926 if (name && *name && value && *value)
cannam@85 4927 {
cannam@85 4928 char *new_value = lt_extend_str (getenv (name), value, 0);
cannam@85 4929 lt_setenv (name, new_value);
cannam@85 4930 XFREE (new_value);
cannam@85 4931 }
cannam@85 4932 }
cannam@85 4933
cannam@85 4934 EOF
cannam@85 4935 case $host_os in
cannam@85 4936 mingw*)
cannam@85 4937 cat <<"EOF"
cannam@85 4938
cannam@85 4939 /* Prepares an argument vector before calling spawn().
cannam@85 4940 Note that spawn() does not by itself call the command interpreter
cannam@85 4941 (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") :
cannam@85 4942 ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
cannam@85 4943 GetVersionEx(&v);
cannam@85 4944 v.dwPlatformId == VER_PLATFORM_WIN32_NT;
cannam@85 4945 }) ? "cmd.exe" : "command.com").
cannam@85 4946 Instead it simply concatenates the arguments, separated by ' ', and calls
cannam@85 4947 CreateProcess(). We must quote the arguments since Win32 CreateProcess()
cannam@85 4948 interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a
cannam@85 4949 special way:
cannam@85 4950 - Space and tab are interpreted as delimiters. They are not treated as
cannam@85 4951 delimiters if they are surrounded by double quotes: "...".
cannam@85 4952 - Unescaped double quotes are removed from the input. Their only effect is
cannam@85 4953 that within double quotes, space and tab are treated like normal
cannam@85 4954 characters.
cannam@85 4955 - Backslashes not followed by double quotes are not special.
cannam@85 4956 - But 2*n+1 backslashes followed by a double quote become
cannam@85 4957 n backslashes followed by a double quote (n >= 0):
cannam@85 4958 \" -> "
cannam@85 4959 \\\" -> \"
cannam@85 4960 \\\\\" -> \\"
cannam@85 4961 */
cannam@85 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"
cannam@85 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"
cannam@85 4964 char **
cannam@85 4965 prepare_spawn (char **argv)
cannam@85 4966 {
cannam@85 4967 size_t argc;
cannam@85 4968 char **new_argv;
cannam@85 4969 size_t i;
cannam@85 4970
cannam@85 4971 /* Count number of arguments. */
cannam@85 4972 for (argc = 0; argv[argc] != NULL; argc++)
cannam@85 4973 ;
cannam@85 4974
cannam@85 4975 /* Allocate new argument vector. */
cannam@85 4976 new_argv = XMALLOC (char *, argc + 1);
cannam@85 4977
cannam@85 4978 /* Put quoted arguments into the new argument vector. */
cannam@85 4979 for (i = 0; i < argc; i++)
cannam@85 4980 {
cannam@85 4981 const char *string = argv[i];
cannam@85 4982
cannam@85 4983 if (string[0] == '\0')
cannam@85 4984 new_argv[i] = xstrdup ("\"\"");
cannam@85 4985 else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL)
cannam@85 4986 {
cannam@85 4987 int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL);
cannam@85 4988 size_t length;
cannam@85 4989 unsigned int backslashes;
cannam@85 4990 const char *s;
cannam@85 4991 char *quoted_string;
cannam@85 4992 char *p;
cannam@85 4993
cannam@85 4994 length = 0;
cannam@85 4995 backslashes = 0;
cannam@85 4996 if (quote_around)
cannam@85 4997 length++;
cannam@85 4998 for (s = string; *s != '\0'; s++)
cannam@85 4999 {
cannam@85 5000 char c = *s;
cannam@85 5001 if (c == '"')
cannam@85 5002 length += backslashes + 1;
cannam@85 5003 length++;
cannam@85 5004 if (c == '\\')
cannam@85 5005 backslashes++;
cannam@85 5006 else
cannam@85 5007 backslashes = 0;
cannam@85 5008 }
cannam@85 5009 if (quote_around)
cannam@85 5010 length += backslashes + 1;
cannam@85 5011
cannam@85 5012 quoted_string = XMALLOC (char, length + 1);
cannam@85 5013
cannam@85 5014 p = quoted_string;
cannam@85 5015 backslashes = 0;
cannam@85 5016 if (quote_around)
cannam@85 5017 *p++ = '"';
cannam@85 5018 for (s = string; *s != '\0'; s++)
cannam@85 5019 {
cannam@85 5020 char c = *s;
cannam@85 5021 if (c == '"')
cannam@85 5022 {
cannam@85 5023 unsigned int j;
cannam@85 5024 for (j = backslashes + 1; j > 0; j--)
cannam@85 5025 *p++ = '\\';
cannam@85 5026 }
cannam@85 5027 *p++ = c;
cannam@85 5028 if (c == '\\')
cannam@85 5029 backslashes++;
cannam@85 5030 else
cannam@85 5031 backslashes = 0;
cannam@85 5032 }
cannam@85 5033 if (quote_around)
cannam@85 5034 {
cannam@85 5035 unsigned int j;
cannam@85 5036 for (j = backslashes; j > 0; j--)
cannam@85 5037 *p++ = '\\';
cannam@85 5038 *p++ = '"';
cannam@85 5039 }
cannam@85 5040 *p = '\0';
cannam@85 5041
cannam@85 5042 new_argv[i] = quoted_string;
cannam@85 5043 }
cannam@85 5044 else
cannam@85 5045 new_argv[i] = (char *) string;
cannam@85 5046 }
cannam@85 5047 new_argv[argc] = NULL;
cannam@85 5048
cannam@85 5049 return new_argv;
cannam@85 5050 }
cannam@85 5051 EOF
cannam@85 5052 ;;
cannam@85 5053 esac
cannam@85 5054
cannam@85 5055 cat <<"EOF"
cannam@85 5056 void lt_dump_script (FILE* f)
cannam@85 5057 {
cannam@85 5058 EOF
cannam@85 5059 func_emit_wrapper yes |
cannam@85 5060 $SED -e 's/\([\\"]\)/\\\1/g' \
cannam@85 5061 -e 's/^/ fputs ("/' -e 's/$/\\n", f);/'
cannam@85 5062
cannam@85 5063 cat <<"EOF"
cannam@85 5064 }
cannam@85 5065 EOF
cannam@85 5066 }
cannam@85 5067 # end: func_emit_cwrapperexe_src
cannam@85 5068
cannam@85 5069 # func_win32_import_lib_p ARG
cannam@85 5070 # True if ARG is an import lib, as indicated by $file_magic_cmd
cannam@85 5071 func_win32_import_lib_p ()
cannam@85 5072 {
cannam@85 5073 $opt_debug
cannam@85 5074 case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in
cannam@85 5075 *import*) : ;;
cannam@85 5076 *) false ;;
cannam@85 5077 esac
cannam@85 5078 }
cannam@85 5079
cannam@85 5080 # func_mode_link arg...
cannam@85 5081 func_mode_link ()
cannam@85 5082 {
cannam@85 5083 $opt_debug
cannam@85 5084 case $host in
cannam@85 5085 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
cannam@85 5086 # It is impossible to link a dll without this setting, and
cannam@85 5087 # we shouldn't force the makefile maintainer to figure out
cannam@85 5088 # which system we are compiling for in order to pass an extra
cannam@85 5089 # flag for every libtool invocation.
cannam@85 5090 # allow_undefined=no
cannam@85 5091
cannam@85 5092 # FIXME: Unfortunately, there are problems with the above when trying
cannam@85 5093 # to make a dll which has undefined symbols, in which case not
cannam@85 5094 # even a static library is built. For now, we need to specify
cannam@85 5095 # -no-undefined on the libtool link line when we can be certain
cannam@85 5096 # that all symbols are satisfied, otherwise we get a static library.
cannam@85 5097 allow_undefined=yes
cannam@85 5098 ;;
cannam@85 5099 *)
cannam@85 5100 allow_undefined=yes
cannam@85 5101 ;;
cannam@85 5102 esac
cannam@85 5103 libtool_args=$nonopt
cannam@85 5104 base_compile="$nonopt $@"
cannam@85 5105 compile_command=$nonopt
cannam@85 5106 finalize_command=$nonopt
cannam@85 5107
cannam@85 5108 compile_rpath=
cannam@85 5109 finalize_rpath=
cannam@85 5110 compile_shlibpath=
cannam@85 5111 finalize_shlibpath=
cannam@85 5112 convenience=
cannam@85 5113 old_convenience=
cannam@85 5114 deplibs=
cannam@85 5115 old_deplibs=
cannam@85 5116 compiler_flags=
cannam@85 5117 linker_flags=
cannam@85 5118 dllsearchpath=
cannam@85 5119 lib_search_path=`pwd`
cannam@85 5120 inst_prefix_dir=
cannam@85 5121 new_inherited_linker_flags=
cannam@85 5122
cannam@85 5123 avoid_version=no
cannam@85 5124 bindir=
cannam@85 5125 dlfiles=
cannam@85 5126 dlprefiles=
cannam@85 5127 dlself=no
cannam@85 5128 export_dynamic=no
cannam@85 5129 export_symbols=
cannam@85 5130 export_symbols_regex=
cannam@85 5131 generated=
cannam@85 5132 libobjs=
cannam@85 5133 ltlibs=
cannam@85 5134 module=no
cannam@85 5135 no_install=no
cannam@85 5136 objs=
cannam@85 5137 non_pic_objects=
cannam@85 5138 precious_files_regex=
cannam@85 5139 prefer_static_libs=no
cannam@85 5140 preload=no
cannam@85 5141 prev=
cannam@85 5142 prevarg=
cannam@85 5143 release=
cannam@85 5144 rpath=
cannam@85 5145 xrpath=
cannam@85 5146 perm_rpath=
cannam@85 5147 temp_rpath=
cannam@85 5148 thread_safe=no
cannam@85 5149 vinfo=
cannam@85 5150 vinfo_number=no
cannam@85 5151 weak_libs=
cannam@85 5152 single_module="${wl}-single_module"
cannam@85 5153 func_infer_tag $base_compile
cannam@85 5154
cannam@85 5155 # We need to know -static, to get the right output filenames.
cannam@85 5156 for arg
cannam@85 5157 do
cannam@85 5158 case $arg in
cannam@85 5159 -shared)
cannam@85 5160 test "$build_libtool_libs" != yes && \
cannam@85 5161 func_fatal_configuration "can not build a shared library"
cannam@85 5162 build_old_libs=no
cannam@85 5163 break
cannam@85 5164 ;;
cannam@85 5165 -all-static | -static | -static-libtool-libs)
cannam@85 5166 case $arg in
cannam@85 5167 -all-static)
cannam@85 5168 if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
cannam@85 5169 func_warning "complete static linking is impossible in this configuration"
cannam@85 5170 fi
cannam@85 5171 if test -n "$link_static_flag"; then
cannam@85 5172 dlopen_self=$dlopen_self_static
cannam@85 5173 fi
cannam@85 5174 prefer_static_libs=yes
cannam@85 5175 ;;
cannam@85 5176 -static)
cannam@85 5177 if test -z "$pic_flag" && test -n "$link_static_flag"; then
cannam@85 5178 dlopen_self=$dlopen_self_static
cannam@85 5179 fi
cannam@85 5180 prefer_static_libs=built
cannam@85 5181 ;;
cannam@85 5182 -static-libtool-libs)
cannam@85 5183 if test -z "$pic_flag" && test -n "$link_static_flag"; then
cannam@85 5184 dlopen_self=$dlopen_self_static
cannam@85 5185 fi
cannam@85 5186 prefer_static_libs=yes
cannam@85 5187 ;;
cannam@85 5188 esac
cannam@85 5189 build_libtool_libs=no
cannam@85 5190 build_old_libs=yes
cannam@85 5191 break
cannam@85 5192 ;;
cannam@85 5193 esac
cannam@85 5194 done
cannam@85 5195
cannam@85 5196 # See if our shared archives depend on static archives.
cannam@85 5197 test -n "$old_archive_from_new_cmds" && build_old_libs=yes
cannam@85 5198
cannam@85 5199 # Go through the arguments, transforming them on the way.
cannam@85 5200 while test "$#" -gt 0; do
cannam@85 5201 arg="$1"
cannam@85 5202 shift
cannam@85 5203 func_quote_for_eval "$arg"
cannam@85 5204 qarg=$func_quote_for_eval_unquoted_result
cannam@85 5205 func_append libtool_args " $func_quote_for_eval_result"
cannam@85 5206
cannam@85 5207 # If the previous option needs an argument, assign it.
cannam@85 5208 if test -n "$prev"; then
cannam@85 5209 case $prev in
cannam@85 5210 output)
cannam@85 5211 func_append compile_command " @OUTPUT@"
cannam@85 5212 func_append finalize_command " @OUTPUT@"
cannam@85 5213 ;;
cannam@85 5214 esac
cannam@85 5215
cannam@85 5216 case $prev in
cannam@85 5217 bindir)
cannam@85 5218 bindir="$arg"
cannam@85 5219 prev=
cannam@85 5220 continue
cannam@85 5221 ;;
cannam@85 5222 dlfiles|dlprefiles)
cannam@85 5223 if test "$preload" = no; then
cannam@85 5224 # Add the symbol object into the linking commands.
cannam@85 5225 func_append compile_command " @SYMFILE@"
cannam@85 5226 func_append finalize_command " @SYMFILE@"
cannam@85 5227 preload=yes
cannam@85 5228 fi
cannam@85 5229 case $arg in
cannam@85 5230 *.la | *.lo) ;; # We handle these cases below.
cannam@85 5231 force)
cannam@85 5232 if test "$dlself" = no; then
cannam@85 5233 dlself=needless
cannam@85 5234 export_dynamic=yes
cannam@85 5235 fi
cannam@85 5236 prev=
cannam@85 5237 continue
cannam@85 5238 ;;
cannam@85 5239 self)
cannam@85 5240 if test "$prev" = dlprefiles; then
cannam@85 5241 dlself=yes
cannam@85 5242 elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
cannam@85 5243 dlself=yes
cannam@85 5244 else
cannam@85 5245 dlself=needless
cannam@85 5246 export_dynamic=yes
cannam@85 5247 fi
cannam@85 5248 prev=
cannam@85 5249 continue
cannam@85 5250 ;;
cannam@85 5251 *)
cannam@85 5252 if test "$prev" = dlfiles; then
cannam@85 5253 func_append dlfiles " $arg"
cannam@85 5254 else
cannam@85 5255 func_append dlprefiles " $arg"
cannam@85 5256 fi
cannam@85 5257 prev=
cannam@85 5258 continue
cannam@85 5259 ;;
cannam@85 5260 esac
cannam@85 5261 ;;
cannam@85 5262 expsyms)
cannam@85 5263 export_symbols="$arg"
cannam@85 5264 test -f "$arg" \
cannam@85 5265 || func_fatal_error "symbol file \`$arg' does not exist"
cannam@85 5266 prev=
cannam@85 5267 continue
cannam@85 5268 ;;
cannam@85 5269 expsyms_regex)
cannam@85 5270 export_symbols_regex="$arg"
cannam@85 5271 prev=
cannam@85 5272 continue
cannam@85 5273 ;;
cannam@85 5274 framework)
cannam@85 5275 case $host in
cannam@85 5276 *-*-darwin*)
cannam@85 5277 case "$deplibs " in
cannam@85 5278 *" $qarg.ltframework "*) ;;
cannam@85 5279 *) func_append deplibs " $qarg.ltframework" # this is fixed later
cannam@85 5280 ;;
cannam@85 5281 esac
cannam@85 5282 ;;
cannam@85 5283 esac
cannam@85 5284 prev=
cannam@85 5285 continue
cannam@85 5286 ;;
cannam@85 5287 inst_prefix)
cannam@85 5288 inst_prefix_dir="$arg"
cannam@85 5289 prev=
cannam@85 5290 continue
cannam@85 5291 ;;
cannam@85 5292 objectlist)
cannam@85 5293 if test -f "$arg"; then
cannam@85 5294 save_arg=$arg
cannam@85 5295 moreargs=
cannam@85 5296 for fil in `cat "$save_arg"`
cannam@85 5297 do
cannam@85 5298 # func_append moreargs " $fil"
cannam@85 5299 arg=$fil
cannam@85 5300 # A libtool-controlled object.
cannam@85 5301
cannam@85 5302 # Check to see that this really is a libtool object.
cannam@85 5303 if func_lalib_unsafe_p "$arg"; then
cannam@85 5304 pic_object=
cannam@85 5305 non_pic_object=
cannam@85 5306
cannam@85 5307 # Read the .lo file
cannam@85 5308 func_source "$arg"
cannam@85 5309
cannam@85 5310 if test -z "$pic_object" ||
cannam@85 5311 test -z "$non_pic_object" ||
cannam@85 5312 test "$pic_object" = none &&
cannam@85 5313 test "$non_pic_object" = none; then
cannam@85 5314 func_fatal_error "cannot find name of object for \`$arg'"
cannam@85 5315 fi
cannam@85 5316
cannam@85 5317 # Extract subdirectory from the argument.
cannam@85 5318 func_dirname "$arg" "/" ""
cannam@85 5319 xdir="$func_dirname_result"
cannam@85 5320
cannam@85 5321 if test "$pic_object" != none; then
cannam@85 5322 # Prepend the subdirectory the object is found in.
cannam@85 5323 pic_object="$xdir$pic_object"
cannam@85 5324
cannam@85 5325 if test "$prev" = dlfiles; then
cannam@85 5326 if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
cannam@85 5327 func_append dlfiles " $pic_object"
cannam@85 5328 prev=
cannam@85 5329 continue
cannam@85 5330 else
cannam@85 5331 # If libtool objects are unsupported, then we need to preload.
cannam@85 5332 prev=dlprefiles
cannam@85 5333 fi
cannam@85 5334 fi
cannam@85 5335
cannam@85 5336 # CHECK ME: I think I busted this. -Ossama
cannam@85 5337 if test "$prev" = dlprefiles; then
cannam@85 5338 # Preload the old-style object.
cannam@85 5339 func_append dlprefiles " $pic_object"
cannam@85 5340 prev=
cannam@85 5341 fi
cannam@85 5342
cannam@85 5343 # A PIC object.
cannam@85 5344 func_append libobjs " $pic_object"
cannam@85 5345 arg="$pic_object"
cannam@85 5346 fi
cannam@85 5347
cannam@85 5348 # Non-PIC object.
cannam@85 5349 if test "$non_pic_object" != none; then
cannam@85 5350 # Prepend the subdirectory the object is found in.
cannam@85 5351 non_pic_object="$xdir$non_pic_object"
cannam@85 5352
cannam@85 5353 # A standard non-PIC object
cannam@85 5354 func_append non_pic_objects " $non_pic_object"
cannam@85 5355 if test -z "$pic_object" || test "$pic_object" = none ; then
cannam@85 5356 arg="$non_pic_object"
cannam@85 5357 fi
cannam@85 5358 else
cannam@85 5359 # If the PIC object exists, use it instead.
cannam@85 5360 # $xdir was prepended to $pic_object above.
cannam@85 5361 non_pic_object="$pic_object"
cannam@85 5362 func_append non_pic_objects " $non_pic_object"
cannam@85 5363 fi
cannam@85 5364 else
cannam@85 5365 # Only an error if not doing a dry-run.
cannam@85 5366 if $opt_dry_run; then
cannam@85 5367 # Extract subdirectory from the argument.
cannam@85 5368 func_dirname "$arg" "/" ""
cannam@85 5369 xdir="$func_dirname_result"
cannam@85 5370
cannam@85 5371 func_lo2o "$arg"
cannam@85 5372 pic_object=$xdir$objdir/$func_lo2o_result
cannam@85 5373 non_pic_object=$xdir$func_lo2o_result
cannam@85 5374 func_append libobjs " $pic_object"
cannam@85 5375 func_append non_pic_objects " $non_pic_object"
cannam@85 5376 else
cannam@85 5377 func_fatal_error "\`$arg' is not a valid libtool object"
cannam@85 5378 fi
cannam@85 5379 fi
cannam@85 5380 done
cannam@85 5381 else
cannam@85 5382 func_fatal_error "link input file \`$arg' does not exist"
cannam@85 5383 fi
cannam@85 5384 arg=$save_arg
cannam@85 5385 prev=
cannam@85 5386 continue
cannam@85 5387 ;;
cannam@85 5388 precious_regex)
cannam@85 5389 precious_files_regex="$arg"
cannam@85 5390 prev=
cannam@85 5391 continue
cannam@85 5392 ;;
cannam@85 5393 release)
cannam@85 5394 release="-$arg"
cannam@85 5395 prev=
cannam@85 5396 continue
cannam@85 5397 ;;
cannam@85 5398 rpath | xrpath)
cannam@85 5399 # We need an absolute path.
cannam@85 5400 case $arg in
cannam@85 5401 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@85 5402 *)
cannam@85 5403 func_fatal_error "only absolute run-paths are allowed"
cannam@85 5404 ;;
cannam@85 5405 esac
cannam@85 5406 if test "$prev" = rpath; then
cannam@85 5407 case "$rpath " in
cannam@85 5408 *" $arg "*) ;;
cannam@85 5409 *) func_append rpath " $arg" ;;
cannam@85 5410 esac
cannam@85 5411 else
cannam@85 5412 case "$xrpath " in
cannam@85 5413 *" $arg "*) ;;
cannam@85 5414 *) func_append xrpath " $arg" ;;
cannam@85 5415 esac
cannam@85 5416 fi
cannam@85 5417 prev=
cannam@85 5418 continue
cannam@85 5419 ;;
cannam@85 5420 shrext)
cannam@85 5421 shrext_cmds="$arg"
cannam@85 5422 prev=
cannam@85 5423 continue
cannam@85 5424 ;;
cannam@85 5425 weak)
cannam@85 5426 func_append weak_libs " $arg"
cannam@85 5427 prev=
cannam@85 5428 continue
cannam@85 5429 ;;
cannam@85 5430 xcclinker)
cannam@85 5431 func_append linker_flags " $qarg"
cannam@85 5432 func_append compiler_flags " $qarg"
cannam@85 5433 prev=
cannam@85 5434 func_append compile_command " $qarg"
cannam@85 5435 func_append finalize_command " $qarg"
cannam@85 5436 continue
cannam@85 5437 ;;
cannam@85 5438 xcompiler)
cannam@85 5439 func_append compiler_flags " $qarg"
cannam@85 5440 prev=
cannam@85 5441 func_append compile_command " $qarg"
cannam@85 5442 func_append finalize_command " $qarg"
cannam@85 5443 continue
cannam@85 5444 ;;
cannam@85 5445 xlinker)
cannam@85 5446 func_append linker_flags " $qarg"
cannam@85 5447 func_append compiler_flags " $wl$qarg"
cannam@85 5448 prev=
cannam@85 5449 func_append compile_command " $wl$qarg"
cannam@85 5450 func_append finalize_command " $wl$qarg"
cannam@85 5451 continue
cannam@85 5452 ;;
cannam@85 5453 *)
cannam@85 5454 eval "$prev=\"\$arg\""
cannam@85 5455 prev=
cannam@85 5456 continue
cannam@85 5457 ;;
cannam@85 5458 esac
cannam@85 5459 fi # test -n "$prev"
cannam@85 5460
cannam@85 5461 prevarg="$arg"
cannam@85 5462
cannam@85 5463 case $arg in
cannam@85 5464 -all-static)
cannam@85 5465 if test -n "$link_static_flag"; then
cannam@85 5466 # See comment for -static flag below, for more details.
cannam@85 5467 func_append compile_command " $link_static_flag"
cannam@85 5468 func_append finalize_command " $link_static_flag"
cannam@85 5469 fi
cannam@85 5470 continue
cannam@85 5471 ;;
cannam@85 5472
cannam@85 5473 -allow-undefined)
cannam@85 5474 # FIXME: remove this flag sometime in the future.
cannam@85 5475 func_fatal_error "\`-allow-undefined' must not be used because it is the default"
cannam@85 5476 ;;
cannam@85 5477
cannam@85 5478 -avoid-version)
cannam@85 5479 avoid_version=yes
cannam@85 5480 continue
cannam@85 5481 ;;
cannam@85 5482
cannam@85 5483 -bindir)
cannam@85 5484 prev=bindir
cannam@85 5485 continue
cannam@85 5486 ;;
cannam@85 5487
cannam@85 5488 -dlopen)
cannam@85 5489 prev=dlfiles
cannam@85 5490 continue
cannam@85 5491 ;;
cannam@85 5492
cannam@85 5493 -dlpreopen)
cannam@85 5494 prev=dlprefiles
cannam@85 5495 continue
cannam@85 5496 ;;
cannam@85 5497
cannam@85 5498 -export-dynamic)
cannam@85 5499 export_dynamic=yes
cannam@85 5500 continue
cannam@85 5501 ;;
cannam@85 5502
cannam@85 5503 -export-symbols | -export-symbols-regex)
cannam@85 5504 if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
cannam@85 5505 func_fatal_error "more than one -exported-symbols argument is not allowed"
cannam@85 5506 fi
cannam@85 5507 if test "X$arg" = "X-export-symbols"; then
cannam@85 5508 prev=expsyms
cannam@85 5509 else
cannam@85 5510 prev=expsyms_regex
cannam@85 5511 fi
cannam@85 5512 continue
cannam@85 5513 ;;
cannam@85 5514
cannam@85 5515 -framework)
cannam@85 5516 prev=framework
cannam@85 5517 continue
cannam@85 5518 ;;
cannam@85 5519
cannam@85 5520 -inst-prefix-dir)
cannam@85 5521 prev=inst_prefix
cannam@85 5522 continue
cannam@85 5523 ;;
cannam@85 5524
cannam@85 5525 # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
cannam@85 5526 # so, if we see these flags be careful not to treat them like -L
cannam@85 5527 -L[A-Z][A-Z]*:*)
cannam@85 5528 case $with_gcc/$host in
cannam@85 5529 no/*-*-irix* | /*-*-irix*)
cannam@85 5530 func_append compile_command " $arg"
cannam@85 5531 func_append finalize_command " $arg"
cannam@85 5532 ;;
cannam@85 5533 esac
cannam@85 5534 continue
cannam@85 5535 ;;
cannam@85 5536
cannam@85 5537 -L*)
cannam@85 5538 func_stripname "-L" '' "$arg"
cannam@85 5539 if test -z "$func_stripname_result"; then
cannam@85 5540 if test "$#" -gt 0; then
cannam@85 5541 func_fatal_error "require no space between \`-L' and \`$1'"
cannam@85 5542 else
cannam@85 5543 func_fatal_error "need path for \`-L' option"
cannam@85 5544 fi
cannam@85 5545 fi
cannam@85 5546 func_resolve_sysroot "$func_stripname_result"
cannam@85 5547 dir=$func_resolve_sysroot_result
cannam@85 5548 # We need an absolute path.
cannam@85 5549 case $dir in
cannam@85 5550 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@85 5551 *)
cannam@85 5552 absdir=`cd "$dir" && pwd`
cannam@85 5553 test -z "$absdir" && \
cannam@85 5554 func_fatal_error "cannot determine absolute directory name of \`$dir'"
cannam@85 5555 dir="$absdir"
cannam@85 5556 ;;
cannam@85 5557 esac
cannam@85 5558 case "$deplibs " in
cannam@85 5559 *" -L$dir "* | *" $arg "*)
cannam@85 5560 # Will only happen for absolute or sysroot arguments
cannam@85 5561 ;;
cannam@85 5562 *)
cannam@85 5563 # Preserve sysroot, but never include relative directories
cannam@85 5564 case $dir in
cannam@85 5565 [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;;
cannam@85 5566 *) func_append deplibs " -L$dir" ;;
cannam@85 5567 esac
cannam@85 5568 func_append lib_search_path " $dir"
cannam@85 5569 ;;
cannam@85 5570 esac
cannam@85 5571 case $host in
cannam@85 5572 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
cannam@85 5573 testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'`
cannam@85 5574 case :$dllsearchpath: in
cannam@85 5575 *":$dir:"*) ;;
cannam@85 5576 ::) dllsearchpath=$dir;;
cannam@85 5577 *) func_append dllsearchpath ":$dir";;
cannam@85 5578 esac
cannam@85 5579 case :$dllsearchpath: in
cannam@85 5580 *":$testbindir:"*) ;;
cannam@85 5581 ::) dllsearchpath=$testbindir;;
cannam@85 5582 *) func_append dllsearchpath ":$testbindir";;
cannam@85 5583 esac
cannam@85 5584 ;;
cannam@85 5585 esac
cannam@85 5586 continue
cannam@85 5587 ;;
cannam@85 5588
cannam@85 5589 -l*)
cannam@85 5590 if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
cannam@85 5591 case $host in
cannam@85 5592 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*)
cannam@85 5593 # These systems don't actually have a C or math library (as such)
cannam@85 5594 continue
cannam@85 5595 ;;
cannam@85 5596 *-*-os2*)
cannam@85 5597 # These systems don't actually have a C library (as such)
cannam@85 5598 test "X$arg" = "X-lc" && continue
cannam@85 5599 ;;
cannam@85 5600 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@85 5601 # Do not include libc due to us having libc/libc_r.
cannam@85 5602 test "X$arg" = "X-lc" && continue
cannam@85 5603 ;;
cannam@85 5604 *-*-rhapsody* | *-*-darwin1.[012])
cannam@85 5605 # Rhapsody C and math libraries are in the System framework
cannam@85 5606 func_append deplibs " System.ltframework"
cannam@85 5607 continue
cannam@85 5608 ;;
cannam@85 5609 *-*-sco3.2v5* | *-*-sco5v6*)
cannam@85 5610 # Causes problems with __ctype
cannam@85 5611 test "X$arg" = "X-lc" && continue
cannam@85 5612 ;;
cannam@85 5613 *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
cannam@85 5614 # Compiler inserts libc in the correct place for threads to work
cannam@85 5615 test "X$arg" = "X-lc" && continue
cannam@85 5616 ;;
cannam@85 5617 esac
cannam@85 5618 elif test "X$arg" = "X-lc_r"; then
cannam@85 5619 case $host in
cannam@85 5620 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@85 5621 # Do not include libc_r directly, use -pthread flag.
cannam@85 5622 continue
cannam@85 5623 ;;
cannam@85 5624 esac
cannam@85 5625 fi
cannam@85 5626 func_append deplibs " $arg"
cannam@85 5627 continue
cannam@85 5628 ;;
cannam@85 5629
cannam@85 5630 -module)
cannam@85 5631 module=yes
cannam@85 5632 continue
cannam@85 5633 ;;
cannam@85 5634
cannam@85 5635 # Tru64 UNIX uses -model [arg] to determine the layout of C++
cannam@85 5636 # classes, name mangling, and exception handling.
cannam@85 5637 # Darwin uses the -arch flag to determine output architecture.
cannam@85 5638 -model|-arch|-isysroot|--sysroot)
cannam@85 5639 func_append compiler_flags " $arg"
cannam@85 5640 func_append compile_command " $arg"
cannam@85 5641 func_append finalize_command " $arg"
cannam@85 5642 prev=xcompiler
cannam@85 5643 continue
cannam@85 5644 ;;
cannam@85 5645
cannam@85 5646 -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
cannam@85 5647 func_append compiler_flags " $arg"
cannam@85 5648 func_append compile_command " $arg"
cannam@85 5649 func_append finalize_command " $arg"
cannam@85 5650 case "$new_inherited_linker_flags " in
cannam@85 5651 *" $arg "*) ;;
cannam@85 5652 * ) func_append new_inherited_linker_flags " $arg" ;;
cannam@85 5653 esac
cannam@85 5654 continue
cannam@85 5655 ;;
cannam@85 5656
cannam@85 5657 -multi_module)
cannam@85 5658 single_module="${wl}-multi_module"
cannam@85 5659 continue
cannam@85 5660 ;;
cannam@85 5661
cannam@85 5662 -no-fast-install)
cannam@85 5663 fast_install=no
cannam@85 5664 continue
cannam@85 5665 ;;
cannam@85 5666
cannam@85 5667 -no-install)
cannam@85 5668 case $host in
cannam@85 5669 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*)
cannam@85 5670 # The PATH hackery in wrapper scripts is required on Windows
cannam@85 5671 # and Darwin in order for the loader to find any dlls it needs.
cannam@85 5672 func_warning "\`-no-install' is ignored for $host"
cannam@85 5673 func_warning "assuming \`-no-fast-install' instead"
cannam@85 5674 fast_install=no
cannam@85 5675 ;;
cannam@85 5676 *) no_install=yes ;;
cannam@85 5677 esac
cannam@85 5678 continue
cannam@85 5679 ;;
cannam@85 5680
cannam@85 5681 -no-undefined)
cannam@85 5682 allow_undefined=no
cannam@85 5683 continue
cannam@85 5684 ;;
cannam@85 5685
cannam@85 5686 -objectlist)
cannam@85 5687 prev=objectlist
cannam@85 5688 continue
cannam@85 5689 ;;
cannam@85 5690
cannam@85 5691 -o) prev=output ;;
cannam@85 5692
cannam@85 5693 -precious-files-regex)
cannam@85 5694 prev=precious_regex
cannam@85 5695 continue
cannam@85 5696 ;;
cannam@85 5697
cannam@85 5698 -release)
cannam@85 5699 prev=release
cannam@85 5700 continue
cannam@85 5701 ;;
cannam@85 5702
cannam@85 5703 -rpath)
cannam@85 5704 prev=rpath
cannam@85 5705 continue
cannam@85 5706 ;;
cannam@85 5707
cannam@85 5708 -R)
cannam@85 5709 prev=xrpath
cannam@85 5710 continue
cannam@85 5711 ;;
cannam@85 5712
cannam@85 5713 -R*)
cannam@85 5714 func_stripname '-R' '' "$arg"
cannam@85 5715 dir=$func_stripname_result
cannam@85 5716 # We need an absolute path.
cannam@85 5717 case $dir in
cannam@85 5718 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@85 5719 =*)
cannam@85 5720 func_stripname '=' '' "$dir"
cannam@85 5721 dir=$lt_sysroot$func_stripname_result
cannam@85 5722 ;;
cannam@85 5723 *)
cannam@85 5724 func_fatal_error "only absolute run-paths are allowed"
cannam@85 5725 ;;
cannam@85 5726 esac
cannam@85 5727 case "$xrpath " in
cannam@85 5728 *" $dir "*) ;;
cannam@85 5729 *) func_append xrpath " $dir" ;;
cannam@85 5730 esac
cannam@85 5731 continue
cannam@85 5732 ;;
cannam@85 5733
cannam@85 5734 -shared)
cannam@85 5735 # The effects of -shared are defined in a previous loop.
cannam@85 5736 continue
cannam@85 5737 ;;
cannam@85 5738
cannam@85 5739 -shrext)
cannam@85 5740 prev=shrext
cannam@85 5741 continue
cannam@85 5742 ;;
cannam@85 5743
cannam@85 5744 -static | -static-libtool-libs)
cannam@85 5745 # The effects of -static are defined in a previous loop.
cannam@85 5746 # We used to do the same as -all-static on platforms that
cannam@85 5747 # didn't have a PIC flag, but the assumption that the effects
cannam@85 5748 # would be equivalent was wrong. It would break on at least
cannam@85 5749 # Digital Unix and AIX.
cannam@85 5750 continue
cannam@85 5751 ;;
cannam@85 5752
cannam@85 5753 -thread-safe)
cannam@85 5754 thread_safe=yes
cannam@85 5755 continue
cannam@85 5756 ;;
cannam@85 5757
cannam@85 5758 -version-info)
cannam@85 5759 prev=vinfo
cannam@85 5760 continue
cannam@85 5761 ;;
cannam@85 5762
cannam@85 5763 -version-number)
cannam@85 5764 prev=vinfo
cannam@85 5765 vinfo_number=yes
cannam@85 5766 continue
cannam@85 5767 ;;
cannam@85 5768
cannam@85 5769 -weak)
cannam@85 5770 prev=weak
cannam@85 5771 continue
cannam@85 5772 ;;
cannam@85 5773
cannam@85 5774 -Wc,*)
cannam@85 5775 func_stripname '-Wc,' '' "$arg"
cannam@85 5776 args=$func_stripname_result
cannam@85 5777 arg=
cannam@85 5778 save_ifs="$IFS"; IFS=','
cannam@85 5779 for flag in $args; do
cannam@85 5780 IFS="$save_ifs"
cannam@85 5781 func_quote_for_eval "$flag"
cannam@85 5782 func_append arg " $func_quote_for_eval_result"
cannam@85 5783 func_append compiler_flags " $func_quote_for_eval_result"
cannam@85 5784 done
cannam@85 5785 IFS="$save_ifs"
cannam@85 5786 func_stripname ' ' '' "$arg"
cannam@85 5787 arg=$func_stripname_result
cannam@85 5788 ;;
cannam@85 5789
cannam@85 5790 -Wl,*)
cannam@85 5791 func_stripname '-Wl,' '' "$arg"
cannam@85 5792 args=$func_stripname_result
cannam@85 5793 arg=
cannam@85 5794 save_ifs="$IFS"; IFS=','
cannam@85 5795 for flag in $args; do
cannam@85 5796 IFS="$save_ifs"
cannam@85 5797 func_quote_for_eval "$flag"
cannam@85 5798 func_append arg " $wl$func_quote_for_eval_result"
cannam@85 5799 func_append compiler_flags " $wl$func_quote_for_eval_result"
cannam@85 5800 func_append linker_flags " $func_quote_for_eval_result"
cannam@85 5801 done
cannam@85 5802 IFS="$save_ifs"
cannam@85 5803 func_stripname ' ' '' "$arg"
cannam@85 5804 arg=$func_stripname_result
cannam@85 5805 ;;
cannam@85 5806
cannam@85 5807 -Xcompiler)
cannam@85 5808 prev=xcompiler
cannam@85 5809 continue
cannam@85 5810 ;;
cannam@85 5811
cannam@85 5812 -Xlinker)
cannam@85 5813 prev=xlinker
cannam@85 5814 continue
cannam@85 5815 ;;
cannam@85 5816
cannam@85 5817 -XCClinker)
cannam@85 5818 prev=xcclinker
cannam@85 5819 continue
cannam@85 5820 ;;
cannam@85 5821
cannam@85 5822 # -msg_* for osf cc
cannam@85 5823 -msg_*)
cannam@85 5824 func_quote_for_eval "$arg"
cannam@85 5825 arg="$func_quote_for_eval_result"
cannam@85 5826 ;;
cannam@85 5827
cannam@85 5828 # Flags to be passed through unchanged, with rationale:
cannam@85 5829 # -64, -mips[0-9] enable 64-bit mode for the SGI compiler
cannam@85 5830 # -r[0-9][0-9]* specify processor for the SGI compiler
cannam@85 5831 # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler
cannam@85 5832 # +DA*, +DD* enable 64-bit mode for the HP compiler
cannam@85 5833 # -q* compiler args for the IBM compiler
cannam@85 5834 # -m*, -t[45]*, -txscale* architecture-specific flags for GCC
cannam@85 5835 # -F/path path to uninstalled frameworks, gcc on darwin
cannam@85 5836 # -p, -pg, --coverage, -fprofile-* profiling flags for GCC
cannam@85 5837 # @file GCC response files
cannam@85 5838 # -tp=* Portland pgcc target processor selection
cannam@85 5839 # --sysroot=* for sysroot support
cannam@85 5840 # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization
cannam@85 5841 -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
cannam@85 5842 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
cannam@85 5843 -O*|-flto*|-fwhopr*|-fuse-linker-plugin)
cannam@85 5844 func_quote_for_eval "$arg"
cannam@85 5845 arg="$func_quote_for_eval_result"
cannam@85 5846 func_append compile_command " $arg"
cannam@85 5847 func_append finalize_command " $arg"
cannam@85 5848 func_append compiler_flags " $arg"
cannam@85 5849 continue
cannam@85 5850 ;;
cannam@85 5851
cannam@85 5852 # Some other compiler flag.
cannam@85 5853 -* | +*)
cannam@85 5854 func_quote_for_eval "$arg"
cannam@85 5855 arg="$func_quote_for_eval_result"
cannam@85 5856 ;;
cannam@85 5857
cannam@85 5858 *.$objext)
cannam@85 5859 # A standard object.
cannam@85 5860 func_append objs " $arg"
cannam@85 5861 ;;
cannam@85 5862
cannam@85 5863 *.lo)
cannam@85 5864 # A libtool-controlled object.
cannam@85 5865
cannam@85 5866 # Check to see that this really is a libtool object.
cannam@85 5867 if func_lalib_unsafe_p "$arg"; then
cannam@85 5868 pic_object=
cannam@85 5869 non_pic_object=
cannam@85 5870
cannam@85 5871 # Read the .lo file
cannam@85 5872 func_source "$arg"
cannam@85 5873
cannam@85 5874 if test -z "$pic_object" ||
cannam@85 5875 test -z "$non_pic_object" ||
cannam@85 5876 test "$pic_object" = none &&
cannam@85 5877 test "$non_pic_object" = none; then
cannam@85 5878 func_fatal_error "cannot find name of object for \`$arg'"
cannam@85 5879 fi
cannam@85 5880
cannam@85 5881 # Extract subdirectory from the argument.
cannam@85 5882 func_dirname "$arg" "/" ""
cannam@85 5883 xdir="$func_dirname_result"
cannam@85 5884
cannam@85 5885 if test "$pic_object" != none; then
cannam@85 5886 # Prepend the subdirectory the object is found in.
cannam@85 5887 pic_object="$xdir$pic_object"
cannam@85 5888
cannam@85 5889 if test "$prev" = dlfiles; then
cannam@85 5890 if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
cannam@85 5891 func_append dlfiles " $pic_object"
cannam@85 5892 prev=
cannam@85 5893 continue
cannam@85 5894 else
cannam@85 5895 # If libtool objects are unsupported, then we need to preload.
cannam@85 5896 prev=dlprefiles
cannam@85 5897 fi
cannam@85 5898 fi
cannam@85 5899
cannam@85 5900 # CHECK ME: I think I busted this. -Ossama
cannam@85 5901 if test "$prev" = dlprefiles; then
cannam@85 5902 # Preload the old-style object.
cannam@85 5903 func_append dlprefiles " $pic_object"
cannam@85 5904 prev=
cannam@85 5905 fi
cannam@85 5906
cannam@85 5907 # A PIC object.
cannam@85 5908 func_append libobjs " $pic_object"
cannam@85 5909 arg="$pic_object"
cannam@85 5910 fi
cannam@85 5911
cannam@85 5912 # Non-PIC object.
cannam@85 5913 if test "$non_pic_object" != none; then
cannam@85 5914 # Prepend the subdirectory the object is found in.
cannam@85 5915 non_pic_object="$xdir$non_pic_object"
cannam@85 5916
cannam@85 5917 # A standard non-PIC object
cannam@85 5918 func_append non_pic_objects " $non_pic_object"
cannam@85 5919 if test -z "$pic_object" || test "$pic_object" = none ; then
cannam@85 5920 arg="$non_pic_object"
cannam@85 5921 fi
cannam@85 5922 else
cannam@85 5923 # If the PIC object exists, use it instead.
cannam@85 5924 # $xdir was prepended to $pic_object above.
cannam@85 5925 non_pic_object="$pic_object"
cannam@85 5926 func_append non_pic_objects " $non_pic_object"
cannam@85 5927 fi
cannam@85 5928 else
cannam@85 5929 # Only an error if not doing a dry-run.
cannam@85 5930 if $opt_dry_run; then
cannam@85 5931 # Extract subdirectory from the argument.
cannam@85 5932 func_dirname "$arg" "/" ""
cannam@85 5933 xdir="$func_dirname_result"
cannam@85 5934
cannam@85 5935 func_lo2o "$arg"
cannam@85 5936 pic_object=$xdir$objdir/$func_lo2o_result
cannam@85 5937 non_pic_object=$xdir$func_lo2o_result
cannam@85 5938 func_append libobjs " $pic_object"
cannam@85 5939 func_append non_pic_objects " $non_pic_object"
cannam@85 5940 else
cannam@85 5941 func_fatal_error "\`$arg' is not a valid libtool object"
cannam@85 5942 fi
cannam@85 5943 fi
cannam@85 5944 ;;
cannam@85 5945
cannam@85 5946 *.$libext)
cannam@85 5947 # An archive.
cannam@85 5948 func_append deplibs " $arg"
cannam@85 5949 func_append old_deplibs " $arg"
cannam@85 5950 continue
cannam@85 5951 ;;
cannam@85 5952
cannam@85 5953 *.la)
cannam@85 5954 # A libtool-controlled library.
cannam@85 5955
cannam@85 5956 func_resolve_sysroot "$arg"
cannam@85 5957 if test "$prev" = dlfiles; then
cannam@85 5958 # This library was specified with -dlopen.
cannam@85 5959 func_append dlfiles " $func_resolve_sysroot_result"
cannam@85 5960 prev=
cannam@85 5961 elif test "$prev" = dlprefiles; then
cannam@85 5962 # The library was specified with -dlpreopen.
cannam@85 5963 func_append dlprefiles " $func_resolve_sysroot_result"
cannam@85 5964 prev=
cannam@85 5965 else
cannam@85 5966 func_append deplibs " $func_resolve_sysroot_result"
cannam@85 5967 fi
cannam@85 5968 continue
cannam@85 5969 ;;
cannam@85 5970
cannam@85 5971 # Some other compiler argument.
cannam@85 5972 *)
cannam@85 5973 # Unknown arguments in both finalize_command and compile_command need
cannam@85 5974 # to be aesthetically quoted because they are evaled later.
cannam@85 5975 func_quote_for_eval "$arg"
cannam@85 5976 arg="$func_quote_for_eval_result"
cannam@85 5977 ;;
cannam@85 5978 esac # arg
cannam@85 5979
cannam@85 5980 # Now actually substitute the argument into the commands.
cannam@85 5981 if test -n "$arg"; then
cannam@85 5982 func_append compile_command " $arg"
cannam@85 5983 func_append finalize_command " $arg"
cannam@85 5984 fi
cannam@85 5985 done # argument parsing loop
cannam@85 5986
cannam@85 5987 test -n "$prev" && \
cannam@85 5988 func_fatal_help "the \`$prevarg' option requires an argument"
cannam@85 5989
cannam@85 5990 if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
cannam@85 5991 eval arg=\"$export_dynamic_flag_spec\"
cannam@85 5992 func_append compile_command " $arg"
cannam@85 5993 func_append finalize_command " $arg"
cannam@85 5994 fi
cannam@85 5995
cannam@85 5996 oldlibs=
cannam@85 5997 # calculate the name of the file, without its directory
cannam@85 5998 func_basename "$output"
cannam@85 5999 outputname="$func_basename_result"
cannam@85 6000 libobjs_save="$libobjs"
cannam@85 6001
cannam@85 6002 if test -n "$shlibpath_var"; then
cannam@85 6003 # get the directories listed in $shlibpath_var
cannam@85 6004 eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\`
cannam@85 6005 else
cannam@85 6006 shlib_search_path=
cannam@85 6007 fi
cannam@85 6008 eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
cannam@85 6009 eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"
cannam@85 6010
cannam@85 6011 func_dirname "$output" "/" ""
cannam@85 6012 output_objdir="$func_dirname_result$objdir"
cannam@85 6013 func_to_tool_file "$output_objdir/"
cannam@85 6014 tool_output_objdir=$func_to_tool_file_result
cannam@85 6015 # Create the object directory.
cannam@85 6016 func_mkdir_p "$output_objdir"
cannam@85 6017
cannam@85 6018 # Determine the type of output
cannam@85 6019 case $output in
cannam@85 6020 "")
cannam@85 6021 func_fatal_help "you must specify an output file"
cannam@85 6022 ;;
cannam@85 6023 *.$libext) linkmode=oldlib ;;
cannam@85 6024 *.lo | *.$objext) linkmode=obj ;;
cannam@85 6025 *.la) linkmode=lib ;;
cannam@85 6026 *) linkmode=prog ;; # Anything else should be a program.
cannam@85 6027 esac
cannam@85 6028
cannam@85 6029 specialdeplibs=
cannam@85 6030
cannam@85 6031 libs=
cannam@85 6032 # Find all interdependent deplibs by searching for libraries
cannam@85 6033 # that are linked more than once (e.g. -la -lb -la)
cannam@85 6034 for deplib in $deplibs; do
cannam@85 6035 if $opt_preserve_dup_deps ; then
cannam@85 6036 case "$libs " in
cannam@85 6037 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
cannam@85 6038 esac
cannam@85 6039 fi
cannam@85 6040 func_append libs " $deplib"
cannam@85 6041 done
cannam@85 6042
cannam@85 6043 if test "$linkmode" = lib; then
cannam@85 6044 libs="$predeps $libs $compiler_lib_search_path $postdeps"
cannam@85 6045
cannam@85 6046 # Compute libraries that are listed more than once in $predeps
cannam@85 6047 # $postdeps and mark them as special (i.e., whose duplicates are
cannam@85 6048 # not to be eliminated).
cannam@85 6049 pre_post_deps=
cannam@85 6050 if $opt_duplicate_compiler_generated_deps; then
cannam@85 6051 for pre_post_dep in $predeps $postdeps; do
cannam@85 6052 case "$pre_post_deps " in
cannam@85 6053 *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;;
cannam@85 6054 esac
cannam@85 6055 func_append pre_post_deps " $pre_post_dep"
cannam@85 6056 done
cannam@85 6057 fi
cannam@85 6058 pre_post_deps=
cannam@85 6059 fi
cannam@85 6060
cannam@85 6061 deplibs=
cannam@85 6062 newdependency_libs=
cannam@85 6063 newlib_search_path=
cannam@85 6064 need_relink=no # whether we're linking any uninstalled libtool libraries
cannam@85 6065 notinst_deplibs= # not-installed libtool libraries
cannam@85 6066 notinst_path= # paths that contain not-installed libtool libraries
cannam@85 6067
cannam@85 6068 case $linkmode in
cannam@85 6069 lib)
cannam@85 6070 passes="conv dlpreopen link"
cannam@85 6071 for file in $dlfiles $dlprefiles; do
cannam@85 6072 case $file in
cannam@85 6073 *.la) ;;
cannam@85 6074 *)
cannam@85 6075 func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file"
cannam@85 6076 ;;
cannam@85 6077 esac
cannam@85 6078 done
cannam@85 6079 ;;
cannam@85 6080 prog)
cannam@85 6081 compile_deplibs=
cannam@85 6082 finalize_deplibs=
cannam@85 6083 alldeplibs=no
cannam@85 6084 newdlfiles=
cannam@85 6085 newdlprefiles=
cannam@85 6086 passes="conv scan dlopen dlpreopen link"
cannam@85 6087 ;;
cannam@85 6088 *) passes="conv"
cannam@85 6089 ;;
cannam@85 6090 esac
cannam@85 6091
cannam@85 6092 for pass in $passes; do
cannam@85 6093 # The preopen pass in lib mode reverses $deplibs; put it back here
cannam@85 6094 # so that -L comes before libs that need it for instance...
cannam@85 6095 if test "$linkmode,$pass" = "lib,link"; then
cannam@85 6096 ## FIXME: Find the place where the list is rebuilt in the wrong
cannam@85 6097 ## order, and fix it there properly
cannam@85 6098 tmp_deplibs=
cannam@85 6099 for deplib in $deplibs; do
cannam@85 6100 tmp_deplibs="$deplib $tmp_deplibs"
cannam@85 6101 done
cannam@85 6102 deplibs="$tmp_deplibs"
cannam@85 6103 fi
cannam@85 6104
cannam@85 6105 if test "$linkmode,$pass" = "lib,link" ||
cannam@85 6106 test "$linkmode,$pass" = "prog,scan"; then
cannam@85 6107 libs="$deplibs"
cannam@85 6108 deplibs=
cannam@85 6109 fi
cannam@85 6110 if test "$linkmode" = prog; then
cannam@85 6111 case $pass in
cannam@85 6112 dlopen) libs="$dlfiles" ;;
cannam@85 6113 dlpreopen) libs="$dlprefiles" ;;
cannam@85 6114 link)
cannam@85 6115 libs="$deplibs %DEPLIBS%"
cannam@85 6116 test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
cannam@85 6117 ;;
cannam@85 6118 esac
cannam@85 6119 fi
cannam@85 6120 if test "$linkmode,$pass" = "lib,dlpreopen"; then
cannam@85 6121 # Collect and forward deplibs of preopened libtool libs
cannam@85 6122 for lib in $dlprefiles; do
cannam@85 6123 # Ignore non-libtool-libs
cannam@85 6124 dependency_libs=
cannam@85 6125 func_resolve_sysroot "$lib"
cannam@85 6126 case $lib in
cannam@85 6127 *.la) func_source "$func_resolve_sysroot_result" ;;
cannam@85 6128 esac
cannam@85 6129
cannam@85 6130 # Collect preopened libtool deplibs, except any this library
cannam@85 6131 # has declared as weak libs
cannam@85 6132 for deplib in $dependency_libs; do
cannam@85 6133 func_basename "$deplib"
cannam@85 6134 deplib_base=$func_basename_result
cannam@85 6135 case " $weak_libs " in
cannam@85 6136 *" $deplib_base "*) ;;
cannam@85 6137 *) func_append deplibs " $deplib" ;;
cannam@85 6138 esac
cannam@85 6139 done
cannam@85 6140 done
cannam@85 6141 libs="$dlprefiles"
cannam@85 6142 fi
cannam@85 6143 if test "$pass" = dlopen; then
cannam@85 6144 # Collect dlpreopened libraries
cannam@85 6145 save_deplibs="$deplibs"
cannam@85 6146 deplibs=
cannam@85 6147 fi
cannam@85 6148
cannam@85 6149 for deplib in $libs; do
cannam@85 6150 lib=
cannam@85 6151 found=no
cannam@85 6152 case $deplib in
cannam@85 6153 -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
cannam@85 6154 if test "$linkmode,$pass" = "prog,link"; then
cannam@85 6155 compile_deplibs="$deplib $compile_deplibs"
cannam@85 6156 finalize_deplibs="$deplib $finalize_deplibs"
cannam@85 6157 else
cannam@85 6158 func_append compiler_flags " $deplib"
cannam@85 6159 if test "$linkmode" = lib ; then
cannam@85 6160 case "$new_inherited_linker_flags " in
cannam@85 6161 *" $deplib "*) ;;
cannam@85 6162 * ) func_append new_inherited_linker_flags " $deplib" ;;
cannam@85 6163 esac
cannam@85 6164 fi
cannam@85 6165 fi
cannam@85 6166 continue
cannam@85 6167 ;;
cannam@85 6168 -l*)
cannam@85 6169 if test "$linkmode" != lib && test "$linkmode" != prog; then
cannam@85 6170 func_warning "\`-l' is ignored for archives/objects"
cannam@85 6171 continue
cannam@85 6172 fi
cannam@85 6173 func_stripname '-l' '' "$deplib"
cannam@85 6174 name=$func_stripname_result
cannam@85 6175 if test "$linkmode" = lib; then
cannam@85 6176 searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path"
cannam@85 6177 else
cannam@85 6178 searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path"
cannam@85 6179 fi
cannam@85 6180 for searchdir in $searchdirs; do
cannam@85 6181 for search_ext in .la $std_shrext .so .a; do
cannam@85 6182 # Search the libtool library
cannam@85 6183 lib="$searchdir/lib${name}${search_ext}"
cannam@85 6184 if test -f "$lib"; then
cannam@85 6185 if test "$search_ext" = ".la"; then
cannam@85 6186 found=yes
cannam@85 6187 else
cannam@85 6188 found=no
cannam@85 6189 fi
cannam@85 6190 break 2
cannam@85 6191 fi
cannam@85 6192 done
cannam@85 6193 done
cannam@85 6194 if test "$found" != yes; then
cannam@85 6195 # deplib doesn't seem to be a libtool library
cannam@85 6196 if test "$linkmode,$pass" = "prog,link"; then
cannam@85 6197 compile_deplibs="$deplib $compile_deplibs"
cannam@85 6198 finalize_deplibs="$deplib $finalize_deplibs"
cannam@85 6199 else
cannam@85 6200 deplibs="$deplib $deplibs"
cannam@85 6201 test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
cannam@85 6202 fi
cannam@85 6203 continue
cannam@85 6204 else # deplib is a libtool library
cannam@85 6205 # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,
cannam@85 6206 # We need to do some special things here, and not later.
cannam@85 6207 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@85 6208 case " $predeps $postdeps " in
cannam@85 6209 *" $deplib "*)
cannam@85 6210 if func_lalib_p "$lib"; then
cannam@85 6211 library_names=
cannam@85 6212 old_library=
cannam@85 6213 func_source "$lib"
cannam@85 6214 for l in $old_library $library_names; do
cannam@85 6215 ll="$l"
cannam@85 6216 done
cannam@85 6217 if test "X$ll" = "X$old_library" ; then # only static version available
cannam@85 6218 found=no
cannam@85 6219 func_dirname "$lib" "" "."
cannam@85 6220 ladir="$func_dirname_result"
cannam@85 6221 lib=$ladir/$old_library
cannam@85 6222 if test "$linkmode,$pass" = "prog,link"; then
cannam@85 6223 compile_deplibs="$deplib $compile_deplibs"
cannam@85 6224 finalize_deplibs="$deplib $finalize_deplibs"
cannam@85 6225 else
cannam@85 6226 deplibs="$deplib $deplibs"
cannam@85 6227 test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
cannam@85 6228 fi
cannam@85 6229 continue
cannam@85 6230 fi
cannam@85 6231 fi
cannam@85 6232 ;;
cannam@85 6233 *) ;;
cannam@85 6234 esac
cannam@85 6235 fi
cannam@85 6236 fi
cannam@85 6237 ;; # -l
cannam@85 6238 *.ltframework)
cannam@85 6239 if test "$linkmode,$pass" = "prog,link"; then
cannam@85 6240 compile_deplibs="$deplib $compile_deplibs"
cannam@85 6241 finalize_deplibs="$deplib $finalize_deplibs"
cannam@85 6242 else
cannam@85 6243 deplibs="$deplib $deplibs"
cannam@85 6244 if test "$linkmode" = lib ; then
cannam@85 6245 case "$new_inherited_linker_flags " in
cannam@85 6246 *" $deplib "*) ;;
cannam@85 6247 * ) func_append new_inherited_linker_flags " $deplib" ;;
cannam@85 6248 esac
cannam@85 6249 fi
cannam@85 6250 fi
cannam@85 6251 continue
cannam@85 6252 ;;
cannam@85 6253 -L*)
cannam@85 6254 case $linkmode in
cannam@85 6255 lib)
cannam@85 6256 deplibs="$deplib $deplibs"
cannam@85 6257 test "$pass" = conv && continue
cannam@85 6258 newdependency_libs="$deplib $newdependency_libs"
cannam@85 6259 func_stripname '-L' '' "$deplib"
cannam@85 6260 func_resolve_sysroot "$func_stripname_result"
cannam@85 6261 func_append newlib_search_path " $func_resolve_sysroot_result"
cannam@85 6262 ;;
cannam@85 6263 prog)
cannam@85 6264 if test "$pass" = conv; then
cannam@85 6265 deplibs="$deplib $deplibs"
cannam@85 6266 continue
cannam@85 6267 fi
cannam@85 6268 if test "$pass" = scan; then
cannam@85 6269 deplibs="$deplib $deplibs"
cannam@85 6270 else
cannam@85 6271 compile_deplibs="$deplib $compile_deplibs"
cannam@85 6272 finalize_deplibs="$deplib $finalize_deplibs"
cannam@85 6273 fi
cannam@85 6274 func_stripname '-L' '' "$deplib"
cannam@85 6275 func_resolve_sysroot "$func_stripname_result"
cannam@85 6276 func_append newlib_search_path " $func_resolve_sysroot_result"
cannam@85 6277 ;;
cannam@85 6278 *)
cannam@85 6279 func_warning "\`-L' is ignored for archives/objects"
cannam@85 6280 ;;
cannam@85 6281 esac # linkmode
cannam@85 6282 continue
cannam@85 6283 ;; # -L
cannam@85 6284 -R*)
cannam@85 6285 if test "$pass" = link; then
cannam@85 6286 func_stripname '-R' '' "$deplib"
cannam@85 6287 func_resolve_sysroot "$func_stripname_result"
cannam@85 6288 dir=$func_resolve_sysroot_result
cannam@85 6289 # Make sure the xrpath contains only unique directories.
cannam@85 6290 case "$xrpath " in
cannam@85 6291 *" $dir "*) ;;
cannam@85 6292 *) func_append xrpath " $dir" ;;
cannam@85 6293 esac
cannam@85 6294 fi
cannam@85 6295 deplibs="$deplib $deplibs"
cannam@85 6296 continue
cannam@85 6297 ;;
cannam@85 6298 *.la)
cannam@85 6299 func_resolve_sysroot "$deplib"
cannam@85 6300 lib=$func_resolve_sysroot_result
cannam@85 6301 ;;
cannam@85 6302 *.$libext)
cannam@85 6303 if test "$pass" = conv; then
cannam@85 6304 deplibs="$deplib $deplibs"
cannam@85 6305 continue
cannam@85 6306 fi
cannam@85 6307 case $linkmode in
cannam@85 6308 lib)
cannam@85 6309 # Linking convenience modules into shared libraries is allowed,
cannam@85 6310 # but linking other static libraries is non-portable.
cannam@85 6311 case " $dlpreconveniencelibs " in
cannam@85 6312 *" $deplib "*) ;;
cannam@85 6313 *)
cannam@85 6314 valid_a_lib=no
cannam@85 6315 case $deplibs_check_method in
cannam@85 6316 match_pattern*)
cannam@85 6317 set dummy $deplibs_check_method; shift
cannam@85 6318 match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
cannam@85 6319 if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \
cannam@85 6320 | $EGREP "$match_pattern_regex" > /dev/null; then
cannam@85 6321 valid_a_lib=yes
cannam@85 6322 fi
cannam@85 6323 ;;
cannam@85 6324 pass_all)
cannam@85 6325 valid_a_lib=yes
cannam@85 6326 ;;
cannam@85 6327 esac
cannam@85 6328 if test "$valid_a_lib" != yes; then
cannam@85 6329 echo
cannam@85 6330 $ECHO "*** Warning: Trying to link with static lib archive $deplib."
cannam@85 6331 echo "*** I have the capability to make that library automatically link in when"
cannam@85 6332 echo "*** you link to this library. But I can only do this if you have a"
cannam@85 6333 echo "*** shared version of the library, which you do not appear to have"
cannam@85 6334 echo "*** because the file extensions .$libext of this argument makes me believe"
cannam@85 6335 echo "*** that it is just a static archive that I should not use here."
cannam@85 6336 else
cannam@85 6337 echo
cannam@85 6338 $ECHO "*** Warning: Linking the shared library $output against the"
cannam@85 6339 $ECHO "*** static library $deplib is not portable!"
cannam@85 6340 deplibs="$deplib $deplibs"
cannam@85 6341 fi
cannam@85 6342 ;;
cannam@85 6343 esac
cannam@85 6344 continue
cannam@85 6345 ;;
cannam@85 6346 prog)
cannam@85 6347 if test "$pass" != link; then
cannam@85 6348 deplibs="$deplib $deplibs"
cannam@85 6349 else
cannam@85 6350 compile_deplibs="$deplib $compile_deplibs"
cannam@85 6351 finalize_deplibs="$deplib $finalize_deplibs"
cannam@85 6352 fi
cannam@85 6353 continue
cannam@85 6354 ;;
cannam@85 6355 esac # linkmode
cannam@85 6356 ;; # *.$libext
cannam@85 6357 *.lo | *.$objext)
cannam@85 6358 if test "$pass" = conv; then
cannam@85 6359 deplibs="$deplib $deplibs"
cannam@85 6360 elif test "$linkmode" = prog; then
cannam@85 6361 if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
cannam@85 6362 # If there is no dlopen support or we're linking statically,
cannam@85 6363 # we need to preload.
cannam@85 6364 func_append newdlprefiles " $deplib"
cannam@85 6365 compile_deplibs="$deplib $compile_deplibs"
cannam@85 6366 finalize_deplibs="$deplib $finalize_deplibs"
cannam@85 6367 else
cannam@85 6368 func_append newdlfiles " $deplib"
cannam@85 6369 fi
cannam@85 6370 fi
cannam@85 6371 continue
cannam@85 6372 ;;
cannam@85 6373 %DEPLIBS%)
cannam@85 6374 alldeplibs=yes
cannam@85 6375 continue
cannam@85 6376 ;;
cannam@85 6377 esac # case $deplib
cannam@85 6378
cannam@85 6379 if test "$found" = yes || test -f "$lib"; then :
cannam@85 6380 else
cannam@85 6381 func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'"
cannam@85 6382 fi
cannam@85 6383
cannam@85 6384 # Check to see that this really is a libtool archive.
cannam@85 6385 func_lalib_unsafe_p "$lib" \
cannam@85 6386 || func_fatal_error "\`$lib' is not a valid libtool archive"
cannam@85 6387
cannam@85 6388 func_dirname "$lib" "" "."
cannam@85 6389 ladir="$func_dirname_result"
cannam@85 6390
cannam@85 6391 dlname=
cannam@85 6392 dlopen=
cannam@85 6393 dlpreopen=
cannam@85 6394 libdir=
cannam@85 6395 library_names=
cannam@85 6396 old_library=
cannam@85 6397 inherited_linker_flags=
cannam@85 6398 # If the library was installed with an old release of libtool,
cannam@85 6399 # it will not redefine variables installed, or shouldnotlink
cannam@85 6400 installed=yes
cannam@85 6401 shouldnotlink=no
cannam@85 6402 avoidtemprpath=
cannam@85 6403
cannam@85 6404
cannam@85 6405 # Read the .la file
cannam@85 6406 func_source "$lib"
cannam@85 6407
cannam@85 6408 # Convert "-framework foo" to "foo.ltframework"
cannam@85 6409 if test -n "$inherited_linker_flags"; then
cannam@85 6410 tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'`
cannam@85 6411 for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do
cannam@85 6412 case " $new_inherited_linker_flags " in
cannam@85 6413 *" $tmp_inherited_linker_flag "*) ;;
cannam@85 6414 *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";;
cannam@85 6415 esac
cannam@85 6416 done
cannam@85 6417 fi
cannam@85 6418 dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@85 6419 if test "$linkmode,$pass" = "lib,link" ||
cannam@85 6420 test "$linkmode,$pass" = "prog,scan" ||
cannam@85 6421 { test "$linkmode" != prog && test "$linkmode" != lib; }; then
cannam@85 6422 test -n "$dlopen" && func_append dlfiles " $dlopen"
cannam@85 6423 test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen"
cannam@85 6424 fi
cannam@85 6425
cannam@85 6426 if test "$pass" = conv; then
cannam@85 6427 # Only check for convenience libraries
cannam@85 6428 deplibs="$lib $deplibs"
cannam@85 6429 if test -z "$libdir"; then
cannam@85 6430 if test -z "$old_library"; then
cannam@85 6431 func_fatal_error "cannot find name of link library for \`$lib'"
cannam@85 6432 fi
cannam@85 6433 # It is a libtool convenience library, so add in its objects.
cannam@85 6434 func_append convenience " $ladir/$objdir/$old_library"
cannam@85 6435 func_append old_convenience " $ladir/$objdir/$old_library"
cannam@85 6436 tmp_libs=
cannam@85 6437 for deplib in $dependency_libs; do
cannam@85 6438 deplibs="$deplib $deplibs"
cannam@85 6439 if $opt_preserve_dup_deps ; then
cannam@85 6440 case "$tmp_libs " in
cannam@85 6441 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
cannam@85 6442 esac
cannam@85 6443 fi
cannam@85 6444 func_append tmp_libs " $deplib"
cannam@85 6445 done
cannam@85 6446 elif test "$linkmode" != prog && test "$linkmode" != lib; then
cannam@85 6447 func_fatal_error "\`$lib' is not a convenience library"
cannam@85 6448 fi
cannam@85 6449 continue
cannam@85 6450 fi # $pass = conv
cannam@85 6451
cannam@85 6452
cannam@85 6453 # Get the name of the library we link against.
cannam@85 6454 linklib=
cannam@85 6455 if test -n "$old_library" &&
cannam@85 6456 { test "$prefer_static_libs" = yes ||
cannam@85 6457 test "$prefer_static_libs,$installed" = "built,no"; }; then
cannam@85 6458 linklib=$old_library
cannam@85 6459 else
cannam@85 6460 for l in $old_library $library_names; do
cannam@85 6461 linklib="$l"
cannam@85 6462 done
cannam@85 6463 fi
cannam@85 6464 if test -z "$linklib"; then
cannam@85 6465 func_fatal_error "cannot find name of link library for \`$lib'"
cannam@85 6466 fi
cannam@85 6467
cannam@85 6468 # This library was specified with -dlopen.
cannam@85 6469 if test "$pass" = dlopen; then
cannam@85 6470 if test -z "$libdir"; then
cannam@85 6471 func_fatal_error "cannot -dlopen a convenience library: \`$lib'"
cannam@85 6472 fi
cannam@85 6473 if test -z "$dlname" ||
cannam@85 6474 test "$dlopen_support" != yes ||
cannam@85 6475 test "$build_libtool_libs" = no; then
cannam@85 6476 # If there is no dlname, no dlopen support or we're linking
cannam@85 6477 # statically, we need to preload. We also need to preload any
cannam@85 6478 # dependent libraries so libltdl's deplib preloader doesn't
cannam@85 6479 # bomb out in the load deplibs phase.
cannam@85 6480 func_append dlprefiles " $lib $dependency_libs"
cannam@85 6481 else
cannam@85 6482 func_append newdlfiles " $lib"
cannam@85 6483 fi
cannam@85 6484 continue
cannam@85 6485 fi # $pass = dlopen
cannam@85 6486
cannam@85 6487 # We need an absolute path.
cannam@85 6488 case $ladir in
cannam@85 6489 [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;
cannam@85 6490 *)
cannam@85 6491 abs_ladir=`cd "$ladir" && pwd`
cannam@85 6492 if test -z "$abs_ladir"; then
cannam@85 6493 func_warning "cannot determine absolute directory name of \`$ladir'"
cannam@85 6494 func_warning "passing it literally to the linker, although it might fail"
cannam@85 6495 abs_ladir="$ladir"
cannam@85 6496 fi
cannam@85 6497 ;;
cannam@85 6498 esac
cannam@85 6499 func_basename "$lib"
cannam@85 6500 laname="$func_basename_result"
cannam@85 6501
cannam@85 6502 # Find the relevant object directory and library name.
cannam@85 6503 if test "X$installed" = Xyes; then
cannam@85 6504 if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
cannam@85 6505 func_warning "library \`$lib' was moved."
cannam@85 6506 dir="$ladir"
cannam@85 6507 absdir="$abs_ladir"
cannam@85 6508 libdir="$abs_ladir"
cannam@85 6509 else
cannam@85 6510 dir="$lt_sysroot$libdir"
cannam@85 6511 absdir="$lt_sysroot$libdir"
cannam@85 6512 fi
cannam@85 6513 test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes
cannam@85 6514 else
cannam@85 6515 if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then
cannam@85 6516 dir="$ladir"
cannam@85 6517 absdir="$abs_ladir"
cannam@85 6518 # Remove this search path later
cannam@85 6519 func_append notinst_path " $abs_ladir"
cannam@85 6520 else
cannam@85 6521 dir="$ladir/$objdir"
cannam@85 6522 absdir="$abs_ladir/$objdir"
cannam@85 6523 # Remove this search path later
cannam@85 6524 func_append notinst_path " $abs_ladir"
cannam@85 6525 fi
cannam@85 6526 fi # $installed = yes
cannam@85 6527 func_stripname 'lib' '.la' "$laname"
cannam@85 6528 name=$func_stripname_result
cannam@85 6529
cannam@85 6530 # This library was specified with -dlpreopen.
cannam@85 6531 if test "$pass" = dlpreopen; then
cannam@85 6532 if test -z "$libdir" && test "$linkmode" = prog; then
cannam@85 6533 func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'"
cannam@85 6534 fi
cannam@85 6535 case "$host" in
cannam@85 6536 # special handling for platforms with PE-DLLs.
cannam@85 6537 *cygwin* | *mingw* | *cegcc* )
cannam@85 6538 # Linker will automatically link against shared library if both
cannam@85 6539 # static and shared are present. Therefore, ensure we extract
cannam@85 6540 # symbols from the import library if a shared library is present
cannam@85 6541 # (otherwise, the dlopen module name will be incorrect). We do
cannam@85 6542 # this by putting the import library name into $newdlprefiles.
cannam@85 6543 # We recover the dlopen module name by 'saving' the la file
cannam@85 6544 # name in a special purpose variable, and (later) extracting the
cannam@85 6545 # dlname from the la file.
cannam@85 6546 if test -n "$dlname"; then
cannam@85 6547 func_tr_sh "$dir/$linklib"
cannam@85 6548 eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname"
cannam@85 6549 func_append newdlprefiles " $dir/$linklib"
cannam@85 6550 else
cannam@85 6551 func_append newdlprefiles " $dir/$old_library"
cannam@85 6552 # Keep a list of preopened convenience libraries to check
cannam@85 6553 # that they are being used correctly in the link pass.
cannam@85 6554 test -z "$libdir" && \
cannam@85 6555 func_append dlpreconveniencelibs " $dir/$old_library"
cannam@85 6556 fi
cannam@85 6557 ;;
cannam@85 6558 * )
cannam@85 6559 # Prefer using a static library (so that no silly _DYNAMIC symbols
cannam@85 6560 # are required to link).
cannam@85 6561 if test -n "$old_library"; then
cannam@85 6562 func_append newdlprefiles " $dir/$old_library"
cannam@85 6563 # Keep a list of preopened convenience libraries to check
cannam@85 6564 # that they are being used correctly in the link pass.
cannam@85 6565 test -z "$libdir" && \
cannam@85 6566 func_append dlpreconveniencelibs " $dir/$old_library"
cannam@85 6567 # Otherwise, use the dlname, so that lt_dlopen finds it.
cannam@85 6568 elif test -n "$dlname"; then
cannam@85 6569 func_append newdlprefiles " $dir/$dlname"
cannam@85 6570 else
cannam@85 6571 func_append newdlprefiles " $dir/$linklib"
cannam@85 6572 fi
cannam@85 6573 ;;
cannam@85 6574 esac
cannam@85 6575 fi # $pass = dlpreopen
cannam@85 6576
cannam@85 6577 if test -z "$libdir"; then
cannam@85 6578 # Link the convenience library
cannam@85 6579 if test "$linkmode" = lib; then
cannam@85 6580 deplibs="$dir/$old_library $deplibs"
cannam@85 6581 elif test "$linkmode,$pass" = "prog,link"; then
cannam@85 6582 compile_deplibs="$dir/$old_library $compile_deplibs"
cannam@85 6583 finalize_deplibs="$dir/$old_library $finalize_deplibs"
cannam@85 6584 else
cannam@85 6585 deplibs="$lib $deplibs" # used for prog,scan pass
cannam@85 6586 fi
cannam@85 6587 continue
cannam@85 6588 fi
cannam@85 6589
cannam@85 6590
cannam@85 6591 if test "$linkmode" = prog && test "$pass" != link; then
cannam@85 6592 func_append newlib_search_path " $ladir"
cannam@85 6593 deplibs="$lib $deplibs"
cannam@85 6594
cannam@85 6595 linkalldeplibs=no
cannam@85 6596 if test "$link_all_deplibs" != no || test -z "$library_names" ||
cannam@85 6597 test "$build_libtool_libs" = no; then
cannam@85 6598 linkalldeplibs=yes
cannam@85 6599 fi
cannam@85 6600
cannam@85 6601 tmp_libs=
cannam@85 6602 for deplib in $dependency_libs; do
cannam@85 6603 case $deplib in
cannam@85 6604 -L*) func_stripname '-L' '' "$deplib"
cannam@85 6605 func_resolve_sysroot "$func_stripname_result"
cannam@85 6606 func_append newlib_search_path " $func_resolve_sysroot_result"
cannam@85 6607 ;;
cannam@85 6608 esac
cannam@85 6609 # Need to link against all dependency_libs?
cannam@85 6610 if test "$linkalldeplibs" = yes; then
cannam@85 6611 deplibs="$deplib $deplibs"
cannam@85 6612 else
cannam@85 6613 # Need to hardcode shared library paths
cannam@85 6614 # or/and link against static libraries
cannam@85 6615 newdependency_libs="$deplib $newdependency_libs"
cannam@85 6616 fi
cannam@85 6617 if $opt_preserve_dup_deps ; then
cannam@85 6618 case "$tmp_libs " in
cannam@85 6619 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
cannam@85 6620 esac
cannam@85 6621 fi
cannam@85 6622 func_append tmp_libs " $deplib"
cannam@85 6623 done # for deplib
cannam@85 6624 continue
cannam@85 6625 fi # $linkmode = prog...
cannam@85 6626
cannam@85 6627 if test "$linkmode,$pass" = "prog,link"; then
cannam@85 6628 if test -n "$library_names" &&
cannam@85 6629 { { test "$prefer_static_libs" = no ||
cannam@85 6630 test "$prefer_static_libs,$installed" = "built,yes"; } ||
cannam@85 6631 test -z "$old_library"; }; then
cannam@85 6632 # We need to hardcode the library path
cannam@85 6633 if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then
cannam@85 6634 # Make sure the rpath contains only unique directories.
cannam@85 6635 case "$temp_rpath:" in
cannam@85 6636 *"$absdir:"*) ;;
cannam@85 6637 *) func_append temp_rpath "$absdir:" ;;
cannam@85 6638 esac
cannam@85 6639 fi
cannam@85 6640
cannam@85 6641 # Hardcode the library path.
cannam@85 6642 # Skip directories that are in the system default run-time
cannam@85 6643 # search path.
cannam@85 6644 case " $sys_lib_dlsearch_path " in
cannam@85 6645 *" $absdir "*) ;;
cannam@85 6646 *)
cannam@85 6647 case "$compile_rpath " in
cannam@85 6648 *" $absdir "*) ;;
cannam@85 6649 *) func_append compile_rpath " $absdir" ;;
cannam@85 6650 esac
cannam@85 6651 ;;
cannam@85 6652 esac
cannam@85 6653 case " $sys_lib_dlsearch_path " in
cannam@85 6654 *" $libdir "*) ;;
cannam@85 6655 *)
cannam@85 6656 case "$finalize_rpath " in
cannam@85 6657 *" $libdir "*) ;;
cannam@85 6658 *) func_append finalize_rpath " $libdir" ;;
cannam@85 6659 esac
cannam@85 6660 ;;
cannam@85 6661 esac
cannam@85 6662 fi # $linkmode,$pass = prog,link...
cannam@85 6663
cannam@85 6664 if test "$alldeplibs" = yes &&
cannam@85 6665 { test "$deplibs_check_method" = pass_all ||
cannam@85 6666 { test "$build_libtool_libs" = yes &&
cannam@85 6667 test -n "$library_names"; }; }; then
cannam@85 6668 # We only need to search for static libraries
cannam@85 6669 continue
cannam@85 6670 fi
cannam@85 6671 fi
cannam@85 6672
cannam@85 6673 link_static=no # Whether the deplib will be linked statically
cannam@85 6674 use_static_libs=$prefer_static_libs
cannam@85 6675 if test "$use_static_libs" = built && test "$installed" = yes; then
cannam@85 6676 use_static_libs=no
cannam@85 6677 fi
cannam@85 6678 if test -n "$library_names" &&
cannam@85 6679 { test "$use_static_libs" = no || test -z "$old_library"; }; then
cannam@85 6680 case $host in
cannam@85 6681 *cygwin* | *mingw* | *cegcc*)
cannam@85 6682 # No point in relinking DLLs because paths are not encoded
cannam@85 6683 func_append notinst_deplibs " $lib"
cannam@85 6684 need_relink=no
cannam@85 6685 ;;
cannam@85 6686 *)
cannam@85 6687 if test "$installed" = no; then
cannam@85 6688 func_append notinst_deplibs " $lib"
cannam@85 6689 need_relink=yes
cannam@85 6690 fi
cannam@85 6691 ;;
cannam@85 6692 esac
cannam@85 6693 # This is a shared library
cannam@85 6694
cannam@85 6695 # Warn about portability, can't link against -module's on some
cannam@85 6696 # systems (darwin). Don't bleat about dlopened modules though!
cannam@85 6697 dlopenmodule=""
cannam@85 6698 for dlpremoduletest in $dlprefiles; do
cannam@85 6699 if test "X$dlpremoduletest" = "X$lib"; then
cannam@85 6700 dlopenmodule="$dlpremoduletest"
cannam@85 6701 break
cannam@85 6702 fi
cannam@85 6703 done
cannam@85 6704 if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then
cannam@85 6705 echo
cannam@85 6706 if test "$linkmode" = prog; then
cannam@85 6707 $ECHO "*** Warning: Linking the executable $output against the loadable module"
cannam@85 6708 else
cannam@85 6709 $ECHO "*** Warning: Linking the shared library $output against the loadable module"
cannam@85 6710 fi
cannam@85 6711 $ECHO "*** $linklib is not portable!"
cannam@85 6712 fi
cannam@85 6713 if test "$linkmode" = lib &&
cannam@85 6714 test "$hardcode_into_libs" = yes; then
cannam@85 6715 # Hardcode the library path.
cannam@85 6716 # Skip directories that are in the system default run-time
cannam@85 6717 # search path.
cannam@85 6718 case " $sys_lib_dlsearch_path " in
cannam@85 6719 *" $absdir "*) ;;
cannam@85 6720 *)
cannam@85 6721 case "$compile_rpath " in
cannam@85 6722 *" $absdir "*) ;;
cannam@85 6723 *) func_append compile_rpath " $absdir" ;;
cannam@85 6724 esac
cannam@85 6725 ;;
cannam@85 6726 esac
cannam@85 6727 case " $sys_lib_dlsearch_path " in
cannam@85 6728 *" $libdir "*) ;;
cannam@85 6729 *)
cannam@85 6730 case "$finalize_rpath " in
cannam@85 6731 *" $libdir "*) ;;
cannam@85 6732 *) func_append finalize_rpath " $libdir" ;;
cannam@85 6733 esac
cannam@85 6734 ;;
cannam@85 6735 esac
cannam@85 6736 fi
cannam@85 6737
cannam@85 6738 if test -n "$old_archive_from_expsyms_cmds"; then
cannam@85 6739 # figure out the soname
cannam@85 6740 set dummy $library_names
cannam@85 6741 shift
cannam@85 6742 realname="$1"
cannam@85 6743 shift
cannam@85 6744 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@85 6745 # use dlname if we got it. it's perfectly good, no?
cannam@85 6746 if test -n "$dlname"; then
cannam@85 6747 soname="$dlname"
cannam@85 6748 elif test -n "$soname_spec"; then
cannam@85 6749 # bleh windows
cannam@85 6750 case $host in
cannam@85 6751 *cygwin* | mingw* | *cegcc*)
cannam@85 6752 func_arith $current - $age
cannam@85 6753 major=$func_arith_result
cannam@85 6754 versuffix="-$major"
cannam@85 6755 ;;
cannam@85 6756 esac
cannam@85 6757 eval soname=\"$soname_spec\"
cannam@85 6758 else
cannam@85 6759 soname="$realname"
cannam@85 6760 fi
cannam@85 6761
cannam@85 6762 # Make a new name for the extract_expsyms_cmds to use
cannam@85 6763 soroot="$soname"
cannam@85 6764 func_basename "$soroot"
cannam@85 6765 soname="$func_basename_result"
cannam@85 6766 func_stripname 'lib' '.dll' "$soname"
cannam@85 6767 newlib=libimp-$func_stripname_result.a
cannam@85 6768
cannam@85 6769 # If the library has no export list, then create one now
cannam@85 6770 if test -f "$output_objdir/$soname-def"; then :
cannam@85 6771 else
cannam@85 6772 func_verbose "extracting exported symbol list from \`$soname'"
cannam@85 6773 func_execute_cmds "$extract_expsyms_cmds" 'exit $?'
cannam@85 6774 fi
cannam@85 6775
cannam@85 6776 # Create $newlib
cannam@85 6777 if test -f "$output_objdir/$newlib"; then :; else
cannam@85 6778 func_verbose "generating import library for \`$soname'"
cannam@85 6779 func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?'
cannam@85 6780 fi
cannam@85 6781 # make sure the library variables are pointing to the new library
cannam@85 6782 dir=$output_objdir
cannam@85 6783 linklib=$newlib
cannam@85 6784 fi # test -n "$old_archive_from_expsyms_cmds"
cannam@85 6785
cannam@85 6786 if test "$linkmode" = prog || test "$opt_mode" != relink; then
cannam@85 6787 add_shlibpath=
cannam@85 6788 add_dir=
cannam@85 6789 add=
cannam@85 6790 lib_linked=yes
cannam@85 6791 case $hardcode_action in
cannam@85 6792 immediate | unsupported)
cannam@85 6793 if test "$hardcode_direct" = no; then
cannam@85 6794 add="$dir/$linklib"
cannam@85 6795 case $host in
cannam@85 6796 *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;;
cannam@85 6797 *-*-sysv4*uw2*) add_dir="-L$dir" ;;
cannam@85 6798 *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \
cannam@85 6799 *-*-unixware7*) add_dir="-L$dir" ;;
cannam@85 6800 *-*-darwin* )
cannam@85 6801 # if the lib is a (non-dlopened) module then we can not
cannam@85 6802 # link against it, someone is ignoring the earlier warnings
cannam@85 6803 if /usr/bin/file -L $add 2> /dev/null |
cannam@85 6804 $GREP ": [^:]* bundle" >/dev/null ; then
cannam@85 6805 if test "X$dlopenmodule" != "X$lib"; then
cannam@85 6806 $ECHO "*** Warning: lib $linklib is a module, not a shared library"
cannam@85 6807 if test -z "$old_library" ; then
cannam@85 6808 echo
cannam@85 6809 echo "*** And there doesn't seem to be a static archive available"
cannam@85 6810 echo "*** The link will probably fail, sorry"
cannam@85 6811 else
cannam@85 6812 add="$dir/$old_library"
cannam@85 6813 fi
cannam@85 6814 elif test -n "$old_library"; then
cannam@85 6815 add="$dir/$old_library"
cannam@85 6816 fi
cannam@85 6817 fi
cannam@85 6818 esac
cannam@85 6819 elif test "$hardcode_minus_L" = no; then
cannam@85 6820 case $host in
cannam@85 6821 *-*-sunos*) add_shlibpath="$dir" ;;
cannam@85 6822 esac
cannam@85 6823 add_dir="-L$dir"
cannam@85 6824 add="-l$name"
cannam@85 6825 elif test "$hardcode_shlibpath_var" = no; then
cannam@85 6826 add_shlibpath="$dir"
cannam@85 6827 add="-l$name"
cannam@85 6828 else
cannam@85 6829 lib_linked=no
cannam@85 6830 fi
cannam@85 6831 ;;
cannam@85 6832 relink)
cannam@85 6833 if test "$hardcode_direct" = yes &&
cannam@85 6834 test "$hardcode_direct_absolute" = no; then
cannam@85 6835 add="$dir/$linklib"
cannam@85 6836 elif test "$hardcode_minus_L" = yes; then
cannam@85 6837 add_dir="-L$dir"
cannam@85 6838 # Try looking first in the location we're being installed to.
cannam@85 6839 if test -n "$inst_prefix_dir"; then
cannam@85 6840 case $libdir in
cannam@85 6841 [\\/]*)
cannam@85 6842 func_append add_dir " -L$inst_prefix_dir$libdir"
cannam@85 6843 ;;
cannam@85 6844 esac
cannam@85 6845 fi
cannam@85 6846 add="-l$name"
cannam@85 6847 elif test "$hardcode_shlibpath_var" = yes; then
cannam@85 6848 add_shlibpath="$dir"
cannam@85 6849 add="-l$name"
cannam@85 6850 else
cannam@85 6851 lib_linked=no
cannam@85 6852 fi
cannam@85 6853 ;;
cannam@85 6854 *) lib_linked=no ;;
cannam@85 6855 esac
cannam@85 6856
cannam@85 6857 if test "$lib_linked" != yes; then
cannam@85 6858 func_fatal_configuration "unsupported hardcode properties"
cannam@85 6859 fi
cannam@85 6860
cannam@85 6861 if test -n "$add_shlibpath"; then
cannam@85 6862 case :$compile_shlibpath: in
cannam@85 6863 *":$add_shlibpath:"*) ;;
cannam@85 6864 *) func_append compile_shlibpath "$add_shlibpath:" ;;
cannam@85 6865 esac
cannam@85 6866 fi
cannam@85 6867 if test "$linkmode" = prog; then
cannam@85 6868 test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
cannam@85 6869 test -n "$add" && compile_deplibs="$add $compile_deplibs"
cannam@85 6870 else
cannam@85 6871 test -n "$add_dir" && deplibs="$add_dir $deplibs"
cannam@85 6872 test -n "$add" && deplibs="$add $deplibs"
cannam@85 6873 if test "$hardcode_direct" != yes &&
cannam@85 6874 test "$hardcode_minus_L" != yes &&
cannam@85 6875 test "$hardcode_shlibpath_var" = yes; then
cannam@85 6876 case :$finalize_shlibpath: in
cannam@85 6877 *":$libdir:"*) ;;
cannam@85 6878 *) func_append finalize_shlibpath "$libdir:" ;;
cannam@85 6879 esac
cannam@85 6880 fi
cannam@85 6881 fi
cannam@85 6882 fi
cannam@85 6883
cannam@85 6884 if test "$linkmode" = prog || test "$opt_mode" = relink; then
cannam@85 6885 add_shlibpath=
cannam@85 6886 add_dir=
cannam@85 6887 add=
cannam@85 6888 # Finalize command for both is simple: just hardcode it.
cannam@85 6889 if test "$hardcode_direct" = yes &&
cannam@85 6890 test "$hardcode_direct_absolute" = no; then
cannam@85 6891 add="$libdir/$linklib"
cannam@85 6892 elif test "$hardcode_minus_L" = yes; then
cannam@85 6893 add_dir="-L$libdir"
cannam@85 6894 add="-l$name"
cannam@85 6895 elif test "$hardcode_shlibpath_var" = yes; then
cannam@85 6896 case :$finalize_shlibpath: in
cannam@85 6897 *":$libdir:"*) ;;
cannam@85 6898 *) func_append finalize_shlibpath "$libdir:" ;;
cannam@85 6899 esac
cannam@85 6900 add="-l$name"
cannam@85 6901 elif test "$hardcode_automatic" = yes; then
cannam@85 6902 if test -n "$inst_prefix_dir" &&
cannam@85 6903 test -f "$inst_prefix_dir$libdir/$linklib" ; then
cannam@85 6904 add="$inst_prefix_dir$libdir/$linklib"
cannam@85 6905 else
cannam@85 6906 add="$libdir/$linklib"
cannam@85 6907 fi
cannam@85 6908 else
cannam@85 6909 # We cannot seem to hardcode it, guess we'll fake it.
cannam@85 6910 add_dir="-L$libdir"
cannam@85 6911 # Try looking first in the location we're being installed to.
cannam@85 6912 if test -n "$inst_prefix_dir"; then
cannam@85 6913 case $libdir in
cannam@85 6914 [\\/]*)
cannam@85 6915 func_append add_dir " -L$inst_prefix_dir$libdir"
cannam@85 6916 ;;
cannam@85 6917 esac
cannam@85 6918 fi
cannam@85 6919 add="-l$name"
cannam@85 6920 fi
cannam@85 6921
cannam@85 6922 if test "$linkmode" = prog; then
cannam@85 6923 test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
cannam@85 6924 test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
cannam@85 6925 else
cannam@85 6926 test -n "$add_dir" && deplibs="$add_dir $deplibs"
cannam@85 6927 test -n "$add" && deplibs="$add $deplibs"
cannam@85 6928 fi
cannam@85 6929 fi
cannam@85 6930 elif test "$linkmode" = prog; then
cannam@85 6931 # Here we assume that one of hardcode_direct or hardcode_minus_L
cannam@85 6932 # is not unsupported. This is valid on all known static and
cannam@85 6933 # shared platforms.
cannam@85 6934 if test "$hardcode_direct" != unsupported; then
cannam@85 6935 test -n "$old_library" && linklib="$old_library"
cannam@85 6936 compile_deplibs="$dir/$linklib $compile_deplibs"
cannam@85 6937 finalize_deplibs="$dir/$linklib $finalize_deplibs"
cannam@85 6938 else
cannam@85 6939 compile_deplibs="-l$name -L$dir $compile_deplibs"
cannam@85 6940 finalize_deplibs="-l$name -L$dir $finalize_deplibs"
cannam@85 6941 fi
cannam@85 6942 elif test "$build_libtool_libs" = yes; then
cannam@85 6943 # Not a shared library
cannam@85 6944 if test "$deplibs_check_method" != pass_all; then
cannam@85 6945 # We're trying link a shared library against a static one
cannam@85 6946 # but the system doesn't support it.
cannam@85 6947
cannam@85 6948 # Just print a warning and add the library to dependency_libs so
cannam@85 6949 # that the program can be linked against the static library.
cannam@85 6950 echo
cannam@85 6951 $ECHO "*** Warning: This system can not link to static lib archive $lib."
cannam@85 6952 echo "*** I have the capability to make that library automatically link in when"
cannam@85 6953 echo "*** you link to this library. But I can only do this if you have a"
cannam@85 6954 echo "*** shared version of the library, which you do not appear to have."
cannam@85 6955 if test "$module" = yes; then
cannam@85 6956 echo "*** But as you try to build a module library, libtool will still create "
cannam@85 6957 echo "*** a static module, that should work as long as the dlopening application"
cannam@85 6958 echo "*** is linked with the -dlopen flag to resolve symbols at runtime."
cannam@85 6959 if test -z "$global_symbol_pipe"; then
cannam@85 6960 echo
cannam@85 6961 echo "*** However, this would only work if libtool was able to extract symbol"
cannam@85 6962 echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
cannam@85 6963 echo "*** not find such a program. So, this module is probably useless."
cannam@85 6964 echo "*** \`nm' from GNU binutils and a full rebuild may help."
cannam@85 6965 fi
cannam@85 6966 if test "$build_old_libs" = no; then
cannam@85 6967 build_libtool_libs=module
cannam@85 6968 build_old_libs=yes
cannam@85 6969 else
cannam@85 6970 build_libtool_libs=no
cannam@85 6971 fi
cannam@85 6972 fi
cannam@85 6973 else
cannam@85 6974 deplibs="$dir/$old_library $deplibs"
cannam@85 6975 link_static=yes
cannam@85 6976 fi
cannam@85 6977 fi # link shared/static library?
cannam@85 6978
cannam@85 6979 if test "$linkmode" = lib; then
cannam@85 6980 if test -n "$dependency_libs" &&
cannam@85 6981 { test "$hardcode_into_libs" != yes ||
cannam@85 6982 test "$build_old_libs" = yes ||
cannam@85 6983 test "$link_static" = yes; }; then
cannam@85 6984 # Extract -R from dependency_libs
cannam@85 6985 temp_deplibs=
cannam@85 6986 for libdir in $dependency_libs; do
cannam@85 6987 case $libdir in
cannam@85 6988 -R*) func_stripname '-R' '' "$libdir"
cannam@85 6989 temp_xrpath=$func_stripname_result
cannam@85 6990 case " $xrpath " in
cannam@85 6991 *" $temp_xrpath "*) ;;
cannam@85 6992 *) func_append xrpath " $temp_xrpath";;
cannam@85 6993 esac;;
cannam@85 6994 *) func_append temp_deplibs " $libdir";;
cannam@85 6995 esac
cannam@85 6996 done
cannam@85 6997 dependency_libs="$temp_deplibs"
cannam@85 6998 fi
cannam@85 6999
cannam@85 7000 func_append newlib_search_path " $absdir"
cannam@85 7001 # Link against this library
cannam@85 7002 test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
cannam@85 7003 # ... and its dependency_libs
cannam@85 7004 tmp_libs=
cannam@85 7005 for deplib in $dependency_libs; do
cannam@85 7006 newdependency_libs="$deplib $newdependency_libs"
cannam@85 7007 case $deplib in
cannam@85 7008 -L*) func_stripname '-L' '' "$deplib"
cannam@85 7009 func_resolve_sysroot "$func_stripname_result";;
cannam@85 7010 *) func_resolve_sysroot "$deplib" ;;
cannam@85 7011 esac
cannam@85 7012 if $opt_preserve_dup_deps ; then
cannam@85 7013 case "$tmp_libs " in
cannam@85 7014 *" $func_resolve_sysroot_result "*)
cannam@85 7015 func_append specialdeplibs " $func_resolve_sysroot_result" ;;
cannam@85 7016 esac
cannam@85 7017 fi
cannam@85 7018 func_append tmp_libs " $func_resolve_sysroot_result"
cannam@85 7019 done
cannam@85 7020
cannam@85 7021 if test "$link_all_deplibs" != no; then
cannam@85 7022 # Add the search paths of all dependency libraries
cannam@85 7023 for deplib in $dependency_libs; do
cannam@85 7024 path=
cannam@85 7025 case $deplib in
cannam@85 7026 -L*) path="$deplib" ;;
cannam@85 7027 *.la)
cannam@85 7028 func_resolve_sysroot "$deplib"
cannam@85 7029 deplib=$func_resolve_sysroot_result
cannam@85 7030 func_dirname "$deplib" "" "."
cannam@85 7031 dir=$func_dirname_result
cannam@85 7032 # We need an absolute path.
cannam@85 7033 case $dir in
cannam@85 7034 [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;
cannam@85 7035 *)
cannam@85 7036 absdir=`cd "$dir" && pwd`
cannam@85 7037 if test -z "$absdir"; then
cannam@85 7038 func_warning "cannot determine absolute directory name of \`$dir'"
cannam@85 7039 absdir="$dir"
cannam@85 7040 fi
cannam@85 7041 ;;
cannam@85 7042 esac
cannam@85 7043 if $GREP "^installed=no" $deplib > /dev/null; then
cannam@85 7044 case $host in
cannam@85 7045 *-*-darwin*)
cannam@85 7046 depdepl=
cannam@85 7047 eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib`
cannam@85 7048 if test -n "$deplibrary_names" ; then
cannam@85 7049 for tmp in $deplibrary_names ; do
cannam@85 7050 depdepl=$tmp
cannam@85 7051 done
cannam@85 7052 if test -f "$absdir/$objdir/$depdepl" ; then
cannam@85 7053 depdepl="$absdir/$objdir/$depdepl"
cannam@85 7054 darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
cannam@85 7055 if test -z "$darwin_install_name"; then
cannam@85 7056 darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
cannam@85 7057 fi
cannam@85 7058 func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}"
cannam@85 7059 func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}"
cannam@85 7060 path=
cannam@85 7061 fi
cannam@85 7062 fi
cannam@85 7063 ;;
cannam@85 7064 *)
cannam@85 7065 path="-L$absdir/$objdir"
cannam@85 7066 ;;
cannam@85 7067 esac
cannam@85 7068 else
cannam@85 7069 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
cannam@85 7070 test -z "$libdir" && \
cannam@85 7071 func_fatal_error "\`$deplib' is not a valid libtool archive"
cannam@85 7072 test "$absdir" != "$libdir" && \
cannam@85 7073 func_warning "\`$deplib' seems to be moved"
cannam@85 7074
cannam@85 7075 path="-L$absdir"
cannam@85 7076 fi
cannam@85 7077 ;;
cannam@85 7078 esac
cannam@85 7079 case " $deplibs " in
cannam@85 7080 *" $path "*) ;;
cannam@85 7081 *) deplibs="$path $deplibs" ;;
cannam@85 7082 esac
cannam@85 7083 done
cannam@85 7084 fi # link_all_deplibs != no
cannam@85 7085 fi # linkmode = lib
cannam@85 7086 done # for deplib in $libs
cannam@85 7087 if test "$pass" = link; then
cannam@85 7088 if test "$linkmode" = "prog"; then
cannam@85 7089 compile_deplibs="$new_inherited_linker_flags $compile_deplibs"
cannam@85 7090 finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs"
cannam@85 7091 else
cannam@85 7092 compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@85 7093 fi
cannam@85 7094 fi
cannam@85 7095 dependency_libs="$newdependency_libs"
cannam@85 7096 if test "$pass" = dlpreopen; then
cannam@85 7097 # Link the dlpreopened libraries before other libraries
cannam@85 7098 for deplib in $save_deplibs; do
cannam@85 7099 deplibs="$deplib $deplibs"
cannam@85 7100 done
cannam@85 7101 fi
cannam@85 7102 if test "$pass" != dlopen; then
cannam@85 7103 if test "$pass" != conv; then
cannam@85 7104 # Make sure lib_search_path contains only unique directories.
cannam@85 7105 lib_search_path=
cannam@85 7106 for dir in $newlib_search_path; do
cannam@85 7107 case "$lib_search_path " in
cannam@85 7108 *" $dir "*) ;;
cannam@85 7109 *) func_append lib_search_path " $dir" ;;
cannam@85 7110 esac
cannam@85 7111 done
cannam@85 7112 newlib_search_path=
cannam@85 7113 fi
cannam@85 7114
cannam@85 7115 if test "$linkmode,$pass" != "prog,link"; then
cannam@85 7116 vars="deplibs"
cannam@85 7117 else
cannam@85 7118 vars="compile_deplibs finalize_deplibs"
cannam@85 7119 fi
cannam@85 7120 for var in $vars dependency_libs; do
cannam@85 7121 # Add libraries to $var in reverse order
cannam@85 7122 eval tmp_libs=\"\$$var\"
cannam@85 7123 new_libs=
cannam@85 7124 for deplib in $tmp_libs; do
cannam@85 7125 # FIXME: Pedantically, this is the right thing to do, so
cannam@85 7126 # that some nasty dependency loop isn't accidentally
cannam@85 7127 # broken:
cannam@85 7128 #new_libs="$deplib $new_libs"
cannam@85 7129 # Pragmatically, this seems to cause very few problems in
cannam@85 7130 # practice:
cannam@85 7131 case $deplib in
cannam@85 7132 -L*) new_libs="$deplib $new_libs" ;;
cannam@85 7133 -R*) ;;
cannam@85 7134 *)
cannam@85 7135 # And here is the reason: when a library appears more
cannam@85 7136 # than once as an explicit dependence of a library, or
cannam@85 7137 # is implicitly linked in more than once by the
cannam@85 7138 # compiler, it is considered special, and multiple
cannam@85 7139 # occurrences thereof are not removed. Compare this
cannam@85 7140 # with having the same library being listed as a
cannam@85 7141 # dependency of multiple other libraries: in this case,
cannam@85 7142 # we know (pedantically, we assume) the library does not
cannam@85 7143 # need to be listed more than once, so we keep only the
cannam@85 7144 # last copy. This is not always right, but it is rare
cannam@85 7145 # enough that we require users that really mean to play
cannam@85 7146 # such unportable linking tricks to link the library
cannam@85 7147 # using -Wl,-lname, so that libtool does not consider it
cannam@85 7148 # for duplicate removal.
cannam@85 7149 case " $specialdeplibs " in
cannam@85 7150 *" $deplib "*) new_libs="$deplib $new_libs" ;;
cannam@85 7151 *)
cannam@85 7152 case " $new_libs " in
cannam@85 7153 *" $deplib "*) ;;
cannam@85 7154 *) new_libs="$deplib $new_libs" ;;
cannam@85 7155 esac
cannam@85 7156 ;;
cannam@85 7157 esac
cannam@85 7158 ;;
cannam@85 7159 esac
cannam@85 7160 done
cannam@85 7161 tmp_libs=
cannam@85 7162 for deplib in $new_libs; do
cannam@85 7163 case $deplib in
cannam@85 7164 -L*)
cannam@85 7165 case " $tmp_libs " in
cannam@85 7166 *" $deplib "*) ;;
cannam@85 7167 *) func_append tmp_libs " $deplib" ;;
cannam@85 7168 esac
cannam@85 7169 ;;
cannam@85 7170 *) func_append tmp_libs " $deplib" ;;
cannam@85 7171 esac
cannam@85 7172 done
cannam@85 7173 eval $var=\"$tmp_libs\"
cannam@85 7174 done # for var
cannam@85 7175 fi
cannam@85 7176 # Last step: remove runtime libs from dependency_libs
cannam@85 7177 # (they stay in deplibs)
cannam@85 7178 tmp_libs=
cannam@85 7179 for i in $dependency_libs ; do
cannam@85 7180 case " $predeps $postdeps $compiler_lib_search_path " in
cannam@85 7181 *" $i "*)
cannam@85 7182 i=""
cannam@85 7183 ;;
cannam@85 7184 esac
cannam@85 7185 if test -n "$i" ; then
cannam@85 7186 func_append tmp_libs " $i"
cannam@85 7187 fi
cannam@85 7188 done
cannam@85 7189 dependency_libs=$tmp_libs
cannam@85 7190 done # for pass
cannam@85 7191 if test "$linkmode" = prog; then
cannam@85 7192 dlfiles="$newdlfiles"
cannam@85 7193 fi
cannam@85 7194 if test "$linkmode" = prog || test "$linkmode" = lib; then
cannam@85 7195 dlprefiles="$newdlprefiles"
cannam@85 7196 fi
cannam@85 7197
cannam@85 7198 case $linkmode in
cannam@85 7199 oldlib)
cannam@85 7200 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@85 7201 func_warning "\`-dlopen' is ignored for archives"
cannam@85 7202 fi
cannam@85 7203
cannam@85 7204 case " $deplibs" in
cannam@85 7205 *\ -l* | *\ -L*)
cannam@85 7206 func_warning "\`-l' and \`-L' are ignored for archives" ;;
cannam@85 7207 esac
cannam@85 7208
cannam@85 7209 test -n "$rpath" && \
cannam@85 7210 func_warning "\`-rpath' is ignored for archives"
cannam@85 7211
cannam@85 7212 test -n "$xrpath" && \
cannam@85 7213 func_warning "\`-R' is ignored for archives"
cannam@85 7214
cannam@85 7215 test -n "$vinfo" && \
cannam@85 7216 func_warning "\`-version-info/-version-number' is ignored for archives"
cannam@85 7217
cannam@85 7218 test -n "$release" && \
cannam@85 7219 func_warning "\`-release' is ignored for archives"
cannam@85 7220
cannam@85 7221 test -n "$export_symbols$export_symbols_regex" && \
cannam@85 7222 func_warning "\`-export-symbols' is ignored for archives"
cannam@85 7223
cannam@85 7224 # Now set the variables for building old libraries.
cannam@85 7225 build_libtool_libs=no
cannam@85 7226 oldlibs="$output"
cannam@85 7227 func_append objs "$old_deplibs"
cannam@85 7228 ;;
cannam@85 7229
cannam@85 7230 lib)
cannam@85 7231 # Make sure we only generate libraries of the form `libNAME.la'.
cannam@85 7232 case $outputname in
cannam@85 7233 lib*)
cannam@85 7234 func_stripname 'lib' '.la' "$outputname"
cannam@85 7235 name=$func_stripname_result
cannam@85 7236 eval shared_ext=\"$shrext_cmds\"
cannam@85 7237 eval libname=\"$libname_spec\"
cannam@85 7238 ;;
cannam@85 7239 *)
cannam@85 7240 test "$module" = no && \
cannam@85 7241 func_fatal_help "libtool library \`$output' must begin with \`lib'"
cannam@85 7242
cannam@85 7243 if test "$need_lib_prefix" != no; then
cannam@85 7244 # Add the "lib" prefix for modules if required
cannam@85 7245 func_stripname '' '.la' "$outputname"
cannam@85 7246 name=$func_stripname_result
cannam@85 7247 eval shared_ext=\"$shrext_cmds\"
cannam@85 7248 eval libname=\"$libname_spec\"
cannam@85 7249 else
cannam@85 7250 func_stripname '' '.la' "$outputname"
cannam@85 7251 libname=$func_stripname_result
cannam@85 7252 fi
cannam@85 7253 ;;
cannam@85 7254 esac
cannam@85 7255
cannam@85 7256 if test -n "$objs"; then
cannam@85 7257 if test "$deplibs_check_method" != pass_all; then
cannam@85 7258 func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs"
cannam@85 7259 else
cannam@85 7260 echo
cannam@85 7261 $ECHO "*** Warning: Linking the shared library $output against the non-libtool"
cannam@85 7262 $ECHO "*** objects $objs is not portable!"
cannam@85 7263 func_append libobjs " $objs"
cannam@85 7264 fi
cannam@85 7265 fi
cannam@85 7266
cannam@85 7267 test "$dlself" != no && \
cannam@85 7268 func_warning "\`-dlopen self' is ignored for libtool libraries"
cannam@85 7269
cannam@85 7270 set dummy $rpath
cannam@85 7271 shift
cannam@85 7272 test "$#" -gt 1 && \
cannam@85 7273 func_warning "ignoring multiple \`-rpath's for a libtool library"
cannam@85 7274
cannam@85 7275 install_libdir="$1"
cannam@85 7276
cannam@85 7277 oldlibs=
cannam@85 7278 if test -z "$rpath"; then
cannam@85 7279 if test "$build_libtool_libs" = yes; then
cannam@85 7280 # Building a libtool convenience library.
cannam@85 7281 # Some compilers have problems with a `.al' extension so
cannam@85 7282 # convenience libraries should have the same extension an
cannam@85 7283 # archive normally would.
cannam@85 7284 oldlibs="$output_objdir/$libname.$libext $oldlibs"
cannam@85 7285 build_libtool_libs=convenience
cannam@85 7286 build_old_libs=yes
cannam@85 7287 fi
cannam@85 7288
cannam@85 7289 test -n "$vinfo" && \
cannam@85 7290 func_warning "\`-version-info/-version-number' is ignored for convenience libraries"
cannam@85 7291
cannam@85 7292 test -n "$release" && \
cannam@85 7293 func_warning "\`-release' is ignored for convenience libraries"
cannam@85 7294 else
cannam@85 7295
cannam@85 7296 # Parse the version information argument.
cannam@85 7297 save_ifs="$IFS"; IFS=':'
cannam@85 7298 set dummy $vinfo 0 0 0
cannam@85 7299 shift
cannam@85 7300 IFS="$save_ifs"
cannam@85 7301
cannam@85 7302 test -n "$7" && \
cannam@85 7303 func_fatal_help "too many parameters to \`-version-info'"
cannam@85 7304
cannam@85 7305 # convert absolute version numbers to libtool ages
cannam@85 7306 # this retains compatibility with .la files and attempts
cannam@85 7307 # to make the code below a bit more comprehensible
cannam@85 7308
cannam@85 7309 case $vinfo_number in
cannam@85 7310 yes)
cannam@85 7311 number_major="$1"
cannam@85 7312 number_minor="$2"
cannam@85 7313 number_revision="$3"
cannam@85 7314 #
cannam@85 7315 # There are really only two kinds -- those that
cannam@85 7316 # use the current revision as the major version
cannam@85 7317 # and those that subtract age and use age as
cannam@85 7318 # a minor version. But, then there is irix
cannam@85 7319 # which has an extra 1 added just for fun
cannam@85 7320 #
cannam@85 7321 case $version_type in
cannam@85 7322 darwin|linux|osf|windows|none)
cannam@85 7323 func_arith $number_major + $number_minor
cannam@85 7324 current=$func_arith_result
cannam@85 7325 age="$number_minor"
cannam@85 7326 revision="$number_revision"
cannam@85 7327 ;;
cannam@85 7328 freebsd-aout|freebsd-elf|qnx|sunos)
cannam@85 7329 current="$number_major"
cannam@85 7330 revision="$number_minor"
cannam@85 7331 age="0"
cannam@85 7332 ;;
cannam@85 7333 irix|nonstopux)
cannam@85 7334 func_arith $number_major + $number_minor
cannam@85 7335 current=$func_arith_result
cannam@85 7336 age="$number_minor"
cannam@85 7337 revision="$number_minor"
cannam@85 7338 lt_irix_increment=no
cannam@85 7339 ;;
cannam@85 7340 *)
cannam@85 7341 func_fatal_configuration "$modename: unknown library version type \`$version_type'"
cannam@85 7342 ;;
cannam@85 7343 esac
cannam@85 7344 ;;
cannam@85 7345 no)
cannam@85 7346 current="$1"
cannam@85 7347 revision="$2"
cannam@85 7348 age="$3"
cannam@85 7349 ;;
cannam@85 7350 esac
cannam@85 7351
cannam@85 7352 # Check that each of the things are valid numbers.
cannam@85 7353 case $current in
cannam@85 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]) ;;
cannam@85 7355 *)
cannam@85 7356 func_error "CURRENT \`$current' must be a nonnegative integer"
cannam@85 7357 func_fatal_error "\`$vinfo' is not valid version information"
cannam@85 7358 ;;
cannam@85 7359 esac
cannam@85 7360
cannam@85 7361 case $revision in
cannam@85 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]) ;;
cannam@85 7363 *)
cannam@85 7364 func_error "REVISION \`$revision' must be a nonnegative integer"
cannam@85 7365 func_fatal_error "\`$vinfo' is not valid version information"
cannam@85 7366 ;;
cannam@85 7367 esac
cannam@85 7368
cannam@85 7369 case $age in
cannam@85 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]) ;;
cannam@85 7371 *)
cannam@85 7372 func_error "AGE \`$age' must be a nonnegative integer"
cannam@85 7373 func_fatal_error "\`$vinfo' is not valid version information"
cannam@85 7374 ;;
cannam@85 7375 esac
cannam@85 7376
cannam@85 7377 if test "$age" -gt "$current"; then
cannam@85 7378 func_error "AGE \`$age' is greater than the current interface number \`$current'"
cannam@85 7379 func_fatal_error "\`$vinfo' is not valid version information"
cannam@85 7380 fi
cannam@85 7381
cannam@85 7382 # Calculate the version variables.
cannam@85 7383 major=
cannam@85 7384 versuffix=
cannam@85 7385 verstring=
cannam@85 7386 case $version_type in
cannam@85 7387 none) ;;
cannam@85 7388
cannam@85 7389 darwin)
cannam@85 7390 # Like Linux, but with the current version available in
cannam@85 7391 # verstring for coding it into the library header
cannam@85 7392 func_arith $current - $age
cannam@85 7393 major=.$func_arith_result
cannam@85 7394 versuffix="$major.$age.$revision"
cannam@85 7395 # Darwin ld doesn't like 0 for these options...
cannam@85 7396 func_arith $current + 1
cannam@85 7397 minor_current=$func_arith_result
cannam@85 7398 xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
cannam@85 7399 verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
cannam@85 7400 ;;
cannam@85 7401
cannam@85 7402 freebsd-aout)
cannam@85 7403 major=".$current"
cannam@85 7404 versuffix=".$current.$revision";
cannam@85 7405 ;;
cannam@85 7406
cannam@85 7407 freebsd-elf)
cannam@85 7408 major=".$current"
cannam@85 7409 versuffix=".$current"
cannam@85 7410 ;;
cannam@85 7411
cannam@85 7412 irix | nonstopux)
cannam@85 7413 if test "X$lt_irix_increment" = "Xno"; then
cannam@85 7414 func_arith $current - $age
cannam@85 7415 else
cannam@85 7416 func_arith $current - $age + 1
cannam@85 7417 fi
cannam@85 7418 major=$func_arith_result
cannam@85 7419
cannam@85 7420 case $version_type in
cannam@85 7421 nonstopux) verstring_prefix=nonstopux ;;
cannam@85 7422 *) verstring_prefix=sgi ;;
cannam@85 7423 esac
cannam@85 7424 verstring="$verstring_prefix$major.$revision"
cannam@85 7425
cannam@85 7426 # Add in all the interfaces that we are compatible with.
cannam@85 7427 loop=$revision
cannam@85 7428 while test "$loop" -ne 0; do
cannam@85 7429 func_arith $revision - $loop
cannam@85 7430 iface=$func_arith_result
cannam@85 7431 func_arith $loop - 1
cannam@85 7432 loop=$func_arith_result
cannam@85 7433 verstring="$verstring_prefix$major.$iface:$verstring"
cannam@85 7434 done
cannam@85 7435
cannam@85 7436 # Before this point, $major must not contain `.'.
cannam@85 7437 major=.$major
cannam@85 7438 versuffix="$major.$revision"
cannam@85 7439 ;;
cannam@85 7440
cannam@85 7441 linux)
cannam@85 7442 func_arith $current - $age
cannam@85 7443 major=.$func_arith_result
cannam@85 7444 versuffix="$major.$age.$revision"
cannam@85 7445 ;;
cannam@85 7446
cannam@85 7447 osf)
cannam@85 7448 func_arith $current - $age
cannam@85 7449 major=.$func_arith_result
cannam@85 7450 versuffix=".$current.$age.$revision"
cannam@85 7451 verstring="$current.$age.$revision"
cannam@85 7452
cannam@85 7453 # Add in all the interfaces that we are compatible with.
cannam@85 7454 loop=$age
cannam@85 7455 while test "$loop" -ne 0; do
cannam@85 7456 func_arith $current - $loop
cannam@85 7457 iface=$func_arith_result
cannam@85 7458 func_arith $loop - 1
cannam@85 7459 loop=$func_arith_result
cannam@85 7460 verstring="$verstring:${iface}.0"
cannam@85 7461 done
cannam@85 7462
cannam@85 7463 # Make executables depend on our current version.
cannam@85 7464 func_append verstring ":${current}.0"
cannam@85 7465 ;;
cannam@85 7466
cannam@85 7467 qnx)
cannam@85 7468 major=".$current"
cannam@85 7469 versuffix=".$current"
cannam@85 7470 ;;
cannam@85 7471
cannam@85 7472 sunos)
cannam@85 7473 major=".$current"
cannam@85 7474 versuffix=".$current.$revision"
cannam@85 7475 ;;
cannam@85 7476
cannam@85 7477 windows)
cannam@85 7478 # Use '-' rather than '.', since we only want one
cannam@85 7479 # extension on DOS 8.3 filesystems.
cannam@85 7480 func_arith $current - $age
cannam@85 7481 major=$func_arith_result
cannam@85 7482 versuffix="-$major"
cannam@85 7483 ;;
cannam@85 7484
cannam@85 7485 *)
cannam@85 7486 func_fatal_configuration "unknown library version type \`$version_type'"
cannam@85 7487 ;;
cannam@85 7488 esac
cannam@85 7489
cannam@85 7490 # Clear the version info if we defaulted, and they specified a release.
cannam@85 7491 if test -z "$vinfo" && test -n "$release"; then
cannam@85 7492 major=
cannam@85 7493 case $version_type in
cannam@85 7494 darwin)
cannam@85 7495 # we can't check for "0.0" in archive_cmds due to quoting
cannam@85 7496 # problems, so we reset it completely
cannam@85 7497 verstring=
cannam@85 7498 ;;
cannam@85 7499 *)
cannam@85 7500 verstring="0.0"
cannam@85 7501 ;;
cannam@85 7502 esac
cannam@85 7503 if test "$need_version" = no; then
cannam@85 7504 versuffix=
cannam@85 7505 else
cannam@85 7506 versuffix=".0.0"
cannam@85 7507 fi
cannam@85 7508 fi
cannam@85 7509
cannam@85 7510 # Remove version info from name if versioning should be avoided
cannam@85 7511 if test "$avoid_version" = yes && test "$need_version" = no; then
cannam@85 7512 major=
cannam@85 7513 versuffix=
cannam@85 7514 verstring=""
cannam@85 7515 fi
cannam@85 7516
cannam@85 7517 # Check to see if the archive will have undefined symbols.
cannam@85 7518 if test "$allow_undefined" = yes; then
cannam@85 7519 if test "$allow_undefined_flag" = unsupported; then
cannam@85 7520 func_warning "undefined symbols not allowed in $host shared libraries"
cannam@85 7521 build_libtool_libs=no
cannam@85 7522 build_old_libs=yes
cannam@85 7523 fi
cannam@85 7524 else
cannam@85 7525 # Don't allow undefined symbols.
cannam@85 7526 allow_undefined_flag="$no_undefined_flag"
cannam@85 7527 fi
cannam@85 7528
cannam@85 7529 fi
cannam@85 7530
cannam@85 7531 func_generate_dlsyms "$libname" "$libname" "yes"
cannam@85 7532 func_append libobjs " $symfileobj"
cannam@85 7533 test "X$libobjs" = "X " && libobjs=
cannam@85 7534
cannam@85 7535 if test "$opt_mode" != relink; then
cannam@85 7536 # Remove our outputs, but don't remove object files since they
cannam@85 7537 # may have been created when compiling PIC objects.
cannam@85 7538 removelist=
cannam@85 7539 tempremovelist=`$ECHO "$output_objdir/*"`
cannam@85 7540 for p in $tempremovelist; do
cannam@85 7541 case $p in
cannam@85 7542 *.$objext | *.gcno)
cannam@85 7543 ;;
cannam@85 7544 $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
cannam@85 7545 if test "X$precious_files_regex" != "X"; then
cannam@85 7546 if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
cannam@85 7547 then
cannam@85 7548 continue
cannam@85 7549 fi
cannam@85 7550 fi
cannam@85 7551 func_append removelist " $p"
cannam@85 7552 ;;
cannam@85 7553 *) ;;
cannam@85 7554 esac
cannam@85 7555 done
cannam@85 7556 test -n "$removelist" && \
cannam@85 7557 func_show_eval "${RM}r \$removelist"
cannam@85 7558 fi
cannam@85 7559
cannam@85 7560 # Now set the variables for building old libraries.
cannam@85 7561 if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
cannam@85 7562 func_append oldlibs " $output_objdir/$libname.$libext"
cannam@85 7563
cannam@85 7564 # Transform .lo files to .o files.
cannam@85 7565 oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP`
cannam@85 7566 fi
cannam@85 7567
cannam@85 7568 # Eliminate all temporary directories.
cannam@85 7569 #for path in $notinst_path; do
cannam@85 7570 # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"`
cannam@85 7571 # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"`
cannam@85 7572 # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"`
cannam@85 7573 #done
cannam@85 7574
cannam@85 7575 if test -n "$xrpath"; then
cannam@85 7576 # If the user specified any rpath flags, then add them.
cannam@85 7577 temp_xrpath=
cannam@85 7578 for libdir in $xrpath; do
cannam@85 7579 func_replace_sysroot "$libdir"
cannam@85 7580 func_append temp_xrpath " -R$func_replace_sysroot_result"
cannam@85 7581 case "$finalize_rpath " in
cannam@85 7582 *" $libdir "*) ;;
cannam@85 7583 *) func_append finalize_rpath " $libdir" ;;
cannam@85 7584 esac
cannam@85 7585 done
cannam@85 7586 if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then
cannam@85 7587 dependency_libs="$temp_xrpath $dependency_libs"
cannam@85 7588 fi
cannam@85 7589 fi
cannam@85 7590
cannam@85 7591 # Make sure dlfiles contains only unique files that won't be dlpreopened
cannam@85 7592 old_dlfiles="$dlfiles"
cannam@85 7593 dlfiles=
cannam@85 7594 for lib in $old_dlfiles; do
cannam@85 7595 case " $dlprefiles $dlfiles " in
cannam@85 7596 *" $lib "*) ;;
cannam@85 7597 *) func_append dlfiles " $lib" ;;
cannam@85 7598 esac
cannam@85 7599 done
cannam@85 7600
cannam@85 7601 # Make sure dlprefiles contains only unique files
cannam@85 7602 old_dlprefiles="$dlprefiles"
cannam@85 7603 dlprefiles=
cannam@85 7604 for lib in $old_dlprefiles; do
cannam@85 7605 case "$dlprefiles " in
cannam@85 7606 *" $lib "*) ;;
cannam@85 7607 *) func_append dlprefiles " $lib" ;;
cannam@85 7608 esac
cannam@85 7609 done
cannam@85 7610
cannam@85 7611 if test "$build_libtool_libs" = yes; then
cannam@85 7612 if test -n "$rpath"; then
cannam@85 7613 case $host in
cannam@85 7614 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*)
cannam@85 7615 # these systems don't actually have a c library (as such)!
cannam@85 7616 ;;
cannam@85 7617 *-*-rhapsody* | *-*-darwin1.[012])
cannam@85 7618 # Rhapsody C library is in the System framework
cannam@85 7619 func_append deplibs " System.ltframework"
cannam@85 7620 ;;
cannam@85 7621 *-*-netbsd*)
cannam@85 7622 # Don't link with libc until the a.out ld.so is fixed.
cannam@85 7623 ;;
cannam@85 7624 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@85 7625 # Do not include libc due to us having libc/libc_r.
cannam@85 7626 ;;
cannam@85 7627 *-*-sco3.2v5* | *-*-sco5v6*)
cannam@85 7628 # Causes problems with __ctype
cannam@85 7629 ;;
cannam@85 7630 *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
cannam@85 7631 # Compiler inserts libc in the correct place for threads to work
cannam@85 7632 ;;
cannam@85 7633 *)
cannam@85 7634 # Add libc to deplibs on all other systems if necessary.
cannam@85 7635 if test "$build_libtool_need_lc" = "yes"; then
cannam@85 7636 func_append deplibs " -lc"
cannam@85 7637 fi
cannam@85 7638 ;;
cannam@85 7639 esac
cannam@85 7640 fi
cannam@85 7641
cannam@85 7642 # Transform deplibs into only deplibs that can be linked in shared.
cannam@85 7643 name_save=$name
cannam@85 7644 libname_save=$libname
cannam@85 7645 release_save=$release
cannam@85 7646 versuffix_save=$versuffix
cannam@85 7647 major_save=$major
cannam@85 7648 # I'm not sure if I'm treating the release correctly. I think
cannam@85 7649 # release should show up in the -l (ie -lgmp5) so we don't want to
cannam@85 7650 # add it in twice. Is that correct?
cannam@85 7651 release=""
cannam@85 7652 versuffix=""
cannam@85 7653 major=""
cannam@85 7654 newdeplibs=
cannam@85 7655 droppeddeps=no
cannam@85 7656 case $deplibs_check_method in
cannam@85 7657 pass_all)
cannam@85 7658 # Don't check for shared/static. Everything works.
cannam@85 7659 # This might be a little naive. We might want to check
cannam@85 7660 # whether the library exists or not. But this is on
cannam@85 7661 # osf3 & osf4 and I'm not really sure... Just
cannam@85 7662 # implementing what was already the behavior.
cannam@85 7663 newdeplibs=$deplibs
cannam@85 7664 ;;
cannam@85 7665 test_compile)
cannam@85 7666 # This code stresses the "libraries are programs" paradigm to its
cannam@85 7667 # limits. Maybe even breaks it. We compile a program, linking it
cannam@85 7668 # against the deplibs as a proxy for the library. Then we can check
cannam@85 7669 # whether they linked in statically or dynamically with ldd.
cannam@85 7670 $opt_dry_run || $RM conftest.c
cannam@85 7671 cat > conftest.c <<EOF
cannam@85 7672 int main() { return 0; }
cannam@85 7673 EOF
cannam@85 7674 $opt_dry_run || $RM conftest
cannam@85 7675 if $LTCC $LTCFLAGS -o conftest conftest.c $deplibs; then
cannam@85 7676 ldd_output=`ldd conftest`
cannam@85 7677 for i in $deplibs; do
cannam@85 7678 case $i in
cannam@85 7679 -l*)
cannam@85 7680 func_stripname -l '' "$i"
cannam@85 7681 name=$func_stripname_result
cannam@85 7682 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@85 7683 case " $predeps $postdeps " in
cannam@85 7684 *" $i "*)
cannam@85 7685 func_append newdeplibs " $i"
cannam@85 7686 i=""
cannam@85 7687 ;;
cannam@85 7688 esac
cannam@85 7689 fi
cannam@85 7690 if test -n "$i" ; then
cannam@85 7691 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@85 7692 deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
cannam@85 7693 set dummy $deplib_matches; shift
cannam@85 7694 deplib_match=$1
cannam@85 7695 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
cannam@85 7696 func_append newdeplibs " $i"
cannam@85 7697 else
cannam@85 7698 droppeddeps=yes
cannam@85 7699 echo
cannam@85 7700 $ECHO "*** Warning: dynamic linker does not accept needed library $i."
cannam@85 7701 echo "*** I have the capability to make that library automatically link in when"
cannam@85 7702 echo "*** you link to this library. But I can only do this if you have a"
cannam@85 7703 echo "*** shared version of the library, which I believe you do not have"
cannam@85 7704 echo "*** because a test_compile did reveal that the linker did not use it for"
cannam@85 7705 echo "*** its dynamic dependency list that programs get resolved with at runtime."
cannam@85 7706 fi
cannam@85 7707 fi
cannam@85 7708 ;;
cannam@85 7709 *)
cannam@85 7710 func_append newdeplibs " $i"
cannam@85 7711 ;;
cannam@85 7712 esac
cannam@85 7713 done
cannam@85 7714 else
cannam@85 7715 # Error occurred in the first compile. Let's try to salvage
cannam@85 7716 # the situation: Compile a separate program for each library.
cannam@85 7717 for i in $deplibs; do
cannam@85 7718 case $i in
cannam@85 7719 -l*)
cannam@85 7720 func_stripname -l '' "$i"
cannam@85 7721 name=$func_stripname_result
cannam@85 7722 $opt_dry_run || $RM conftest
cannam@85 7723 if $LTCC $LTCFLAGS -o conftest conftest.c $i; then
cannam@85 7724 ldd_output=`ldd conftest`
cannam@85 7725 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@85 7726 case " $predeps $postdeps " in
cannam@85 7727 *" $i "*)
cannam@85 7728 func_append newdeplibs " $i"
cannam@85 7729 i=""
cannam@85 7730 ;;
cannam@85 7731 esac
cannam@85 7732 fi
cannam@85 7733 if test -n "$i" ; then
cannam@85 7734 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@85 7735 deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
cannam@85 7736 set dummy $deplib_matches; shift
cannam@85 7737 deplib_match=$1
cannam@85 7738 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
cannam@85 7739 func_append newdeplibs " $i"
cannam@85 7740 else
cannam@85 7741 droppeddeps=yes
cannam@85 7742 echo
cannam@85 7743 $ECHO "*** Warning: dynamic linker does not accept needed library $i."
cannam@85 7744 echo "*** I have the capability to make that library automatically link in when"
cannam@85 7745 echo "*** you link to this library. But I can only do this if you have a"
cannam@85 7746 echo "*** shared version of the library, which you do not appear to have"
cannam@85 7747 echo "*** because a test_compile did reveal that the linker did not use this one"
cannam@85 7748 echo "*** as a dynamic dependency that programs can get resolved with at runtime."
cannam@85 7749 fi
cannam@85 7750 fi
cannam@85 7751 else
cannam@85 7752 droppeddeps=yes
cannam@85 7753 echo
cannam@85 7754 $ECHO "*** Warning! Library $i is needed by this library but I was not able to"
cannam@85 7755 echo "*** make it link in! You will probably need to install it or some"
cannam@85 7756 echo "*** library that it depends on before this library will be fully"
cannam@85 7757 echo "*** functional. Installing it before continuing would be even better."
cannam@85 7758 fi
cannam@85 7759 ;;
cannam@85 7760 *)
cannam@85 7761 func_append newdeplibs " $i"
cannam@85 7762 ;;
cannam@85 7763 esac
cannam@85 7764 done
cannam@85 7765 fi
cannam@85 7766 ;;
cannam@85 7767 file_magic*)
cannam@85 7768 set dummy $deplibs_check_method; shift
cannam@85 7769 file_magic_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
cannam@85 7770 for a_deplib in $deplibs; do
cannam@85 7771 case $a_deplib in
cannam@85 7772 -l*)
cannam@85 7773 func_stripname -l '' "$a_deplib"
cannam@85 7774 name=$func_stripname_result
cannam@85 7775 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@85 7776 case " $predeps $postdeps " in
cannam@85 7777 *" $a_deplib "*)
cannam@85 7778 func_append newdeplibs " $a_deplib"
cannam@85 7779 a_deplib=""
cannam@85 7780 ;;
cannam@85 7781 esac
cannam@85 7782 fi
cannam@85 7783 if test -n "$a_deplib" ; then
cannam@85 7784 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@85 7785 if test -n "$file_magic_glob"; then
cannam@85 7786 libnameglob=`func_echo_all "$libname" | $SED -e $file_magic_glob`
cannam@85 7787 else
cannam@85 7788 libnameglob=$libname
cannam@85 7789 fi
cannam@85 7790 test "$want_nocaseglob" = yes && nocaseglob=`shopt -p nocaseglob`
cannam@85 7791 for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
cannam@85 7792 if test "$want_nocaseglob" = yes; then
cannam@85 7793 shopt -s nocaseglob
cannam@85 7794 potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`
cannam@85 7795 $nocaseglob
cannam@85 7796 else
cannam@85 7797 potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`
cannam@85 7798 fi
cannam@85 7799 for potent_lib in $potential_libs; do
cannam@85 7800 # Follow soft links.
cannam@85 7801 if ls -lLd "$potent_lib" 2>/dev/null |
cannam@85 7802 $GREP " -> " >/dev/null; then
cannam@85 7803 continue
cannam@85 7804 fi
cannam@85 7805 # The statement above tries to avoid entering an
cannam@85 7806 # endless loop below, in case of cyclic links.
cannam@85 7807 # We might still enter an endless loop, since a link
cannam@85 7808 # loop can be closed while we follow links,
cannam@85 7809 # but so what?
cannam@85 7810 potlib="$potent_lib"
cannam@85 7811 while test -h "$potlib" 2>/dev/null; do
cannam@85 7812 potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'`
cannam@85 7813 case $potliblink in
cannam@85 7814 [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
cannam@85 7815 *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";;
cannam@85 7816 esac
cannam@85 7817 done
cannam@85 7818 if eval $file_magic_cmd \"\$potlib\" 2>/dev/null |
cannam@85 7819 $SED -e 10q |
cannam@85 7820 $EGREP "$file_magic_regex" > /dev/null; then
cannam@85 7821 func_append newdeplibs " $a_deplib"
cannam@85 7822 a_deplib=""
cannam@85 7823 break 2
cannam@85 7824 fi
cannam@85 7825 done
cannam@85 7826 done
cannam@85 7827 fi
cannam@85 7828 if test -n "$a_deplib" ; then
cannam@85 7829 droppeddeps=yes
cannam@85 7830 echo
cannam@85 7831 $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
cannam@85 7832 echo "*** I have the capability to make that library automatically link in when"
cannam@85 7833 echo "*** you link to this library. But I can only do this if you have a"
cannam@85 7834 echo "*** shared version of the library, which you do not appear to have"
cannam@85 7835 echo "*** because I did check the linker path looking for a file starting"
cannam@85 7836 if test -z "$potlib" ; then
cannam@85 7837 $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
cannam@85 7838 else
cannam@85 7839 $ECHO "*** with $libname and none of the candidates passed a file format test"
cannam@85 7840 $ECHO "*** using a file magic. Last file checked: $potlib"
cannam@85 7841 fi
cannam@85 7842 fi
cannam@85 7843 ;;
cannam@85 7844 *)
cannam@85 7845 # Add a -L argument.
cannam@85 7846 func_append newdeplibs " $a_deplib"
cannam@85 7847 ;;
cannam@85 7848 esac
cannam@85 7849 done # Gone through all deplibs.
cannam@85 7850 ;;
cannam@85 7851 match_pattern*)
cannam@85 7852 set dummy $deplibs_check_method; shift
cannam@85 7853 match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
cannam@85 7854 for a_deplib in $deplibs; do
cannam@85 7855 case $a_deplib in
cannam@85 7856 -l*)
cannam@85 7857 func_stripname -l '' "$a_deplib"
cannam@85 7858 name=$func_stripname_result
cannam@85 7859 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@85 7860 case " $predeps $postdeps " in
cannam@85 7861 *" $a_deplib "*)
cannam@85 7862 func_append newdeplibs " $a_deplib"
cannam@85 7863 a_deplib=""
cannam@85 7864 ;;
cannam@85 7865 esac
cannam@85 7866 fi
cannam@85 7867 if test -n "$a_deplib" ; then
cannam@85 7868 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@85 7869 for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
cannam@85 7870 potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
cannam@85 7871 for potent_lib in $potential_libs; do
cannam@85 7872 potlib="$potent_lib" # see symlink-check above in file_magic test
cannam@85 7873 if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \
cannam@85 7874 $EGREP "$match_pattern_regex" > /dev/null; then
cannam@85 7875 func_append newdeplibs " $a_deplib"
cannam@85 7876 a_deplib=""
cannam@85 7877 break 2
cannam@85 7878 fi
cannam@85 7879 done
cannam@85 7880 done
cannam@85 7881 fi
cannam@85 7882 if test -n "$a_deplib" ; then
cannam@85 7883 droppeddeps=yes
cannam@85 7884 echo
cannam@85 7885 $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
cannam@85 7886 echo "*** I have the capability to make that library automatically link in when"
cannam@85 7887 echo "*** you link to this library. But I can only do this if you have a"
cannam@85 7888 echo "*** shared version of the library, which you do not appear to have"
cannam@85 7889 echo "*** because I did check the linker path looking for a file starting"
cannam@85 7890 if test -z "$potlib" ; then
cannam@85 7891 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
cannam@85 7892 else
cannam@85 7893 $ECHO "*** with $libname and none of the candidates passed a file format test"
cannam@85 7894 $ECHO "*** using a regex pattern. Last file checked: $potlib"
cannam@85 7895 fi
cannam@85 7896 fi
cannam@85 7897 ;;
cannam@85 7898 *)
cannam@85 7899 # Add a -L argument.
cannam@85 7900 func_append newdeplibs " $a_deplib"
cannam@85 7901 ;;
cannam@85 7902 esac
cannam@85 7903 done # Gone through all deplibs.
cannam@85 7904 ;;
cannam@85 7905 none | unknown | *)
cannam@85 7906 newdeplibs=""
cannam@85 7907 tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'`
cannam@85 7908 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@85 7909 for i in $predeps $postdeps ; do
cannam@85 7910 # can't use Xsed below, because $i might contain '/'
cannam@85 7911 tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"`
cannam@85 7912 done
cannam@85 7913 fi
cannam@85 7914 case $tmp_deplibs in
cannam@85 7915 *[!\ \ ]*)
cannam@85 7916 echo
cannam@85 7917 if test "X$deplibs_check_method" = "Xnone"; then
cannam@85 7918 echo "*** Warning: inter-library dependencies are not supported in this platform."
cannam@85 7919 else
cannam@85 7920 echo "*** Warning: inter-library dependencies are not known to be supported."
cannam@85 7921 fi
cannam@85 7922 echo "*** All declared inter-library dependencies are being dropped."
cannam@85 7923 droppeddeps=yes
cannam@85 7924 ;;
cannam@85 7925 esac
cannam@85 7926 ;;
cannam@85 7927 esac
cannam@85 7928 versuffix=$versuffix_save
cannam@85 7929 major=$major_save
cannam@85 7930 release=$release_save
cannam@85 7931 libname=$libname_save
cannam@85 7932 name=$name_save
cannam@85 7933
cannam@85 7934 case $host in
cannam@85 7935 *-*-rhapsody* | *-*-darwin1.[012])
cannam@85 7936 # On Rhapsody replace the C library with the System framework
cannam@85 7937 newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'`
cannam@85 7938 ;;
cannam@85 7939 esac
cannam@85 7940
cannam@85 7941 if test "$droppeddeps" = yes; then
cannam@85 7942 if test "$module" = yes; then
cannam@85 7943 echo
cannam@85 7944 echo "*** Warning: libtool could not satisfy all declared inter-library"
cannam@85 7945 $ECHO "*** dependencies of module $libname. Therefore, libtool will create"
cannam@85 7946 echo "*** a static module, that should work as long as the dlopening"
cannam@85 7947 echo "*** application is linked with the -dlopen flag."
cannam@85 7948 if test -z "$global_symbol_pipe"; then
cannam@85 7949 echo
cannam@85 7950 echo "*** However, this would only work if libtool was able to extract symbol"
cannam@85 7951 echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
cannam@85 7952 echo "*** not find such a program. So, this module is probably useless."
cannam@85 7953 echo "*** \`nm' from GNU binutils and a full rebuild may help."
cannam@85 7954 fi
cannam@85 7955 if test "$build_old_libs" = no; then
cannam@85 7956 oldlibs="$output_objdir/$libname.$libext"
cannam@85 7957 build_libtool_libs=module
cannam@85 7958 build_old_libs=yes
cannam@85 7959 else
cannam@85 7960 build_libtool_libs=no
cannam@85 7961 fi
cannam@85 7962 else
cannam@85 7963 echo "*** The inter-library dependencies that have been dropped here will be"
cannam@85 7964 echo "*** automatically added whenever a program is linked with this library"
cannam@85 7965 echo "*** or is declared to -dlopen it."
cannam@85 7966
cannam@85 7967 if test "$allow_undefined" = no; then
cannam@85 7968 echo
cannam@85 7969 echo "*** Since this library must not contain undefined symbols,"
cannam@85 7970 echo "*** because either the platform does not support them or"
cannam@85 7971 echo "*** it was explicitly requested with -no-undefined,"
cannam@85 7972 echo "*** libtool will only create a static version of it."
cannam@85 7973 if test "$build_old_libs" = no; then
cannam@85 7974 oldlibs="$output_objdir/$libname.$libext"
cannam@85 7975 build_libtool_libs=module
cannam@85 7976 build_old_libs=yes
cannam@85 7977 else
cannam@85 7978 build_libtool_libs=no
cannam@85 7979 fi
cannam@85 7980 fi
cannam@85 7981 fi
cannam@85 7982 fi
cannam@85 7983 # Done checking deplibs!
cannam@85 7984 deplibs=$newdeplibs
cannam@85 7985 fi
cannam@85 7986 # Time to change all our "foo.ltframework" stuff back to "-framework foo"
cannam@85 7987 case $host in
cannam@85 7988 *-*-darwin*)
cannam@85 7989 newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@85 7990 new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@85 7991 deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@85 7992 ;;
cannam@85 7993 esac
cannam@85 7994
cannam@85 7995 # move library search paths that coincide with paths to not yet
cannam@85 7996 # installed libraries to the beginning of the library search list
cannam@85 7997 new_libs=
cannam@85 7998 for path in $notinst_path; do
cannam@85 7999 case " $new_libs " in
cannam@85 8000 *" -L$path/$objdir "*) ;;
cannam@85 8001 *)
cannam@85 8002 case " $deplibs " in
cannam@85 8003 *" -L$path/$objdir "*)
cannam@85 8004 func_append new_libs " -L$path/$objdir" ;;
cannam@85 8005 esac
cannam@85 8006 ;;
cannam@85 8007 esac
cannam@85 8008 done
cannam@85 8009 for deplib in $deplibs; do
cannam@85 8010 case $deplib in
cannam@85 8011 -L*)
cannam@85 8012 case " $new_libs " in
cannam@85 8013 *" $deplib "*) ;;
cannam@85 8014 *) func_append new_libs " $deplib" ;;
cannam@85 8015 esac
cannam@85 8016 ;;
cannam@85 8017 *) func_append new_libs " $deplib" ;;
cannam@85 8018 esac
cannam@85 8019 done
cannam@85 8020 deplibs="$new_libs"
cannam@85 8021
cannam@85 8022 # All the library-specific variables (install_libdir is set above).
cannam@85 8023 library_names=
cannam@85 8024 old_library=
cannam@85 8025 dlname=
cannam@85 8026
cannam@85 8027 # Test again, we may have decided not to build it any more
cannam@85 8028 if test "$build_libtool_libs" = yes; then
cannam@85 8029 if test "$hardcode_into_libs" = yes; then
cannam@85 8030 # Hardcode the library paths
cannam@85 8031 hardcode_libdirs=
cannam@85 8032 dep_rpath=
cannam@85 8033 rpath="$finalize_rpath"
cannam@85 8034 test "$opt_mode" != relink && rpath="$compile_rpath$rpath"
cannam@85 8035 for libdir in $rpath; do
cannam@85 8036 if test -n "$hardcode_libdir_flag_spec"; then
cannam@85 8037 if test -n "$hardcode_libdir_separator"; then
cannam@85 8038 func_replace_sysroot "$libdir"
cannam@85 8039 libdir=$func_replace_sysroot_result
cannam@85 8040 if test -z "$hardcode_libdirs"; then
cannam@85 8041 hardcode_libdirs="$libdir"
cannam@85 8042 else
cannam@85 8043 # Just accumulate the unique libdirs.
cannam@85 8044 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@85 8045 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@85 8046 ;;
cannam@85 8047 *)
cannam@85 8048 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
cannam@85 8049 ;;
cannam@85 8050 esac
cannam@85 8051 fi
cannam@85 8052 else
cannam@85 8053 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@85 8054 func_append dep_rpath " $flag"
cannam@85 8055 fi
cannam@85 8056 elif test -n "$runpath_var"; then
cannam@85 8057 case "$perm_rpath " in
cannam@85 8058 *" $libdir "*) ;;
cannam@85 8059 *) func_apped perm_rpath " $libdir" ;;
cannam@85 8060 esac
cannam@85 8061 fi
cannam@85 8062 done
cannam@85 8063 # Substitute the hardcoded libdirs into the rpath.
cannam@85 8064 if test -n "$hardcode_libdir_separator" &&
cannam@85 8065 test -n "$hardcode_libdirs"; then
cannam@85 8066 libdir="$hardcode_libdirs"
cannam@85 8067 if test -n "$hardcode_libdir_flag_spec_ld"; then
cannam@85 8068 eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\"
cannam@85 8069 else
cannam@85 8070 eval dep_rpath=\"$hardcode_libdir_flag_spec\"
cannam@85 8071 fi
cannam@85 8072 fi
cannam@85 8073 if test -n "$runpath_var" && test -n "$perm_rpath"; then
cannam@85 8074 # We should set the runpath_var.
cannam@85 8075 rpath=
cannam@85 8076 for dir in $perm_rpath; do
cannam@85 8077 func_append rpath "$dir:"
cannam@85 8078 done
cannam@85 8079 eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var"
cannam@85 8080 fi
cannam@85 8081 test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs"
cannam@85 8082 fi
cannam@85 8083
cannam@85 8084 shlibpath="$finalize_shlibpath"
cannam@85 8085 test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath"
cannam@85 8086 if test -n "$shlibpath"; then
cannam@85 8087 eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var"
cannam@85 8088 fi
cannam@85 8089
cannam@85 8090 # Get the real and link names of the library.
cannam@85 8091 eval shared_ext=\"$shrext_cmds\"
cannam@85 8092 eval library_names=\"$library_names_spec\"
cannam@85 8093 set dummy $library_names
cannam@85 8094 shift
cannam@85 8095 realname="$1"
cannam@85 8096 shift
cannam@85 8097
cannam@85 8098 if test -n "$soname_spec"; then
cannam@85 8099 eval soname=\"$soname_spec\"
cannam@85 8100 else
cannam@85 8101 soname="$realname"
cannam@85 8102 fi
cannam@85 8103 if test -z "$dlname"; then
cannam@85 8104 dlname=$soname
cannam@85 8105 fi
cannam@85 8106
cannam@85 8107 lib="$output_objdir/$realname"
cannam@85 8108 linknames=
cannam@85 8109 for link
cannam@85 8110 do
cannam@85 8111 func_append linknames " $link"
cannam@85 8112 done
cannam@85 8113
cannam@85 8114 # Use standard objects if they are pic
cannam@85 8115 test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@85 8116 test "X$libobjs" = "X " && libobjs=
cannam@85 8117
cannam@85 8118 delfiles=
cannam@85 8119 if test -n "$export_symbols" && test -n "$include_expsyms"; then
cannam@85 8120 $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp"
cannam@85 8121 export_symbols="$output_objdir/$libname.uexp"
cannam@85 8122 func_append delfiles " $export_symbols"
cannam@85 8123 fi
cannam@85 8124
cannam@85 8125 orig_export_symbols=
cannam@85 8126 case $host_os in
cannam@85 8127 cygwin* | mingw* | cegcc*)
cannam@85 8128 if test -n "$export_symbols" && test -z "$export_symbols_regex"; then
cannam@85 8129 # exporting using user supplied symfile
cannam@85 8130 if test "x`$SED 1q $export_symbols`" != xEXPORTS; then
cannam@85 8131 # and it's NOT already a .def file. Must figure out
cannam@85 8132 # which of the given symbols are data symbols and tag
cannam@85 8133 # them as such. So, trigger use of export_symbols_cmds.
cannam@85 8134 # export_symbols gets reassigned inside the "prepare
cannam@85 8135 # the list of exported symbols" if statement, so the
cannam@85 8136 # include_expsyms logic still works.
cannam@85 8137 orig_export_symbols="$export_symbols"
cannam@85 8138 export_symbols=
cannam@85 8139 always_export_symbols=yes
cannam@85 8140 fi
cannam@85 8141 fi
cannam@85 8142 ;;
cannam@85 8143 esac
cannam@85 8144
cannam@85 8145 # Prepare the list of exported symbols
cannam@85 8146 if test -z "$export_symbols"; then
cannam@85 8147 if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
cannam@85 8148 func_verbose "generating symbol list for \`$libname.la'"
cannam@85 8149 export_symbols="$output_objdir/$libname.exp"
cannam@85 8150 $opt_dry_run || $RM $export_symbols
cannam@85 8151 cmds=$export_symbols_cmds
cannam@85 8152 save_ifs="$IFS"; IFS='~'
cannam@85 8153 for cmd1 in $cmds; do
cannam@85 8154 IFS="$save_ifs"
cannam@85 8155 # Take the normal branch if the nm_file_list_spec branch
cannam@85 8156 # doesn't work or if tool conversion is not needed.
cannam@85 8157 case $nm_file_list_spec~$to_tool_file_cmd in
cannam@85 8158 *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*)
cannam@85 8159 try_normal_branch=yes
cannam@85 8160 eval cmd=\"$cmd1\"
cannam@85 8161 func_len " $cmd"
cannam@85 8162 len=$func_len_result
cannam@85 8163 ;;
cannam@85 8164 *)
cannam@85 8165 try_normal_branch=no
cannam@85 8166 ;;
cannam@85 8167 esac
cannam@85 8168 if test "$try_normal_branch" = yes \
cannam@85 8169 && { test "$len" -lt "$max_cmd_len" \
cannam@85 8170 || test "$max_cmd_len" -le -1; }
cannam@85 8171 then
cannam@85 8172 func_show_eval "$cmd" 'exit $?'
cannam@85 8173 skipped_export=false
cannam@85 8174 elif test -n "$nm_file_list_spec"; then
cannam@85 8175 func_basename "$output"
cannam@85 8176 output_la=$func_basename_result
cannam@85 8177 save_libobjs=$libobjs
cannam@85 8178 save_output=$output
cannam@85 8179 output=${output_objdir}/${output_la}.nm
cannam@85 8180 func_to_tool_file "$output"
cannam@85 8181 libobjs=$nm_file_list_spec$func_to_tool_file_result
cannam@85 8182 func_append delfiles " $output"
cannam@85 8183 func_verbose "creating $NM input file list: $output"
cannam@85 8184 for obj in $save_libobjs; do
cannam@85 8185 func_to_tool_file "$obj"
cannam@85 8186 $ECHO "$func_to_tool_file_result"
cannam@85 8187 done > "$output"
cannam@85 8188 eval cmd=\"$cmd1\"
cannam@85 8189 func_show_eval "$cmd" 'exit $?'
cannam@85 8190 output=$save_output
cannam@85 8191 libobjs=$save_libobjs
cannam@85 8192 skipped_export=false
cannam@85 8193 else
cannam@85 8194 # The command line is too long to execute in one step.
cannam@85 8195 func_verbose "using reloadable object file for export list..."
cannam@85 8196 skipped_export=:
cannam@85 8197 # Break out early, otherwise skipped_export may be
cannam@85 8198 # set to false by a later but shorter cmd.
cannam@85 8199 break
cannam@85 8200 fi
cannam@85 8201 done
cannam@85 8202 IFS="$save_ifs"
cannam@85 8203 if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then
cannam@85 8204 func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
cannam@85 8205 func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
cannam@85 8206 fi
cannam@85 8207 fi
cannam@85 8208 fi
cannam@85 8209
cannam@85 8210 if test -n "$export_symbols" && test -n "$include_expsyms"; then
cannam@85 8211 tmp_export_symbols="$export_symbols"
cannam@85 8212 test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
cannam@85 8213 $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"'
cannam@85 8214 fi
cannam@85 8215
cannam@85 8216 if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then
cannam@85 8217 # The given exports_symbols file has to be filtered, so filter it.
cannam@85 8218 func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
cannam@85 8219 # FIXME: $output_objdir/$libname.filter potentially contains lots of
cannam@85 8220 # 's' commands which not all seds can handle. GNU sed should be fine
cannam@85 8221 # though. Also, the filter scales superlinearly with the number of
cannam@85 8222 # global variables. join(1) would be nice here, but unfortunately
cannam@85 8223 # isn't a blessed tool.
cannam@85 8224 $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter
cannam@85 8225 func_append delfiles " $export_symbols $output_objdir/$libname.filter"
cannam@85 8226 export_symbols=$output_objdir/$libname.def
cannam@85 8227 $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
cannam@85 8228 fi
cannam@85 8229
cannam@85 8230 tmp_deplibs=
cannam@85 8231 for test_deplib in $deplibs; do
cannam@85 8232 case " $convenience " in
cannam@85 8233 *" $test_deplib "*) ;;
cannam@85 8234 *)
cannam@85 8235 func_append tmp_deplibs " $test_deplib"
cannam@85 8236 ;;
cannam@85 8237 esac
cannam@85 8238 done
cannam@85 8239 deplibs="$tmp_deplibs"
cannam@85 8240
cannam@85 8241 if test -n "$convenience"; then
cannam@85 8242 if test -n "$whole_archive_flag_spec" &&
cannam@85 8243 test "$compiler_needs_object" = yes &&
cannam@85 8244 test -z "$libobjs"; then
cannam@85 8245 # extract the archives, so we have objects to list.
cannam@85 8246 # TODO: could optimize this to just extract one archive.
cannam@85 8247 whole_archive_flag_spec=
cannam@85 8248 fi
cannam@85 8249 if test -n "$whole_archive_flag_spec"; then
cannam@85 8250 save_libobjs=$libobjs
cannam@85 8251 eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
cannam@85 8252 test "X$libobjs" = "X " && libobjs=
cannam@85 8253 else
cannam@85 8254 gentop="$output_objdir/${outputname}x"
cannam@85 8255 func_append generated " $gentop"
cannam@85 8256
cannam@85 8257 func_extract_archives $gentop $convenience
cannam@85 8258 func_append libobjs " $func_extract_archives_result"
cannam@85 8259 test "X$libobjs" = "X " && libobjs=
cannam@85 8260 fi
cannam@85 8261 fi
cannam@85 8262
cannam@85 8263 if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
cannam@85 8264 eval flag=\"$thread_safe_flag_spec\"
cannam@85 8265 func_append linker_flags " $flag"
cannam@85 8266 fi
cannam@85 8267
cannam@85 8268 # Make a backup of the uninstalled library when relinking
cannam@85 8269 if test "$opt_mode" = relink; then
cannam@85 8270 $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?
cannam@85 8271 fi
cannam@85 8272
cannam@85 8273 # Do each of the archive commands.
cannam@85 8274 if test "$module" = yes && test -n "$module_cmds" ; then
cannam@85 8275 if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
cannam@85 8276 eval test_cmds=\"$module_expsym_cmds\"
cannam@85 8277 cmds=$module_expsym_cmds
cannam@85 8278 else
cannam@85 8279 eval test_cmds=\"$module_cmds\"
cannam@85 8280 cmds=$module_cmds
cannam@85 8281 fi
cannam@85 8282 else
cannam@85 8283 if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
cannam@85 8284 eval test_cmds=\"$archive_expsym_cmds\"
cannam@85 8285 cmds=$archive_expsym_cmds
cannam@85 8286 else
cannam@85 8287 eval test_cmds=\"$archive_cmds\"
cannam@85 8288 cmds=$archive_cmds
cannam@85 8289 fi
cannam@85 8290 fi
cannam@85 8291
cannam@85 8292 if test "X$skipped_export" != "X:" &&
cannam@85 8293 func_len " $test_cmds" &&
cannam@85 8294 len=$func_len_result &&
cannam@85 8295 test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
cannam@85 8296 :
cannam@85 8297 else
cannam@85 8298 # The command line is too long to link in one step, link piecewise
cannam@85 8299 # or, if using GNU ld and skipped_export is not :, use a linker
cannam@85 8300 # script.
cannam@85 8301
cannam@85 8302 # Save the value of $output and $libobjs because we want to
cannam@85 8303 # use them later. If we have whole_archive_flag_spec, we
cannam@85 8304 # want to use save_libobjs as it was before
cannam@85 8305 # whole_archive_flag_spec was expanded, because we can't
cannam@85 8306 # assume the linker understands whole_archive_flag_spec.
cannam@85 8307 # This may have to be revisited, in case too many
cannam@85 8308 # convenience libraries get linked in and end up exceeding
cannam@85 8309 # the spec.
cannam@85 8310 if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then
cannam@85 8311 save_libobjs=$libobjs
cannam@85 8312 fi
cannam@85 8313 save_output=$output
cannam@85 8314 func_basename "$output"
cannam@85 8315 output_la=$func_basename_result
cannam@85 8316
cannam@85 8317 # Clear the reloadable object creation command queue and
cannam@85 8318 # initialize k to one.
cannam@85 8319 test_cmds=
cannam@85 8320 concat_cmds=
cannam@85 8321 objlist=
cannam@85 8322 last_robj=
cannam@85 8323 k=1
cannam@85 8324
cannam@85 8325 if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then
cannam@85 8326 output=${output_objdir}/${output_la}.lnkscript
cannam@85 8327 func_verbose "creating GNU ld script: $output"
cannam@85 8328 echo 'INPUT (' > $output
cannam@85 8329 for obj in $save_libobjs
cannam@85 8330 do
cannam@85 8331 func_to_tool_file "$obj"
cannam@85 8332 $ECHO "$func_to_tool_file_result" >> $output
cannam@85 8333 done
cannam@85 8334 echo ')' >> $output
cannam@85 8335 func_append delfiles " $output"
cannam@85 8336 func_to_tool_file "$output"
cannam@85 8337 output=$func_to_tool_file_result
cannam@85 8338 elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then
cannam@85 8339 output=${output_objdir}/${output_la}.lnk
cannam@85 8340 func_verbose "creating linker input file list: $output"
cannam@85 8341 : > $output
cannam@85 8342 set x $save_libobjs
cannam@85 8343 shift
cannam@85 8344 firstobj=
cannam@85 8345 if test "$compiler_needs_object" = yes; then
cannam@85 8346 firstobj="$1 "
cannam@85 8347 shift
cannam@85 8348 fi
cannam@85 8349 for obj
cannam@85 8350 do
cannam@85 8351 func_to_tool_file "$obj"
cannam@85 8352 $ECHO "$func_to_tool_file_result" >> $output
cannam@85 8353 done
cannam@85 8354 func_append delfiles " $output"
cannam@85 8355 func_to_tool_file "$output"
cannam@85 8356 output=$firstobj\"$file_list_spec$func_to_tool_file_result\"
cannam@85 8357 else
cannam@85 8358 if test -n "$save_libobjs"; then
cannam@85 8359 func_verbose "creating reloadable object files..."
cannam@85 8360 output=$output_objdir/$output_la-${k}.$objext
cannam@85 8361 eval test_cmds=\"$reload_cmds\"
cannam@85 8362 func_len " $test_cmds"
cannam@85 8363 len0=$func_len_result
cannam@85 8364 len=$len0
cannam@85 8365
cannam@85 8366 # Loop over the list of objects to be linked.
cannam@85 8367 for obj in $save_libobjs
cannam@85 8368 do
cannam@85 8369 func_len " $obj"
cannam@85 8370 func_arith $len + $func_len_result
cannam@85 8371 len=$func_arith_result
cannam@85 8372 if test "X$objlist" = X ||
cannam@85 8373 test "$len" -lt "$max_cmd_len"; then
cannam@85 8374 func_append objlist " $obj"
cannam@85 8375 else
cannam@85 8376 # The command $test_cmds is almost too long, add a
cannam@85 8377 # command to the queue.
cannam@85 8378 if test "$k" -eq 1 ; then
cannam@85 8379 # The first file doesn't have a previous command to add.
cannam@85 8380 reload_objs=$objlist
cannam@85 8381 eval concat_cmds=\"$reload_cmds\"
cannam@85 8382 else
cannam@85 8383 # All subsequent reloadable object files will link in
cannam@85 8384 # the last one created.
cannam@85 8385 reload_objs="$objlist $last_robj"
cannam@85 8386 eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\"
cannam@85 8387 fi
cannam@85 8388 last_robj=$output_objdir/$output_la-${k}.$objext
cannam@85 8389 func_arith $k + 1
cannam@85 8390 k=$func_arith_result
cannam@85 8391 output=$output_objdir/$output_la-${k}.$objext
cannam@85 8392 objlist=" $obj"
cannam@85 8393 func_len " $last_robj"
cannam@85 8394 func_arith $len0 + $func_len_result
cannam@85 8395 len=$func_arith_result
cannam@85 8396 fi
cannam@85 8397 done
cannam@85 8398 # Handle the remaining objects by creating one last
cannam@85 8399 # reloadable object file. All subsequent reloadable object
cannam@85 8400 # files will link in the last one created.
cannam@85 8401 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
cannam@85 8402 reload_objs="$objlist $last_robj"
cannam@85 8403 eval concat_cmds=\"\${concat_cmds}$reload_cmds\"
cannam@85 8404 if test -n "$last_robj"; then
cannam@85 8405 eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\"
cannam@85 8406 fi
cannam@85 8407 func_append delfiles " $output"
cannam@85 8408
cannam@85 8409 else
cannam@85 8410 output=
cannam@85 8411 fi
cannam@85 8412
cannam@85 8413 if ${skipped_export-false}; then
cannam@85 8414 func_verbose "generating symbol list for \`$libname.la'"
cannam@85 8415 export_symbols="$output_objdir/$libname.exp"
cannam@85 8416 $opt_dry_run || $RM $export_symbols
cannam@85 8417 libobjs=$output
cannam@85 8418 # Append the command to create the export file.
cannam@85 8419 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
cannam@85 8420 eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\"
cannam@85 8421 if test -n "$last_robj"; then
cannam@85 8422 eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\"
cannam@85 8423 fi
cannam@85 8424 fi
cannam@85 8425
cannam@85 8426 test -n "$save_libobjs" &&
cannam@85 8427 func_verbose "creating a temporary reloadable object file: $output"
cannam@85 8428
cannam@85 8429 # Loop through the commands generated above and execute them.
cannam@85 8430 save_ifs="$IFS"; IFS='~'
cannam@85 8431 for cmd in $concat_cmds; do
cannam@85 8432 IFS="$save_ifs"
cannam@85 8433 $opt_silent || {
cannam@85 8434 func_quote_for_expand "$cmd"
cannam@85 8435 eval "func_echo $func_quote_for_expand_result"
cannam@85 8436 }
cannam@85 8437 $opt_dry_run || eval "$cmd" || {
cannam@85 8438 lt_exit=$?
cannam@85 8439
cannam@85 8440 # Restore the uninstalled library and exit
cannam@85 8441 if test "$opt_mode" = relink; then
cannam@85 8442 ( cd "$output_objdir" && \
cannam@85 8443 $RM "${realname}T" && \
cannam@85 8444 $MV "${realname}U" "$realname" )
cannam@85 8445 fi
cannam@85 8446
cannam@85 8447 exit $lt_exit
cannam@85 8448 }
cannam@85 8449 done
cannam@85 8450 IFS="$save_ifs"
cannam@85 8451
cannam@85 8452 if test -n "$export_symbols_regex" && ${skipped_export-false}; then
cannam@85 8453 func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
cannam@85 8454 func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
cannam@85 8455 fi
cannam@85 8456 fi
cannam@85 8457
cannam@85 8458 if ${skipped_export-false}; then
cannam@85 8459 if test -n "$export_symbols" && test -n "$include_expsyms"; then
cannam@85 8460 tmp_export_symbols="$export_symbols"
cannam@85 8461 test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
cannam@85 8462 $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"'
cannam@85 8463 fi
cannam@85 8464
cannam@85 8465 if test -n "$orig_export_symbols"; then
cannam@85 8466 # The given exports_symbols file has to be filtered, so filter it.
cannam@85 8467 func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
cannam@85 8468 # FIXME: $output_objdir/$libname.filter potentially contains lots of
cannam@85 8469 # 's' commands which not all seds can handle. GNU sed should be fine
cannam@85 8470 # though. Also, the filter scales superlinearly with the number of
cannam@85 8471 # global variables. join(1) would be nice here, but unfortunately
cannam@85 8472 # isn't a blessed tool.
cannam@85 8473 $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter
cannam@85 8474 func_append delfiles " $export_symbols $output_objdir/$libname.filter"
cannam@85 8475 export_symbols=$output_objdir/$libname.def
cannam@85 8476 $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
cannam@85 8477 fi
cannam@85 8478 fi
cannam@85 8479
cannam@85 8480 libobjs=$output
cannam@85 8481 # Restore the value of output.
cannam@85 8482 output=$save_output
cannam@85 8483
cannam@85 8484 if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then
cannam@85 8485 eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
cannam@85 8486 test "X$libobjs" = "X " && libobjs=
cannam@85 8487 fi
cannam@85 8488 # Expand the library linking commands again to reset the
cannam@85 8489 # value of $libobjs for piecewise linking.
cannam@85 8490
cannam@85 8491 # Do each of the archive commands.
cannam@85 8492 if test "$module" = yes && test -n "$module_cmds" ; then
cannam@85 8493 if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
cannam@85 8494 cmds=$module_expsym_cmds
cannam@85 8495 else
cannam@85 8496 cmds=$module_cmds
cannam@85 8497 fi
cannam@85 8498 else
cannam@85 8499 if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
cannam@85 8500 cmds=$archive_expsym_cmds
cannam@85 8501 else
cannam@85 8502 cmds=$archive_cmds
cannam@85 8503 fi
cannam@85 8504 fi
cannam@85 8505 fi
cannam@85 8506
cannam@85 8507 if test -n "$delfiles"; then
cannam@85 8508 # Append the command to remove temporary files to $cmds.
cannam@85 8509 eval cmds=\"\$cmds~\$RM $delfiles\"
cannam@85 8510 fi
cannam@85 8511
cannam@85 8512 # Add any objects from preloaded convenience libraries
cannam@85 8513 if test -n "$dlprefiles"; then
cannam@85 8514 gentop="$output_objdir/${outputname}x"
cannam@85 8515 func_append generated " $gentop"
cannam@85 8516
cannam@85 8517 func_extract_archives $gentop $dlprefiles
cannam@85 8518 func_append libobjs " $func_extract_archives_result"
cannam@85 8519 test "X$libobjs" = "X " && libobjs=
cannam@85 8520 fi
cannam@85 8521
cannam@85 8522 save_ifs="$IFS"; IFS='~'
cannam@85 8523 for cmd in $cmds; do
cannam@85 8524 IFS="$save_ifs"
cannam@85 8525 eval cmd=\"$cmd\"
cannam@85 8526 $opt_silent || {
cannam@85 8527 func_quote_for_expand "$cmd"
cannam@85 8528 eval "func_echo $func_quote_for_expand_result"
cannam@85 8529 }
cannam@85 8530 $opt_dry_run || eval "$cmd" || {
cannam@85 8531 lt_exit=$?
cannam@85 8532
cannam@85 8533 # Restore the uninstalled library and exit
cannam@85 8534 if test "$opt_mode" = relink; then
cannam@85 8535 ( cd "$output_objdir" && \
cannam@85 8536 $RM "${realname}T" && \
cannam@85 8537 $MV "${realname}U" "$realname" )
cannam@85 8538 fi
cannam@85 8539
cannam@85 8540 exit $lt_exit
cannam@85 8541 }
cannam@85 8542 done
cannam@85 8543 IFS="$save_ifs"
cannam@85 8544
cannam@85 8545 # Restore the uninstalled library and exit
cannam@85 8546 if test "$opt_mode" = relink; then
cannam@85 8547 $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $?
cannam@85 8548
cannam@85 8549 if test -n "$convenience"; then
cannam@85 8550 if test -z "$whole_archive_flag_spec"; then
cannam@85 8551 func_show_eval '${RM}r "$gentop"'
cannam@85 8552 fi
cannam@85 8553 fi
cannam@85 8554
cannam@85 8555 exit $EXIT_SUCCESS
cannam@85 8556 fi
cannam@85 8557
cannam@85 8558 # Create links to the real library.
cannam@85 8559 for linkname in $linknames; do
cannam@85 8560 if test "$realname" != "$linkname"; then
cannam@85 8561 func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?'
cannam@85 8562 fi
cannam@85 8563 done
cannam@85 8564
cannam@85 8565 # If -module or -export-dynamic was specified, set the dlname.
cannam@85 8566 if test "$module" = yes || test "$export_dynamic" = yes; then
cannam@85 8567 # On all known operating systems, these are identical.
cannam@85 8568 dlname="$soname"
cannam@85 8569 fi
cannam@85 8570 fi
cannam@85 8571 ;;
cannam@85 8572
cannam@85 8573 obj)
cannam@85 8574 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@85 8575 func_warning "\`-dlopen' is ignored for objects"
cannam@85 8576 fi
cannam@85 8577
cannam@85 8578 case " $deplibs" in
cannam@85 8579 *\ -l* | *\ -L*)
cannam@85 8580 func_warning "\`-l' and \`-L' are ignored for objects" ;;
cannam@85 8581 esac
cannam@85 8582
cannam@85 8583 test -n "$rpath" && \
cannam@85 8584 func_warning "\`-rpath' is ignored for objects"
cannam@85 8585
cannam@85 8586 test -n "$xrpath" && \
cannam@85 8587 func_warning "\`-R' is ignored for objects"
cannam@85 8588
cannam@85 8589 test -n "$vinfo" && \
cannam@85 8590 func_warning "\`-version-info' is ignored for objects"
cannam@85 8591
cannam@85 8592 test -n "$release" && \
cannam@85 8593 func_warning "\`-release' is ignored for objects"
cannam@85 8594
cannam@85 8595 case $output in
cannam@85 8596 *.lo)
cannam@85 8597 test -n "$objs$old_deplibs" && \
cannam@85 8598 func_fatal_error "cannot build library object \`$output' from non-libtool objects"
cannam@85 8599
cannam@85 8600 libobj=$output
cannam@85 8601 func_lo2o "$libobj"
cannam@85 8602 obj=$func_lo2o_result
cannam@85 8603 ;;
cannam@85 8604 *)
cannam@85 8605 libobj=
cannam@85 8606 obj="$output"
cannam@85 8607 ;;
cannam@85 8608 esac
cannam@85 8609
cannam@85 8610 # Delete the old objects.
cannam@85 8611 $opt_dry_run || $RM $obj $libobj
cannam@85 8612
cannam@85 8613 # Objects from convenience libraries. This assumes
cannam@85 8614 # single-version convenience libraries. Whenever we create
cannam@85 8615 # different ones for PIC/non-PIC, this we'll have to duplicate
cannam@85 8616 # the extraction.
cannam@85 8617 reload_conv_objs=
cannam@85 8618 gentop=
cannam@85 8619 # reload_cmds runs $LD directly, so let us get rid of
cannam@85 8620 # -Wl from whole_archive_flag_spec and hope we can get by with
cannam@85 8621 # turning comma into space..
cannam@85 8622 wl=
cannam@85 8623
cannam@85 8624 if test -n "$convenience"; then
cannam@85 8625 if test -n "$whole_archive_flag_spec"; then
cannam@85 8626 eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\"
cannam@85 8627 reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'`
cannam@85 8628 else
cannam@85 8629 gentop="$output_objdir/${obj}x"
cannam@85 8630 func_append generated " $gentop"
cannam@85 8631
cannam@85 8632 func_extract_archives $gentop $convenience
cannam@85 8633 reload_conv_objs="$reload_objs $func_extract_archives_result"
cannam@85 8634 fi
cannam@85 8635 fi
cannam@85 8636
cannam@85 8637 # If we're not building shared, we need to use non_pic_objs
cannam@85 8638 test "$build_libtool_libs" != yes && libobjs="$non_pic_objects"
cannam@85 8639
cannam@85 8640 # Create the old-style object.
cannam@85 8641 reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test
cannam@85 8642
cannam@85 8643 output="$obj"
cannam@85 8644 func_execute_cmds "$reload_cmds" 'exit $?'
cannam@85 8645
cannam@85 8646 # Exit if we aren't doing a library object file.
cannam@85 8647 if test -z "$libobj"; then
cannam@85 8648 if test -n "$gentop"; then
cannam@85 8649 func_show_eval '${RM}r "$gentop"'
cannam@85 8650 fi
cannam@85 8651
cannam@85 8652 exit $EXIT_SUCCESS
cannam@85 8653 fi
cannam@85 8654
cannam@85 8655 if test "$build_libtool_libs" != yes; then
cannam@85 8656 if test -n "$gentop"; then
cannam@85 8657 func_show_eval '${RM}r "$gentop"'
cannam@85 8658 fi
cannam@85 8659
cannam@85 8660 # Create an invalid libtool object if no PIC, so that we don't
cannam@85 8661 # accidentally link it into a program.
cannam@85 8662 # $show "echo timestamp > $libobj"
cannam@85 8663 # $opt_dry_run || eval "echo timestamp > $libobj" || exit $?
cannam@85 8664 exit $EXIT_SUCCESS
cannam@85 8665 fi
cannam@85 8666
cannam@85 8667 if test -n "$pic_flag" || test "$pic_mode" != default; then
cannam@85 8668 # Only do commands if we really have different PIC objects.
cannam@85 8669 reload_objs="$libobjs $reload_conv_objs"
cannam@85 8670 output="$libobj"
cannam@85 8671 func_execute_cmds "$reload_cmds" 'exit $?'
cannam@85 8672 fi
cannam@85 8673
cannam@85 8674 if test -n "$gentop"; then
cannam@85 8675 func_show_eval '${RM}r "$gentop"'
cannam@85 8676 fi
cannam@85 8677
cannam@85 8678 exit $EXIT_SUCCESS
cannam@85 8679 ;;
cannam@85 8680
cannam@85 8681 prog)
cannam@85 8682 case $host in
cannam@85 8683 *cygwin*) func_stripname '' '.exe' "$output"
cannam@85 8684 output=$func_stripname_result.exe;;
cannam@85 8685 esac
cannam@85 8686 test -n "$vinfo" && \
cannam@85 8687 func_warning "\`-version-info' is ignored for programs"
cannam@85 8688
cannam@85 8689 test -n "$release" && \
cannam@85 8690 func_warning "\`-release' is ignored for programs"
cannam@85 8691
cannam@85 8692 test "$preload" = yes \
cannam@85 8693 && test "$dlopen_support" = unknown \
cannam@85 8694 && test "$dlopen_self" = unknown \
cannam@85 8695 && test "$dlopen_self_static" = unknown && \
cannam@85 8696 func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support."
cannam@85 8697
cannam@85 8698 case $host in
cannam@85 8699 *-*-rhapsody* | *-*-darwin1.[012])
cannam@85 8700 # On Rhapsody replace the C library is the System framework
cannam@85 8701 compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'`
cannam@85 8702 finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'`
cannam@85 8703 ;;
cannam@85 8704 esac
cannam@85 8705
cannam@85 8706 case $host in
cannam@85 8707 *-*-darwin*)
cannam@85 8708 # Don't allow lazy linking, it breaks C++ global constructors
cannam@85 8709 # But is supposedly fixed on 10.4 or later (yay!).
cannam@85 8710 if test "$tagname" = CXX ; then
cannam@85 8711 case ${MACOSX_DEPLOYMENT_TARGET-10.0} in
cannam@85 8712 10.[0123])
cannam@85 8713 func_append compile_command " ${wl}-bind_at_load"
cannam@85 8714 func_append finalize_command " ${wl}-bind_at_load"
cannam@85 8715 ;;
cannam@85 8716 esac
cannam@85 8717 fi
cannam@85 8718 # Time to change all our "foo.ltframework" stuff back to "-framework foo"
cannam@85 8719 compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@85 8720 finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@85 8721 ;;
cannam@85 8722 esac
cannam@85 8723
cannam@85 8724
cannam@85 8725 # move library search paths that coincide with paths to not yet
cannam@85 8726 # installed libraries to the beginning of the library search list
cannam@85 8727 new_libs=
cannam@85 8728 for path in $notinst_path; do
cannam@85 8729 case " $new_libs " in
cannam@85 8730 *" -L$path/$objdir "*) ;;
cannam@85 8731 *)
cannam@85 8732 case " $compile_deplibs " in
cannam@85 8733 *" -L$path/$objdir "*)
cannam@85 8734 func_append new_libs " -L$path/$objdir" ;;
cannam@85 8735 esac
cannam@85 8736 ;;
cannam@85 8737 esac
cannam@85 8738 done
cannam@85 8739 for deplib in $compile_deplibs; do
cannam@85 8740 case $deplib in
cannam@85 8741 -L*)
cannam@85 8742 case " $new_libs " in
cannam@85 8743 *" $deplib "*) ;;
cannam@85 8744 *) func_append new_libs " $deplib" ;;
cannam@85 8745 esac
cannam@85 8746 ;;
cannam@85 8747 *) func_append new_libs " $deplib" ;;
cannam@85 8748 esac
cannam@85 8749 done
cannam@85 8750 compile_deplibs="$new_libs"
cannam@85 8751
cannam@85 8752
cannam@85 8753 func_append compile_command " $compile_deplibs"
cannam@85 8754 func_append finalize_command " $finalize_deplibs"
cannam@85 8755
cannam@85 8756 if test -n "$rpath$xrpath"; then
cannam@85 8757 # If the user specified any rpath flags, then add them.
cannam@85 8758 for libdir in $rpath $xrpath; do
cannam@85 8759 # This is the magic to use -rpath.
cannam@85 8760 case "$finalize_rpath " in
cannam@85 8761 *" $libdir "*) ;;
cannam@85 8762 *) func_append finalize_rpath " $libdir" ;;
cannam@85 8763 esac
cannam@85 8764 done
cannam@85 8765 fi
cannam@85 8766
cannam@85 8767 # Now hardcode the library paths
cannam@85 8768 rpath=
cannam@85 8769 hardcode_libdirs=
cannam@85 8770 for libdir in $compile_rpath $finalize_rpath; do
cannam@85 8771 if test -n "$hardcode_libdir_flag_spec"; then
cannam@85 8772 if test -n "$hardcode_libdir_separator"; then
cannam@85 8773 if test -z "$hardcode_libdirs"; then
cannam@85 8774 hardcode_libdirs="$libdir"
cannam@85 8775 else
cannam@85 8776 # Just accumulate the unique libdirs.
cannam@85 8777 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@85 8778 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@85 8779 ;;
cannam@85 8780 *)
cannam@85 8781 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
cannam@85 8782 ;;
cannam@85 8783 esac
cannam@85 8784 fi
cannam@85 8785 else
cannam@85 8786 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@85 8787 func_append rpath " $flag"
cannam@85 8788 fi
cannam@85 8789 elif test -n "$runpath_var"; then
cannam@85 8790 case "$perm_rpath " in
cannam@85 8791 *" $libdir "*) ;;
cannam@85 8792 *) func_append perm_rpath " $libdir" ;;
cannam@85 8793 esac
cannam@85 8794 fi
cannam@85 8795 case $host in
cannam@85 8796 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
cannam@85 8797 testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'`
cannam@85 8798 case :$dllsearchpath: in
cannam@85 8799 *":$libdir:"*) ;;
cannam@85 8800 ::) dllsearchpath=$libdir;;
cannam@85 8801 *) func_append dllsearchpath ":$libdir";;
cannam@85 8802 esac
cannam@85 8803 case :$dllsearchpath: in
cannam@85 8804 *":$testbindir:"*) ;;
cannam@85 8805 ::) dllsearchpath=$testbindir;;
cannam@85 8806 *) func_append dllsearchpath ":$testbindir";;
cannam@85 8807 esac
cannam@85 8808 ;;
cannam@85 8809 esac
cannam@85 8810 done
cannam@85 8811 # Substitute the hardcoded libdirs into the rpath.
cannam@85 8812 if test -n "$hardcode_libdir_separator" &&
cannam@85 8813 test -n "$hardcode_libdirs"; then
cannam@85 8814 libdir="$hardcode_libdirs"
cannam@85 8815 eval rpath=\" $hardcode_libdir_flag_spec\"
cannam@85 8816 fi
cannam@85 8817 compile_rpath="$rpath"
cannam@85 8818
cannam@85 8819 rpath=
cannam@85 8820 hardcode_libdirs=
cannam@85 8821 for libdir in $finalize_rpath; do
cannam@85 8822 if test -n "$hardcode_libdir_flag_spec"; then
cannam@85 8823 if test -n "$hardcode_libdir_separator"; then
cannam@85 8824 if test -z "$hardcode_libdirs"; then
cannam@85 8825 hardcode_libdirs="$libdir"
cannam@85 8826 else
cannam@85 8827 # Just accumulate the unique libdirs.
cannam@85 8828 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@85 8829 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@85 8830 ;;
cannam@85 8831 *)
cannam@85 8832 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
cannam@85 8833 ;;
cannam@85 8834 esac
cannam@85 8835 fi
cannam@85 8836 else
cannam@85 8837 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@85 8838 func_append rpath " $flag"
cannam@85 8839 fi
cannam@85 8840 elif test -n "$runpath_var"; then
cannam@85 8841 case "$finalize_perm_rpath " in
cannam@85 8842 *" $libdir "*) ;;
cannam@85 8843 *) func_append finalize_perm_rpath " $libdir" ;;
cannam@85 8844 esac
cannam@85 8845 fi
cannam@85 8846 done
cannam@85 8847 # Substitute the hardcoded libdirs into the rpath.
cannam@85 8848 if test -n "$hardcode_libdir_separator" &&
cannam@85 8849 test -n "$hardcode_libdirs"; then
cannam@85 8850 libdir="$hardcode_libdirs"
cannam@85 8851 eval rpath=\" $hardcode_libdir_flag_spec\"
cannam@85 8852 fi
cannam@85 8853 finalize_rpath="$rpath"
cannam@85 8854
cannam@85 8855 if test -n "$libobjs" && test "$build_old_libs" = yes; then
cannam@85 8856 # Transform all the library objects into standard objects.
cannam@85 8857 compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@85 8858 finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@85 8859 fi
cannam@85 8860
cannam@85 8861 func_generate_dlsyms "$outputname" "@PROGRAM@" "no"
cannam@85 8862
cannam@85 8863 # template prelinking step
cannam@85 8864 if test -n "$prelink_cmds"; then
cannam@85 8865 func_execute_cmds "$prelink_cmds" 'exit $?'
cannam@85 8866 fi
cannam@85 8867
cannam@85 8868 wrappers_required=yes
cannam@85 8869 case $host in
cannam@85 8870 *cegcc* | *mingw32ce*)
cannam@85 8871 # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway.
cannam@85 8872 wrappers_required=no
cannam@85 8873 ;;
cannam@85 8874 *cygwin* | *mingw* )
cannam@85 8875 if test "$build_libtool_libs" != yes; then
cannam@85 8876 wrappers_required=no
cannam@85 8877 fi
cannam@85 8878 ;;
cannam@85 8879 *)
cannam@85 8880 if test "$need_relink" = no || test "$build_libtool_libs" != yes; then
cannam@85 8881 wrappers_required=no
cannam@85 8882 fi
cannam@85 8883 ;;
cannam@85 8884 esac
cannam@85 8885 if test "$wrappers_required" = no; then
cannam@85 8886 # Replace the output file specification.
cannam@85 8887 compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'`
cannam@85 8888 link_command="$compile_command$compile_rpath"
cannam@85 8889
cannam@85 8890 # We have no uninstalled library dependencies, so finalize right now.
cannam@85 8891 exit_status=0
cannam@85 8892 func_show_eval "$link_command" 'exit_status=$?'
cannam@85 8893
cannam@85 8894 if test -n "$postlink_cmds"; then
cannam@85 8895 func_to_tool_file "$output"
cannam@85 8896 postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'`
cannam@85 8897 func_execute_cmds "$postlink_cmds" 'exit $?'
cannam@85 8898 fi
cannam@85 8899
cannam@85 8900 # Delete the generated files.
cannam@85 8901 if test -f "$output_objdir/${outputname}S.${objext}"; then
cannam@85 8902 func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"'
cannam@85 8903 fi
cannam@85 8904
cannam@85 8905 exit $exit_status
cannam@85 8906 fi
cannam@85 8907
cannam@85 8908 if test -n "$compile_shlibpath$finalize_shlibpath"; then
cannam@85 8909 compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command"
cannam@85 8910 fi
cannam@85 8911 if test -n "$finalize_shlibpath"; then
cannam@85 8912 finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
cannam@85 8913 fi
cannam@85 8914
cannam@85 8915 compile_var=
cannam@85 8916 finalize_var=
cannam@85 8917 if test -n "$runpath_var"; then
cannam@85 8918 if test -n "$perm_rpath"; then
cannam@85 8919 # We should set the runpath_var.
cannam@85 8920 rpath=
cannam@85 8921 for dir in $perm_rpath; do
cannam@85 8922 func_append rpath "$dir:"
cannam@85 8923 done
cannam@85 8924 compile_var="$runpath_var=\"$rpath\$$runpath_var\" "
cannam@85 8925 fi
cannam@85 8926 if test -n "$finalize_perm_rpath"; then
cannam@85 8927 # We should set the runpath_var.
cannam@85 8928 rpath=
cannam@85 8929 for dir in $finalize_perm_rpath; do
cannam@85 8930 func_append rpath "$dir:"
cannam@85 8931 done
cannam@85 8932 finalize_var="$runpath_var=\"$rpath\$$runpath_var\" "
cannam@85 8933 fi
cannam@85 8934 fi
cannam@85 8935
cannam@85 8936 if test "$no_install" = yes; then
cannam@85 8937 # We don't need to create a wrapper script.
cannam@85 8938 link_command="$compile_var$compile_command$compile_rpath"
cannam@85 8939 # Replace the output file specification.
cannam@85 8940 link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'`
cannam@85 8941 # Delete the old output file.
cannam@85 8942 $opt_dry_run || $RM $output
cannam@85 8943 # Link the executable and exit
cannam@85 8944 func_show_eval "$link_command" 'exit $?'
cannam@85 8945
cannam@85 8946 if test -n "$postlink_cmds"; then
cannam@85 8947 func_to_tool_file "$output"
cannam@85 8948 postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'`
cannam@85 8949 func_execute_cmds "$postlink_cmds" 'exit $?'
cannam@85 8950 fi
cannam@85 8951
cannam@85 8952 exit $EXIT_SUCCESS
cannam@85 8953 fi
cannam@85 8954
cannam@85 8955 if test "$hardcode_action" = relink; then
cannam@85 8956 # Fast installation is not supported
cannam@85 8957 link_command="$compile_var$compile_command$compile_rpath"
cannam@85 8958 relink_command="$finalize_var$finalize_command$finalize_rpath"
cannam@85 8959
cannam@85 8960 func_warning "this platform does not like uninstalled shared libraries"
cannam@85 8961 func_warning "\`$output' will be relinked during installation"
cannam@85 8962 else
cannam@85 8963 if test "$fast_install" != no; then
cannam@85 8964 link_command="$finalize_var$compile_command$finalize_rpath"
cannam@85 8965 if test "$fast_install" = yes; then
cannam@85 8966 relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'`
cannam@85 8967 else
cannam@85 8968 # fast_install is set to needless
cannam@85 8969 relink_command=
cannam@85 8970 fi
cannam@85 8971 else
cannam@85 8972 link_command="$compile_var$compile_command$compile_rpath"
cannam@85 8973 relink_command="$finalize_var$finalize_command$finalize_rpath"
cannam@85 8974 fi
cannam@85 8975 fi
cannam@85 8976
cannam@85 8977 # Replace the output file specification.
cannam@85 8978 link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
cannam@85 8979
cannam@85 8980 # Delete the old output files.
cannam@85 8981 $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname
cannam@85 8982
cannam@85 8983 func_show_eval "$link_command" 'exit $?'
cannam@85 8984
cannam@85 8985 if test -n "$postlink_cmds"; then
cannam@85 8986 func_to_tool_file "$output_objdir/$outputname"
cannam@85 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'`
cannam@85 8988 func_execute_cmds "$postlink_cmds" 'exit $?'
cannam@85 8989 fi
cannam@85 8990
cannam@85 8991 # Now create the wrapper script.
cannam@85 8992 func_verbose "creating $output"
cannam@85 8993
cannam@85 8994 # Quote the relink command for shipping.
cannam@85 8995 if test -n "$relink_command"; then
cannam@85 8996 # Preserve any variables that may affect compiler behavior
cannam@85 8997 for var in $variables_saved_for_relink; do
cannam@85 8998 if eval test -z \"\${$var+set}\"; then
cannam@85 8999 relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
cannam@85 9000 elif eval var_value=\$$var; test -z "$var_value"; then
cannam@85 9001 relink_command="$var=; export $var; $relink_command"
cannam@85 9002 else
cannam@85 9003 func_quote_for_eval "$var_value"
cannam@85 9004 relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
cannam@85 9005 fi
cannam@85 9006 done
cannam@85 9007 relink_command="(cd `pwd`; $relink_command)"
cannam@85 9008 relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"`
cannam@85 9009 fi
cannam@85 9010
cannam@85 9011 # Only actually do things if not in dry run mode.
cannam@85 9012 $opt_dry_run || {
cannam@85 9013 # win32 will think the script is a binary if it has
cannam@85 9014 # a .exe suffix, so we strip it off here.
cannam@85 9015 case $output in
cannam@85 9016 *.exe) func_stripname '' '.exe' "$output"
cannam@85 9017 output=$func_stripname_result ;;
cannam@85 9018 esac
cannam@85 9019 # test for cygwin because mv fails w/o .exe extensions
cannam@85 9020 case $host in
cannam@85 9021 *cygwin*)
cannam@85 9022 exeext=.exe
cannam@85 9023 func_stripname '' '.exe' "$outputname"
cannam@85 9024 outputname=$func_stripname_result ;;
cannam@85 9025 *) exeext= ;;
cannam@85 9026 esac
cannam@85 9027 case $host in
cannam@85 9028 *cygwin* | *mingw* )
cannam@85 9029 func_dirname_and_basename "$output" "" "."
cannam@85 9030 output_name=$func_basename_result
cannam@85 9031 output_path=$func_dirname_result
cannam@85 9032 cwrappersource="$output_path/$objdir/lt-$output_name.c"
cannam@85 9033 cwrapper="$output_path/$output_name.exe"
cannam@85 9034 $RM $cwrappersource $cwrapper
cannam@85 9035 trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
cannam@85 9036
cannam@85 9037 func_emit_cwrapperexe_src > $cwrappersource
cannam@85 9038
cannam@85 9039 # The wrapper executable is built using the $host compiler,
cannam@85 9040 # because it contains $host paths and files. If cross-
cannam@85 9041 # compiling, it, like the target executable, must be
cannam@85 9042 # executed on the $host or under an emulation environment.
cannam@85 9043 $opt_dry_run || {
cannam@85 9044 $LTCC $LTCFLAGS -o $cwrapper $cwrappersource
cannam@85 9045 $STRIP $cwrapper
cannam@85 9046 }
cannam@85 9047
cannam@85 9048 # Now, create the wrapper script for func_source use:
cannam@85 9049 func_ltwrapper_scriptname $cwrapper
cannam@85 9050 $RM $func_ltwrapper_scriptname_result
cannam@85 9051 trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15
cannam@85 9052 $opt_dry_run || {
cannam@85 9053 # note: this script will not be executed, so do not chmod.
cannam@85 9054 if test "x$build" = "x$host" ; then
cannam@85 9055 $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result
cannam@85 9056 else
cannam@85 9057 func_emit_wrapper no > $func_ltwrapper_scriptname_result
cannam@85 9058 fi
cannam@85 9059 }
cannam@85 9060 ;;
cannam@85 9061 * )
cannam@85 9062 $RM $output
cannam@85 9063 trap "$RM $output; exit $EXIT_FAILURE" 1 2 15
cannam@85 9064
cannam@85 9065 func_emit_wrapper no > $output
cannam@85 9066 chmod +x $output
cannam@85 9067 ;;
cannam@85 9068 esac
cannam@85 9069 }
cannam@85 9070 exit $EXIT_SUCCESS
cannam@85 9071 ;;
cannam@85 9072 esac
cannam@85 9073
cannam@85 9074 # See if we need to build an old-fashioned archive.
cannam@85 9075 for oldlib in $oldlibs; do
cannam@85 9076
cannam@85 9077 if test "$build_libtool_libs" = convenience; then
cannam@85 9078 oldobjs="$libobjs_save $symfileobj"
cannam@85 9079 addlibs="$convenience"
cannam@85 9080 build_libtool_libs=no
cannam@85 9081 else
cannam@85 9082 if test "$build_libtool_libs" = module; then
cannam@85 9083 oldobjs="$libobjs_save"
cannam@85 9084 build_libtool_libs=no
cannam@85 9085 else
cannam@85 9086 oldobjs="$old_deplibs $non_pic_objects"
cannam@85 9087 if test "$preload" = yes && test -f "$symfileobj"; then
cannam@85 9088 func_append oldobjs " $symfileobj"
cannam@85 9089 fi
cannam@85 9090 fi
cannam@85 9091 addlibs="$old_convenience"
cannam@85 9092 fi
cannam@85 9093
cannam@85 9094 if test -n "$addlibs"; then
cannam@85 9095 gentop="$output_objdir/${outputname}x"
cannam@85 9096 func_append generated " $gentop"
cannam@85 9097
cannam@85 9098 func_extract_archives $gentop $addlibs
cannam@85 9099 func_append oldobjs " $func_extract_archives_result"
cannam@85 9100 fi
cannam@85 9101
cannam@85 9102 # Do each command in the archive commands.
cannam@85 9103 if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
cannam@85 9104 cmds=$old_archive_from_new_cmds
cannam@85 9105 else
cannam@85 9106
cannam@85 9107 # Add any objects from preloaded convenience libraries
cannam@85 9108 if test -n "$dlprefiles"; then
cannam@85 9109 gentop="$output_objdir/${outputname}x"
cannam@85 9110 func_append generated " $gentop"
cannam@85 9111
cannam@85 9112 func_extract_archives $gentop $dlprefiles
cannam@85 9113 func_append oldobjs " $func_extract_archives_result"
cannam@85 9114 fi
cannam@85 9115
cannam@85 9116 # POSIX demands no paths to be encoded in archives. We have
cannam@85 9117 # to avoid creating archives with duplicate basenames if we
cannam@85 9118 # might have to extract them afterwards, e.g., when creating a
cannam@85 9119 # static archive out of a convenience library, or when linking
cannam@85 9120 # the entirety of a libtool archive into another (currently
cannam@85 9121 # not supported by libtool).
cannam@85 9122 if (for obj in $oldobjs
cannam@85 9123 do
cannam@85 9124 func_basename "$obj"
cannam@85 9125 $ECHO "$func_basename_result"
cannam@85 9126 done | sort | sort -uc >/dev/null 2>&1); then
cannam@85 9127 :
cannam@85 9128 else
cannam@85 9129 echo "copying selected object files to avoid basename conflicts..."
cannam@85 9130 gentop="$output_objdir/${outputname}x"
cannam@85 9131 func_append generated " $gentop"
cannam@85 9132 func_mkdir_p "$gentop"
cannam@85 9133 save_oldobjs=$oldobjs
cannam@85 9134 oldobjs=
cannam@85 9135 counter=1
cannam@85 9136 for obj in $save_oldobjs
cannam@85 9137 do
cannam@85 9138 func_basename "$obj"
cannam@85 9139 objbase="$func_basename_result"
cannam@85 9140 case " $oldobjs " in
cannam@85 9141 " ") oldobjs=$obj ;;
cannam@85 9142 *[\ /]"$objbase "*)
cannam@85 9143 while :; do
cannam@85 9144 # Make sure we don't pick an alternate name that also
cannam@85 9145 # overlaps.
cannam@85 9146 newobj=lt$counter-$objbase
cannam@85 9147 func_arith $counter + 1
cannam@85 9148 counter=$func_arith_result
cannam@85 9149 case " $oldobjs " in
cannam@85 9150 *[\ /]"$newobj "*) ;;
cannam@85 9151 *) if test ! -f "$gentop/$newobj"; then break; fi ;;
cannam@85 9152 esac
cannam@85 9153 done
cannam@85 9154 func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj"
cannam@85 9155 func_append oldobjs " $gentop/$newobj"
cannam@85 9156 ;;
cannam@85 9157 *) func_append oldobjs " $obj" ;;
cannam@85 9158 esac
cannam@85 9159 done
cannam@85 9160 fi
cannam@85 9161 eval cmds=\"$old_archive_cmds\"
cannam@85 9162
cannam@85 9163 func_len " $cmds"
cannam@85 9164 len=$func_len_result
cannam@85 9165 if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
cannam@85 9166 cmds=$old_archive_cmds
cannam@85 9167 elif test -n "$archiver_list_spec"; then
cannam@85 9168 func_verbose "using command file archive linking..."
cannam@85 9169 for obj in $oldobjs
cannam@85 9170 do
cannam@85 9171 func_to_tool_file "$obj"
cannam@85 9172 $ECHO "$func_to_tool_file_result"
cannam@85 9173 done > $output_objdir/$libname.libcmd
cannam@85 9174 func_to_tool_file "$output_objdir/$libname.libcmd"
cannam@85 9175 oldobjs=" $archiver_list_spec$func_to_tool_file_result"
cannam@85 9176 cmds=$old_archive_cmds
cannam@85 9177 else
cannam@85 9178 # the command line is too long to link in one step, link in parts
cannam@85 9179 func_verbose "using piecewise archive linking..."
cannam@85 9180 save_RANLIB=$RANLIB
cannam@85 9181 RANLIB=:
cannam@85 9182 objlist=
cannam@85 9183 concat_cmds=
cannam@85 9184 save_oldobjs=$oldobjs
cannam@85 9185 oldobjs=
cannam@85 9186 # Is there a better way of finding the last object in the list?
cannam@85 9187 for obj in $save_oldobjs
cannam@85 9188 do
cannam@85 9189 last_oldobj=$obj
cannam@85 9190 done
cannam@85 9191 eval test_cmds=\"$old_archive_cmds\"
cannam@85 9192 func_len " $test_cmds"
cannam@85 9193 len0=$func_len_result
cannam@85 9194 len=$len0
cannam@85 9195 for obj in $save_oldobjs
cannam@85 9196 do
cannam@85 9197 func_len " $obj"
cannam@85 9198 func_arith $len + $func_len_result
cannam@85 9199 len=$func_arith_result
cannam@85 9200 func_append objlist " $obj"
cannam@85 9201 if test "$len" -lt "$max_cmd_len"; then
cannam@85 9202 :
cannam@85 9203 else
cannam@85 9204 # the above command should be used before it gets too long
cannam@85 9205 oldobjs=$objlist
cannam@85 9206 if test "$obj" = "$last_oldobj" ; then
cannam@85 9207 RANLIB=$save_RANLIB
cannam@85 9208 fi
cannam@85 9209 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
cannam@85 9210 eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\"
cannam@85 9211 objlist=
cannam@85 9212 len=$len0
cannam@85 9213 fi
cannam@85 9214 done
cannam@85 9215 RANLIB=$save_RANLIB
cannam@85 9216 oldobjs=$objlist
cannam@85 9217 if test "X$oldobjs" = "X" ; then
cannam@85 9218 eval cmds=\"\$concat_cmds\"
cannam@85 9219 else
cannam@85 9220 eval cmds=\"\$concat_cmds~\$old_archive_cmds\"
cannam@85 9221 fi
cannam@85 9222 fi
cannam@85 9223 fi
cannam@85 9224 func_execute_cmds "$cmds" 'exit $?'
cannam@85 9225 done
cannam@85 9226
cannam@85 9227 test -n "$generated" && \
cannam@85 9228 func_show_eval "${RM}r$generated"
cannam@85 9229
cannam@85 9230 # Now create the libtool archive.
cannam@85 9231 case $output in
cannam@85 9232 *.la)
cannam@85 9233 old_library=
cannam@85 9234 test "$build_old_libs" = yes && old_library="$libname.$libext"
cannam@85 9235 func_verbose "creating $output"
cannam@85 9236
cannam@85 9237 # Preserve any variables that may affect compiler behavior
cannam@85 9238 for var in $variables_saved_for_relink; do
cannam@85 9239 if eval test -z \"\${$var+set}\"; then
cannam@85 9240 relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
cannam@85 9241 elif eval var_value=\$$var; test -z "$var_value"; then
cannam@85 9242 relink_command="$var=; export $var; $relink_command"
cannam@85 9243 else
cannam@85 9244 func_quote_for_eval "$var_value"
cannam@85 9245 relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
cannam@85 9246 fi
cannam@85 9247 done
cannam@85 9248 # Quote the link command for shipping.
cannam@85 9249 relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
cannam@85 9250 relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"`
cannam@85 9251 if test "$hardcode_automatic" = yes ; then
cannam@85 9252 relink_command=
cannam@85 9253 fi
cannam@85 9254
cannam@85 9255 # Only create the output if not a dry run.
cannam@85 9256 $opt_dry_run || {
cannam@85 9257 for installed in no yes; do
cannam@85 9258 if test "$installed" = yes; then
cannam@85 9259 if test -z "$install_libdir"; then
cannam@85 9260 break
cannam@85 9261 fi
cannam@85 9262 output="$output_objdir/$outputname"i
cannam@85 9263 # Replace all uninstalled libtool libraries with the installed ones
cannam@85 9264 newdependency_libs=
cannam@85 9265 for deplib in $dependency_libs; do
cannam@85 9266 case $deplib in
cannam@85 9267 *.la)
cannam@85 9268 func_basename "$deplib"
cannam@85 9269 name="$func_basename_result"
cannam@85 9270 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
cannam@85 9271 test -z "$libdir" && \
cannam@85 9272 func_fatal_error "\`$deplib' is not a valid libtool archive"
cannam@85 9273 func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name"
cannam@85 9274 ;;
cannam@85 9275 -L*)
cannam@85 9276 func_stripname -L '' "$deplib"
cannam@85 9277 func_replace_sysroot "$func_stripname_result"
cannam@85 9278 func_append newdependency_libs " -L$func_replace_sysroot_result"
cannam@85 9279 ;;
cannam@85 9280 -R*)
cannam@85 9281 func_stripname -R '' "$deplib"
cannam@85 9282 func_replace_sysroot "$func_stripname_result"
cannam@85 9283 func_append newdependency_libs " -R$func_replace_sysroot_result"
cannam@85 9284 ;;
cannam@85 9285 *) func_append newdependency_libs " $deplib" ;;
cannam@85 9286 esac
cannam@85 9287 done
cannam@85 9288 dependency_libs="$newdependency_libs"
cannam@85 9289 newdlfiles=
cannam@85 9290
cannam@85 9291 for lib in $dlfiles; do
cannam@85 9292 case $lib in
cannam@85 9293 *.la)
cannam@85 9294 func_basename "$lib"
cannam@85 9295 name="$func_basename_result"
cannam@85 9296 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
cannam@85 9297 test -z "$libdir" && \
cannam@85 9298 func_fatal_error "\`$lib' is not a valid libtool archive"
cannam@85 9299 func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name"
cannam@85 9300 ;;
cannam@85 9301 *) func_append newdlfiles " $lib" ;;
cannam@85 9302 esac
cannam@85 9303 done
cannam@85 9304 dlfiles="$newdlfiles"
cannam@85 9305 newdlprefiles=
cannam@85 9306 for lib in $dlprefiles; do
cannam@85 9307 case $lib in
cannam@85 9308 *.la)
cannam@85 9309 # Only pass preopened files to the pseudo-archive (for
cannam@85 9310 # eventual linking with the app. that links it) if we
cannam@85 9311 # didn't already link the preopened objects directly into
cannam@85 9312 # the library:
cannam@85 9313 func_basename "$lib"
cannam@85 9314 name="$func_basename_result"
cannam@85 9315 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
cannam@85 9316 test -z "$libdir" && \
cannam@85 9317 func_fatal_error "\`$lib' is not a valid libtool archive"
cannam@85 9318 func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name"
cannam@85 9319 ;;
cannam@85 9320 esac
cannam@85 9321 done
cannam@85 9322 dlprefiles="$newdlprefiles"
cannam@85 9323 else
cannam@85 9324 newdlfiles=
cannam@85 9325 for lib in $dlfiles; do
cannam@85 9326 case $lib in
cannam@85 9327 [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
cannam@85 9328 *) abs=`pwd`"/$lib" ;;
cannam@85 9329 esac
cannam@85 9330 func_append newdlfiles " $abs"
cannam@85 9331 done
cannam@85 9332 dlfiles="$newdlfiles"
cannam@85 9333 newdlprefiles=
cannam@85 9334 for lib in $dlprefiles; do
cannam@85 9335 case $lib in
cannam@85 9336 [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
cannam@85 9337 *) abs=`pwd`"/$lib" ;;
cannam@85 9338 esac
cannam@85 9339 func_append newdlprefiles " $abs"
cannam@85 9340 done
cannam@85 9341 dlprefiles="$newdlprefiles"
cannam@85 9342 fi
cannam@85 9343 $RM $output
cannam@85 9344 # place dlname in correct position for cygwin
cannam@85 9345 # In fact, it would be nice if we could use this code for all target
cannam@85 9346 # systems that can't hard-code library paths into their executables
cannam@85 9347 # and that have no shared library path variable independent of PATH,
cannam@85 9348 # but it turns out we can't easily determine that from inspecting
cannam@85 9349 # libtool variables, so we have to hard-code the OSs to which it
cannam@85 9350 # applies here; at the moment, that means platforms that use the PE
cannam@85 9351 # object format with DLL files. See the long comment at the top of
cannam@85 9352 # tests/bindir.at for full details.
cannam@85 9353 tdlname=$dlname
cannam@85 9354 case $host,$output,$installed,$module,$dlname in
cannam@85 9355 *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll)
cannam@85 9356 # If a -bindir argument was supplied, place the dll there.
cannam@85 9357 if test "x$bindir" != x ;
cannam@85 9358 then
cannam@85 9359 func_relative_path "$install_libdir" "$bindir"
cannam@85 9360 tdlname=$func_relative_path_result$dlname
cannam@85 9361 else
cannam@85 9362 # Otherwise fall back on heuristic.
cannam@85 9363 tdlname=../bin/$dlname
cannam@85 9364 fi
cannam@85 9365 ;;
cannam@85 9366 esac
cannam@85 9367 $ECHO > $output "\
cannam@85 9368 # $outputname - a libtool library file
cannam@85 9369 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@85 9370 #
cannam@85 9371 # Please DO NOT delete this file!
cannam@85 9372 # It is necessary for linking the library.
cannam@85 9373
cannam@85 9374 # The name that we can dlopen(3).
cannam@85 9375 dlname='$tdlname'
cannam@85 9376
cannam@85 9377 # Names of this library.
cannam@85 9378 library_names='$library_names'
cannam@85 9379
cannam@85 9380 # The name of the static archive.
cannam@85 9381 old_library='$old_library'
cannam@85 9382
cannam@85 9383 # Linker flags that can not go in dependency_libs.
cannam@85 9384 inherited_linker_flags='$new_inherited_linker_flags'
cannam@85 9385
cannam@85 9386 # Libraries that this one depends upon.
cannam@85 9387 dependency_libs='$dependency_libs'
cannam@85 9388
cannam@85 9389 # Names of additional weak libraries provided by this library
cannam@85 9390 weak_library_names='$weak_libs'
cannam@85 9391
cannam@85 9392 # Version information for $libname.
cannam@85 9393 current=$current
cannam@85 9394 age=$age
cannam@85 9395 revision=$revision
cannam@85 9396
cannam@85 9397 # Is this an already installed library?
cannam@85 9398 installed=$installed
cannam@85 9399
cannam@85 9400 # Should we warn about portability when linking against -modules?
cannam@85 9401 shouldnotlink=$module
cannam@85 9402
cannam@85 9403 # Files to dlopen/dlpreopen
cannam@85 9404 dlopen='$dlfiles'
cannam@85 9405 dlpreopen='$dlprefiles'
cannam@85 9406
cannam@85 9407 # Directory that this library needs to be installed in:
cannam@85 9408 libdir='$install_libdir'"
cannam@85 9409 if test "$installed" = no && test "$need_relink" = yes; then
cannam@85 9410 $ECHO >> $output "\
cannam@85 9411 relink_command=\"$relink_command\""
cannam@85 9412 fi
cannam@85 9413 done
cannam@85 9414 }
cannam@85 9415
cannam@85 9416 # Do a symbolic link so that the libtool archive can be found in
cannam@85 9417 # LD_LIBRARY_PATH before the program is installed.
cannam@85 9418 func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?'
cannam@85 9419 ;;
cannam@85 9420 esac
cannam@85 9421 exit $EXIT_SUCCESS
cannam@85 9422 }
cannam@85 9423
cannam@85 9424 { test "$opt_mode" = link || test "$opt_mode" = relink; } &&
cannam@85 9425 func_mode_link ${1+"$@"}
cannam@85 9426
cannam@85 9427
cannam@85 9428 # func_mode_uninstall arg...
cannam@85 9429 func_mode_uninstall ()
cannam@85 9430 {
cannam@85 9431 $opt_debug
cannam@85 9432 RM="$nonopt"
cannam@85 9433 files=
cannam@85 9434 rmforce=
cannam@85 9435 exit_status=0
cannam@85 9436
cannam@85 9437 # This variable tells wrapper scripts just to set variables rather
cannam@85 9438 # than running their programs.
cannam@85 9439 libtool_install_magic="$magic"
cannam@85 9440
cannam@85 9441 for arg
cannam@85 9442 do
cannam@85 9443 case $arg in
cannam@85 9444 -f) func_append RM " $arg"; rmforce=yes ;;
cannam@85 9445 -*) func_append RM " $arg" ;;
cannam@85 9446 *) func_append files " $arg" ;;
cannam@85 9447 esac
cannam@85 9448 done
cannam@85 9449
cannam@85 9450 test -z "$RM" && \
cannam@85 9451 func_fatal_help "you must specify an RM program"
cannam@85 9452
cannam@85 9453 rmdirs=
cannam@85 9454
cannam@85 9455 for file in $files; do
cannam@85 9456 func_dirname "$file" "" "."
cannam@85 9457 dir="$func_dirname_result"
cannam@85 9458 if test "X$dir" = X.; then
cannam@85 9459 odir="$objdir"
cannam@85 9460 else
cannam@85 9461 odir="$dir/$objdir"
cannam@85 9462 fi
cannam@85 9463 func_basename "$file"
cannam@85 9464 name="$func_basename_result"
cannam@85 9465 test "$opt_mode" = uninstall && odir="$dir"
cannam@85 9466
cannam@85 9467 # Remember odir for removal later, being careful to avoid duplicates
cannam@85 9468 if test "$opt_mode" = clean; then
cannam@85 9469 case " $rmdirs " in
cannam@85 9470 *" $odir "*) ;;
cannam@85 9471 *) func_append rmdirs " $odir" ;;
cannam@85 9472 esac
cannam@85 9473 fi
cannam@85 9474
cannam@85 9475 # Don't error if the file doesn't exist and rm -f was used.
cannam@85 9476 if { test -L "$file"; } >/dev/null 2>&1 ||
cannam@85 9477 { test -h "$file"; } >/dev/null 2>&1 ||
cannam@85 9478 test -f "$file"; then
cannam@85 9479 :
cannam@85 9480 elif test -d "$file"; then
cannam@85 9481 exit_status=1
cannam@85 9482 continue
cannam@85 9483 elif test "$rmforce" = yes; then
cannam@85 9484 continue
cannam@85 9485 fi
cannam@85 9486
cannam@85 9487 rmfiles="$file"
cannam@85 9488
cannam@85 9489 case $name in
cannam@85 9490 *.la)
cannam@85 9491 # Possibly a libtool archive, so verify it.
cannam@85 9492 if func_lalib_p "$file"; then
cannam@85 9493 func_source $dir/$name
cannam@85 9494
cannam@85 9495 # Delete the libtool libraries and symlinks.
cannam@85 9496 for n in $library_names; do
cannam@85 9497 func_append rmfiles " $odir/$n"
cannam@85 9498 done
cannam@85 9499 test -n "$old_library" && func_append rmfiles " $odir/$old_library"
cannam@85 9500
cannam@85 9501 case "$opt_mode" in
cannam@85 9502 clean)
cannam@85 9503 case " $library_names " in
cannam@85 9504 *" $dlname "*) ;;
cannam@85 9505 *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;;
cannam@85 9506 esac
cannam@85 9507 test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i"
cannam@85 9508 ;;
cannam@85 9509 uninstall)
cannam@85 9510 if test -n "$library_names"; then
cannam@85 9511 # Do each command in the postuninstall commands.
cannam@85 9512 func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
cannam@85 9513 fi
cannam@85 9514
cannam@85 9515 if test -n "$old_library"; then
cannam@85 9516 # Do each command in the old_postuninstall commands.
cannam@85 9517 func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
cannam@85 9518 fi
cannam@85 9519 # FIXME: should reinstall the best remaining shared library.
cannam@85 9520 ;;
cannam@85 9521 esac
cannam@85 9522 fi
cannam@85 9523 ;;
cannam@85 9524
cannam@85 9525 *.lo)
cannam@85 9526 # Possibly a libtool object, so verify it.
cannam@85 9527 if func_lalib_p "$file"; then
cannam@85 9528
cannam@85 9529 # Read the .lo file
cannam@85 9530 func_source $dir/$name
cannam@85 9531
cannam@85 9532 # Add PIC object to the list of files to remove.
cannam@85 9533 if test -n "$pic_object" &&
cannam@85 9534 test "$pic_object" != none; then
cannam@85 9535 func_append rmfiles " $dir/$pic_object"
cannam@85 9536 fi
cannam@85 9537
cannam@85 9538 # Add non-PIC object to the list of files to remove.
cannam@85 9539 if test -n "$non_pic_object" &&
cannam@85 9540 test "$non_pic_object" != none; then
cannam@85 9541 func_append rmfiles " $dir/$non_pic_object"
cannam@85 9542 fi
cannam@85 9543 fi
cannam@85 9544 ;;
cannam@85 9545
cannam@85 9546 *)
cannam@85 9547 if test "$opt_mode" = clean ; then
cannam@85 9548 noexename=$name
cannam@85 9549 case $file in
cannam@85 9550 *.exe)
cannam@85 9551 func_stripname '' '.exe' "$file"
cannam@85 9552 file=$func_stripname_result
cannam@85 9553 func_stripname '' '.exe' "$name"
cannam@85 9554 noexename=$func_stripname_result
cannam@85 9555 # $file with .exe has already been added to rmfiles,
cannam@85 9556 # add $file without .exe
cannam@85 9557 func_append rmfiles " $file"
cannam@85 9558 ;;
cannam@85 9559 esac
cannam@85 9560 # Do a test to see if this is a libtool program.
cannam@85 9561 if func_ltwrapper_p "$file"; then
cannam@85 9562 if func_ltwrapper_executable_p "$file"; then
cannam@85 9563 func_ltwrapper_scriptname "$file"
cannam@85 9564 relink_command=
cannam@85 9565 func_source $func_ltwrapper_scriptname_result
cannam@85 9566 func_append rmfiles " $func_ltwrapper_scriptname_result"
cannam@85 9567 else
cannam@85 9568 relink_command=
cannam@85 9569 func_source $dir/$noexename
cannam@85 9570 fi
cannam@85 9571
cannam@85 9572 # note $name still contains .exe if it was in $file originally
cannam@85 9573 # as does the version of $file that was added into $rmfiles
cannam@85 9574 func_append rmfiles " $odir/$name $odir/${name}S.${objext}"
cannam@85 9575 if test "$fast_install" = yes && test -n "$relink_command"; then
cannam@85 9576 func_append rmfiles " $odir/lt-$name"
cannam@85 9577 fi
cannam@85 9578 if test "X$noexename" != "X$name" ; then
cannam@85 9579 func_append rmfiles " $odir/lt-${noexename}.c"
cannam@85 9580 fi
cannam@85 9581 fi
cannam@85 9582 fi
cannam@85 9583 ;;
cannam@85 9584 esac
cannam@85 9585 func_show_eval "$RM $rmfiles" 'exit_status=1'
cannam@85 9586 done
cannam@85 9587
cannam@85 9588 # Try to remove the ${objdir}s in the directories where we deleted files
cannam@85 9589 for dir in $rmdirs; do
cannam@85 9590 if test -d "$dir"; then
cannam@85 9591 func_show_eval "rmdir $dir >/dev/null 2>&1"
cannam@85 9592 fi
cannam@85 9593 done
cannam@85 9594
cannam@85 9595 exit $exit_status
cannam@85 9596 }
cannam@85 9597
cannam@85 9598 { test "$opt_mode" = uninstall || test "$opt_mode" = clean; } &&
cannam@85 9599 func_mode_uninstall ${1+"$@"}
cannam@85 9600
cannam@85 9601 test -z "$opt_mode" && {
cannam@85 9602 help="$generic_help"
cannam@85 9603 func_fatal_help "you must specify a MODE"
cannam@85 9604 }
cannam@85 9605
cannam@85 9606 test -z "$exec_cmd" && \
cannam@85 9607 func_fatal_help "invalid operation mode \`$opt_mode'"
cannam@85 9608
cannam@85 9609 if test -n "$exec_cmd"; then
cannam@85 9610 eval exec "$exec_cmd"
cannam@85 9611 exit $EXIT_FAILURE
cannam@85 9612 fi
cannam@85 9613
cannam@85 9614 exit $exit_status
cannam@85 9615
cannam@85 9616
cannam@85 9617 # The TAGs below are defined such that we never get into a situation
cannam@85 9618 # in which we disable both kinds of libraries. Given conflicting
cannam@85 9619 # choices, we go for a static library, that is the most portable,
cannam@85 9620 # since we can't tell whether shared libraries were disabled because
cannam@85 9621 # the user asked for that or because the platform doesn't support
cannam@85 9622 # them. This is particularly important on AIX, because we don't
cannam@85 9623 # support having both static and shared libraries enabled at the same
cannam@85 9624 # time on that platform, so we default to a shared-only configuration.
cannam@85 9625 # If a disable-shared tag is given, we'll fallback to a static-only
cannam@85 9626 # configuration. But we'll never go from static-only to shared-only.
cannam@85 9627
cannam@85 9628 # ### BEGIN LIBTOOL TAG CONFIG: disable-shared
cannam@85 9629 build_libtool_libs=no
cannam@85 9630 build_old_libs=yes
cannam@85 9631 # ### END LIBTOOL TAG CONFIG: disable-shared
cannam@85 9632
cannam@85 9633 # ### BEGIN LIBTOOL TAG CONFIG: disable-static
cannam@85 9634 build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`
cannam@85 9635 # ### END LIBTOOL TAG CONFIG: disable-static
cannam@85 9636
cannam@85 9637 # Local Variables:
cannam@85 9638 # mode:shell-script
cannam@85 9639 # sh-indentation:2
cannam@85 9640 # End:
cannam@85 9641 # vi:sw=2
cannam@85 9642