annotate src/portaudio/ltmain.sh @ 104:19297782190a

Ranlib
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 25 Mar 2013 16:27:30 +0000
parents 8a15ff55d9af
children
rev   line source
cannam@89 1
cannam@89 2 # libtool (GNU libtool) 2.4
cannam@89 3 # Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
cannam@89 4
cannam@89 5 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006,
cannam@89 6 # 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
cannam@89 7 # This is free software; see the source for copying conditions. There is NO
cannam@89 8 # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
cannam@89 9
cannam@89 10 # GNU Libtool is free software; you can redistribute it and/or modify
cannam@89 11 # it under the terms of the GNU General Public License as published by
cannam@89 12 # the Free Software Foundation; either version 2 of the License, or
cannam@89 13 # (at your option) any later version.
cannam@89 14 #
cannam@89 15 # As a special exception to the GNU General Public License,
cannam@89 16 # if you distribute this file as part of a program or library that
cannam@89 17 # is built using GNU Libtool, you may include this file under the
cannam@89 18 # same distribution terms that you use for the rest of that program.
cannam@89 19 #
cannam@89 20 # GNU Libtool is distributed in the hope that it will be useful, but
cannam@89 21 # WITHOUT ANY WARRANTY; without even the implied warranty of
cannam@89 22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
cannam@89 23 # General Public License for more details.
cannam@89 24 #
cannam@89 25 # You should have received a copy of the GNU General Public License
cannam@89 26 # along with GNU Libtool; see the file COPYING. If not, a copy
cannam@89 27 # can be downloaded from http://www.gnu.org/licenses/gpl.html,
cannam@89 28 # or obtained by writing to the Free Software Foundation, Inc.,
cannam@89 29 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
cannam@89 30
cannam@89 31 # Usage: $progname [OPTION]... [MODE-ARG]...
cannam@89 32 #
cannam@89 33 # Provide generalized library-building support services.
cannam@89 34 #
cannam@89 35 # --config show all configuration variables
cannam@89 36 # --debug enable verbose shell tracing
cannam@89 37 # -n, --dry-run display commands without modifying any files
cannam@89 38 # --features display basic configuration information and exit
cannam@89 39 # --mode=MODE use operation mode MODE
cannam@89 40 # --preserve-dup-deps don't remove duplicate dependency libraries
cannam@89 41 # --quiet, --silent don't print informational messages
cannam@89 42 # --no-quiet, --no-silent
cannam@89 43 # print informational messages (default)
cannam@89 44 # --tag=TAG use configuration variables from tag TAG
cannam@89 45 # -v, --verbose print more informational messages than default
cannam@89 46 # --no-verbose don't print the extra informational messages
cannam@89 47 # --version print version information
cannam@89 48 # -h, --help, --help-all print short, long, or detailed help message
cannam@89 49 #
cannam@89 50 # MODE must be one of the following:
cannam@89 51 #
cannam@89 52 # clean remove files from the build directory
cannam@89 53 # compile compile a source file into a libtool object
cannam@89 54 # execute automatically set library path, then run a program
cannam@89 55 # finish complete the installation of libtool libraries
cannam@89 56 # install install libraries or executables
cannam@89 57 # link create a library or an executable
cannam@89 58 # uninstall remove libraries from an installed directory
cannam@89 59 #
cannam@89 60 # MODE-ARGS vary depending on the MODE. When passed as first option,
cannam@89 61 # `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that.
cannam@89 62 # Try `$progname --help --mode=MODE' for a more detailed description of MODE.
cannam@89 63 #
cannam@89 64 # When reporting a bug, please describe a test case to reproduce it and
cannam@89 65 # include the following information:
cannam@89 66 #
cannam@89 67 # host-triplet: $host
cannam@89 68 # shell: $SHELL
cannam@89 69 # compiler: $LTCC
cannam@89 70 # compiler flags: $LTCFLAGS
cannam@89 71 # linker: $LD (gnu? $with_gnu_ld)
cannam@89 72 # $progname: (GNU libtool) 2.4 Debian-2.4-2ubuntu1
cannam@89 73 # automake: $automake_version
cannam@89 74 # autoconf: $autoconf_version
cannam@89 75 #
cannam@89 76 # Report bugs to <bug-libtool@gnu.org>.
cannam@89 77 # GNU libtool home page: <http://www.gnu.org/software/libtool/>.
cannam@89 78 # General help using GNU software: <http://www.gnu.org/gethelp/>.
cannam@89 79
cannam@89 80 PROGRAM=libtool
cannam@89 81 PACKAGE=libtool
cannam@89 82 VERSION="2.4 Debian-2.4-2ubuntu1"
cannam@89 83 TIMESTAMP=""
cannam@89 84 package_revision=1.3293
cannam@89 85
cannam@89 86 # Be Bourne compatible
cannam@89 87 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
cannam@89 88 emulate sh
cannam@89 89 NULLCMD=:
cannam@89 90 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
cannam@89 91 # is contrary to our usage. Disable this feature.
cannam@89 92 alias -g '${1+"$@"}'='"$@"'
cannam@89 93 setopt NO_GLOB_SUBST
cannam@89 94 else
cannam@89 95 case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
cannam@89 96 fi
cannam@89 97 BIN_SH=xpg4; export BIN_SH # for Tru64
cannam@89 98 DUALCASE=1; export DUALCASE # for MKS sh
cannam@89 99
cannam@89 100 # A function that is used when there is no print builtin or printf.
cannam@89 101 func_fallback_echo ()
cannam@89 102 {
cannam@89 103 eval 'cat <<_LTECHO_EOF
cannam@89 104 $1
cannam@89 105 _LTECHO_EOF'
cannam@89 106 }
cannam@89 107
cannam@89 108 # NLS nuisances: We save the old values to restore during execute mode.
cannam@89 109 lt_user_locale=
cannam@89 110 lt_safe_locale=
cannam@89 111 for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
cannam@89 112 do
cannam@89 113 eval "if test \"\${$lt_var+set}\" = set; then
cannam@89 114 save_$lt_var=\$$lt_var
cannam@89 115 $lt_var=C
cannam@89 116 export $lt_var
cannam@89 117 lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\"
cannam@89 118 lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\"
cannam@89 119 fi"
cannam@89 120 done
cannam@89 121 LC_ALL=C
cannam@89 122 LANGUAGE=C
cannam@89 123 export LANGUAGE LC_ALL
cannam@89 124
cannam@89 125 $lt_unset CDPATH
cannam@89 126
cannam@89 127
cannam@89 128 # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
cannam@89 129 # is ksh but when the shell is invoked as "sh" and the current value of
cannam@89 130 # the _XPG environment variable is not equal to 1 (one), the special
cannam@89 131 # positional parameter $0, within a function call, is the name of the
cannam@89 132 # function.
cannam@89 133 progpath="$0"
cannam@89 134
cannam@89 135
cannam@89 136
cannam@89 137 : ${CP="cp -f"}
cannam@89 138 test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'}
cannam@89 139 : ${EGREP="/bin/grep -E"}
cannam@89 140 : ${FGREP="/bin/grep -F"}
cannam@89 141 : ${GREP="/bin/grep"}
cannam@89 142 : ${LN_S="ln -s"}
cannam@89 143 : ${MAKE="make"}
cannam@89 144 : ${MKDIR="mkdir"}
cannam@89 145 : ${MV="mv -f"}
cannam@89 146 : ${RM="rm -f"}
cannam@89 147 : ${SED="/bin/sed"}
cannam@89 148 : ${SHELL="${CONFIG_SHELL-/bin/sh}"}
cannam@89 149 : ${Xsed="$SED -e 1s/^X//"}
cannam@89 150
cannam@89 151 # Global variables:
cannam@89 152 EXIT_SUCCESS=0
cannam@89 153 EXIT_FAILURE=1
cannam@89 154 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing.
cannam@89 155 EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake.
cannam@89 156
cannam@89 157 exit_status=$EXIT_SUCCESS
cannam@89 158
cannam@89 159 # Make sure IFS has a sensible default
cannam@89 160 lt_nl='
cannam@89 161 '
cannam@89 162 IFS=" $lt_nl"
cannam@89 163
cannam@89 164 dirname="s,/[^/]*$,,"
cannam@89 165 basename="s,^.*/,,"
cannam@89 166
cannam@89 167 # func_dirname file append nondir_replacement
cannam@89 168 # Compute the dirname of FILE. If nonempty, add APPEND to the result,
cannam@89 169 # otherwise set result to NONDIR_REPLACEMENT.
cannam@89 170 func_dirname ()
cannam@89 171 {
cannam@89 172 func_dirname_result=`$ECHO "${1}" | $SED "$dirname"`
cannam@89 173 if test "X$func_dirname_result" = "X${1}"; then
cannam@89 174 func_dirname_result="${3}"
cannam@89 175 else
cannam@89 176 func_dirname_result="$func_dirname_result${2}"
cannam@89 177 fi
cannam@89 178 } # func_dirname may be replaced by extended shell implementation
cannam@89 179
cannam@89 180
cannam@89 181 # func_basename file
cannam@89 182 func_basename ()
cannam@89 183 {
cannam@89 184 func_basename_result=`$ECHO "${1}" | $SED "$basename"`
cannam@89 185 } # func_basename may be replaced by extended shell implementation
cannam@89 186
cannam@89 187
cannam@89 188 # func_dirname_and_basename file append nondir_replacement
cannam@89 189 # perform func_basename and func_dirname in a single function
cannam@89 190 # call:
cannam@89 191 # dirname: Compute the dirname of FILE. If nonempty,
cannam@89 192 # add APPEND to the result, otherwise set result
cannam@89 193 # to NONDIR_REPLACEMENT.
cannam@89 194 # value returned in "$func_dirname_result"
cannam@89 195 # basename: Compute filename of FILE.
cannam@89 196 # value retuned in "$func_basename_result"
cannam@89 197 # Implementation must be kept synchronized with func_dirname
cannam@89 198 # and func_basename. For efficiency, we do not delegate to
cannam@89 199 # those functions but instead duplicate the functionality here.
cannam@89 200 func_dirname_and_basename ()
cannam@89 201 {
cannam@89 202 # Extract subdirectory from the argument.
cannam@89 203 func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"`
cannam@89 204 if test "X$func_dirname_result" = "X${1}"; then
cannam@89 205 func_dirname_result="${3}"
cannam@89 206 else
cannam@89 207 func_dirname_result="$func_dirname_result${2}"
cannam@89 208 fi
cannam@89 209 func_basename_result=`$ECHO "${1}" | $SED -e "$basename"`
cannam@89 210 } # func_dirname_and_basename may be replaced by extended shell implementation
cannam@89 211
cannam@89 212
cannam@89 213 # func_stripname prefix suffix name
cannam@89 214 # strip PREFIX and SUFFIX off of NAME.
cannam@89 215 # PREFIX and SUFFIX must not contain globbing or regex special
cannam@89 216 # characters, hashes, percent signs, but SUFFIX may contain a leading
cannam@89 217 # dot (in which case that matches only a dot).
cannam@89 218 # func_strip_suffix prefix name
cannam@89 219 func_stripname ()
cannam@89 220 {
cannam@89 221 case ${2} in
cannam@89 222 .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;;
cannam@89 223 *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;;
cannam@89 224 esac
cannam@89 225 } # func_stripname may be replaced by extended shell implementation
cannam@89 226
cannam@89 227
cannam@89 228 # These SED scripts presuppose an absolute path with a trailing slash.
cannam@89 229 pathcar='s,^/\([^/]*\).*$,\1,'
cannam@89 230 pathcdr='s,^/[^/]*,,'
cannam@89 231 removedotparts=':dotsl
cannam@89 232 s@/\./@/@g
cannam@89 233 t dotsl
cannam@89 234 s,/\.$,/,'
cannam@89 235 collapseslashes='s@/\{1,\}@/@g'
cannam@89 236 finalslash='s,/*$,/,'
cannam@89 237
cannam@89 238 # func_normal_abspath PATH
cannam@89 239 # Remove doubled-up and trailing slashes, "." path components,
cannam@89 240 # and cancel out any ".." path components in PATH after making
cannam@89 241 # it an absolute path.
cannam@89 242 # value returned in "$func_normal_abspath_result"
cannam@89 243 func_normal_abspath ()
cannam@89 244 {
cannam@89 245 # Start from root dir and reassemble the path.
cannam@89 246 func_normal_abspath_result=
cannam@89 247 func_normal_abspath_tpath=$1
cannam@89 248 func_normal_abspath_altnamespace=
cannam@89 249 case $func_normal_abspath_tpath in
cannam@89 250 "")
cannam@89 251 # Empty path, that just means $cwd.
cannam@89 252 func_stripname '' '/' "`pwd`"
cannam@89 253 func_normal_abspath_result=$func_stripname_result
cannam@89 254 return
cannam@89 255 ;;
cannam@89 256 # The next three entries are used to spot a run of precisely
cannam@89 257 # two leading slashes without using negated character classes;
cannam@89 258 # we take advantage of case's first-match behaviour.
cannam@89 259 ///*)
cannam@89 260 # Unusual form of absolute path, do nothing.
cannam@89 261 ;;
cannam@89 262 //*)
cannam@89 263 # Not necessarily an ordinary path; POSIX reserves leading '//'
cannam@89 264 # and for example Cygwin uses it to access remote file shares
cannam@89 265 # over CIFS/SMB, so we conserve a leading double slash if found.
cannam@89 266 func_normal_abspath_altnamespace=/
cannam@89 267 ;;
cannam@89 268 /*)
cannam@89 269 # Absolute path, do nothing.
cannam@89 270 ;;
cannam@89 271 *)
cannam@89 272 # Relative path, prepend $cwd.
cannam@89 273 func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath
cannam@89 274 ;;
cannam@89 275 esac
cannam@89 276 # Cancel out all the simple stuff to save iterations. We also want
cannam@89 277 # the path to end with a slash for ease of parsing, so make sure
cannam@89 278 # there is one (and only one) here.
cannam@89 279 func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
cannam@89 280 -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"`
cannam@89 281 while :; do
cannam@89 282 # Processed it all yet?
cannam@89 283 if test "$func_normal_abspath_tpath" = / ; then
cannam@89 284 # If we ascended to the root using ".." the result may be empty now.
cannam@89 285 if test -z "$func_normal_abspath_result" ; then
cannam@89 286 func_normal_abspath_result=/
cannam@89 287 fi
cannam@89 288 break
cannam@89 289 fi
cannam@89 290 func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \
cannam@89 291 -e "$pathcar"`
cannam@89 292 func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
cannam@89 293 -e "$pathcdr"`
cannam@89 294 # Figure out what to do with it
cannam@89 295 case $func_normal_abspath_tcomponent in
cannam@89 296 "")
cannam@89 297 # Trailing empty path component, ignore it.
cannam@89 298 ;;
cannam@89 299 ..)
cannam@89 300 # Parent dir; strip last assembled component from result.
cannam@89 301 func_dirname "$func_normal_abspath_result"
cannam@89 302 func_normal_abspath_result=$func_dirname_result
cannam@89 303 ;;
cannam@89 304 *)
cannam@89 305 # Actual path component, append it.
cannam@89 306 func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent
cannam@89 307 ;;
cannam@89 308 esac
cannam@89 309 done
cannam@89 310 # Restore leading double-slash if one was found on entry.
cannam@89 311 func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result
cannam@89 312 }
cannam@89 313
cannam@89 314 # func_relative_path SRCDIR DSTDIR
cannam@89 315 # generates a relative path from SRCDIR to DSTDIR, with a trailing
cannam@89 316 # slash if non-empty, suitable for immediately appending a filename
cannam@89 317 # without needing to append a separator.
cannam@89 318 # value returned in "$func_relative_path_result"
cannam@89 319 func_relative_path ()
cannam@89 320 {
cannam@89 321 func_relative_path_result=
cannam@89 322 func_normal_abspath "$1"
cannam@89 323 func_relative_path_tlibdir=$func_normal_abspath_result
cannam@89 324 func_normal_abspath "$2"
cannam@89 325 func_relative_path_tbindir=$func_normal_abspath_result
cannam@89 326
cannam@89 327 # Ascend the tree starting from libdir
cannam@89 328 while :; do
cannam@89 329 # check if we have found a prefix of bindir
cannam@89 330 case $func_relative_path_tbindir in
cannam@89 331 $func_relative_path_tlibdir)
cannam@89 332 # found an exact match
cannam@89 333 func_relative_path_tcancelled=
cannam@89 334 break
cannam@89 335 ;;
cannam@89 336 $func_relative_path_tlibdir*)
cannam@89 337 # found a matching prefix
cannam@89 338 func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir"
cannam@89 339 func_relative_path_tcancelled=$func_stripname_result
cannam@89 340 if test -z "$func_relative_path_result"; then
cannam@89 341 func_relative_path_result=.
cannam@89 342 fi
cannam@89 343 break
cannam@89 344 ;;
cannam@89 345 *)
cannam@89 346 func_dirname $func_relative_path_tlibdir
cannam@89 347 func_relative_path_tlibdir=${func_dirname_result}
cannam@89 348 if test "x$func_relative_path_tlibdir" = x ; then
cannam@89 349 # Have to descend all the way to the root!
cannam@89 350 func_relative_path_result=../$func_relative_path_result
cannam@89 351 func_relative_path_tcancelled=$func_relative_path_tbindir
cannam@89 352 break
cannam@89 353 fi
cannam@89 354 func_relative_path_result=../$func_relative_path_result
cannam@89 355 ;;
cannam@89 356 esac
cannam@89 357 done
cannam@89 358
cannam@89 359 # Now calculate path; take care to avoid doubling-up slashes.
cannam@89 360 func_stripname '' '/' "$func_relative_path_result"
cannam@89 361 func_relative_path_result=$func_stripname_result
cannam@89 362 func_stripname '/' '/' "$func_relative_path_tcancelled"
cannam@89 363 if test "x$func_stripname_result" != x ; then
cannam@89 364 func_relative_path_result=${func_relative_path_result}/${func_stripname_result}
cannam@89 365 fi
cannam@89 366
cannam@89 367 # Normalisation. If bindir is libdir, return empty string,
cannam@89 368 # else relative path ending with a slash; either way, target
cannam@89 369 # file name can be directly appended.
cannam@89 370 if test ! -z "$func_relative_path_result"; then
cannam@89 371 func_stripname './' '' "$func_relative_path_result/"
cannam@89 372 func_relative_path_result=$func_stripname_result
cannam@89 373 fi
cannam@89 374 }
cannam@89 375
cannam@89 376 # The name of this program:
cannam@89 377 func_dirname_and_basename "$progpath"
cannam@89 378 progname=$func_basename_result
cannam@89 379
cannam@89 380 # Make sure we have an absolute path for reexecution:
cannam@89 381 case $progpath in
cannam@89 382 [\\/]*|[A-Za-z]:\\*) ;;
cannam@89 383 *[\\/]*)
cannam@89 384 progdir=$func_dirname_result
cannam@89 385 progdir=`cd "$progdir" && pwd`
cannam@89 386 progpath="$progdir/$progname"
cannam@89 387 ;;
cannam@89 388 *)
cannam@89 389 save_IFS="$IFS"
cannam@89 390 IFS=:
cannam@89 391 for progdir in $PATH; do
cannam@89 392 IFS="$save_IFS"
cannam@89 393 test -x "$progdir/$progname" && break
cannam@89 394 done
cannam@89 395 IFS="$save_IFS"
cannam@89 396 test -n "$progdir" || progdir=`pwd`
cannam@89 397 progpath="$progdir/$progname"
cannam@89 398 ;;
cannam@89 399 esac
cannam@89 400
cannam@89 401 # Sed substitution that helps us do robust quoting. It backslashifies
cannam@89 402 # metacharacters that are still active within double-quoted strings.
cannam@89 403 Xsed="${SED}"' -e 1s/^X//'
cannam@89 404 sed_quote_subst='s/\([`"$\\]\)/\\\1/g'
cannam@89 405
cannam@89 406 # Same as above, but do not quote variable references.
cannam@89 407 double_quote_subst='s/\(["`\\]\)/\\\1/g'
cannam@89 408
cannam@89 409 # Sed substitution that turns a string into a regex matching for the
cannam@89 410 # string literally.
cannam@89 411 sed_make_literal_regex='s,[].[^$\\*\/],\\&,g'
cannam@89 412
cannam@89 413 # Sed substitution that converts a w32 file name or path
cannam@89 414 # which contains forward slashes, into one that contains
cannam@89 415 # (escaped) backslashes. A very naive implementation.
cannam@89 416 lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g'
cannam@89 417
cannam@89 418 # Re-`\' parameter expansions in output of double_quote_subst that were
cannam@89 419 # `\'-ed in input to the same. If an odd number of `\' preceded a '$'
cannam@89 420 # in input to double_quote_subst, that '$' was protected from expansion.
cannam@89 421 # Since each input `\' is now two `\'s, look for any number of runs of
cannam@89 422 # four `\'s followed by two `\'s and then a '$'. `\' that '$'.
cannam@89 423 bs='\\'
cannam@89 424 bs2='\\\\'
cannam@89 425 bs4='\\\\\\\\'
cannam@89 426 dollar='\$'
cannam@89 427 sed_double_backslash="\
cannam@89 428 s/$bs4/&\\
cannam@89 429 /g
cannam@89 430 s/^$bs2$dollar/$bs&/
cannam@89 431 s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g
cannam@89 432 s/\n//g"
cannam@89 433
cannam@89 434 # Standard options:
cannam@89 435 opt_dry_run=false
cannam@89 436 opt_help=false
cannam@89 437 opt_quiet=false
cannam@89 438 opt_verbose=false
cannam@89 439 opt_warning=:
cannam@89 440
cannam@89 441 # func_echo arg...
cannam@89 442 # Echo program name prefixed message, along with the current mode
cannam@89 443 # name if it has been set yet.
cannam@89 444 func_echo ()
cannam@89 445 {
cannam@89 446 $ECHO "$progname: ${opt_mode+$opt_mode: }$*"
cannam@89 447 }
cannam@89 448
cannam@89 449 # func_verbose arg...
cannam@89 450 # Echo program name prefixed message in verbose mode only.
cannam@89 451 func_verbose ()
cannam@89 452 {
cannam@89 453 $opt_verbose && func_echo ${1+"$@"}
cannam@89 454
cannam@89 455 # A bug in bash halts the script if the last line of a function
cannam@89 456 # fails when set -e is in force, so we need another command to
cannam@89 457 # work around that:
cannam@89 458 :
cannam@89 459 }
cannam@89 460
cannam@89 461 # func_echo_all arg...
cannam@89 462 # Invoke $ECHO with all args, space-separated.
cannam@89 463 func_echo_all ()
cannam@89 464 {
cannam@89 465 $ECHO "$*"
cannam@89 466 }
cannam@89 467
cannam@89 468 # func_error arg...
cannam@89 469 # Echo program name prefixed message to standard error.
cannam@89 470 func_error ()
cannam@89 471 {
cannam@89 472 $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2
cannam@89 473 }
cannam@89 474
cannam@89 475 # func_warning arg...
cannam@89 476 # Echo program name prefixed warning message to standard error.
cannam@89 477 func_warning ()
cannam@89 478 {
cannam@89 479 $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2
cannam@89 480
cannam@89 481 # bash bug again:
cannam@89 482 :
cannam@89 483 }
cannam@89 484
cannam@89 485 # func_fatal_error arg...
cannam@89 486 # Echo program name prefixed message to standard error, and exit.
cannam@89 487 func_fatal_error ()
cannam@89 488 {
cannam@89 489 func_error ${1+"$@"}
cannam@89 490 exit $EXIT_FAILURE
cannam@89 491 }
cannam@89 492
cannam@89 493 # func_fatal_help arg...
cannam@89 494 # Echo program name prefixed message to standard error, followed by
cannam@89 495 # a help hint, and exit.
cannam@89 496 func_fatal_help ()
cannam@89 497 {
cannam@89 498 func_error ${1+"$@"}
cannam@89 499 func_fatal_error "$help"
cannam@89 500 }
cannam@89 501 help="Try \`$progname --help' for more information." ## default
cannam@89 502
cannam@89 503
cannam@89 504 # func_grep expression filename
cannam@89 505 # Check whether EXPRESSION matches any line of FILENAME, without output.
cannam@89 506 func_grep ()
cannam@89 507 {
cannam@89 508 $GREP "$1" "$2" >/dev/null 2>&1
cannam@89 509 }
cannam@89 510
cannam@89 511
cannam@89 512 # func_mkdir_p directory-path
cannam@89 513 # Make sure the entire path to DIRECTORY-PATH is available.
cannam@89 514 func_mkdir_p ()
cannam@89 515 {
cannam@89 516 my_directory_path="$1"
cannam@89 517 my_dir_list=
cannam@89 518
cannam@89 519 if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then
cannam@89 520
cannam@89 521 # Protect directory names starting with `-'
cannam@89 522 case $my_directory_path in
cannam@89 523 -*) my_directory_path="./$my_directory_path" ;;
cannam@89 524 esac
cannam@89 525
cannam@89 526 # While some portion of DIR does not yet exist...
cannam@89 527 while test ! -d "$my_directory_path"; do
cannam@89 528 # ...make a list in topmost first order. Use a colon delimited
cannam@89 529 # list incase some portion of path contains whitespace.
cannam@89 530 my_dir_list="$my_directory_path:$my_dir_list"
cannam@89 531
cannam@89 532 # If the last portion added has no slash in it, the list is done
cannam@89 533 case $my_directory_path in */*) ;; *) break ;; esac
cannam@89 534
cannam@89 535 # ...otherwise throw away the child directory and loop
cannam@89 536 my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"`
cannam@89 537 done
cannam@89 538 my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'`
cannam@89 539
cannam@89 540 save_mkdir_p_IFS="$IFS"; IFS=':'
cannam@89 541 for my_dir in $my_dir_list; do
cannam@89 542 IFS="$save_mkdir_p_IFS"
cannam@89 543 # mkdir can fail with a `File exist' error if two processes
cannam@89 544 # try to create one of the directories concurrently. Don't
cannam@89 545 # stop in that case!
cannam@89 546 $MKDIR "$my_dir" 2>/dev/null || :
cannam@89 547 done
cannam@89 548 IFS="$save_mkdir_p_IFS"
cannam@89 549
cannam@89 550 # Bail out if we (or some other process) failed to create a directory.
cannam@89 551 test -d "$my_directory_path" || \
cannam@89 552 func_fatal_error "Failed to create \`$1'"
cannam@89 553 fi
cannam@89 554 }
cannam@89 555
cannam@89 556
cannam@89 557 # func_mktempdir [string]
cannam@89 558 # Make a temporary directory that won't clash with other running
cannam@89 559 # libtool processes, and avoids race conditions if possible. If
cannam@89 560 # given, STRING is the basename for that directory.
cannam@89 561 func_mktempdir ()
cannam@89 562 {
cannam@89 563 my_template="${TMPDIR-/tmp}/${1-$progname}"
cannam@89 564
cannam@89 565 if test "$opt_dry_run" = ":"; then
cannam@89 566 # Return a directory name, but don't create it in dry-run mode
cannam@89 567 my_tmpdir="${my_template}-$$"
cannam@89 568 else
cannam@89 569
cannam@89 570 # If mktemp works, use that first and foremost
cannam@89 571 my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null`
cannam@89 572
cannam@89 573 if test ! -d "$my_tmpdir"; then
cannam@89 574 # Failing that, at least try and use $RANDOM to avoid a race
cannam@89 575 my_tmpdir="${my_template}-${RANDOM-0}$$"
cannam@89 576
cannam@89 577 save_mktempdir_umask=`umask`
cannam@89 578 umask 0077
cannam@89 579 $MKDIR "$my_tmpdir"
cannam@89 580 umask $save_mktempdir_umask
cannam@89 581 fi
cannam@89 582
cannam@89 583 # If we're not in dry-run mode, bomb out on failure
cannam@89 584 test -d "$my_tmpdir" || \
cannam@89 585 func_fatal_error "cannot create temporary directory \`$my_tmpdir'"
cannam@89 586 fi
cannam@89 587
cannam@89 588 $ECHO "$my_tmpdir"
cannam@89 589 }
cannam@89 590
cannam@89 591
cannam@89 592 # func_quote_for_eval arg
cannam@89 593 # Aesthetically quote ARG to be evaled later.
cannam@89 594 # This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT
cannam@89 595 # is double-quoted, suitable for a subsequent eval, whereas
cannam@89 596 # FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters
cannam@89 597 # which are still active within double quotes backslashified.
cannam@89 598 func_quote_for_eval ()
cannam@89 599 {
cannam@89 600 case $1 in
cannam@89 601 *[\\\`\"\$]*)
cannam@89 602 func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;;
cannam@89 603 *)
cannam@89 604 func_quote_for_eval_unquoted_result="$1" ;;
cannam@89 605 esac
cannam@89 606
cannam@89 607 case $func_quote_for_eval_unquoted_result in
cannam@89 608 # Double-quote args containing shell metacharacters to delay
cannam@89 609 # word splitting, command substitution and and variable
cannam@89 610 # expansion for a subsequent eval.
cannam@89 611 # Many Bourne shells cannot handle close brackets correctly
cannam@89 612 # in scan sets, so we specify it separately.
cannam@89 613 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
cannam@89 614 func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\""
cannam@89 615 ;;
cannam@89 616 *)
cannam@89 617 func_quote_for_eval_result="$func_quote_for_eval_unquoted_result"
cannam@89 618 esac
cannam@89 619 }
cannam@89 620
cannam@89 621
cannam@89 622 # func_quote_for_expand arg
cannam@89 623 # Aesthetically quote ARG to be evaled later; same as above,
cannam@89 624 # but do not quote variable references.
cannam@89 625 func_quote_for_expand ()
cannam@89 626 {
cannam@89 627 case $1 in
cannam@89 628 *[\\\`\"]*)
cannam@89 629 my_arg=`$ECHO "$1" | $SED \
cannam@89 630 -e "$double_quote_subst" -e "$sed_double_backslash"` ;;
cannam@89 631 *)
cannam@89 632 my_arg="$1" ;;
cannam@89 633 esac
cannam@89 634
cannam@89 635 case $my_arg in
cannam@89 636 # Double-quote args containing shell metacharacters to delay
cannam@89 637 # word splitting and command substitution for a subsequent eval.
cannam@89 638 # Many Bourne shells cannot handle close brackets correctly
cannam@89 639 # in scan sets, so we specify it separately.
cannam@89 640 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
cannam@89 641 my_arg="\"$my_arg\""
cannam@89 642 ;;
cannam@89 643 esac
cannam@89 644
cannam@89 645 func_quote_for_expand_result="$my_arg"
cannam@89 646 }
cannam@89 647
cannam@89 648
cannam@89 649 # func_show_eval cmd [fail_exp]
cannam@89 650 # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is
cannam@89 651 # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP
cannam@89 652 # is given, then evaluate it.
cannam@89 653 func_show_eval ()
cannam@89 654 {
cannam@89 655 my_cmd="$1"
cannam@89 656 my_fail_exp="${2-:}"
cannam@89 657
cannam@89 658 ${opt_silent-false} || {
cannam@89 659 func_quote_for_expand "$my_cmd"
cannam@89 660 eval "func_echo $func_quote_for_expand_result"
cannam@89 661 }
cannam@89 662
cannam@89 663 if ${opt_dry_run-false}; then :; else
cannam@89 664 eval "$my_cmd"
cannam@89 665 my_status=$?
cannam@89 666 if test "$my_status" -eq 0; then :; else
cannam@89 667 eval "(exit $my_status); $my_fail_exp"
cannam@89 668 fi
cannam@89 669 fi
cannam@89 670 }
cannam@89 671
cannam@89 672
cannam@89 673 # func_show_eval_locale cmd [fail_exp]
cannam@89 674 # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is
cannam@89 675 # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP
cannam@89 676 # is given, then evaluate it. Use the saved locale for evaluation.
cannam@89 677 func_show_eval_locale ()
cannam@89 678 {
cannam@89 679 my_cmd="$1"
cannam@89 680 my_fail_exp="${2-:}"
cannam@89 681
cannam@89 682 ${opt_silent-false} || {
cannam@89 683 func_quote_for_expand "$my_cmd"
cannam@89 684 eval "func_echo $func_quote_for_expand_result"
cannam@89 685 }
cannam@89 686
cannam@89 687 if ${opt_dry_run-false}; then :; else
cannam@89 688 eval "$lt_user_locale
cannam@89 689 $my_cmd"
cannam@89 690 my_status=$?
cannam@89 691 eval "$lt_safe_locale"
cannam@89 692 if test "$my_status" -eq 0; then :; else
cannam@89 693 eval "(exit $my_status); $my_fail_exp"
cannam@89 694 fi
cannam@89 695 fi
cannam@89 696 }
cannam@89 697
cannam@89 698 # func_tr_sh
cannam@89 699 # Turn $1 into a string suitable for a shell variable name.
cannam@89 700 # Result is stored in $func_tr_sh_result. All characters
cannam@89 701 # not in the set a-zA-Z0-9_ are replaced with '_'. Further,
cannam@89 702 # if $1 begins with a digit, a '_' is prepended as well.
cannam@89 703 func_tr_sh ()
cannam@89 704 {
cannam@89 705 case $1 in
cannam@89 706 [0-9]* | *[!a-zA-Z0-9_]*)
cannam@89 707 func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'`
cannam@89 708 ;;
cannam@89 709 * )
cannam@89 710 func_tr_sh_result=$1
cannam@89 711 ;;
cannam@89 712 esac
cannam@89 713 }
cannam@89 714
cannam@89 715
cannam@89 716 # func_version
cannam@89 717 # Echo version message to standard output and exit.
cannam@89 718 func_version ()
cannam@89 719 {
cannam@89 720 $opt_debug
cannam@89 721
cannam@89 722 $SED -n '/(C)/!b go
cannam@89 723 :more
cannam@89 724 /\./!{
cannam@89 725 N
cannam@89 726 s/\n# / /
cannam@89 727 b more
cannam@89 728 }
cannam@89 729 :go
cannam@89 730 /^# '$PROGRAM' (GNU /,/# warranty; / {
cannam@89 731 s/^# //
cannam@89 732 s/^# *$//
cannam@89 733 s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/
cannam@89 734 p
cannam@89 735 }' < "$progpath"
cannam@89 736 exit $?
cannam@89 737 }
cannam@89 738
cannam@89 739 # func_usage
cannam@89 740 # Echo short help message to standard output and exit.
cannam@89 741 func_usage ()
cannam@89 742 {
cannam@89 743 $opt_debug
cannam@89 744
cannam@89 745 $SED -n '/^# Usage:/,/^# *.*--help/ {
cannam@89 746 s/^# //
cannam@89 747 s/^# *$//
cannam@89 748 s/\$progname/'$progname'/
cannam@89 749 p
cannam@89 750 }' < "$progpath"
cannam@89 751 echo
cannam@89 752 $ECHO "run \`$progname --help | more' for full usage"
cannam@89 753 exit $?
cannam@89 754 }
cannam@89 755
cannam@89 756 # func_help [NOEXIT]
cannam@89 757 # Echo long help message to standard output and exit,
cannam@89 758 # unless 'noexit' is passed as argument.
cannam@89 759 func_help ()
cannam@89 760 {
cannam@89 761 $opt_debug
cannam@89 762
cannam@89 763 $SED -n '/^# Usage:/,/# Report bugs to/ {
cannam@89 764 :print
cannam@89 765 s/^# //
cannam@89 766 s/^# *$//
cannam@89 767 s*\$progname*'$progname'*
cannam@89 768 s*\$host*'"$host"'*
cannam@89 769 s*\$SHELL*'"$SHELL"'*
cannam@89 770 s*\$LTCC*'"$LTCC"'*
cannam@89 771 s*\$LTCFLAGS*'"$LTCFLAGS"'*
cannam@89 772 s*\$LD*'"$LD"'*
cannam@89 773 s/\$with_gnu_ld/'"$with_gnu_ld"'/
cannam@89 774 s/\$automake_version/'"`(automake --version) 2>/dev/null |$SED 1q`"'/
cannam@89 775 s/\$autoconf_version/'"`(autoconf --version) 2>/dev/null |$SED 1q`"'/
cannam@89 776 p
cannam@89 777 d
cannam@89 778 }
cannam@89 779 /^# .* home page:/b print
cannam@89 780 /^# General help using/b print
cannam@89 781 ' < "$progpath"
cannam@89 782 ret=$?
cannam@89 783 if test -z "$1"; then
cannam@89 784 exit $ret
cannam@89 785 fi
cannam@89 786 }
cannam@89 787
cannam@89 788 # func_missing_arg argname
cannam@89 789 # Echo program name prefixed message to standard error and set global
cannam@89 790 # exit_cmd.
cannam@89 791 func_missing_arg ()
cannam@89 792 {
cannam@89 793 $opt_debug
cannam@89 794
cannam@89 795 func_error "missing argument for $1."
cannam@89 796 exit_cmd=exit
cannam@89 797 }
cannam@89 798
cannam@89 799
cannam@89 800 # func_split_short_opt shortopt
cannam@89 801 # Set func_split_short_opt_name and func_split_short_opt_arg shell
cannam@89 802 # variables after splitting SHORTOPT after the 2nd character.
cannam@89 803 func_split_short_opt ()
cannam@89 804 {
cannam@89 805 my_sed_short_opt='1s/^\(..\).*$/\1/;q'
cannam@89 806 my_sed_short_rest='1s/^..\(.*\)$/\1/;q'
cannam@89 807
cannam@89 808 func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"`
cannam@89 809 func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"`
cannam@89 810 } # func_split_short_opt may be replaced by extended shell implementation
cannam@89 811
cannam@89 812
cannam@89 813 # func_split_long_opt longopt
cannam@89 814 # Set func_split_long_opt_name and func_split_long_opt_arg shell
cannam@89 815 # variables after splitting LONGOPT at the `=' sign.
cannam@89 816 func_split_long_opt ()
cannam@89 817 {
cannam@89 818 my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q'
cannam@89 819 my_sed_long_arg='1s/^--[^=]*=//'
cannam@89 820
cannam@89 821 func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"`
cannam@89 822 func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"`
cannam@89 823 } # func_split_long_opt may be replaced by extended shell implementation
cannam@89 824
cannam@89 825 exit_cmd=:
cannam@89 826
cannam@89 827
cannam@89 828
cannam@89 829
cannam@89 830
cannam@89 831 magic="%%%MAGIC variable%%%"
cannam@89 832 magic_exe="%%%MAGIC EXE variable%%%"
cannam@89 833
cannam@89 834 # Global variables.
cannam@89 835 nonopt=
cannam@89 836 preserve_args=
cannam@89 837 lo2o="s/\\.lo\$/.${objext}/"
cannam@89 838 o2lo="s/\\.${objext}\$/.lo/"
cannam@89 839 extracted_archives=
cannam@89 840 extracted_serial=0
cannam@89 841
cannam@89 842 # If this variable is set in any of the actions, the command in it
cannam@89 843 # will be execed at the end. This prevents here-documents from being
cannam@89 844 # left over by shells.
cannam@89 845 exec_cmd=
cannam@89 846
cannam@89 847 # func_append var value
cannam@89 848 # Append VALUE to the end of shell variable VAR.
cannam@89 849 func_append ()
cannam@89 850 {
cannam@89 851 eval "${1}=\$${1}\${2}"
cannam@89 852 } # func_append may be replaced by extended shell implementation
cannam@89 853
cannam@89 854 # func_append_quoted var value
cannam@89 855 # Quote VALUE and append to the end of shell variable VAR, separated
cannam@89 856 # by a space.
cannam@89 857 func_append_quoted ()
cannam@89 858 {
cannam@89 859 func_quote_for_eval "${2}"
cannam@89 860 eval "${1}=\$${1}\\ \$func_quote_for_eval_result"
cannam@89 861 } # func_append_quoted may be replaced by extended shell implementation
cannam@89 862
cannam@89 863
cannam@89 864 # func_arith arithmetic-term...
cannam@89 865 func_arith ()
cannam@89 866 {
cannam@89 867 func_arith_result=`expr "${@}"`
cannam@89 868 } # func_arith may be replaced by extended shell implementation
cannam@89 869
cannam@89 870
cannam@89 871 # func_len string
cannam@89 872 # STRING may not start with a hyphen.
cannam@89 873 func_len ()
cannam@89 874 {
cannam@89 875 func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len`
cannam@89 876 } # func_len may be replaced by extended shell implementation
cannam@89 877
cannam@89 878
cannam@89 879 # func_lo2o object
cannam@89 880 func_lo2o ()
cannam@89 881 {
cannam@89 882 func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"`
cannam@89 883 } # func_lo2o may be replaced by extended shell implementation
cannam@89 884
cannam@89 885
cannam@89 886 # func_xform libobj-or-source
cannam@89 887 func_xform ()
cannam@89 888 {
cannam@89 889 func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'`
cannam@89 890 } # func_xform may be replaced by extended shell implementation
cannam@89 891
cannam@89 892
cannam@89 893 # func_fatal_configuration arg...
cannam@89 894 # Echo program name prefixed message to standard error, followed by
cannam@89 895 # a configuration failure hint, and exit.
cannam@89 896 func_fatal_configuration ()
cannam@89 897 {
cannam@89 898 func_error ${1+"$@"}
cannam@89 899 func_error "See the $PACKAGE documentation for more information."
cannam@89 900 func_fatal_error "Fatal configuration error."
cannam@89 901 }
cannam@89 902
cannam@89 903
cannam@89 904 # func_config
cannam@89 905 # Display the configuration for all the tags in this script.
cannam@89 906 func_config ()
cannam@89 907 {
cannam@89 908 re_begincf='^# ### BEGIN LIBTOOL'
cannam@89 909 re_endcf='^# ### END LIBTOOL'
cannam@89 910
cannam@89 911 # Default configuration.
cannam@89 912 $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath"
cannam@89 913
cannam@89 914 # Now print the configurations for the tags.
cannam@89 915 for tagname in $taglist; do
cannam@89 916 $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath"
cannam@89 917 done
cannam@89 918
cannam@89 919 exit $?
cannam@89 920 }
cannam@89 921
cannam@89 922 # func_features
cannam@89 923 # Display the features supported by this script.
cannam@89 924 func_features ()
cannam@89 925 {
cannam@89 926 echo "host: $host"
cannam@89 927 if test "$build_libtool_libs" = yes; then
cannam@89 928 echo "enable shared libraries"
cannam@89 929 else
cannam@89 930 echo "disable shared libraries"
cannam@89 931 fi
cannam@89 932 if test "$build_old_libs" = yes; then
cannam@89 933 echo "enable static libraries"
cannam@89 934 else
cannam@89 935 echo "disable static libraries"
cannam@89 936 fi
cannam@89 937
cannam@89 938 exit $?
cannam@89 939 }
cannam@89 940
cannam@89 941 # func_enable_tag tagname
cannam@89 942 # Verify that TAGNAME is valid, and either flag an error and exit, or
cannam@89 943 # enable the TAGNAME tag. We also add TAGNAME to the global $taglist
cannam@89 944 # variable here.
cannam@89 945 func_enable_tag ()
cannam@89 946 {
cannam@89 947 # Global variable:
cannam@89 948 tagname="$1"
cannam@89 949
cannam@89 950 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
cannam@89 951 re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
cannam@89 952 sed_extractcf="/$re_begincf/,/$re_endcf/p"
cannam@89 953
cannam@89 954 # Validate tagname.
cannam@89 955 case $tagname in
cannam@89 956 *[!-_A-Za-z0-9,/]*)
cannam@89 957 func_fatal_error "invalid tag name: $tagname"
cannam@89 958 ;;
cannam@89 959 esac
cannam@89 960
cannam@89 961 # Don't test for the "default" C tag, as we know it's
cannam@89 962 # there but not specially marked.
cannam@89 963 case $tagname in
cannam@89 964 CC) ;;
cannam@89 965 *)
cannam@89 966 if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then
cannam@89 967 taglist="$taglist $tagname"
cannam@89 968
cannam@89 969 # Evaluate the configuration. Be careful to quote the path
cannam@89 970 # and the sed script, to avoid splitting on whitespace, but
cannam@89 971 # also don't use non-portable quotes within backquotes within
cannam@89 972 # quotes we have to do it in 2 steps:
cannam@89 973 extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"`
cannam@89 974 eval "$extractedcf"
cannam@89 975 else
cannam@89 976 func_error "ignoring unknown tag $tagname"
cannam@89 977 fi
cannam@89 978 ;;
cannam@89 979 esac
cannam@89 980 }
cannam@89 981
cannam@89 982 # func_check_version_match
cannam@89 983 # Ensure that we are using m4 macros, and libtool script from the same
cannam@89 984 # release of libtool.
cannam@89 985 func_check_version_match ()
cannam@89 986 {
cannam@89 987 if test "$package_revision" != "$macro_revision"; then
cannam@89 988 if test "$VERSION" != "$macro_version"; then
cannam@89 989 if test -z "$macro_version"; then
cannam@89 990 cat >&2 <<_LT_EOF
cannam@89 991 $progname: Version mismatch error. This is $PACKAGE $VERSION, but the
cannam@89 992 $progname: definition of this LT_INIT comes from an older release.
cannam@89 993 $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
cannam@89 994 $progname: and run autoconf again.
cannam@89 995 _LT_EOF
cannam@89 996 else
cannam@89 997 cat >&2 <<_LT_EOF
cannam@89 998 $progname: Version mismatch error. This is $PACKAGE $VERSION, but the
cannam@89 999 $progname: definition of this LT_INIT comes from $PACKAGE $macro_version.
cannam@89 1000 $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
cannam@89 1001 $progname: and run autoconf again.
cannam@89 1002 _LT_EOF
cannam@89 1003 fi
cannam@89 1004 else
cannam@89 1005 cat >&2 <<_LT_EOF
cannam@89 1006 $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision,
cannam@89 1007 $progname: but the definition of this LT_INIT comes from revision $macro_revision.
cannam@89 1008 $progname: You should recreate aclocal.m4 with macros from revision $package_revision
cannam@89 1009 $progname: of $PACKAGE $VERSION and run autoconf again.
cannam@89 1010 _LT_EOF
cannam@89 1011 fi
cannam@89 1012
cannam@89 1013 exit $EXIT_MISMATCH
cannam@89 1014 fi
cannam@89 1015 }
cannam@89 1016
cannam@89 1017
cannam@89 1018 # Shorthand for --mode=foo, only valid as the first argument
cannam@89 1019 case $1 in
cannam@89 1020 clean|clea|cle|cl)
cannam@89 1021 shift; set dummy --mode clean ${1+"$@"}; shift
cannam@89 1022 ;;
cannam@89 1023 compile|compil|compi|comp|com|co|c)
cannam@89 1024 shift; set dummy --mode compile ${1+"$@"}; shift
cannam@89 1025 ;;
cannam@89 1026 execute|execut|execu|exec|exe|ex|e)
cannam@89 1027 shift; set dummy --mode execute ${1+"$@"}; shift
cannam@89 1028 ;;
cannam@89 1029 finish|finis|fini|fin|fi|f)
cannam@89 1030 shift; set dummy --mode finish ${1+"$@"}; shift
cannam@89 1031 ;;
cannam@89 1032 install|instal|insta|inst|ins|in|i)
cannam@89 1033 shift; set dummy --mode install ${1+"$@"}; shift
cannam@89 1034 ;;
cannam@89 1035 link|lin|li|l)
cannam@89 1036 shift; set dummy --mode link ${1+"$@"}; shift
cannam@89 1037 ;;
cannam@89 1038 uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)
cannam@89 1039 shift; set dummy --mode uninstall ${1+"$@"}; shift
cannam@89 1040 ;;
cannam@89 1041 esac
cannam@89 1042
cannam@89 1043
cannam@89 1044
cannam@89 1045 # Option defaults:
cannam@89 1046 opt_debug=:
cannam@89 1047 opt_dry_run=false
cannam@89 1048 opt_config=false
cannam@89 1049 opt_preserve_dup_deps=false
cannam@89 1050 opt_features=false
cannam@89 1051 opt_finish=false
cannam@89 1052 opt_help=false
cannam@89 1053 opt_help_all=false
cannam@89 1054 opt_silent=:
cannam@89 1055 opt_verbose=:
cannam@89 1056 opt_silent=false
cannam@89 1057 opt_verbose=false
cannam@89 1058
cannam@89 1059
cannam@89 1060 # Parse options once, thoroughly. This comes as soon as possible in the
cannam@89 1061 # script to make things like `--version' happen as quickly as we can.
cannam@89 1062 {
cannam@89 1063 # this just eases exit handling
cannam@89 1064 while test $# -gt 0; do
cannam@89 1065 opt="$1"
cannam@89 1066 shift
cannam@89 1067 case $opt in
cannam@89 1068 --debug|-x) opt_debug='set -x'
cannam@89 1069 func_echo "enabling shell trace mode"
cannam@89 1070 $opt_debug
cannam@89 1071 ;;
cannam@89 1072 --dry-run|--dryrun|-n)
cannam@89 1073 opt_dry_run=:
cannam@89 1074 ;;
cannam@89 1075 --config)
cannam@89 1076 opt_config=:
cannam@89 1077 func_config
cannam@89 1078 ;;
cannam@89 1079 --dlopen|-dlopen)
cannam@89 1080 optarg="$1"
cannam@89 1081 opt_dlopen="${opt_dlopen+$opt_dlopen
cannam@89 1082 }$optarg"
cannam@89 1083 shift
cannam@89 1084 ;;
cannam@89 1085 --preserve-dup-deps)
cannam@89 1086 opt_preserve_dup_deps=:
cannam@89 1087 ;;
cannam@89 1088 --features)
cannam@89 1089 opt_features=:
cannam@89 1090 func_features
cannam@89 1091 ;;
cannam@89 1092 --finish)
cannam@89 1093 opt_finish=:
cannam@89 1094 set dummy --mode finish ${1+"$@"}; shift
cannam@89 1095 ;;
cannam@89 1096 --help)
cannam@89 1097 opt_help=:
cannam@89 1098 ;;
cannam@89 1099 --help-all)
cannam@89 1100 opt_help_all=:
cannam@89 1101 opt_help=': help-all'
cannam@89 1102 ;;
cannam@89 1103 --mode)
cannam@89 1104 test $# = 0 && func_missing_arg $opt && break
cannam@89 1105 optarg="$1"
cannam@89 1106 opt_mode="$optarg"
cannam@89 1107 case $optarg in
cannam@89 1108 # Valid mode arguments:
cannam@89 1109 clean|compile|execute|finish|install|link|relink|uninstall) ;;
cannam@89 1110
cannam@89 1111 # Catch anything else as an error
cannam@89 1112 *) func_error "invalid argument for $opt"
cannam@89 1113 exit_cmd=exit
cannam@89 1114 break
cannam@89 1115 ;;
cannam@89 1116 esac
cannam@89 1117 shift
cannam@89 1118 ;;
cannam@89 1119 --no-silent|--no-quiet)
cannam@89 1120 opt_silent=false
cannam@89 1121 func_append preserve_args " $opt"
cannam@89 1122 ;;
cannam@89 1123 --no-verbose)
cannam@89 1124 opt_verbose=false
cannam@89 1125 func_append preserve_args " $opt"
cannam@89 1126 ;;
cannam@89 1127 --silent|--quiet)
cannam@89 1128 opt_silent=:
cannam@89 1129 func_append preserve_args " $opt"
cannam@89 1130 opt_verbose=false
cannam@89 1131 ;;
cannam@89 1132 --verbose|-v)
cannam@89 1133 opt_verbose=:
cannam@89 1134 func_append preserve_args " $opt"
cannam@89 1135 opt_silent=false
cannam@89 1136 ;;
cannam@89 1137 --tag)
cannam@89 1138 test $# = 0 && func_missing_arg $opt && break
cannam@89 1139 optarg="$1"
cannam@89 1140 opt_tag="$optarg"
cannam@89 1141 func_append preserve_args " $opt $optarg"
cannam@89 1142 func_enable_tag "$optarg"
cannam@89 1143 shift
cannam@89 1144 ;;
cannam@89 1145
cannam@89 1146 -\?|-h) func_usage ;;
cannam@89 1147 --help) func_help ;;
cannam@89 1148 --version) func_version ;;
cannam@89 1149
cannam@89 1150 # Separate optargs to long options:
cannam@89 1151 --*=*)
cannam@89 1152 func_split_long_opt "$opt"
cannam@89 1153 set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"}
cannam@89 1154 shift
cannam@89 1155 ;;
cannam@89 1156
cannam@89 1157 # Separate non-argument short options:
cannam@89 1158 -\?*|-h*|-n*|-v*)
cannam@89 1159 func_split_short_opt "$opt"
cannam@89 1160 set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"}
cannam@89 1161 shift
cannam@89 1162 ;;
cannam@89 1163
cannam@89 1164 --) break ;;
cannam@89 1165 -*) func_fatal_help "unrecognized option \`$opt'" ;;
cannam@89 1166 *) set dummy "$opt" ${1+"$@"}; shift; break ;;
cannam@89 1167 esac
cannam@89 1168 done
cannam@89 1169
cannam@89 1170 # Validate options:
cannam@89 1171
cannam@89 1172 # save first non-option argument
cannam@89 1173 if test "$#" -gt 0; then
cannam@89 1174 nonopt="$opt"
cannam@89 1175 shift
cannam@89 1176 fi
cannam@89 1177
cannam@89 1178 # preserve --debug
cannam@89 1179 test "$opt_debug" = : || func_append preserve_args " --debug"
cannam@89 1180
cannam@89 1181 case $host in
cannam@89 1182 *cygwin* | *mingw* | *pw32* | *cegcc*)
cannam@89 1183 # don't eliminate duplications in $postdeps and $predeps
cannam@89 1184 opt_duplicate_compiler_generated_deps=:
cannam@89 1185 ;;
cannam@89 1186 *)
cannam@89 1187 opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps
cannam@89 1188 ;;
cannam@89 1189 esac
cannam@89 1190
cannam@89 1191 $opt_help || {
cannam@89 1192 # Sanity checks first:
cannam@89 1193 func_check_version_match
cannam@89 1194
cannam@89 1195 if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
cannam@89 1196 func_fatal_configuration "not configured to build any kind of library"
cannam@89 1197 fi
cannam@89 1198
cannam@89 1199 # Darwin sucks
cannam@89 1200 eval std_shrext=\"$shrext_cmds\"
cannam@89 1201
cannam@89 1202 # Only execute mode is allowed to have -dlopen flags.
cannam@89 1203 if test -n "$opt_dlopen" && test "$opt_mode" != execute; then
cannam@89 1204 func_error "unrecognized option \`-dlopen'"
cannam@89 1205 $ECHO "$help" 1>&2
cannam@89 1206 exit $EXIT_FAILURE
cannam@89 1207 fi
cannam@89 1208
cannam@89 1209 # Change the help message to a mode-specific one.
cannam@89 1210 generic_help="$help"
cannam@89 1211 help="Try \`$progname --help --mode=$opt_mode' for more information."
cannam@89 1212 }
cannam@89 1213
cannam@89 1214
cannam@89 1215 # Bail if the options were screwed
cannam@89 1216 $exit_cmd $EXIT_FAILURE
cannam@89 1217 }
cannam@89 1218
cannam@89 1219
cannam@89 1220
cannam@89 1221
cannam@89 1222 ## ----------- ##
cannam@89 1223 ## Main. ##
cannam@89 1224 ## ----------- ##
cannam@89 1225
cannam@89 1226 # func_lalib_p file
cannam@89 1227 # True iff FILE is a libtool `.la' library or `.lo' object file.
cannam@89 1228 # This function is only a basic sanity check; it will hardly flush out
cannam@89 1229 # determined imposters.
cannam@89 1230 func_lalib_p ()
cannam@89 1231 {
cannam@89 1232 test -f "$1" &&
cannam@89 1233 $SED -e 4q "$1" 2>/dev/null \
cannam@89 1234 | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1
cannam@89 1235 }
cannam@89 1236
cannam@89 1237 # func_lalib_unsafe_p file
cannam@89 1238 # True iff FILE is a libtool `.la' library or `.lo' object file.
cannam@89 1239 # This function implements the same check as func_lalib_p without
cannam@89 1240 # resorting to external programs. To this end, it redirects stdin and
cannam@89 1241 # closes it afterwards, without saving the original file descriptor.
cannam@89 1242 # As a safety measure, use it only where a negative result would be
cannam@89 1243 # fatal anyway. Works if `file' does not exist.
cannam@89 1244 func_lalib_unsafe_p ()
cannam@89 1245 {
cannam@89 1246 lalib_p=no
cannam@89 1247 if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then
cannam@89 1248 for lalib_p_l in 1 2 3 4
cannam@89 1249 do
cannam@89 1250 read lalib_p_line
cannam@89 1251 case "$lalib_p_line" in
cannam@89 1252 \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;;
cannam@89 1253 esac
cannam@89 1254 done
cannam@89 1255 exec 0<&5 5<&-
cannam@89 1256 fi
cannam@89 1257 test "$lalib_p" = yes
cannam@89 1258 }
cannam@89 1259
cannam@89 1260 # func_ltwrapper_script_p file
cannam@89 1261 # True iff FILE is a libtool wrapper script
cannam@89 1262 # This function is only a basic sanity check; it will hardly flush out
cannam@89 1263 # determined imposters.
cannam@89 1264 func_ltwrapper_script_p ()
cannam@89 1265 {
cannam@89 1266 func_lalib_p "$1"
cannam@89 1267 }
cannam@89 1268
cannam@89 1269 # func_ltwrapper_executable_p file
cannam@89 1270 # True iff FILE is a libtool wrapper executable
cannam@89 1271 # This function is only a basic sanity check; it will hardly flush out
cannam@89 1272 # determined imposters.
cannam@89 1273 func_ltwrapper_executable_p ()
cannam@89 1274 {
cannam@89 1275 func_ltwrapper_exec_suffix=
cannam@89 1276 case $1 in
cannam@89 1277 *.exe) ;;
cannam@89 1278 *) func_ltwrapper_exec_suffix=.exe ;;
cannam@89 1279 esac
cannam@89 1280 $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1
cannam@89 1281 }
cannam@89 1282
cannam@89 1283 # func_ltwrapper_scriptname file
cannam@89 1284 # Assumes file is an ltwrapper_executable
cannam@89 1285 # uses $file to determine the appropriate filename for a
cannam@89 1286 # temporary ltwrapper_script.
cannam@89 1287 func_ltwrapper_scriptname ()
cannam@89 1288 {
cannam@89 1289 func_dirname_and_basename "$1" "" "."
cannam@89 1290 func_stripname '' '.exe' "$func_basename_result"
cannam@89 1291 func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper"
cannam@89 1292 }
cannam@89 1293
cannam@89 1294 # func_ltwrapper_p file
cannam@89 1295 # True iff FILE is a libtool wrapper script or wrapper executable
cannam@89 1296 # This function is only a basic sanity check; it will hardly flush out
cannam@89 1297 # determined imposters.
cannam@89 1298 func_ltwrapper_p ()
cannam@89 1299 {
cannam@89 1300 func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1"
cannam@89 1301 }
cannam@89 1302
cannam@89 1303
cannam@89 1304 # func_execute_cmds commands fail_cmd
cannam@89 1305 # Execute tilde-delimited COMMANDS.
cannam@89 1306 # If FAIL_CMD is given, eval that upon failure.
cannam@89 1307 # FAIL_CMD may read-access the current command in variable CMD!
cannam@89 1308 func_execute_cmds ()
cannam@89 1309 {
cannam@89 1310 $opt_debug
cannam@89 1311 save_ifs=$IFS; IFS='~'
cannam@89 1312 for cmd in $1; do
cannam@89 1313 IFS=$save_ifs
cannam@89 1314 eval cmd=\"$cmd\"
cannam@89 1315 func_show_eval "$cmd" "${2-:}"
cannam@89 1316 done
cannam@89 1317 IFS=$save_ifs
cannam@89 1318 }
cannam@89 1319
cannam@89 1320
cannam@89 1321 # func_source file
cannam@89 1322 # Source FILE, adding directory component if necessary.
cannam@89 1323 # Note that it is not necessary on cygwin/mingw to append a dot to
cannam@89 1324 # FILE even if both FILE and FILE.exe exist: automatic-append-.exe
cannam@89 1325 # behavior happens only for exec(3), not for open(2)! Also, sourcing
cannam@89 1326 # `FILE.' does not work on cygwin managed mounts.
cannam@89 1327 func_source ()
cannam@89 1328 {
cannam@89 1329 $opt_debug
cannam@89 1330 case $1 in
cannam@89 1331 */* | *\\*) . "$1" ;;
cannam@89 1332 *) . "./$1" ;;
cannam@89 1333 esac
cannam@89 1334 }
cannam@89 1335
cannam@89 1336
cannam@89 1337 # func_resolve_sysroot PATH
cannam@89 1338 # Replace a leading = in PATH with a sysroot. Store the result into
cannam@89 1339 # func_resolve_sysroot_result
cannam@89 1340 func_resolve_sysroot ()
cannam@89 1341 {
cannam@89 1342 func_resolve_sysroot_result=$1
cannam@89 1343 case $func_resolve_sysroot_result in
cannam@89 1344 =*)
cannam@89 1345 func_stripname '=' '' "$func_resolve_sysroot_result"
cannam@89 1346 func_resolve_sysroot_result=$lt_sysroot$func_stripname_result
cannam@89 1347 ;;
cannam@89 1348 esac
cannam@89 1349 }
cannam@89 1350
cannam@89 1351 # func_replace_sysroot PATH
cannam@89 1352 # If PATH begins with the sysroot, replace it with = and
cannam@89 1353 # store the result into func_replace_sysroot_result.
cannam@89 1354 func_replace_sysroot ()
cannam@89 1355 {
cannam@89 1356 case "$lt_sysroot:$1" in
cannam@89 1357 ?*:"$lt_sysroot"*)
cannam@89 1358 func_stripname "$lt_sysroot" '' "$1"
cannam@89 1359 func_replace_sysroot_result="=$func_stripname_result"
cannam@89 1360 ;;
cannam@89 1361 *)
cannam@89 1362 # Including no sysroot.
cannam@89 1363 func_replace_sysroot_result=$1
cannam@89 1364 ;;
cannam@89 1365 esac
cannam@89 1366 }
cannam@89 1367
cannam@89 1368 # func_infer_tag arg
cannam@89 1369 # Infer tagged configuration to use if any are available and
cannam@89 1370 # if one wasn't chosen via the "--tag" command line option.
cannam@89 1371 # Only attempt this if the compiler in the base compile
cannam@89 1372 # command doesn't match the default compiler.
cannam@89 1373 # arg is usually of the form 'gcc ...'
cannam@89 1374 func_infer_tag ()
cannam@89 1375 {
cannam@89 1376 $opt_debug
cannam@89 1377 if test -n "$available_tags" && test -z "$tagname"; then
cannam@89 1378 CC_quoted=
cannam@89 1379 for arg in $CC; do
cannam@89 1380 func_append_quoted CC_quoted "$arg"
cannam@89 1381 done
cannam@89 1382 CC_expanded=`func_echo_all $CC`
cannam@89 1383 CC_quoted_expanded=`func_echo_all $CC_quoted`
cannam@89 1384 case $@ in
cannam@89 1385 # Blanks in the command may have been stripped by the calling shell,
cannam@89 1386 # but not from the CC environment variable when configure was run.
cannam@89 1387 " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \
cannam@89 1388 " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;;
cannam@89 1389 # Blanks at the start of $base_compile will cause this to fail
cannam@89 1390 # if we don't check for them as well.
cannam@89 1391 *)
cannam@89 1392 for z in $available_tags; do
cannam@89 1393 if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then
cannam@89 1394 # Evaluate the configuration.
cannam@89 1395 eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
cannam@89 1396 CC_quoted=
cannam@89 1397 for arg in $CC; do
cannam@89 1398 # Double-quote args containing other shell metacharacters.
cannam@89 1399 func_append_quoted CC_quoted "$arg"
cannam@89 1400 done
cannam@89 1401 CC_expanded=`func_echo_all $CC`
cannam@89 1402 CC_quoted_expanded=`func_echo_all $CC_quoted`
cannam@89 1403 case "$@ " in
cannam@89 1404 " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \
cannam@89 1405 " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*)
cannam@89 1406 # The compiler in the base compile command matches
cannam@89 1407 # the one in the tagged configuration.
cannam@89 1408 # Assume this is the tagged configuration we want.
cannam@89 1409 tagname=$z
cannam@89 1410 break
cannam@89 1411 ;;
cannam@89 1412 esac
cannam@89 1413 fi
cannam@89 1414 done
cannam@89 1415 # If $tagname still isn't set, then no tagged configuration
cannam@89 1416 # was found and let the user know that the "--tag" command
cannam@89 1417 # line option must be used.
cannam@89 1418 if test -z "$tagname"; then
cannam@89 1419 func_echo "unable to infer tagged configuration"
cannam@89 1420 func_fatal_error "specify a tag with \`--tag'"
cannam@89 1421 # else
cannam@89 1422 # func_verbose "using $tagname tagged configuration"
cannam@89 1423 fi
cannam@89 1424 ;;
cannam@89 1425 esac
cannam@89 1426 fi
cannam@89 1427 }
cannam@89 1428
cannam@89 1429
cannam@89 1430
cannam@89 1431 # func_write_libtool_object output_name pic_name nonpic_name
cannam@89 1432 # Create a libtool object file (analogous to a ".la" file),
cannam@89 1433 # but don't create it if we're doing a dry run.
cannam@89 1434 func_write_libtool_object ()
cannam@89 1435 {
cannam@89 1436 write_libobj=${1}
cannam@89 1437 if test "$build_libtool_libs" = yes; then
cannam@89 1438 write_lobj=\'${2}\'
cannam@89 1439 else
cannam@89 1440 write_lobj=none
cannam@89 1441 fi
cannam@89 1442
cannam@89 1443 if test "$build_old_libs" = yes; then
cannam@89 1444 write_oldobj=\'${3}\'
cannam@89 1445 else
cannam@89 1446 write_oldobj=none
cannam@89 1447 fi
cannam@89 1448
cannam@89 1449 $opt_dry_run || {
cannam@89 1450 cat >${write_libobj}T <<EOF
cannam@89 1451 # $write_libobj - a libtool object file
cannam@89 1452 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@89 1453 #
cannam@89 1454 # Please DO NOT delete this file!
cannam@89 1455 # It is necessary for linking the library.
cannam@89 1456
cannam@89 1457 # Name of the PIC object.
cannam@89 1458 pic_object=$write_lobj
cannam@89 1459
cannam@89 1460 # Name of the non-PIC object
cannam@89 1461 non_pic_object=$write_oldobj
cannam@89 1462
cannam@89 1463 EOF
cannam@89 1464 $MV "${write_libobj}T" "${write_libobj}"
cannam@89 1465 }
cannam@89 1466 }
cannam@89 1467
cannam@89 1468
cannam@89 1469 ##################################################
cannam@89 1470 # FILE NAME AND PATH CONVERSION HELPER FUNCTIONS #
cannam@89 1471 ##################################################
cannam@89 1472
cannam@89 1473 # func_convert_core_file_wine_to_w32 ARG
cannam@89 1474 # Helper function used by file name conversion functions when $build is *nix,
cannam@89 1475 # and $host is mingw, cygwin, or some other w32 environment. Relies on a
cannam@89 1476 # correctly configured wine environment available, with the winepath program
cannam@89 1477 # in $build's $PATH.
cannam@89 1478 #
cannam@89 1479 # ARG is the $build file name to be converted to w32 format.
cannam@89 1480 # Result is available in $func_convert_core_file_wine_to_w32_result, and will
cannam@89 1481 # be empty on error (or when ARG is empty)
cannam@89 1482 func_convert_core_file_wine_to_w32 ()
cannam@89 1483 {
cannam@89 1484 $opt_debug
cannam@89 1485 func_convert_core_file_wine_to_w32_result="$1"
cannam@89 1486 if test -n "$1"; then
cannam@89 1487 # Unfortunately, winepath does not exit with a non-zero error code, so we
cannam@89 1488 # are forced to check the contents of stdout. On the other hand, if the
cannam@89 1489 # command is not found, the shell will set an exit code of 127 and print
cannam@89 1490 # *an error message* to stdout. So we must check for both error code of
cannam@89 1491 # zero AND non-empty stdout, which explains the odd construction:
cannam@89 1492 func_convert_core_file_wine_to_w32_tmp=`winepath -w "$1" 2>/dev/null`
cannam@89 1493 if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then
cannam@89 1494 func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" |
cannam@89 1495 $SED -e "$lt_sed_naive_backslashify"`
cannam@89 1496 else
cannam@89 1497 func_convert_core_file_wine_to_w32_result=
cannam@89 1498 fi
cannam@89 1499 fi
cannam@89 1500 }
cannam@89 1501 # end: func_convert_core_file_wine_to_w32
cannam@89 1502
cannam@89 1503
cannam@89 1504 # func_convert_core_path_wine_to_w32 ARG
cannam@89 1505 # Helper function used by path conversion functions when $build is *nix, and
cannam@89 1506 # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly
cannam@89 1507 # configured wine environment available, with the winepath program in $build's
cannam@89 1508 # $PATH. Assumes ARG has no leading or trailing path separator characters.
cannam@89 1509 #
cannam@89 1510 # ARG is path to be converted from $build format to win32.
cannam@89 1511 # Result is available in $func_convert_core_path_wine_to_w32_result.
cannam@89 1512 # Unconvertible file (directory) names in ARG are skipped; if no directory names
cannam@89 1513 # are convertible, then the result may be empty.
cannam@89 1514 func_convert_core_path_wine_to_w32 ()
cannam@89 1515 {
cannam@89 1516 $opt_debug
cannam@89 1517 # unfortunately, winepath doesn't convert paths, only file names
cannam@89 1518 func_convert_core_path_wine_to_w32_result=""
cannam@89 1519 if test -n "$1"; then
cannam@89 1520 oldIFS=$IFS
cannam@89 1521 IFS=:
cannam@89 1522 for func_convert_core_path_wine_to_w32_f in $1; do
cannam@89 1523 IFS=$oldIFS
cannam@89 1524 func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f"
cannam@89 1525 if test -n "$func_convert_core_file_wine_to_w32_result" ; then
cannam@89 1526 if test -z "$func_convert_core_path_wine_to_w32_result"; then
cannam@89 1527 func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result"
cannam@89 1528 else
cannam@89 1529 func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result"
cannam@89 1530 fi
cannam@89 1531 fi
cannam@89 1532 done
cannam@89 1533 IFS=$oldIFS
cannam@89 1534 fi
cannam@89 1535 }
cannam@89 1536 # end: func_convert_core_path_wine_to_w32
cannam@89 1537
cannam@89 1538
cannam@89 1539 # func_cygpath ARGS...
cannam@89 1540 # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when
cannam@89 1541 # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2)
cannam@89 1542 # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or
cannam@89 1543 # (2), returns the Cygwin file name or path in func_cygpath_result (input
cannam@89 1544 # file name or path is assumed to be in w32 format, as previously converted
cannam@89 1545 # from $build's *nix or MSYS format). In case (3), returns the w32 file name
cannam@89 1546 # or path in func_cygpath_result (input file name or path is assumed to be in
cannam@89 1547 # Cygwin format). Returns an empty string on error.
cannam@89 1548 #
cannam@89 1549 # ARGS are passed to cygpath, with the last one being the file name or path to
cannam@89 1550 # be converted.
cannam@89 1551 #
cannam@89 1552 # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH
cannam@89 1553 # environment variable; do not put it in $PATH.
cannam@89 1554 func_cygpath ()
cannam@89 1555 {
cannam@89 1556 $opt_debug
cannam@89 1557 if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then
cannam@89 1558 func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null`
cannam@89 1559 if test "$?" -ne 0; then
cannam@89 1560 # on failure, ensure result is empty
cannam@89 1561 func_cygpath_result=
cannam@89 1562 fi
cannam@89 1563 else
cannam@89 1564 func_cygpath_result=
cannam@89 1565 func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'"
cannam@89 1566 fi
cannam@89 1567 }
cannam@89 1568 #end: func_cygpath
cannam@89 1569
cannam@89 1570
cannam@89 1571 # func_convert_core_msys_to_w32 ARG
cannam@89 1572 # Convert file name or path ARG from MSYS format to w32 format. Return
cannam@89 1573 # result in func_convert_core_msys_to_w32_result.
cannam@89 1574 func_convert_core_msys_to_w32 ()
cannam@89 1575 {
cannam@89 1576 $opt_debug
cannam@89 1577 # awkward: cmd appends spaces to result
cannam@89 1578 func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null |
cannam@89 1579 $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"`
cannam@89 1580 }
cannam@89 1581 #end: func_convert_core_msys_to_w32
cannam@89 1582
cannam@89 1583
cannam@89 1584 # func_convert_file_check ARG1 ARG2
cannam@89 1585 # Verify that ARG1 (a file name in $build format) was converted to $host
cannam@89 1586 # format in ARG2. Otherwise, emit an error message, but continue (resetting
cannam@89 1587 # func_to_host_file_result to ARG1).
cannam@89 1588 func_convert_file_check ()
cannam@89 1589 {
cannam@89 1590 $opt_debug
cannam@89 1591 if test -z "$2" && test -n "$1" ; then
cannam@89 1592 func_error "Could not determine host file name corresponding to"
cannam@89 1593 func_error " \`$1'"
cannam@89 1594 func_error "Continuing, but uninstalled executables may not work."
cannam@89 1595 # Fallback:
cannam@89 1596 func_to_host_file_result="$1"
cannam@89 1597 fi
cannam@89 1598 }
cannam@89 1599 # end func_convert_file_check
cannam@89 1600
cannam@89 1601
cannam@89 1602 # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH
cannam@89 1603 # Verify that FROM_PATH (a path in $build format) was converted to $host
cannam@89 1604 # format in TO_PATH. Otherwise, emit an error message, but continue, resetting
cannam@89 1605 # func_to_host_file_result to a simplistic fallback value (see below).
cannam@89 1606 func_convert_path_check ()
cannam@89 1607 {
cannam@89 1608 $opt_debug
cannam@89 1609 if test -z "$4" && test -n "$3"; then
cannam@89 1610 func_error "Could not determine the host path corresponding to"
cannam@89 1611 func_error " \`$3'"
cannam@89 1612 func_error "Continuing, but uninstalled executables may not work."
cannam@89 1613 # Fallback. This is a deliberately simplistic "conversion" and
cannam@89 1614 # should not be "improved". See libtool.info.
cannam@89 1615 if test "x$1" != "x$2"; then
cannam@89 1616 lt_replace_pathsep_chars="s|$1|$2|g"
cannam@89 1617 func_to_host_path_result=`echo "$3" |
cannam@89 1618 $SED -e "$lt_replace_pathsep_chars"`
cannam@89 1619 else
cannam@89 1620 func_to_host_path_result="$3"
cannam@89 1621 fi
cannam@89 1622 fi
cannam@89 1623 }
cannam@89 1624 # end func_convert_path_check
cannam@89 1625
cannam@89 1626
cannam@89 1627 # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG
cannam@89 1628 # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT
cannam@89 1629 # and appending REPL if ORIG matches BACKPAT.
cannam@89 1630 func_convert_path_front_back_pathsep ()
cannam@89 1631 {
cannam@89 1632 $opt_debug
cannam@89 1633 case $4 in
cannam@89 1634 $1 ) func_to_host_path_result="$3$func_to_host_path_result"
cannam@89 1635 ;;
cannam@89 1636 esac
cannam@89 1637 case $4 in
cannam@89 1638 $2 ) func_append func_to_host_path_result "$3"
cannam@89 1639 ;;
cannam@89 1640 esac
cannam@89 1641 }
cannam@89 1642 # end func_convert_path_front_back_pathsep
cannam@89 1643
cannam@89 1644
cannam@89 1645 ##################################################
cannam@89 1646 # $build to $host FILE NAME CONVERSION FUNCTIONS #
cannam@89 1647 ##################################################
cannam@89 1648 # invoked via `$to_host_file_cmd ARG'
cannam@89 1649 #
cannam@89 1650 # In each case, ARG is the path to be converted from $build to $host format.
cannam@89 1651 # Result will be available in $func_to_host_file_result.
cannam@89 1652
cannam@89 1653
cannam@89 1654 # func_to_host_file ARG
cannam@89 1655 # Converts the file name ARG from $build format to $host format. Return result
cannam@89 1656 # in func_to_host_file_result.
cannam@89 1657 func_to_host_file ()
cannam@89 1658 {
cannam@89 1659 $opt_debug
cannam@89 1660 $to_host_file_cmd "$1"
cannam@89 1661 }
cannam@89 1662 # end func_to_host_file
cannam@89 1663
cannam@89 1664
cannam@89 1665 # func_to_tool_file ARG LAZY
cannam@89 1666 # converts the file name ARG from $build format to toolchain format. Return
cannam@89 1667 # result in func_to_tool_file_result. If the conversion in use is listed
cannam@89 1668 # in (the comma separated) LAZY, no conversion takes place.
cannam@89 1669 func_to_tool_file ()
cannam@89 1670 {
cannam@89 1671 $opt_debug
cannam@89 1672 case ,$2, in
cannam@89 1673 *,"$to_tool_file_cmd",*)
cannam@89 1674 func_to_tool_file_result=$1
cannam@89 1675 ;;
cannam@89 1676 *)
cannam@89 1677 $to_tool_file_cmd "$1"
cannam@89 1678 func_to_tool_file_result=$func_to_host_file_result
cannam@89 1679 ;;
cannam@89 1680 esac
cannam@89 1681 }
cannam@89 1682 # end func_to_tool_file
cannam@89 1683
cannam@89 1684
cannam@89 1685 # func_convert_file_noop ARG
cannam@89 1686 # Copy ARG to func_to_host_file_result.
cannam@89 1687 func_convert_file_noop ()
cannam@89 1688 {
cannam@89 1689 func_to_host_file_result="$1"
cannam@89 1690 }
cannam@89 1691 # end func_convert_file_noop
cannam@89 1692
cannam@89 1693
cannam@89 1694 # func_convert_file_msys_to_w32 ARG
cannam@89 1695 # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic
cannam@89 1696 # conversion to w32 is not available inside the cwrapper. Returns result in
cannam@89 1697 # func_to_host_file_result.
cannam@89 1698 func_convert_file_msys_to_w32 ()
cannam@89 1699 {
cannam@89 1700 $opt_debug
cannam@89 1701 func_to_host_file_result="$1"
cannam@89 1702 if test -n "$1"; then
cannam@89 1703 func_convert_core_msys_to_w32 "$1"
cannam@89 1704 func_to_host_file_result="$func_convert_core_msys_to_w32_result"
cannam@89 1705 fi
cannam@89 1706 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@89 1707 }
cannam@89 1708 # end func_convert_file_msys_to_w32
cannam@89 1709
cannam@89 1710
cannam@89 1711 # func_convert_file_cygwin_to_w32 ARG
cannam@89 1712 # Convert file name ARG from Cygwin to w32 format. Returns result in
cannam@89 1713 # func_to_host_file_result.
cannam@89 1714 func_convert_file_cygwin_to_w32 ()
cannam@89 1715 {
cannam@89 1716 $opt_debug
cannam@89 1717 func_to_host_file_result="$1"
cannam@89 1718 if test -n "$1"; then
cannam@89 1719 # because $build is cygwin, we call "the" cygpath in $PATH; no need to use
cannam@89 1720 # LT_CYGPATH in this case.
cannam@89 1721 func_to_host_file_result=`cygpath -m "$1"`
cannam@89 1722 fi
cannam@89 1723 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@89 1724 }
cannam@89 1725 # end func_convert_file_cygwin_to_w32
cannam@89 1726
cannam@89 1727
cannam@89 1728 # func_convert_file_nix_to_w32 ARG
cannam@89 1729 # Convert file name ARG from *nix to w32 format. Requires a wine environment
cannam@89 1730 # and a working winepath. Returns result in func_to_host_file_result.
cannam@89 1731 func_convert_file_nix_to_w32 ()
cannam@89 1732 {
cannam@89 1733 $opt_debug
cannam@89 1734 func_to_host_file_result="$1"
cannam@89 1735 if test -n "$1"; then
cannam@89 1736 func_convert_core_file_wine_to_w32 "$1"
cannam@89 1737 func_to_host_file_result="$func_convert_core_file_wine_to_w32_result"
cannam@89 1738 fi
cannam@89 1739 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@89 1740 }
cannam@89 1741 # end func_convert_file_nix_to_w32
cannam@89 1742
cannam@89 1743
cannam@89 1744 # func_convert_file_msys_to_cygwin ARG
cannam@89 1745 # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set.
cannam@89 1746 # Returns result in func_to_host_file_result.
cannam@89 1747 func_convert_file_msys_to_cygwin ()
cannam@89 1748 {
cannam@89 1749 $opt_debug
cannam@89 1750 func_to_host_file_result="$1"
cannam@89 1751 if test -n "$1"; then
cannam@89 1752 func_convert_core_msys_to_w32 "$1"
cannam@89 1753 func_cygpath -u "$func_convert_core_msys_to_w32_result"
cannam@89 1754 func_to_host_file_result="$func_cygpath_result"
cannam@89 1755 fi
cannam@89 1756 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@89 1757 }
cannam@89 1758 # end func_convert_file_msys_to_cygwin
cannam@89 1759
cannam@89 1760
cannam@89 1761 # func_convert_file_nix_to_cygwin ARG
cannam@89 1762 # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed
cannam@89 1763 # in a wine environment, working winepath, and LT_CYGPATH set. Returns result
cannam@89 1764 # in func_to_host_file_result.
cannam@89 1765 func_convert_file_nix_to_cygwin ()
cannam@89 1766 {
cannam@89 1767 $opt_debug
cannam@89 1768 func_to_host_file_result="$1"
cannam@89 1769 if test -n "$1"; then
cannam@89 1770 # convert from *nix to w32, then use cygpath to convert from w32 to cygwin.
cannam@89 1771 func_convert_core_file_wine_to_w32 "$1"
cannam@89 1772 func_cygpath -u "$func_convert_core_file_wine_to_w32_result"
cannam@89 1773 func_to_host_file_result="$func_cygpath_result"
cannam@89 1774 fi
cannam@89 1775 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@89 1776 }
cannam@89 1777 # end func_convert_file_nix_to_cygwin
cannam@89 1778
cannam@89 1779
cannam@89 1780 #############################################
cannam@89 1781 # $build to $host PATH CONVERSION FUNCTIONS #
cannam@89 1782 #############################################
cannam@89 1783 # invoked via `$to_host_path_cmd ARG'
cannam@89 1784 #
cannam@89 1785 # In each case, ARG is the path to be converted from $build to $host format.
cannam@89 1786 # The result will be available in $func_to_host_path_result.
cannam@89 1787 #
cannam@89 1788 # Path separators are also converted from $build format to $host format. If
cannam@89 1789 # ARG begins or ends with a path separator character, it is preserved (but
cannam@89 1790 # converted to $host format) on output.
cannam@89 1791 #
cannam@89 1792 # All path conversion functions are named using the following convention:
cannam@89 1793 # file name conversion function : func_convert_file_X_to_Y ()
cannam@89 1794 # path conversion function : func_convert_path_X_to_Y ()
cannam@89 1795 # where, for any given $build/$host combination the 'X_to_Y' value is the
cannam@89 1796 # same. If conversion functions are added for new $build/$host combinations,
cannam@89 1797 # the two new functions must follow this pattern, or func_init_to_host_path_cmd
cannam@89 1798 # will break.
cannam@89 1799
cannam@89 1800
cannam@89 1801 # func_init_to_host_path_cmd
cannam@89 1802 # Ensures that function "pointer" variable $to_host_path_cmd is set to the
cannam@89 1803 # appropriate value, based on the value of $to_host_file_cmd.
cannam@89 1804 to_host_path_cmd=
cannam@89 1805 func_init_to_host_path_cmd ()
cannam@89 1806 {
cannam@89 1807 $opt_debug
cannam@89 1808 if test -z "$to_host_path_cmd"; then
cannam@89 1809 func_stripname 'func_convert_file_' '' "$to_host_file_cmd"
cannam@89 1810 to_host_path_cmd="func_convert_path_${func_stripname_result}"
cannam@89 1811 fi
cannam@89 1812 }
cannam@89 1813
cannam@89 1814
cannam@89 1815 # func_to_host_path ARG
cannam@89 1816 # Converts the path ARG from $build format to $host format. Return result
cannam@89 1817 # in func_to_host_path_result.
cannam@89 1818 func_to_host_path ()
cannam@89 1819 {
cannam@89 1820 $opt_debug
cannam@89 1821 func_init_to_host_path_cmd
cannam@89 1822 $to_host_path_cmd "$1"
cannam@89 1823 }
cannam@89 1824 # end func_to_host_path
cannam@89 1825
cannam@89 1826
cannam@89 1827 # func_convert_path_noop ARG
cannam@89 1828 # Copy ARG to func_to_host_path_result.
cannam@89 1829 func_convert_path_noop ()
cannam@89 1830 {
cannam@89 1831 func_to_host_path_result="$1"
cannam@89 1832 }
cannam@89 1833 # end func_convert_path_noop
cannam@89 1834
cannam@89 1835
cannam@89 1836 # func_convert_path_msys_to_w32 ARG
cannam@89 1837 # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic
cannam@89 1838 # conversion to w32 is not available inside the cwrapper. Returns result in
cannam@89 1839 # func_to_host_path_result.
cannam@89 1840 func_convert_path_msys_to_w32 ()
cannam@89 1841 {
cannam@89 1842 $opt_debug
cannam@89 1843 func_to_host_path_result="$1"
cannam@89 1844 if test -n "$1"; then
cannam@89 1845 # Remove leading and trailing path separator characters from ARG. MSYS
cannam@89 1846 # behavior is inconsistent here; cygpath turns them into '.;' and ';.';
cannam@89 1847 # and winepath ignores them completely.
cannam@89 1848 func_stripname : : "$1"
cannam@89 1849 func_to_host_path_tmp1=$func_stripname_result
cannam@89 1850 func_convert_core_msys_to_w32 "$func_to_host_path_tmp1"
cannam@89 1851 func_to_host_path_result="$func_convert_core_msys_to_w32_result"
cannam@89 1852 func_convert_path_check : ";" \
cannam@89 1853 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@89 1854 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
cannam@89 1855 fi
cannam@89 1856 }
cannam@89 1857 # end func_convert_path_msys_to_w32
cannam@89 1858
cannam@89 1859
cannam@89 1860 # func_convert_path_cygwin_to_w32 ARG
cannam@89 1861 # Convert path ARG from Cygwin to w32 format. Returns result in
cannam@89 1862 # func_to_host_file_result.
cannam@89 1863 func_convert_path_cygwin_to_w32 ()
cannam@89 1864 {
cannam@89 1865 $opt_debug
cannam@89 1866 func_to_host_path_result="$1"
cannam@89 1867 if test -n "$1"; then
cannam@89 1868 # See func_convert_path_msys_to_w32:
cannam@89 1869 func_stripname : : "$1"
cannam@89 1870 func_to_host_path_tmp1=$func_stripname_result
cannam@89 1871 func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"`
cannam@89 1872 func_convert_path_check : ";" \
cannam@89 1873 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@89 1874 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
cannam@89 1875 fi
cannam@89 1876 }
cannam@89 1877 # end func_convert_path_cygwin_to_w32
cannam@89 1878
cannam@89 1879
cannam@89 1880 # func_convert_path_nix_to_w32 ARG
cannam@89 1881 # Convert path ARG from *nix to w32 format. Requires a wine environment and
cannam@89 1882 # a working winepath. Returns result in func_to_host_file_result.
cannam@89 1883 func_convert_path_nix_to_w32 ()
cannam@89 1884 {
cannam@89 1885 $opt_debug
cannam@89 1886 func_to_host_path_result="$1"
cannam@89 1887 if test -n "$1"; then
cannam@89 1888 # See func_convert_path_msys_to_w32:
cannam@89 1889 func_stripname : : "$1"
cannam@89 1890 func_to_host_path_tmp1=$func_stripname_result
cannam@89 1891 func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1"
cannam@89 1892 func_to_host_path_result="$func_convert_core_path_wine_to_w32_result"
cannam@89 1893 func_convert_path_check : ";" \
cannam@89 1894 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@89 1895 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
cannam@89 1896 fi
cannam@89 1897 }
cannam@89 1898 # end func_convert_path_nix_to_w32
cannam@89 1899
cannam@89 1900
cannam@89 1901 # func_convert_path_msys_to_cygwin ARG
cannam@89 1902 # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set.
cannam@89 1903 # Returns result in func_to_host_file_result.
cannam@89 1904 func_convert_path_msys_to_cygwin ()
cannam@89 1905 {
cannam@89 1906 $opt_debug
cannam@89 1907 func_to_host_path_result="$1"
cannam@89 1908 if test -n "$1"; then
cannam@89 1909 # See func_convert_path_msys_to_w32:
cannam@89 1910 func_stripname : : "$1"
cannam@89 1911 func_to_host_path_tmp1=$func_stripname_result
cannam@89 1912 func_convert_core_msys_to_w32 "$func_to_host_path_tmp1"
cannam@89 1913 func_cygpath -u -p "$func_convert_core_msys_to_w32_result"
cannam@89 1914 func_to_host_path_result="$func_cygpath_result"
cannam@89 1915 func_convert_path_check : : \
cannam@89 1916 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@89 1917 func_convert_path_front_back_pathsep ":*" "*:" : "$1"
cannam@89 1918 fi
cannam@89 1919 }
cannam@89 1920 # end func_convert_path_msys_to_cygwin
cannam@89 1921
cannam@89 1922
cannam@89 1923 # func_convert_path_nix_to_cygwin ARG
cannam@89 1924 # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a
cannam@89 1925 # a wine environment, working winepath, and LT_CYGPATH set. Returns result in
cannam@89 1926 # func_to_host_file_result.
cannam@89 1927 func_convert_path_nix_to_cygwin ()
cannam@89 1928 {
cannam@89 1929 $opt_debug
cannam@89 1930 func_to_host_path_result="$1"
cannam@89 1931 if test -n "$1"; then
cannam@89 1932 # Remove leading and trailing path separator characters from
cannam@89 1933 # ARG. msys behavior is inconsistent here, cygpath turns them
cannam@89 1934 # into '.;' and ';.', and winepath ignores them completely.
cannam@89 1935 func_stripname : : "$1"
cannam@89 1936 func_to_host_path_tmp1=$func_stripname_result
cannam@89 1937 func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1"
cannam@89 1938 func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result"
cannam@89 1939 func_to_host_path_result="$func_cygpath_result"
cannam@89 1940 func_convert_path_check : : \
cannam@89 1941 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@89 1942 func_convert_path_front_back_pathsep ":*" "*:" : "$1"
cannam@89 1943 fi
cannam@89 1944 }
cannam@89 1945 # end func_convert_path_nix_to_cygwin
cannam@89 1946
cannam@89 1947
cannam@89 1948 # func_mode_compile arg...
cannam@89 1949 func_mode_compile ()
cannam@89 1950 {
cannam@89 1951 $opt_debug
cannam@89 1952 # Get the compilation command and the source file.
cannam@89 1953 base_compile=
cannam@89 1954 srcfile="$nonopt" # always keep a non-empty value in "srcfile"
cannam@89 1955 suppress_opt=yes
cannam@89 1956 suppress_output=
cannam@89 1957 arg_mode=normal
cannam@89 1958 libobj=
cannam@89 1959 later=
cannam@89 1960 pie_flag=
cannam@89 1961
cannam@89 1962 for arg
cannam@89 1963 do
cannam@89 1964 case $arg_mode in
cannam@89 1965 arg )
cannam@89 1966 # do not "continue". Instead, add this to base_compile
cannam@89 1967 lastarg="$arg"
cannam@89 1968 arg_mode=normal
cannam@89 1969 ;;
cannam@89 1970
cannam@89 1971 target )
cannam@89 1972 libobj="$arg"
cannam@89 1973 arg_mode=normal
cannam@89 1974 continue
cannam@89 1975 ;;
cannam@89 1976
cannam@89 1977 normal )
cannam@89 1978 # Accept any command-line options.
cannam@89 1979 case $arg in
cannam@89 1980 -o)
cannam@89 1981 test -n "$libobj" && \
cannam@89 1982 func_fatal_error "you cannot specify \`-o' more than once"
cannam@89 1983 arg_mode=target
cannam@89 1984 continue
cannam@89 1985 ;;
cannam@89 1986
cannam@89 1987 -pie | -fpie | -fPIE)
cannam@89 1988 func_append pie_flag " $arg"
cannam@89 1989 continue
cannam@89 1990 ;;
cannam@89 1991
cannam@89 1992 -shared | -static | -prefer-pic | -prefer-non-pic)
cannam@89 1993 func_append later " $arg"
cannam@89 1994 continue
cannam@89 1995 ;;
cannam@89 1996
cannam@89 1997 -no-suppress)
cannam@89 1998 suppress_opt=no
cannam@89 1999 continue
cannam@89 2000 ;;
cannam@89 2001
cannam@89 2002 -Xcompiler)
cannam@89 2003 arg_mode=arg # the next one goes into the "base_compile" arg list
cannam@89 2004 continue # The current "srcfile" will either be retained or
cannam@89 2005 ;; # replaced later. I would guess that would be a bug.
cannam@89 2006
cannam@89 2007 -Wc,*)
cannam@89 2008 func_stripname '-Wc,' '' "$arg"
cannam@89 2009 args=$func_stripname_result
cannam@89 2010 lastarg=
cannam@89 2011 save_ifs="$IFS"; IFS=','
cannam@89 2012 for arg in $args; do
cannam@89 2013 IFS="$save_ifs"
cannam@89 2014 func_append_quoted lastarg "$arg"
cannam@89 2015 done
cannam@89 2016 IFS="$save_ifs"
cannam@89 2017 func_stripname ' ' '' "$lastarg"
cannam@89 2018 lastarg=$func_stripname_result
cannam@89 2019
cannam@89 2020 # Add the arguments to base_compile.
cannam@89 2021 func_append base_compile " $lastarg"
cannam@89 2022 continue
cannam@89 2023 ;;
cannam@89 2024
cannam@89 2025 *)
cannam@89 2026 # Accept the current argument as the source file.
cannam@89 2027 # The previous "srcfile" becomes the current argument.
cannam@89 2028 #
cannam@89 2029 lastarg="$srcfile"
cannam@89 2030 srcfile="$arg"
cannam@89 2031 ;;
cannam@89 2032 esac # case $arg
cannam@89 2033 ;;
cannam@89 2034 esac # case $arg_mode
cannam@89 2035
cannam@89 2036 # Aesthetically quote the previous argument.
cannam@89 2037 func_append_quoted base_compile "$lastarg"
cannam@89 2038 done # for arg
cannam@89 2039
cannam@89 2040 case $arg_mode in
cannam@89 2041 arg)
cannam@89 2042 func_fatal_error "you must specify an argument for -Xcompile"
cannam@89 2043 ;;
cannam@89 2044 target)
cannam@89 2045 func_fatal_error "you must specify a target with \`-o'"
cannam@89 2046 ;;
cannam@89 2047 *)
cannam@89 2048 # Get the name of the library object.
cannam@89 2049 test -z "$libobj" && {
cannam@89 2050 func_basename "$srcfile"
cannam@89 2051 libobj="$func_basename_result"
cannam@89 2052 }
cannam@89 2053 ;;
cannam@89 2054 esac
cannam@89 2055
cannam@89 2056 # Recognize several different file suffixes.
cannam@89 2057 # If the user specifies -o file.o, it is replaced with file.lo
cannam@89 2058 case $libobj in
cannam@89 2059 *.[cCFSifmso] | \
cannam@89 2060 *.ada | *.adb | *.ads | *.asm | \
cannam@89 2061 *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \
cannam@89 2062 *.[fF][09]? | *.for | *.java | *.obj | *.sx | *.cu | *.cup)
cannam@89 2063 func_xform "$libobj"
cannam@89 2064 libobj=$func_xform_result
cannam@89 2065 ;;
cannam@89 2066 esac
cannam@89 2067
cannam@89 2068 case $libobj in
cannam@89 2069 *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;;
cannam@89 2070 *)
cannam@89 2071 func_fatal_error "cannot determine name of library object from \`$libobj'"
cannam@89 2072 ;;
cannam@89 2073 esac
cannam@89 2074
cannam@89 2075 func_infer_tag $base_compile
cannam@89 2076
cannam@89 2077 for arg in $later; do
cannam@89 2078 case $arg in
cannam@89 2079 -shared)
cannam@89 2080 test "$build_libtool_libs" != yes && \
cannam@89 2081 func_fatal_configuration "can not build a shared library"
cannam@89 2082 build_old_libs=no
cannam@89 2083 continue
cannam@89 2084 ;;
cannam@89 2085
cannam@89 2086 -static)
cannam@89 2087 build_libtool_libs=no
cannam@89 2088 build_old_libs=yes
cannam@89 2089 continue
cannam@89 2090 ;;
cannam@89 2091
cannam@89 2092 -prefer-pic)
cannam@89 2093 pic_mode=yes
cannam@89 2094 continue
cannam@89 2095 ;;
cannam@89 2096
cannam@89 2097 -prefer-non-pic)
cannam@89 2098 pic_mode=no
cannam@89 2099 continue
cannam@89 2100 ;;
cannam@89 2101 esac
cannam@89 2102 done
cannam@89 2103
cannam@89 2104 func_quote_for_eval "$libobj"
cannam@89 2105 test "X$libobj" != "X$func_quote_for_eval_result" \
cannam@89 2106 && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \
cannam@89 2107 && func_warning "libobj name \`$libobj' may not contain shell special characters."
cannam@89 2108 func_dirname_and_basename "$obj" "/" ""
cannam@89 2109 objname="$func_basename_result"
cannam@89 2110 xdir="$func_dirname_result"
cannam@89 2111 lobj=${xdir}$objdir/$objname
cannam@89 2112
cannam@89 2113 test -z "$base_compile" && \
cannam@89 2114 func_fatal_help "you must specify a compilation command"
cannam@89 2115
cannam@89 2116 # Delete any leftover library objects.
cannam@89 2117 if test "$build_old_libs" = yes; then
cannam@89 2118 removelist="$obj $lobj $libobj ${libobj}T"
cannam@89 2119 else
cannam@89 2120 removelist="$lobj $libobj ${libobj}T"
cannam@89 2121 fi
cannam@89 2122
cannam@89 2123 # On Cygwin there's no "real" PIC flag so we must build both object types
cannam@89 2124 case $host_os in
cannam@89 2125 cygwin* | mingw* | pw32* | os2* | cegcc*)
cannam@89 2126 pic_mode=default
cannam@89 2127 ;;
cannam@89 2128 esac
cannam@89 2129 if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then
cannam@89 2130 # non-PIC code in shared libraries is not supported
cannam@89 2131 pic_mode=default
cannam@89 2132 fi
cannam@89 2133
cannam@89 2134 # Calculate the filename of the output object if compiler does
cannam@89 2135 # not support -o with -c
cannam@89 2136 if test "$compiler_c_o" = no; then
cannam@89 2137 output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext}
cannam@89 2138 lockfile="$output_obj.lock"
cannam@89 2139 else
cannam@89 2140 output_obj=
cannam@89 2141 need_locks=no
cannam@89 2142 lockfile=
cannam@89 2143 fi
cannam@89 2144
cannam@89 2145 # Lock this critical section if it is needed
cannam@89 2146 # We use this script file to make the link, it avoids creating a new file
cannam@89 2147 if test "$need_locks" = yes; then
cannam@89 2148 until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do
cannam@89 2149 func_echo "Waiting for $lockfile to be removed"
cannam@89 2150 sleep 2
cannam@89 2151 done
cannam@89 2152 elif test "$need_locks" = warn; then
cannam@89 2153 if test -f "$lockfile"; then
cannam@89 2154 $ECHO "\
cannam@89 2155 *** ERROR, $lockfile exists and contains:
cannam@89 2156 `cat $lockfile 2>/dev/null`
cannam@89 2157
cannam@89 2158 This indicates that another process is trying to use the same
cannam@89 2159 temporary object file, and libtool could not work around it because
cannam@89 2160 your compiler does not support \`-c' and \`-o' together. If you
cannam@89 2161 repeat this compilation, it may succeed, by chance, but you had better
cannam@89 2162 avoid parallel builds (make -j) in this platform, or get a better
cannam@89 2163 compiler."
cannam@89 2164
cannam@89 2165 $opt_dry_run || $RM $removelist
cannam@89 2166 exit $EXIT_FAILURE
cannam@89 2167 fi
cannam@89 2168 func_append removelist " $output_obj"
cannam@89 2169 $ECHO "$srcfile" > "$lockfile"
cannam@89 2170 fi
cannam@89 2171
cannam@89 2172 $opt_dry_run || $RM $removelist
cannam@89 2173 func_append removelist " $lockfile"
cannam@89 2174 trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15
cannam@89 2175
cannam@89 2176 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32
cannam@89 2177 srcfile=$func_to_tool_file_result
cannam@89 2178 func_quote_for_eval "$srcfile"
cannam@89 2179 qsrcfile=$func_quote_for_eval_result
cannam@89 2180
cannam@89 2181 # Only build a PIC object if we are building libtool libraries.
cannam@89 2182 if test "$build_libtool_libs" = yes; then
cannam@89 2183 # Without this assignment, base_compile gets emptied.
cannam@89 2184 fbsd_hideous_sh_bug=$base_compile
cannam@89 2185
cannam@89 2186 if test "$pic_mode" != no; then
cannam@89 2187 command="$base_compile $qsrcfile $pic_flag"
cannam@89 2188 else
cannam@89 2189 # Don't build PIC code
cannam@89 2190 command="$base_compile $qsrcfile"
cannam@89 2191 fi
cannam@89 2192
cannam@89 2193 func_mkdir_p "$xdir$objdir"
cannam@89 2194
cannam@89 2195 if test -z "$output_obj"; then
cannam@89 2196 # Place PIC objects in $objdir
cannam@89 2197 func_append command " -o $lobj"
cannam@89 2198 fi
cannam@89 2199
cannam@89 2200 func_show_eval_locale "$command" \
cannam@89 2201 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE'
cannam@89 2202
cannam@89 2203 if test "$need_locks" = warn &&
cannam@89 2204 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
cannam@89 2205 $ECHO "\
cannam@89 2206 *** ERROR, $lockfile contains:
cannam@89 2207 `cat $lockfile 2>/dev/null`
cannam@89 2208
cannam@89 2209 but it should contain:
cannam@89 2210 $srcfile
cannam@89 2211
cannam@89 2212 This indicates that another process is trying to use the same
cannam@89 2213 temporary object file, and libtool could not work around it because
cannam@89 2214 your compiler does not support \`-c' and \`-o' together. If you
cannam@89 2215 repeat this compilation, it may succeed, by chance, but you had better
cannam@89 2216 avoid parallel builds (make -j) in this platform, or get a better
cannam@89 2217 compiler."
cannam@89 2218
cannam@89 2219 $opt_dry_run || $RM $removelist
cannam@89 2220 exit $EXIT_FAILURE
cannam@89 2221 fi
cannam@89 2222
cannam@89 2223 # Just move the object if needed, then go on to compile the next one
cannam@89 2224 if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then
cannam@89 2225 func_show_eval '$MV "$output_obj" "$lobj"' \
cannam@89 2226 'error=$?; $opt_dry_run || $RM $removelist; exit $error'
cannam@89 2227 fi
cannam@89 2228
cannam@89 2229 # Allow error messages only from the first compilation.
cannam@89 2230 if test "$suppress_opt" = yes; then
cannam@89 2231 suppress_output=' >/dev/null 2>&1'
cannam@89 2232 fi
cannam@89 2233 fi
cannam@89 2234
cannam@89 2235 # Only build a position-dependent object if we build old libraries.
cannam@89 2236 if test "$build_old_libs" = yes; then
cannam@89 2237 if test "$pic_mode" != yes; then
cannam@89 2238 # Don't build PIC code
cannam@89 2239 command="$base_compile $qsrcfile$pie_flag"
cannam@89 2240 else
cannam@89 2241 command="$base_compile $qsrcfile $pic_flag"
cannam@89 2242 fi
cannam@89 2243 if test "$compiler_c_o" = yes; then
cannam@89 2244 func_append command " -o $obj"
cannam@89 2245 fi
cannam@89 2246
cannam@89 2247 # Suppress compiler output if we already did a PIC compilation.
cannam@89 2248 func_append command "$suppress_output"
cannam@89 2249 func_show_eval_locale "$command" \
cannam@89 2250 '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE'
cannam@89 2251
cannam@89 2252 if test "$need_locks" = warn &&
cannam@89 2253 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
cannam@89 2254 $ECHO "\
cannam@89 2255 *** ERROR, $lockfile contains:
cannam@89 2256 `cat $lockfile 2>/dev/null`
cannam@89 2257
cannam@89 2258 but it should contain:
cannam@89 2259 $srcfile
cannam@89 2260
cannam@89 2261 This indicates that another process is trying to use the same
cannam@89 2262 temporary object file, and libtool could not work around it because
cannam@89 2263 your compiler does not support \`-c' and \`-o' together. If you
cannam@89 2264 repeat this compilation, it may succeed, by chance, but you had better
cannam@89 2265 avoid parallel builds (make -j) in this platform, or get a better
cannam@89 2266 compiler."
cannam@89 2267
cannam@89 2268 $opt_dry_run || $RM $removelist
cannam@89 2269 exit $EXIT_FAILURE
cannam@89 2270 fi
cannam@89 2271
cannam@89 2272 # Just move the object if needed
cannam@89 2273 if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then
cannam@89 2274 func_show_eval '$MV "$output_obj" "$obj"' \
cannam@89 2275 'error=$?; $opt_dry_run || $RM $removelist; exit $error'
cannam@89 2276 fi
cannam@89 2277 fi
cannam@89 2278
cannam@89 2279 $opt_dry_run || {
cannam@89 2280 func_write_libtool_object "$libobj" "$objdir/$objname" "$objname"
cannam@89 2281
cannam@89 2282 # Unlock the critical section if it was locked
cannam@89 2283 if test "$need_locks" != no; then
cannam@89 2284 removelist=$lockfile
cannam@89 2285 $RM "$lockfile"
cannam@89 2286 fi
cannam@89 2287 }
cannam@89 2288
cannam@89 2289 exit $EXIT_SUCCESS
cannam@89 2290 }
cannam@89 2291
cannam@89 2292 $opt_help || {
cannam@89 2293 test "$opt_mode" = compile && func_mode_compile ${1+"$@"}
cannam@89 2294 }
cannam@89 2295
cannam@89 2296 func_mode_help ()
cannam@89 2297 {
cannam@89 2298 # We need to display help for each of the modes.
cannam@89 2299 case $opt_mode in
cannam@89 2300 "")
cannam@89 2301 # Generic help is extracted from the usage comments
cannam@89 2302 # at the start of this file.
cannam@89 2303 func_help
cannam@89 2304 ;;
cannam@89 2305
cannam@89 2306 clean)
cannam@89 2307 $ECHO \
cannam@89 2308 "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
cannam@89 2309
cannam@89 2310 Remove files from the build directory.
cannam@89 2311
cannam@89 2312 RM is the name of the program to use to delete files associated with each FILE
cannam@89 2313 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
cannam@89 2314 to RM.
cannam@89 2315
cannam@89 2316 If FILE is a libtool library, object or program, all the files associated
cannam@89 2317 with it are deleted. Otherwise, only FILE itself is deleted using RM."
cannam@89 2318 ;;
cannam@89 2319
cannam@89 2320 compile)
cannam@89 2321 $ECHO \
cannam@89 2322 "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
cannam@89 2323
cannam@89 2324 Compile a source file into a libtool library object.
cannam@89 2325
cannam@89 2326 This mode accepts the following additional options:
cannam@89 2327
cannam@89 2328 -o OUTPUT-FILE set the output file name to OUTPUT-FILE
cannam@89 2329 -no-suppress do not suppress compiler output for multiple passes
cannam@89 2330 -prefer-pic try to build PIC objects only
cannam@89 2331 -prefer-non-pic try to build non-PIC objects only
cannam@89 2332 -shared do not build a \`.o' file suitable for static linking
cannam@89 2333 -static only build a \`.o' file suitable for static linking
cannam@89 2334 -Wc,FLAG pass FLAG directly to the compiler
cannam@89 2335
cannam@89 2336 COMPILE-COMMAND is a command to be used in creating a \`standard' object file
cannam@89 2337 from the given SOURCEFILE.
cannam@89 2338
cannam@89 2339 The output file name is determined by removing the directory component from
cannam@89 2340 SOURCEFILE, then substituting the C source code suffix \`.c' with the
cannam@89 2341 library object suffix, \`.lo'."
cannam@89 2342 ;;
cannam@89 2343
cannam@89 2344 execute)
cannam@89 2345 $ECHO \
cannam@89 2346 "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]...
cannam@89 2347
cannam@89 2348 Automatically set library path, then run a program.
cannam@89 2349
cannam@89 2350 This mode accepts the following additional options:
cannam@89 2351
cannam@89 2352 -dlopen FILE add the directory containing FILE to the library path
cannam@89 2353
cannam@89 2354 This mode sets the library path environment variable according to \`-dlopen'
cannam@89 2355 flags.
cannam@89 2356
cannam@89 2357 If any of the ARGS are libtool executable wrappers, then they are translated
cannam@89 2358 into their corresponding uninstalled binary, and any of their required library
cannam@89 2359 directories are added to the library path.
cannam@89 2360
cannam@89 2361 Then, COMMAND is executed, with ARGS as arguments."
cannam@89 2362 ;;
cannam@89 2363
cannam@89 2364 finish)
cannam@89 2365 $ECHO \
cannam@89 2366 "Usage: $progname [OPTION]... --mode=finish [LIBDIR]...
cannam@89 2367
cannam@89 2368 Complete the installation of libtool libraries.
cannam@89 2369
cannam@89 2370 Each LIBDIR is a directory that contains libtool libraries.
cannam@89 2371
cannam@89 2372 The commands that this mode executes may require superuser privileges. Use
cannam@89 2373 the \`--dry-run' option if you just want to see what would be executed."
cannam@89 2374 ;;
cannam@89 2375
cannam@89 2376 install)
cannam@89 2377 $ECHO \
cannam@89 2378 "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND...
cannam@89 2379
cannam@89 2380 Install executables or libraries.
cannam@89 2381
cannam@89 2382 INSTALL-COMMAND is the installation command. The first component should be
cannam@89 2383 either the \`install' or \`cp' program.
cannam@89 2384
cannam@89 2385 The following components of INSTALL-COMMAND are treated specially:
cannam@89 2386
cannam@89 2387 -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation
cannam@89 2388
cannam@89 2389 The rest of the components are interpreted as arguments to that command (only
cannam@89 2390 BSD-compatible install options are recognized)."
cannam@89 2391 ;;
cannam@89 2392
cannam@89 2393 link)
cannam@89 2394 $ECHO \
cannam@89 2395 "Usage: $progname [OPTION]... --mode=link LINK-COMMAND...
cannam@89 2396
cannam@89 2397 Link object files or libraries together to form another library, or to
cannam@89 2398 create an executable program.
cannam@89 2399
cannam@89 2400 LINK-COMMAND is a command using the C compiler that you would use to create
cannam@89 2401 a program from several object files.
cannam@89 2402
cannam@89 2403 The following components of LINK-COMMAND are treated specially:
cannam@89 2404
cannam@89 2405 -all-static do not do any dynamic linking at all
cannam@89 2406 -avoid-version do not add a version suffix if possible
cannam@89 2407 -bindir BINDIR specify path to binaries directory (for systems where
cannam@89 2408 libraries must be found in the PATH setting at runtime)
cannam@89 2409 -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
cannam@89 2410 -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols
cannam@89 2411 -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
cannam@89 2412 -export-symbols SYMFILE
cannam@89 2413 try to export only the symbols listed in SYMFILE
cannam@89 2414 -export-symbols-regex REGEX
cannam@89 2415 try to export only the symbols matching REGEX
cannam@89 2416 -LLIBDIR search LIBDIR for required installed libraries
cannam@89 2417 -lNAME OUTPUT-FILE requires the installed library libNAME
cannam@89 2418 -module build a library that can dlopened
cannam@89 2419 -no-fast-install disable the fast-install mode
cannam@89 2420 -no-install link a not-installable executable
cannam@89 2421 -no-undefined declare that a library does not refer to external symbols
cannam@89 2422 -o OUTPUT-FILE create OUTPUT-FILE from the specified objects
cannam@89 2423 -objectlist FILE Use a list of object files found in FILE to specify objects
cannam@89 2424 -precious-files-regex REGEX
cannam@89 2425 don't remove output files matching REGEX
cannam@89 2426 -release RELEASE specify package release information
cannam@89 2427 -rpath LIBDIR the created library will eventually be installed in LIBDIR
cannam@89 2428 -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries
cannam@89 2429 -shared only do dynamic linking of libtool libraries
cannam@89 2430 -shrext SUFFIX override the standard shared library file extension
cannam@89 2431 -static do not do any dynamic linking of uninstalled libtool libraries
cannam@89 2432 -static-libtool-libs
cannam@89 2433 do not do any dynamic linking of libtool libraries
cannam@89 2434 -version-info CURRENT[:REVISION[:AGE]]
cannam@89 2435 specify library version info [each variable defaults to 0]
cannam@89 2436 -weak LIBNAME declare that the target provides the LIBNAME interface
cannam@89 2437 -Wc,FLAG
cannam@89 2438 -Xcompiler FLAG pass linker-specific FLAG directly to the compiler
cannam@89 2439 -Wl,FLAG
cannam@89 2440 -Xlinker FLAG pass linker-specific FLAG directly to the linker
cannam@89 2441 -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC)
cannam@89 2442
cannam@89 2443 All other options (arguments beginning with \`-') are ignored.
cannam@89 2444
cannam@89 2445 Every other argument is treated as a filename. Files ending in \`.la' are
cannam@89 2446 treated as uninstalled libtool libraries, other files are standard or library
cannam@89 2447 object files.
cannam@89 2448
cannam@89 2449 If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
cannam@89 2450 only library objects (\`.lo' files) may be specified, and \`-rpath' is
cannam@89 2451 required, except when creating a convenience library.
cannam@89 2452
cannam@89 2453 If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
cannam@89 2454 using \`ar' and \`ranlib', or on Windows using \`lib'.
cannam@89 2455
cannam@89 2456 If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
cannam@89 2457 is created, otherwise an executable program is created."
cannam@89 2458 ;;
cannam@89 2459
cannam@89 2460 uninstall)
cannam@89 2461 $ECHO \
cannam@89 2462 "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
cannam@89 2463
cannam@89 2464 Remove libraries from an installation directory.
cannam@89 2465
cannam@89 2466 RM is the name of the program to use to delete files associated with each FILE
cannam@89 2467 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
cannam@89 2468 to RM.
cannam@89 2469
cannam@89 2470 If FILE is a libtool library, all the files associated with it are deleted.
cannam@89 2471 Otherwise, only FILE itself is deleted using RM."
cannam@89 2472 ;;
cannam@89 2473
cannam@89 2474 *)
cannam@89 2475 func_fatal_help "invalid operation mode \`$opt_mode'"
cannam@89 2476 ;;
cannam@89 2477 esac
cannam@89 2478
cannam@89 2479 echo
cannam@89 2480 $ECHO "Try \`$progname --help' for more information about other modes."
cannam@89 2481 }
cannam@89 2482
cannam@89 2483 # Now that we've collected a possible --mode arg, show help if necessary
cannam@89 2484 if $opt_help; then
cannam@89 2485 if test "$opt_help" = :; then
cannam@89 2486 func_mode_help
cannam@89 2487 else
cannam@89 2488 {
cannam@89 2489 func_help noexit
cannam@89 2490 for opt_mode in compile link execute install finish uninstall clean; do
cannam@89 2491 func_mode_help
cannam@89 2492 done
cannam@89 2493 } | sed -n '1p; 2,$s/^Usage:/ or: /p'
cannam@89 2494 {
cannam@89 2495 func_help noexit
cannam@89 2496 for opt_mode in compile link execute install finish uninstall clean; do
cannam@89 2497 echo
cannam@89 2498 func_mode_help
cannam@89 2499 done
cannam@89 2500 } |
cannam@89 2501 sed '1d
cannam@89 2502 /^When reporting/,/^Report/{
cannam@89 2503 H
cannam@89 2504 d
cannam@89 2505 }
cannam@89 2506 $x
cannam@89 2507 /information about other modes/d
cannam@89 2508 /more detailed .*MODE/d
cannam@89 2509 s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/'
cannam@89 2510 fi
cannam@89 2511 exit $?
cannam@89 2512 fi
cannam@89 2513
cannam@89 2514
cannam@89 2515 # func_mode_execute arg...
cannam@89 2516 func_mode_execute ()
cannam@89 2517 {
cannam@89 2518 $opt_debug
cannam@89 2519 # The first argument is the command name.
cannam@89 2520 cmd="$nonopt"
cannam@89 2521 test -z "$cmd" && \
cannam@89 2522 func_fatal_help "you must specify a COMMAND"
cannam@89 2523
cannam@89 2524 # Handle -dlopen flags immediately.
cannam@89 2525 for file in $opt_dlopen; do
cannam@89 2526 test -f "$file" \
cannam@89 2527 || func_fatal_help "\`$file' is not a file"
cannam@89 2528
cannam@89 2529 dir=
cannam@89 2530 case $file in
cannam@89 2531 *.la)
cannam@89 2532 func_resolve_sysroot "$file"
cannam@89 2533 file=$func_resolve_sysroot_result
cannam@89 2534
cannam@89 2535 # Check to see that this really is a libtool archive.
cannam@89 2536 func_lalib_unsafe_p "$file" \
cannam@89 2537 || func_fatal_help "\`$lib' is not a valid libtool archive"
cannam@89 2538
cannam@89 2539 # Read the libtool library.
cannam@89 2540 dlname=
cannam@89 2541 library_names=
cannam@89 2542 func_source "$file"
cannam@89 2543
cannam@89 2544 # Skip this library if it cannot be dlopened.
cannam@89 2545 if test -z "$dlname"; then
cannam@89 2546 # Warn if it was a shared library.
cannam@89 2547 test -n "$library_names" && \
cannam@89 2548 func_warning "\`$file' was not linked with \`-export-dynamic'"
cannam@89 2549 continue
cannam@89 2550 fi
cannam@89 2551
cannam@89 2552 func_dirname "$file" "" "."
cannam@89 2553 dir="$func_dirname_result"
cannam@89 2554
cannam@89 2555 if test -f "$dir/$objdir/$dlname"; then
cannam@89 2556 func_append dir "/$objdir"
cannam@89 2557 else
cannam@89 2558 if test ! -f "$dir/$dlname"; then
cannam@89 2559 func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'"
cannam@89 2560 fi
cannam@89 2561 fi
cannam@89 2562 ;;
cannam@89 2563
cannam@89 2564 *.lo)
cannam@89 2565 # Just add the directory containing the .lo file.
cannam@89 2566 func_dirname "$file" "" "."
cannam@89 2567 dir="$func_dirname_result"
cannam@89 2568 ;;
cannam@89 2569
cannam@89 2570 *)
cannam@89 2571 func_warning "\`-dlopen' is ignored for non-libtool libraries and objects"
cannam@89 2572 continue
cannam@89 2573 ;;
cannam@89 2574 esac
cannam@89 2575
cannam@89 2576 # Get the absolute pathname.
cannam@89 2577 absdir=`cd "$dir" && pwd`
cannam@89 2578 test -n "$absdir" && dir="$absdir"
cannam@89 2579
cannam@89 2580 # Now add the directory to shlibpath_var.
cannam@89 2581 if eval "test -z \"\$$shlibpath_var\""; then
cannam@89 2582 eval "$shlibpath_var=\"\$dir\""
cannam@89 2583 else
cannam@89 2584 eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
cannam@89 2585 fi
cannam@89 2586 done
cannam@89 2587
cannam@89 2588 # This variable tells wrapper scripts just to set shlibpath_var
cannam@89 2589 # rather than running their programs.
cannam@89 2590 libtool_execute_magic="$magic"
cannam@89 2591
cannam@89 2592 # Check if any of the arguments is a wrapper script.
cannam@89 2593 args=
cannam@89 2594 for file
cannam@89 2595 do
cannam@89 2596 case $file in
cannam@89 2597 -* | *.la | *.lo ) ;;
cannam@89 2598 *)
cannam@89 2599 # Do a test to see if this is really a libtool program.
cannam@89 2600 if func_ltwrapper_script_p "$file"; then
cannam@89 2601 func_source "$file"
cannam@89 2602 # Transform arg to wrapped name.
cannam@89 2603 file="$progdir/$program"
cannam@89 2604 elif func_ltwrapper_executable_p "$file"; then
cannam@89 2605 func_ltwrapper_scriptname "$file"
cannam@89 2606 func_source "$func_ltwrapper_scriptname_result"
cannam@89 2607 # Transform arg to wrapped name.
cannam@89 2608 file="$progdir/$program"
cannam@89 2609 fi
cannam@89 2610 ;;
cannam@89 2611 esac
cannam@89 2612 # Quote arguments (to preserve shell metacharacters).
cannam@89 2613 func_append_quoted args "$file"
cannam@89 2614 done
cannam@89 2615
cannam@89 2616 if test "X$opt_dry_run" = Xfalse; then
cannam@89 2617 if test -n "$shlibpath_var"; then
cannam@89 2618 # Export the shlibpath_var.
cannam@89 2619 eval "export $shlibpath_var"
cannam@89 2620 fi
cannam@89 2621
cannam@89 2622 # Restore saved environment variables
cannam@89 2623 for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
cannam@89 2624 do
cannam@89 2625 eval "if test \"\${save_$lt_var+set}\" = set; then
cannam@89 2626 $lt_var=\$save_$lt_var; export $lt_var
cannam@89 2627 else
cannam@89 2628 $lt_unset $lt_var
cannam@89 2629 fi"
cannam@89 2630 done
cannam@89 2631
cannam@89 2632 # Now prepare to actually exec the command.
cannam@89 2633 exec_cmd="\$cmd$args"
cannam@89 2634 else
cannam@89 2635 # Display what would be done.
cannam@89 2636 if test -n "$shlibpath_var"; then
cannam@89 2637 eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\""
cannam@89 2638 echo "export $shlibpath_var"
cannam@89 2639 fi
cannam@89 2640 $ECHO "$cmd$args"
cannam@89 2641 exit $EXIT_SUCCESS
cannam@89 2642 fi
cannam@89 2643 }
cannam@89 2644
cannam@89 2645 test "$opt_mode" = execute && func_mode_execute ${1+"$@"}
cannam@89 2646
cannam@89 2647
cannam@89 2648 # func_mode_finish arg...
cannam@89 2649 func_mode_finish ()
cannam@89 2650 {
cannam@89 2651 $opt_debug
cannam@89 2652 libs=
cannam@89 2653 libdirs=
cannam@89 2654 admincmds=
cannam@89 2655
cannam@89 2656 for opt in "$nonopt" ${1+"$@"}
cannam@89 2657 do
cannam@89 2658 if test -d "$opt"; then
cannam@89 2659 func_append libdirs " $opt"
cannam@89 2660
cannam@89 2661 elif test -f "$opt"; then
cannam@89 2662 if func_lalib_unsafe_p "$opt"; then
cannam@89 2663 func_append libs " $opt"
cannam@89 2664 else
cannam@89 2665 func_warning "\`$opt' is not a valid libtool archive"
cannam@89 2666 fi
cannam@89 2667
cannam@89 2668 else
cannam@89 2669 func_fatal_error "invalid argument \`$opt'"
cannam@89 2670 fi
cannam@89 2671 done
cannam@89 2672
cannam@89 2673 if test -n "$libs"; then
cannam@89 2674 if test -n "$lt_sysroot"; then
cannam@89 2675 sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"`
cannam@89 2676 sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;"
cannam@89 2677 else
cannam@89 2678 sysroot_cmd=
cannam@89 2679 fi
cannam@89 2680
cannam@89 2681 # Remove sysroot references
cannam@89 2682 if $opt_dry_run; then
cannam@89 2683 for lib in $libs; do
cannam@89 2684 echo "removing references to $lt_sysroot and \`=' prefixes from $lib"
cannam@89 2685 done
cannam@89 2686 else
cannam@89 2687 tmpdir=`func_mktempdir`
cannam@89 2688 for lib in $libs; do
cannam@89 2689 sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \
cannam@89 2690 > $tmpdir/tmp-la
cannam@89 2691 mv -f $tmpdir/tmp-la $lib
cannam@89 2692 done
cannam@89 2693 ${RM}r "$tmpdir"
cannam@89 2694 fi
cannam@89 2695 fi
cannam@89 2696
cannam@89 2697 if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
cannam@89 2698 for libdir in $libdirs; do
cannam@89 2699 if test -n "$finish_cmds"; then
cannam@89 2700 # Do each command in the finish commands.
cannam@89 2701 func_execute_cmds "$finish_cmds" 'admincmds="$admincmds
cannam@89 2702 '"$cmd"'"'
cannam@89 2703 fi
cannam@89 2704 if test -n "$finish_eval"; then
cannam@89 2705 # Do the single finish_eval.
cannam@89 2706 eval cmds=\"$finish_eval\"
cannam@89 2707 $opt_dry_run || eval "$cmds" || func_append admincmds "
cannam@89 2708 $cmds"
cannam@89 2709 fi
cannam@89 2710 done
cannam@89 2711 fi
cannam@89 2712
cannam@89 2713 # Exit here if they wanted silent mode.
cannam@89 2714 $opt_silent && exit $EXIT_SUCCESS
cannam@89 2715
cannam@89 2716 if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
cannam@89 2717 echo "----------------------------------------------------------------------"
cannam@89 2718 echo "Libraries have been installed in:"
cannam@89 2719 for libdir in $libdirs; do
cannam@89 2720 $ECHO " $libdir"
cannam@89 2721 done
cannam@89 2722 echo
cannam@89 2723 echo "If you ever happen to want to link against installed libraries"
cannam@89 2724 echo "in a given directory, LIBDIR, you must either use libtool, and"
cannam@89 2725 echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
cannam@89 2726 echo "flag during linking and do at least one of the following:"
cannam@89 2727 if test -n "$shlibpath_var"; then
cannam@89 2728 echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
cannam@89 2729 echo " during execution"
cannam@89 2730 fi
cannam@89 2731 if test -n "$runpath_var"; then
cannam@89 2732 echo " - add LIBDIR to the \`$runpath_var' environment variable"
cannam@89 2733 echo " during linking"
cannam@89 2734 fi
cannam@89 2735 if test -n "$hardcode_libdir_flag_spec"; then
cannam@89 2736 libdir=LIBDIR
cannam@89 2737 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@89 2738
cannam@89 2739 $ECHO " - use the \`$flag' linker flag"
cannam@89 2740 fi
cannam@89 2741 if test -n "$admincmds"; then
cannam@89 2742 $ECHO " - have your system administrator run these commands:$admincmds"
cannam@89 2743 fi
cannam@89 2744 if test -f /etc/ld.so.conf; then
cannam@89 2745 echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
cannam@89 2746 fi
cannam@89 2747 echo
cannam@89 2748
cannam@89 2749 echo "See any operating system documentation about shared libraries for"
cannam@89 2750 case $host in
cannam@89 2751 solaris2.[6789]|solaris2.1[0-9])
cannam@89 2752 echo "more information, such as the ld(1), crle(1) and ld.so(8) manual"
cannam@89 2753 echo "pages."
cannam@89 2754 ;;
cannam@89 2755 *)
cannam@89 2756 echo "more information, such as the ld(1) and ld.so(8) manual pages."
cannam@89 2757 ;;
cannam@89 2758 esac
cannam@89 2759 echo "----------------------------------------------------------------------"
cannam@89 2760 fi
cannam@89 2761 exit $EXIT_SUCCESS
cannam@89 2762 }
cannam@89 2763
cannam@89 2764 test "$opt_mode" = finish && func_mode_finish ${1+"$@"}
cannam@89 2765
cannam@89 2766
cannam@89 2767 # func_mode_install arg...
cannam@89 2768 func_mode_install ()
cannam@89 2769 {
cannam@89 2770 $opt_debug
cannam@89 2771 # There may be an optional sh(1) argument at the beginning of
cannam@89 2772 # install_prog (especially on Windows NT).
cannam@89 2773 if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
cannam@89 2774 # Allow the use of GNU shtool's install command.
cannam@89 2775 case $nonopt in *shtool*) :;; *) false;; esac; then
cannam@89 2776 # Aesthetically quote it.
cannam@89 2777 func_quote_for_eval "$nonopt"
cannam@89 2778 install_prog="$func_quote_for_eval_result "
cannam@89 2779 arg=$1
cannam@89 2780 shift
cannam@89 2781 else
cannam@89 2782 install_prog=
cannam@89 2783 arg=$nonopt
cannam@89 2784 fi
cannam@89 2785
cannam@89 2786 # The real first argument should be the name of the installation program.
cannam@89 2787 # Aesthetically quote it.
cannam@89 2788 func_quote_for_eval "$arg"
cannam@89 2789 func_append install_prog "$func_quote_for_eval_result"
cannam@89 2790 install_shared_prog=$install_prog
cannam@89 2791 case " $install_prog " in
cannam@89 2792 *[\\\ /]cp\ *) install_cp=: ;;
cannam@89 2793 *) install_cp=false ;;
cannam@89 2794 esac
cannam@89 2795
cannam@89 2796 # We need to accept at least all the BSD install flags.
cannam@89 2797 dest=
cannam@89 2798 files=
cannam@89 2799 opts=
cannam@89 2800 prev=
cannam@89 2801 install_type=
cannam@89 2802 isdir=no
cannam@89 2803 stripme=
cannam@89 2804 no_mode=:
cannam@89 2805 for arg
cannam@89 2806 do
cannam@89 2807 arg2=
cannam@89 2808 if test -n "$dest"; then
cannam@89 2809 func_append files " $dest"
cannam@89 2810 dest=$arg
cannam@89 2811 continue
cannam@89 2812 fi
cannam@89 2813
cannam@89 2814 case $arg in
cannam@89 2815 -d) isdir=yes ;;
cannam@89 2816 -f)
cannam@89 2817 if $install_cp; then :; else
cannam@89 2818 prev=$arg
cannam@89 2819 fi
cannam@89 2820 ;;
cannam@89 2821 -g | -m | -o)
cannam@89 2822 prev=$arg
cannam@89 2823 ;;
cannam@89 2824 -s)
cannam@89 2825 stripme=" -s"
cannam@89 2826 continue
cannam@89 2827 ;;
cannam@89 2828 -*)
cannam@89 2829 ;;
cannam@89 2830 *)
cannam@89 2831 # If the previous option needed an argument, then skip it.
cannam@89 2832 if test -n "$prev"; then
cannam@89 2833 if test "x$prev" = x-m && test -n "$install_override_mode"; then
cannam@89 2834 arg2=$install_override_mode
cannam@89 2835 no_mode=false
cannam@89 2836 fi
cannam@89 2837 prev=
cannam@89 2838 else
cannam@89 2839 dest=$arg
cannam@89 2840 continue
cannam@89 2841 fi
cannam@89 2842 ;;
cannam@89 2843 esac
cannam@89 2844
cannam@89 2845 # Aesthetically quote the argument.
cannam@89 2846 func_quote_for_eval "$arg"
cannam@89 2847 func_append install_prog " $func_quote_for_eval_result"
cannam@89 2848 if test -n "$arg2"; then
cannam@89 2849 func_quote_for_eval "$arg2"
cannam@89 2850 fi
cannam@89 2851 func_append install_shared_prog " $func_quote_for_eval_result"
cannam@89 2852 done
cannam@89 2853
cannam@89 2854 test -z "$install_prog" && \
cannam@89 2855 func_fatal_help "you must specify an install program"
cannam@89 2856
cannam@89 2857 test -n "$prev" && \
cannam@89 2858 func_fatal_help "the \`$prev' option requires an argument"
cannam@89 2859
cannam@89 2860 if test -n "$install_override_mode" && $no_mode; then
cannam@89 2861 if $install_cp; then :; else
cannam@89 2862 func_quote_for_eval "$install_override_mode"
cannam@89 2863 func_append install_shared_prog " -m $func_quote_for_eval_result"
cannam@89 2864 fi
cannam@89 2865 fi
cannam@89 2866
cannam@89 2867 if test -z "$files"; then
cannam@89 2868 if test -z "$dest"; then
cannam@89 2869 func_fatal_help "no file or destination specified"
cannam@89 2870 else
cannam@89 2871 func_fatal_help "you must specify a destination"
cannam@89 2872 fi
cannam@89 2873 fi
cannam@89 2874
cannam@89 2875 # Strip any trailing slash from the destination.
cannam@89 2876 func_stripname '' '/' "$dest"
cannam@89 2877 dest=$func_stripname_result
cannam@89 2878
cannam@89 2879 # Check to see that the destination is a directory.
cannam@89 2880 test -d "$dest" && isdir=yes
cannam@89 2881 if test "$isdir" = yes; then
cannam@89 2882 destdir="$dest"
cannam@89 2883 destname=
cannam@89 2884 else
cannam@89 2885 func_dirname_and_basename "$dest" "" "."
cannam@89 2886 destdir="$func_dirname_result"
cannam@89 2887 destname="$func_basename_result"
cannam@89 2888
cannam@89 2889 # Not a directory, so check to see that there is only one file specified.
cannam@89 2890 set dummy $files; shift
cannam@89 2891 test "$#" -gt 1 && \
cannam@89 2892 func_fatal_help "\`$dest' is not a directory"
cannam@89 2893 fi
cannam@89 2894 case $destdir in
cannam@89 2895 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@89 2896 *)
cannam@89 2897 for file in $files; do
cannam@89 2898 case $file in
cannam@89 2899 *.lo) ;;
cannam@89 2900 *)
cannam@89 2901 func_fatal_help "\`$destdir' must be an absolute directory name"
cannam@89 2902 ;;
cannam@89 2903 esac
cannam@89 2904 done
cannam@89 2905 ;;
cannam@89 2906 esac
cannam@89 2907
cannam@89 2908 # This variable tells wrapper scripts just to set variables rather
cannam@89 2909 # than running their programs.
cannam@89 2910 libtool_install_magic="$magic"
cannam@89 2911
cannam@89 2912 staticlibs=
cannam@89 2913 future_libdirs=
cannam@89 2914 current_libdirs=
cannam@89 2915 for file in $files; do
cannam@89 2916
cannam@89 2917 # Do each installation.
cannam@89 2918 case $file in
cannam@89 2919 *.$libext)
cannam@89 2920 # Do the static libraries later.
cannam@89 2921 func_append staticlibs " $file"
cannam@89 2922 ;;
cannam@89 2923
cannam@89 2924 *.la)
cannam@89 2925 func_resolve_sysroot "$file"
cannam@89 2926 file=$func_resolve_sysroot_result
cannam@89 2927
cannam@89 2928 # Check to see that this really is a libtool archive.
cannam@89 2929 func_lalib_unsafe_p "$file" \
cannam@89 2930 || func_fatal_help "\`$file' is not a valid libtool archive"
cannam@89 2931
cannam@89 2932 library_names=
cannam@89 2933 old_library=
cannam@89 2934 relink_command=
cannam@89 2935 func_source "$file"
cannam@89 2936
cannam@89 2937 # Add the libdir to current_libdirs if it is the destination.
cannam@89 2938 if test "X$destdir" = "X$libdir"; then
cannam@89 2939 case "$current_libdirs " in
cannam@89 2940 *" $libdir "*) ;;
cannam@89 2941 *) func_append current_libdirs " $libdir" ;;
cannam@89 2942 esac
cannam@89 2943 else
cannam@89 2944 # Note the libdir as a future libdir.
cannam@89 2945 case "$future_libdirs " in
cannam@89 2946 *" $libdir "*) ;;
cannam@89 2947 *) func_append future_libdirs " $libdir" ;;
cannam@89 2948 esac
cannam@89 2949 fi
cannam@89 2950
cannam@89 2951 func_dirname "$file" "/" ""
cannam@89 2952 dir="$func_dirname_result"
cannam@89 2953 func_append dir "$objdir"
cannam@89 2954
cannam@89 2955 if test -n "$relink_command"; then
cannam@89 2956 # Determine the prefix the user has applied to our future dir.
cannam@89 2957 inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"`
cannam@89 2958
cannam@89 2959 # Don't allow the user to place us outside of our expected
cannam@89 2960 # location b/c this prevents finding dependent libraries that
cannam@89 2961 # are installed to the same prefix.
cannam@89 2962 # At present, this check doesn't affect windows .dll's that
cannam@89 2963 # are installed into $libdir/../bin (currently, that works fine)
cannam@89 2964 # but it's something to keep an eye on.
cannam@89 2965 test "$inst_prefix_dir" = "$destdir" && \
cannam@89 2966 func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir"
cannam@89 2967
cannam@89 2968 if test -n "$inst_prefix_dir"; then
cannam@89 2969 # Stick the inst_prefix_dir data into the link command.
cannam@89 2970 relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
cannam@89 2971 else
cannam@89 2972 relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
cannam@89 2973 fi
cannam@89 2974
cannam@89 2975 func_warning "relinking \`$file'"
cannam@89 2976 func_show_eval "$relink_command" \
cannam@89 2977 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"'
cannam@89 2978 fi
cannam@89 2979
cannam@89 2980 # See the names of the shared library.
cannam@89 2981 set dummy $library_names; shift
cannam@89 2982 if test -n "$1"; then
cannam@89 2983 realname="$1"
cannam@89 2984 shift
cannam@89 2985
cannam@89 2986 srcname="$realname"
cannam@89 2987 test -n "$relink_command" && srcname="$realname"T
cannam@89 2988
cannam@89 2989 # Install the shared library and build the symlinks.
cannam@89 2990 func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \
cannam@89 2991 'exit $?'
cannam@89 2992 tstripme="$stripme"
cannam@89 2993 case $host_os in
cannam@89 2994 cygwin* | mingw* | pw32* | cegcc*)
cannam@89 2995 case $realname in
cannam@89 2996 *.dll.a)
cannam@89 2997 tstripme=""
cannam@89 2998 ;;
cannam@89 2999 esac
cannam@89 3000 ;;
cannam@89 3001 esac
cannam@89 3002 if test -n "$tstripme" && test -n "$striplib"; then
cannam@89 3003 func_show_eval "$striplib $destdir/$realname" 'exit $?'
cannam@89 3004 fi
cannam@89 3005
cannam@89 3006 if test "$#" -gt 0; then
cannam@89 3007 # Delete the old symlinks, and create new ones.
cannam@89 3008 # Try `ln -sf' first, because the `ln' binary might depend on
cannam@89 3009 # the symlink we replace! Solaris /bin/ln does not understand -f,
cannam@89 3010 # so we also need to try rm && ln -s.
cannam@89 3011 for linkname
cannam@89 3012 do
cannam@89 3013 test "$linkname" != "$realname" \
cannam@89 3014 && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })"
cannam@89 3015 done
cannam@89 3016 fi
cannam@89 3017
cannam@89 3018 # Do each command in the postinstall commands.
cannam@89 3019 lib="$destdir/$realname"
cannam@89 3020 func_execute_cmds "$postinstall_cmds" 'exit $?'
cannam@89 3021 fi
cannam@89 3022
cannam@89 3023 # Install the pseudo-library for information purposes.
cannam@89 3024 func_basename "$file"
cannam@89 3025 name="$func_basename_result"
cannam@89 3026 instname="$dir/$name"i
cannam@89 3027 func_show_eval "$install_prog $instname $destdir/$name" 'exit $?'
cannam@89 3028
cannam@89 3029 # Maybe install the static library, too.
cannam@89 3030 test -n "$old_library" && func_append staticlibs " $dir/$old_library"
cannam@89 3031 ;;
cannam@89 3032
cannam@89 3033 *.lo)
cannam@89 3034 # Install (i.e. copy) a libtool object.
cannam@89 3035
cannam@89 3036 # Figure out destination file name, if it wasn't already specified.
cannam@89 3037 if test -n "$destname"; then
cannam@89 3038 destfile="$destdir/$destname"
cannam@89 3039 else
cannam@89 3040 func_basename "$file"
cannam@89 3041 destfile="$func_basename_result"
cannam@89 3042 destfile="$destdir/$destfile"
cannam@89 3043 fi
cannam@89 3044
cannam@89 3045 # Deduce the name of the destination old-style object file.
cannam@89 3046 case $destfile in
cannam@89 3047 *.lo)
cannam@89 3048 func_lo2o "$destfile"
cannam@89 3049 staticdest=$func_lo2o_result
cannam@89 3050 ;;
cannam@89 3051 *.$objext)
cannam@89 3052 staticdest="$destfile"
cannam@89 3053 destfile=
cannam@89 3054 ;;
cannam@89 3055 *)
cannam@89 3056 func_fatal_help "cannot copy a libtool object to \`$destfile'"
cannam@89 3057 ;;
cannam@89 3058 esac
cannam@89 3059
cannam@89 3060 # Install the libtool object if requested.
cannam@89 3061 test -n "$destfile" && \
cannam@89 3062 func_show_eval "$install_prog $file $destfile" 'exit $?'
cannam@89 3063
cannam@89 3064 # Install the old object if enabled.
cannam@89 3065 if test "$build_old_libs" = yes; then
cannam@89 3066 # Deduce the name of the old-style object file.
cannam@89 3067 func_lo2o "$file"
cannam@89 3068 staticobj=$func_lo2o_result
cannam@89 3069 func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?'
cannam@89 3070 fi
cannam@89 3071 exit $EXIT_SUCCESS
cannam@89 3072 ;;
cannam@89 3073
cannam@89 3074 *)
cannam@89 3075 # Figure out destination file name, if it wasn't already specified.
cannam@89 3076 if test -n "$destname"; then
cannam@89 3077 destfile="$destdir/$destname"
cannam@89 3078 else
cannam@89 3079 func_basename "$file"
cannam@89 3080 destfile="$func_basename_result"
cannam@89 3081 destfile="$destdir/$destfile"
cannam@89 3082 fi
cannam@89 3083
cannam@89 3084 # If the file is missing, and there is a .exe on the end, strip it
cannam@89 3085 # because it is most likely a libtool script we actually want to
cannam@89 3086 # install
cannam@89 3087 stripped_ext=""
cannam@89 3088 case $file in
cannam@89 3089 *.exe)
cannam@89 3090 if test ! -f "$file"; then
cannam@89 3091 func_stripname '' '.exe' "$file"
cannam@89 3092 file=$func_stripname_result
cannam@89 3093 stripped_ext=".exe"
cannam@89 3094 fi
cannam@89 3095 ;;
cannam@89 3096 esac
cannam@89 3097
cannam@89 3098 # Do a test to see if this is really a libtool program.
cannam@89 3099 case $host in
cannam@89 3100 *cygwin* | *mingw*)
cannam@89 3101 if func_ltwrapper_executable_p "$file"; then
cannam@89 3102 func_ltwrapper_scriptname "$file"
cannam@89 3103 wrapper=$func_ltwrapper_scriptname_result
cannam@89 3104 else
cannam@89 3105 func_stripname '' '.exe' "$file"
cannam@89 3106 wrapper=$func_stripname_result
cannam@89 3107 fi
cannam@89 3108 ;;
cannam@89 3109 *)
cannam@89 3110 wrapper=$file
cannam@89 3111 ;;
cannam@89 3112 esac
cannam@89 3113 if func_ltwrapper_script_p "$wrapper"; then
cannam@89 3114 notinst_deplibs=
cannam@89 3115 relink_command=
cannam@89 3116
cannam@89 3117 func_source "$wrapper"
cannam@89 3118
cannam@89 3119 # Check the variables that should have been set.
cannam@89 3120 test -z "$generated_by_libtool_version" && \
cannam@89 3121 func_fatal_error "invalid libtool wrapper script \`$wrapper'"
cannam@89 3122
cannam@89 3123 finalize=yes
cannam@89 3124 for lib in $notinst_deplibs; do
cannam@89 3125 # Check to see that each library is installed.
cannam@89 3126 libdir=
cannam@89 3127 if test -f "$lib"; then
cannam@89 3128 func_source "$lib"
cannam@89 3129 fi
cannam@89 3130 libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test
cannam@89 3131 if test -n "$libdir" && test ! -f "$libfile"; then
cannam@89 3132 func_warning "\`$lib' has not been installed in \`$libdir'"
cannam@89 3133 finalize=no
cannam@89 3134 fi
cannam@89 3135 done
cannam@89 3136
cannam@89 3137 relink_command=
cannam@89 3138 func_source "$wrapper"
cannam@89 3139
cannam@89 3140 outputname=
cannam@89 3141 if test "$fast_install" = no && test -n "$relink_command"; then
cannam@89 3142 $opt_dry_run || {
cannam@89 3143 if test "$finalize" = yes; then
cannam@89 3144 tmpdir=`func_mktempdir`
cannam@89 3145 func_basename "$file$stripped_ext"
cannam@89 3146 file="$func_basename_result"
cannam@89 3147 outputname="$tmpdir/$file"
cannam@89 3148 # Replace the output file specification.
cannam@89 3149 relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'`
cannam@89 3150
cannam@89 3151 $opt_silent || {
cannam@89 3152 func_quote_for_expand "$relink_command"
cannam@89 3153 eval "func_echo $func_quote_for_expand_result"
cannam@89 3154 }
cannam@89 3155 if eval "$relink_command"; then :
cannam@89 3156 else
cannam@89 3157 func_error "error: relink \`$file' with the above command before installing it"
cannam@89 3158 $opt_dry_run || ${RM}r "$tmpdir"
cannam@89 3159 continue
cannam@89 3160 fi
cannam@89 3161 file="$outputname"
cannam@89 3162 else
cannam@89 3163 func_warning "cannot relink \`$file'"
cannam@89 3164 fi
cannam@89 3165 }
cannam@89 3166 else
cannam@89 3167 # Install the binary that we compiled earlier.
cannam@89 3168 file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"`
cannam@89 3169 fi
cannam@89 3170 fi
cannam@89 3171
cannam@89 3172 # remove .exe since cygwin /usr/bin/install will append another
cannam@89 3173 # one anyway
cannam@89 3174 case $install_prog,$host in
cannam@89 3175 */usr/bin/install*,*cygwin*)
cannam@89 3176 case $file:$destfile in
cannam@89 3177 *.exe:*.exe)
cannam@89 3178 # this is ok
cannam@89 3179 ;;
cannam@89 3180 *.exe:*)
cannam@89 3181 destfile=$destfile.exe
cannam@89 3182 ;;
cannam@89 3183 *:*.exe)
cannam@89 3184 func_stripname '' '.exe' "$destfile"
cannam@89 3185 destfile=$func_stripname_result
cannam@89 3186 ;;
cannam@89 3187 esac
cannam@89 3188 ;;
cannam@89 3189 esac
cannam@89 3190 func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?'
cannam@89 3191 $opt_dry_run || if test -n "$outputname"; then
cannam@89 3192 ${RM}r "$tmpdir"
cannam@89 3193 fi
cannam@89 3194 ;;
cannam@89 3195 esac
cannam@89 3196 done
cannam@89 3197
cannam@89 3198 for file in $staticlibs; do
cannam@89 3199 func_basename "$file"
cannam@89 3200 name="$func_basename_result"
cannam@89 3201
cannam@89 3202 # Set up the ranlib parameters.
cannam@89 3203 oldlib="$destdir/$name"
cannam@89 3204
cannam@89 3205 func_show_eval "$install_prog \$file \$oldlib" 'exit $?'
cannam@89 3206
cannam@89 3207 if test -n "$stripme" && test -n "$old_striplib"; then
cannam@89 3208 func_show_eval "$old_striplib $oldlib" 'exit $?'
cannam@89 3209 fi
cannam@89 3210
cannam@89 3211 # Do each command in the postinstall commands.
cannam@89 3212 func_execute_cmds "$old_postinstall_cmds" 'exit $?'
cannam@89 3213 done
cannam@89 3214
cannam@89 3215 test -n "$future_libdirs" && \
cannam@89 3216 func_warning "remember to run \`$progname --finish$future_libdirs'"
cannam@89 3217
cannam@89 3218 if test -n "$current_libdirs"; then
cannam@89 3219 # Maybe just do a dry run.
cannam@89 3220 $opt_dry_run && current_libdirs=" -n$current_libdirs"
cannam@89 3221 exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs'
cannam@89 3222 else
cannam@89 3223 exit $EXIT_SUCCESS
cannam@89 3224 fi
cannam@89 3225 }
cannam@89 3226
cannam@89 3227 test "$opt_mode" = install && func_mode_install ${1+"$@"}
cannam@89 3228
cannam@89 3229
cannam@89 3230 # func_generate_dlsyms outputname originator pic_p
cannam@89 3231 # Extract symbols from dlprefiles and create ${outputname}S.o with
cannam@89 3232 # a dlpreopen symbol table.
cannam@89 3233 func_generate_dlsyms ()
cannam@89 3234 {
cannam@89 3235 $opt_debug
cannam@89 3236 my_outputname="$1"
cannam@89 3237 my_originator="$2"
cannam@89 3238 my_pic_p="${3-no}"
cannam@89 3239 my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'`
cannam@89 3240 my_dlsyms=
cannam@89 3241
cannam@89 3242 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@89 3243 if test -n "$NM" && test -n "$global_symbol_pipe"; then
cannam@89 3244 my_dlsyms="${my_outputname}S.c"
cannam@89 3245 else
cannam@89 3246 func_error "not configured to extract global symbols from dlpreopened files"
cannam@89 3247 fi
cannam@89 3248 fi
cannam@89 3249
cannam@89 3250 if test -n "$my_dlsyms"; then
cannam@89 3251 case $my_dlsyms in
cannam@89 3252 "") ;;
cannam@89 3253 *.c)
cannam@89 3254 # Discover the nlist of each of the dlfiles.
cannam@89 3255 nlist="$output_objdir/${my_outputname}.nm"
cannam@89 3256
cannam@89 3257 func_show_eval "$RM $nlist ${nlist}S ${nlist}T"
cannam@89 3258
cannam@89 3259 # Parse the name list into a source file.
cannam@89 3260 func_verbose "creating $output_objdir/$my_dlsyms"
cannam@89 3261
cannam@89 3262 $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\
cannam@89 3263 /* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */
cannam@89 3264 /* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */
cannam@89 3265
cannam@89 3266 #ifdef __cplusplus
cannam@89 3267 extern \"C\" {
cannam@89 3268 #endif
cannam@89 3269
cannam@89 3270 #if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4))
cannam@89 3271 #pragma GCC diagnostic ignored \"-Wstrict-prototypes\"
cannam@89 3272 #endif
cannam@89 3273
cannam@89 3274 /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */
cannam@89 3275 #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE)
cannam@89 3276 /* DATA imports from DLLs on WIN32 con't be const, because runtime
cannam@89 3277 relocations are performed -- see ld's documentation on pseudo-relocs. */
cannam@89 3278 # define LT_DLSYM_CONST
cannam@89 3279 #elif defined(__osf__)
cannam@89 3280 /* This system does not cope well with relocations in const data. */
cannam@89 3281 # define LT_DLSYM_CONST
cannam@89 3282 #else
cannam@89 3283 # define LT_DLSYM_CONST const
cannam@89 3284 #endif
cannam@89 3285
cannam@89 3286 /* External symbol declarations for the compiler. */\
cannam@89 3287 "
cannam@89 3288
cannam@89 3289 if test "$dlself" = yes; then
cannam@89 3290 func_verbose "generating symbol list for \`$output'"
cannam@89 3291
cannam@89 3292 $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist"
cannam@89 3293
cannam@89 3294 # Add our own program objects to the symbol list.
cannam@89 3295 progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@89 3296 for progfile in $progfiles; do
cannam@89 3297 func_to_tool_file "$progfile" func_convert_file_msys_to_w32
cannam@89 3298 func_verbose "extracting global C symbols from \`$func_to_tool_file_result'"
cannam@89 3299 $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'"
cannam@89 3300 done
cannam@89 3301
cannam@89 3302 if test -n "$exclude_expsyms"; then
cannam@89 3303 $opt_dry_run || {
cannam@89 3304 eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
cannam@89 3305 eval '$MV "$nlist"T "$nlist"'
cannam@89 3306 }
cannam@89 3307 fi
cannam@89 3308
cannam@89 3309 if test -n "$export_symbols_regex"; then
cannam@89 3310 $opt_dry_run || {
cannam@89 3311 eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T'
cannam@89 3312 eval '$MV "$nlist"T "$nlist"'
cannam@89 3313 }
cannam@89 3314 fi
cannam@89 3315
cannam@89 3316 # Prepare the list of exported symbols
cannam@89 3317 if test -z "$export_symbols"; then
cannam@89 3318 export_symbols="$output_objdir/$outputname.exp"
cannam@89 3319 $opt_dry_run || {
cannam@89 3320 $RM $export_symbols
cannam@89 3321 eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
cannam@89 3322 case $host in
cannam@89 3323 *cygwin* | *mingw* | *cegcc* )
cannam@89 3324 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
cannam@89 3325 eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"'
cannam@89 3326 ;;
cannam@89 3327 esac
cannam@89 3328 }
cannam@89 3329 else
cannam@89 3330 $opt_dry_run || {
cannam@89 3331 eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"'
cannam@89 3332 eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T'
cannam@89 3333 eval '$MV "$nlist"T "$nlist"'
cannam@89 3334 case $host in
cannam@89 3335 *cygwin* | *mingw* | *cegcc* )
cannam@89 3336 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
cannam@89 3337 eval 'cat "$nlist" >> "$output_objdir/$outputname.def"'
cannam@89 3338 ;;
cannam@89 3339 esac
cannam@89 3340 }
cannam@89 3341 fi
cannam@89 3342 fi
cannam@89 3343
cannam@89 3344 for dlprefile in $dlprefiles; do
cannam@89 3345 func_verbose "extracting global C symbols from \`$dlprefile'"
cannam@89 3346 func_basename "$dlprefile"
cannam@89 3347 name="$func_basename_result"
cannam@89 3348 case $host in
cannam@89 3349 *cygwin* | *mingw* | *cegcc* )
cannam@89 3350 # if an import library, we need to obtain dlname
cannam@89 3351 if func_win32_import_lib_p "$dlprefile"; then
cannam@89 3352 func_tr_sh "$dlprefile"
cannam@89 3353 eval "curr_lafile=\$libfile_$func_tr_sh_result"
cannam@89 3354 dlprefile_dlbasename=""
cannam@89 3355 if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then
cannam@89 3356 # Use subshell, to avoid clobbering current variable values
cannam@89 3357 dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"`
cannam@89 3358 if test -n "$dlprefile_dlname" ; then
cannam@89 3359 func_basename "$dlprefile_dlname"
cannam@89 3360 dlprefile_dlbasename="$func_basename_result"
cannam@89 3361 else
cannam@89 3362 # no lafile. user explicitly requested -dlpreopen <import library>.
cannam@89 3363 $sharedlib_from_linklib_cmd "$dlprefile"
cannam@89 3364 dlprefile_dlbasename=$sharedlib_from_linklib_result
cannam@89 3365 fi
cannam@89 3366 fi
cannam@89 3367 $opt_dry_run || {
cannam@89 3368 if test -n "$dlprefile_dlbasename" ; then
cannam@89 3369 eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"'
cannam@89 3370 else
cannam@89 3371 func_warning "Could not compute DLL name from $name"
cannam@89 3372 eval '$ECHO ": $name " >> "$nlist"'
cannam@89 3373 fi
cannam@89 3374 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
cannam@89 3375 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe |
cannam@89 3376 $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'"
cannam@89 3377 }
cannam@89 3378 else # not an import lib
cannam@89 3379 $opt_dry_run || {
cannam@89 3380 eval '$ECHO ": $name " >> "$nlist"'
cannam@89 3381 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
cannam@89 3382 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
cannam@89 3383 }
cannam@89 3384 fi
cannam@89 3385 ;;
cannam@89 3386 *)
cannam@89 3387 $opt_dry_run || {
cannam@89 3388 eval '$ECHO ": $name " >> "$nlist"'
cannam@89 3389 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
cannam@89 3390 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
cannam@89 3391 }
cannam@89 3392 ;;
cannam@89 3393 esac
cannam@89 3394 done
cannam@89 3395
cannam@89 3396 $opt_dry_run || {
cannam@89 3397 # Make sure we have at least an empty file.
cannam@89 3398 test -f "$nlist" || : > "$nlist"
cannam@89 3399
cannam@89 3400 if test -n "$exclude_expsyms"; then
cannam@89 3401 $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
cannam@89 3402 $MV "$nlist"T "$nlist"
cannam@89 3403 fi
cannam@89 3404
cannam@89 3405 # Try sorting and uniquifying the output.
cannam@89 3406 if $GREP -v "^: " < "$nlist" |
cannam@89 3407 if sort -k 3 </dev/null >/dev/null 2>&1; then
cannam@89 3408 sort -k 3
cannam@89 3409 else
cannam@89 3410 sort +2
cannam@89 3411 fi |
cannam@89 3412 uniq > "$nlist"S; then
cannam@89 3413 :
cannam@89 3414 else
cannam@89 3415 $GREP -v "^: " < "$nlist" > "$nlist"S
cannam@89 3416 fi
cannam@89 3417
cannam@89 3418 if test -f "$nlist"S; then
cannam@89 3419 eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"'
cannam@89 3420 else
cannam@89 3421 echo '/* NONE */' >> "$output_objdir/$my_dlsyms"
cannam@89 3422 fi
cannam@89 3423
cannam@89 3424 echo >> "$output_objdir/$my_dlsyms" "\
cannam@89 3425
cannam@89 3426 /* The mapping between symbol names and symbols. */
cannam@89 3427 typedef struct {
cannam@89 3428 const char *name;
cannam@89 3429 void *address;
cannam@89 3430 } lt_dlsymlist;
cannam@89 3431 extern LT_DLSYM_CONST lt_dlsymlist
cannam@89 3432 lt_${my_prefix}_LTX_preloaded_symbols[];
cannam@89 3433 LT_DLSYM_CONST lt_dlsymlist
cannam@89 3434 lt_${my_prefix}_LTX_preloaded_symbols[] =
cannam@89 3435 {\
cannam@89 3436 { \"$my_originator\", (void *) 0 },"
cannam@89 3437
cannam@89 3438 case $need_lib_prefix in
cannam@89 3439 no)
cannam@89 3440 eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms"
cannam@89 3441 ;;
cannam@89 3442 *)
cannam@89 3443 eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms"
cannam@89 3444 ;;
cannam@89 3445 esac
cannam@89 3446 echo >> "$output_objdir/$my_dlsyms" "\
cannam@89 3447 {0, (void *) 0}
cannam@89 3448 };
cannam@89 3449
cannam@89 3450 /* This works around a problem in FreeBSD linker */
cannam@89 3451 #ifdef FREEBSD_WORKAROUND
cannam@89 3452 static const void *lt_preloaded_setup() {
cannam@89 3453 return lt_${my_prefix}_LTX_preloaded_symbols;
cannam@89 3454 }
cannam@89 3455 #endif
cannam@89 3456
cannam@89 3457 #ifdef __cplusplus
cannam@89 3458 }
cannam@89 3459 #endif\
cannam@89 3460 "
cannam@89 3461 } # !$opt_dry_run
cannam@89 3462
cannam@89 3463 pic_flag_for_symtable=
cannam@89 3464 case "$compile_command " in
cannam@89 3465 *" -static "*) ;;
cannam@89 3466 *)
cannam@89 3467 case $host in
cannam@89 3468 # compiling the symbol table file with pic_flag works around
cannam@89 3469 # a FreeBSD bug that causes programs to crash when -lm is
cannam@89 3470 # linked before any other PIC object. But we must not use
cannam@89 3471 # pic_flag when linking with -static. The problem exists in
cannam@89 3472 # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
cannam@89 3473 *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
cannam@89 3474 pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;;
cannam@89 3475 *-*-hpux*)
cannam@89 3476 pic_flag_for_symtable=" $pic_flag" ;;
cannam@89 3477 *)
cannam@89 3478 if test "X$my_pic_p" != Xno; then
cannam@89 3479 pic_flag_for_symtable=" $pic_flag"
cannam@89 3480 fi
cannam@89 3481 ;;
cannam@89 3482 esac
cannam@89 3483 ;;
cannam@89 3484 esac
cannam@89 3485 symtab_cflags=
cannam@89 3486 for arg in $LTCFLAGS; do
cannam@89 3487 case $arg in
cannam@89 3488 -pie | -fpie | -fPIE) ;;
cannam@89 3489 *) func_append symtab_cflags " $arg" ;;
cannam@89 3490 esac
cannam@89 3491 done
cannam@89 3492
cannam@89 3493 # Now compile the dynamic symbol file.
cannam@89 3494 func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?'
cannam@89 3495
cannam@89 3496 # Clean up the generated files.
cannam@89 3497 func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"'
cannam@89 3498
cannam@89 3499 # Transform the symbol file into the correct name.
cannam@89 3500 symfileobj="$output_objdir/${my_outputname}S.$objext"
cannam@89 3501 case $host in
cannam@89 3502 *cygwin* | *mingw* | *cegcc* )
cannam@89 3503 if test -f "$output_objdir/$my_outputname.def"; then
cannam@89 3504 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
cannam@89 3505 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
cannam@89 3506 else
cannam@89 3507 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@89 3508 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@89 3509 fi
cannam@89 3510 ;;
cannam@89 3511 *)
cannam@89 3512 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@89 3513 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@89 3514 ;;
cannam@89 3515 esac
cannam@89 3516 ;;
cannam@89 3517 *)
cannam@89 3518 func_fatal_error "unknown suffix for \`$my_dlsyms'"
cannam@89 3519 ;;
cannam@89 3520 esac
cannam@89 3521 else
cannam@89 3522 # We keep going just in case the user didn't refer to
cannam@89 3523 # lt_preloaded_symbols. The linker will fail if global_symbol_pipe
cannam@89 3524 # really was required.
cannam@89 3525
cannam@89 3526 # Nullify the symbol file.
cannam@89 3527 compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"`
cannam@89 3528 finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"`
cannam@89 3529 fi
cannam@89 3530 }
cannam@89 3531
cannam@89 3532 # func_win32_libid arg
cannam@89 3533 # return the library type of file 'arg'
cannam@89 3534 #
cannam@89 3535 # Need a lot of goo to handle *both* DLLs and import libs
cannam@89 3536 # Has to be a shell function in order to 'eat' the argument
cannam@89 3537 # that is supplied when $file_magic_command is called.
cannam@89 3538 # Despite the name, also deal with 64 bit binaries.
cannam@89 3539 func_win32_libid ()
cannam@89 3540 {
cannam@89 3541 $opt_debug
cannam@89 3542 win32_libid_type="unknown"
cannam@89 3543 win32_fileres=`file -L $1 2>/dev/null`
cannam@89 3544 case $win32_fileres in
cannam@89 3545 *ar\ archive\ import\ library*) # definitely import
cannam@89 3546 win32_libid_type="x86 archive import"
cannam@89 3547 ;;
cannam@89 3548 *ar\ archive*) # could be an import, or static
cannam@89 3549 # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD.
cannam@89 3550 if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null |
cannam@89 3551 $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then
cannam@89 3552 func_to_tool_file "$1" func_convert_file_msys_to_w32
cannam@89 3553 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" |
cannam@89 3554 $SED -n -e '
cannam@89 3555 1,100{
cannam@89 3556 / I /{
cannam@89 3557 s,.*,import,
cannam@89 3558 p
cannam@89 3559 q
cannam@89 3560 }
cannam@89 3561 }'`
cannam@89 3562 case $win32_nmres in
cannam@89 3563 import*) win32_libid_type="x86 archive import";;
cannam@89 3564 *) win32_libid_type="x86 archive static";;
cannam@89 3565 esac
cannam@89 3566 fi
cannam@89 3567 ;;
cannam@89 3568 *DLL*)
cannam@89 3569 win32_libid_type="x86 DLL"
cannam@89 3570 ;;
cannam@89 3571 *executable*) # but shell scripts are "executable" too...
cannam@89 3572 case $win32_fileres in
cannam@89 3573 *MS\ Windows\ PE\ Intel*)
cannam@89 3574 win32_libid_type="x86 DLL"
cannam@89 3575 ;;
cannam@89 3576 esac
cannam@89 3577 ;;
cannam@89 3578 esac
cannam@89 3579 $ECHO "$win32_libid_type"
cannam@89 3580 }
cannam@89 3581
cannam@89 3582 # func_cygming_dll_for_implib ARG
cannam@89 3583 #
cannam@89 3584 # Platform-specific function to extract the
cannam@89 3585 # name of the DLL associated with the specified
cannam@89 3586 # import library ARG.
cannam@89 3587 # Invoked by eval'ing the libtool variable
cannam@89 3588 # $sharedlib_from_linklib_cmd
cannam@89 3589 # Result is available in the variable
cannam@89 3590 # $sharedlib_from_linklib_result
cannam@89 3591 func_cygming_dll_for_implib ()
cannam@89 3592 {
cannam@89 3593 $opt_debug
cannam@89 3594 sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"`
cannam@89 3595 }
cannam@89 3596
cannam@89 3597 # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs
cannam@89 3598 #
cannam@89 3599 # The is the core of a fallback implementation of a
cannam@89 3600 # platform-specific function to extract the name of the
cannam@89 3601 # DLL associated with the specified import library LIBNAME.
cannam@89 3602 #
cannam@89 3603 # SECTION_NAME is either .idata$6 or .idata$7, depending
cannam@89 3604 # on the platform and compiler that created the implib.
cannam@89 3605 #
cannam@89 3606 # Echos the name of the DLL associated with the
cannam@89 3607 # specified import library.
cannam@89 3608 func_cygming_dll_for_implib_fallback_core ()
cannam@89 3609 {
cannam@89 3610 $opt_debug
cannam@89 3611 match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"`
cannam@89 3612 $OBJDUMP -s --section "$1" "$2" 2>/dev/null |
cannam@89 3613 $SED '/^Contents of section '"$match_literal"':/{
cannam@89 3614 # Place marker at beginning of archive member dllname section
cannam@89 3615 s/.*/====MARK====/
cannam@89 3616 p
cannam@89 3617 d
cannam@89 3618 }
cannam@89 3619 # These lines can sometimes be longer than 43 characters, but
cannam@89 3620 # are always uninteresting
cannam@89 3621 /:[ ]*file format pe[i]\{,1\}-/d
cannam@89 3622 /^In archive [^:]*:/d
cannam@89 3623 # Ensure marker is printed
cannam@89 3624 /^====MARK====/p
cannam@89 3625 # Remove all lines with less than 43 characters
cannam@89 3626 /^.\{43\}/!d
cannam@89 3627 # From remaining lines, remove first 43 characters
cannam@89 3628 s/^.\{43\}//' |
cannam@89 3629 $SED -n '
cannam@89 3630 # Join marker and all lines until next marker into a single line
cannam@89 3631 /^====MARK====/ b para
cannam@89 3632 H
cannam@89 3633 $ b para
cannam@89 3634 b
cannam@89 3635 :para
cannam@89 3636 x
cannam@89 3637 s/\n//g
cannam@89 3638 # Remove the marker
cannam@89 3639 s/^====MARK====//
cannam@89 3640 # Remove trailing dots and whitespace
cannam@89 3641 s/[\. \t]*$//
cannam@89 3642 # Print
cannam@89 3643 /./p' |
cannam@89 3644 # we now have a list, one entry per line, of the stringified
cannam@89 3645 # contents of the appropriate section of all members of the
cannam@89 3646 # archive which possess that section. Heuristic: eliminate
cannam@89 3647 # all those which have a first or second character that is
cannam@89 3648 # a '.' (that is, objdump's representation of an unprintable
cannam@89 3649 # character.) This should work for all archives with less than
cannam@89 3650 # 0x302f exports -- but will fail for DLLs whose name actually
cannam@89 3651 # begins with a literal '.' or a single character followed by
cannam@89 3652 # a '.'.
cannam@89 3653 #
cannam@89 3654 # Of those that remain, print the first one.
cannam@89 3655 $SED -e '/^\./d;/^.\./d;q'
cannam@89 3656 }
cannam@89 3657
cannam@89 3658 # func_cygming_gnu_implib_p ARG
cannam@89 3659 # This predicate returns with zero status (TRUE) if
cannam@89 3660 # ARG is a GNU/binutils-style import library. Returns
cannam@89 3661 # with nonzero status (FALSE) otherwise.
cannam@89 3662 func_cygming_gnu_implib_p ()
cannam@89 3663 {
cannam@89 3664 $opt_debug
cannam@89 3665 func_to_tool_file "$1" func_convert_file_msys_to_w32
cannam@89 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@89 3667 test -n "$func_cygming_gnu_implib_tmp"
cannam@89 3668 }
cannam@89 3669
cannam@89 3670 # func_cygming_ms_implib_p ARG
cannam@89 3671 # This predicate returns with zero status (TRUE) if
cannam@89 3672 # ARG is an MS-style import library. Returns
cannam@89 3673 # with nonzero status (FALSE) otherwise.
cannam@89 3674 func_cygming_ms_implib_p ()
cannam@89 3675 {
cannam@89 3676 $opt_debug
cannam@89 3677 func_to_tool_file "$1" func_convert_file_msys_to_w32
cannam@89 3678 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'`
cannam@89 3679 test -n "$func_cygming_ms_implib_tmp"
cannam@89 3680 }
cannam@89 3681
cannam@89 3682 # func_cygming_dll_for_implib_fallback ARG
cannam@89 3683 # Platform-specific function to extract the
cannam@89 3684 # name of the DLL associated with the specified
cannam@89 3685 # import library ARG.
cannam@89 3686 #
cannam@89 3687 # This fallback implementation is for use when $DLLTOOL
cannam@89 3688 # does not support the --identify-strict option.
cannam@89 3689 # Invoked by eval'ing the libtool variable
cannam@89 3690 # $sharedlib_from_linklib_cmd
cannam@89 3691 # Result is available in the variable
cannam@89 3692 # $sharedlib_from_linklib_result
cannam@89 3693 func_cygming_dll_for_implib_fallback ()
cannam@89 3694 {
cannam@89 3695 $opt_debug
cannam@89 3696 if func_cygming_gnu_implib_p "$1" ; then
cannam@89 3697 # binutils import library
cannam@89 3698 sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"`
cannam@89 3699 elif func_cygming_ms_implib_p "$1" ; then
cannam@89 3700 # ms-generated import library
cannam@89 3701 sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"`
cannam@89 3702 else
cannam@89 3703 # unknown
cannam@89 3704 sharedlib_from_linklib_result=""
cannam@89 3705 fi
cannam@89 3706 }
cannam@89 3707
cannam@89 3708
cannam@89 3709 # func_extract_an_archive dir oldlib
cannam@89 3710 func_extract_an_archive ()
cannam@89 3711 {
cannam@89 3712 $opt_debug
cannam@89 3713 f_ex_an_ar_dir="$1"; shift
cannam@89 3714 f_ex_an_ar_oldlib="$1"
cannam@89 3715 if test "$lock_old_archive_extraction" = yes; then
cannam@89 3716 lockfile=$f_ex_an_ar_oldlib.lock
cannam@89 3717 until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do
cannam@89 3718 func_echo "Waiting for $lockfile to be removed"
cannam@89 3719 sleep 2
cannam@89 3720 done
cannam@89 3721 fi
cannam@89 3722 func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \
cannam@89 3723 'stat=$?; rm -f "$lockfile"; exit $stat'
cannam@89 3724 if test "$lock_old_archive_extraction" = yes; then
cannam@89 3725 $opt_dry_run || rm -f "$lockfile"
cannam@89 3726 fi
cannam@89 3727 if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
cannam@89 3728 :
cannam@89 3729 else
cannam@89 3730 func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib"
cannam@89 3731 fi
cannam@89 3732 }
cannam@89 3733
cannam@89 3734
cannam@89 3735 # func_extract_archives gentop oldlib ...
cannam@89 3736 func_extract_archives ()
cannam@89 3737 {
cannam@89 3738 $opt_debug
cannam@89 3739 my_gentop="$1"; shift
cannam@89 3740 my_oldlibs=${1+"$@"}
cannam@89 3741 my_oldobjs=""
cannam@89 3742 my_xlib=""
cannam@89 3743 my_xabs=""
cannam@89 3744 my_xdir=""
cannam@89 3745
cannam@89 3746 for my_xlib in $my_oldlibs; do
cannam@89 3747 # Extract the objects.
cannam@89 3748 case $my_xlib in
cannam@89 3749 [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;;
cannam@89 3750 *) my_xabs=`pwd`"/$my_xlib" ;;
cannam@89 3751 esac
cannam@89 3752 func_basename "$my_xlib"
cannam@89 3753 my_xlib="$func_basename_result"
cannam@89 3754 my_xlib_u=$my_xlib
cannam@89 3755 while :; do
cannam@89 3756 case " $extracted_archives " in
cannam@89 3757 *" $my_xlib_u "*)
cannam@89 3758 func_arith $extracted_serial + 1
cannam@89 3759 extracted_serial=$func_arith_result
cannam@89 3760 my_xlib_u=lt$extracted_serial-$my_xlib ;;
cannam@89 3761 *) break ;;
cannam@89 3762 esac
cannam@89 3763 done
cannam@89 3764 extracted_archives="$extracted_archives $my_xlib_u"
cannam@89 3765 my_xdir="$my_gentop/$my_xlib_u"
cannam@89 3766
cannam@89 3767 func_mkdir_p "$my_xdir"
cannam@89 3768
cannam@89 3769 case $host in
cannam@89 3770 *-darwin*)
cannam@89 3771 func_verbose "Extracting $my_xabs"
cannam@89 3772 # Do not bother doing anything if just a dry run
cannam@89 3773 $opt_dry_run || {
cannam@89 3774 darwin_orig_dir=`pwd`
cannam@89 3775 cd $my_xdir || exit $?
cannam@89 3776 darwin_archive=$my_xabs
cannam@89 3777 darwin_curdir=`pwd`
cannam@89 3778 darwin_base_archive=`basename "$darwin_archive"`
cannam@89 3779 darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true`
cannam@89 3780 if test -n "$darwin_arches"; then
cannam@89 3781 darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'`
cannam@89 3782 darwin_arch=
cannam@89 3783 func_verbose "$darwin_base_archive has multiple architectures $darwin_arches"
cannam@89 3784 for darwin_arch in $darwin_arches ; do
cannam@89 3785 func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}"
cannam@89 3786 $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}"
cannam@89 3787 cd "unfat-$$/${darwin_base_archive}-${darwin_arch}"
cannam@89 3788 func_extract_an_archive "`pwd`" "${darwin_base_archive}"
cannam@89 3789 cd "$darwin_curdir"
cannam@89 3790 $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}"
cannam@89 3791 done # $darwin_arches
cannam@89 3792 ## Okay now we've a bunch of thin objects, gotta fatten them up :)
cannam@89 3793 darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u`
cannam@89 3794 darwin_file=
cannam@89 3795 darwin_files=
cannam@89 3796 for darwin_file in $darwin_filelist; do
cannam@89 3797 darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP`
cannam@89 3798 $LIPO -create -output "$darwin_file" $darwin_files
cannam@89 3799 done # $darwin_filelist
cannam@89 3800 $RM -rf unfat-$$
cannam@89 3801 cd "$darwin_orig_dir"
cannam@89 3802 else
cannam@89 3803 cd $darwin_orig_dir
cannam@89 3804 func_extract_an_archive "$my_xdir" "$my_xabs"
cannam@89 3805 fi # $darwin_arches
cannam@89 3806 } # !$opt_dry_run
cannam@89 3807 ;;
cannam@89 3808 *)
cannam@89 3809 func_extract_an_archive "$my_xdir" "$my_xabs"
cannam@89 3810 ;;
cannam@89 3811 esac
cannam@89 3812 my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP`
cannam@89 3813 done
cannam@89 3814
cannam@89 3815 func_extract_archives_result="$my_oldobjs"
cannam@89 3816 }
cannam@89 3817
cannam@89 3818
cannam@89 3819 # func_emit_wrapper [arg=no]
cannam@89 3820 #
cannam@89 3821 # Emit a libtool wrapper script on stdout.
cannam@89 3822 # Don't directly open a file because we may want to
cannam@89 3823 # incorporate the script contents within a cygwin/mingw
cannam@89 3824 # wrapper executable. Must ONLY be called from within
cannam@89 3825 # func_mode_link because it depends on a number of variables
cannam@89 3826 # set therein.
cannam@89 3827 #
cannam@89 3828 # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR
cannam@89 3829 # variable will take. If 'yes', then the emitted script
cannam@89 3830 # will assume that the directory in which it is stored is
cannam@89 3831 # the $objdir directory. This is a cygwin/mingw-specific
cannam@89 3832 # behavior.
cannam@89 3833 func_emit_wrapper ()
cannam@89 3834 {
cannam@89 3835 func_emit_wrapper_arg1=${1-no}
cannam@89 3836
cannam@89 3837 $ECHO "\
cannam@89 3838 #! $SHELL
cannam@89 3839
cannam@89 3840 # $output - temporary wrapper script for $objdir/$outputname
cannam@89 3841 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@89 3842 #
cannam@89 3843 # The $output program cannot be directly executed until all the libtool
cannam@89 3844 # libraries that it depends on are installed.
cannam@89 3845 #
cannam@89 3846 # This wrapper script should never be moved out of the build directory.
cannam@89 3847 # If it is, it will not operate correctly.
cannam@89 3848
cannam@89 3849 # Sed substitution that helps us do robust quoting. It backslashifies
cannam@89 3850 # metacharacters that are still active within double-quoted strings.
cannam@89 3851 sed_quote_subst='$sed_quote_subst'
cannam@89 3852
cannam@89 3853 # Be Bourne compatible
cannam@89 3854 if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then
cannam@89 3855 emulate sh
cannam@89 3856 NULLCMD=:
cannam@89 3857 # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which
cannam@89 3858 # is contrary to our usage. Disable this feature.
cannam@89 3859 alias -g '\${1+\"\$@\"}'='\"\$@\"'
cannam@89 3860 setopt NO_GLOB_SUBST
cannam@89 3861 else
cannam@89 3862 case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac
cannam@89 3863 fi
cannam@89 3864 BIN_SH=xpg4; export BIN_SH # for Tru64
cannam@89 3865 DUALCASE=1; export DUALCASE # for MKS sh
cannam@89 3866
cannam@89 3867 # The HP-UX ksh and POSIX shell print the target directory to stdout
cannam@89 3868 # if CDPATH is set.
cannam@89 3869 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
cannam@89 3870
cannam@89 3871 relink_command=\"$relink_command\"
cannam@89 3872
cannam@89 3873 # This environment variable determines our operation mode.
cannam@89 3874 if test \"\$libtool_install_magic\" = \"$magic\"; then
cannam@89 3875 # install mode needs the following variables:
cannam@89 3876 generated_by_libtool_version='$macro_version'
cannam@89 3877 notinst_deplibs='$notinst_deplibs'
cannam@89 3878 else
cannam@89 3879 # When we are sourced in execute mode, \$file and \$ECHO are already set.
cannam@89 3880 if test \"\$libtool_execute_magic\" != \"$magic\"; then
cannam@89 3881 file=\"\$0\""
cannam@89 3882
cannam@89 3883 qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"`
cannam@89 3884 $ECHO "\
cannam@89 3885
cannam@89 3886 # A function that is used when there is no print builtin or printf.
cannam@89 3887 func_fallback_echo ()
cannam@89 3888 {
cannam@89 3889 eval 'cat <<_LTECHO_EOF
cannam@89 3890 \$1
cannam@89 3891 _LTECHO_EOF'
cannam@89 3892 }
cannam@89 3893 ECHO=\"$qECHO\"
cannam@89 3894 fi
cannam@89 3895
cannam@89 3896 # Very basic option parsing. These options are (a) specific to
cannam@89 3897 # the libtool wrapper, (b) are identical between the wrapper
cannam@89 3898 # /script/ and the wrapper /executable/ which is used only on
cannam@89 3899 # windows platforms, and (c) all begin with the string "--lt-"
cannam@89 3900 # (application programs are unlikely to have options which match
cannam@89 3901 # this pattern).
cannam@89 3902 #
cannam@89 3903 # There are only two supported options: --lt-debug and
cannam@89 3904 # --lt-dump-script. There is, deliberately, no --lt-help.
cannam@89 3905 #
cannam@89 3906 # The first argument to this parsing function should be the
cannam@89 3907 # script's $0 value, followed by "$@".
cannam@89 3908 lt_option_debug=
cannam@89 3909 func_parse_lt_options ()
cannam@89 3910 {
cannam@89 3911 lt_script_arg0=\$0
cannam@89 3912 shift
cannam@89 3913 for lt_opt
cannam@89 3914 do
cannam@89 3915 case \"\$lt_opt\" in
cannam@89 3916 --lt-debug) lt_option_debug=1 ;;
cannam@89 3917 --lt-dump-script)
cannam@89 3918 lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\`
cannam@89 3919 test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=.
cannam@89 3920 lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\`
cannam@89 3921 cat \"\$lt_dump_D/\$lt_dump_F\"
cannam@89 3922 exit 0
cannam@89 3923 ;;
cannam@89 3924 --lt-*)
cannam@89 3925 \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2
cannam@89 3926 exit 1
cannam@89 3927 ;;
cannam@89 3928 esac
cannam@89 3929 done
cannam@89 3930
cannam@89 3931 # Print the debug banner immediately:
cannam@89 3932 if test -n \"\$lt_option_debug\"; then
cannam@89 3933 echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2
cannam@89 3934 fi
cannam@89 3935 }
cannam@89 3936
cannam@89 3937 # Used when --lt-debug. Prints its arguments to stdout
cannam@89 3938 # (redirection is the responsibility of the caller)
cannam@89 3939 func_lt_dump_args ()
cannam@89 3940 {
cannam@89 3941 lt_dump_args_N=1;
cannam@89 3942 for lt_arg
cannam@89 3943 do
cannam@89 3944 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\"
cannam@89 3945 lt_dump_args_N=\`expr \$lt_dump_args_N + 1\`
cannam@89 3946 done
cannam@89 3947 }
cannam@89 3948
cannam@89 3949 # Core function for launching the target application
cannam@89 3950 func_exec_program_core ()
cannam@89 3951 {
cannam@89 3952 "
cannam@89 3953 case $host in
cannam@89 3954 # Backslashes separate directories on plain windows
cannam@89 3955 *-*-mingw | *-*-os2* | *-cegcc*)
cannam@89 3956 $ECHO "\
cannam@89 3957 if test -n \"\$lt_option_debug\"; then
cannam@89 3958 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2
cannam@89 3959 func_lt_dump_args \${1+\"\$@\"} 1>&2
cannam@89 3960 fi
cannam@89 3961 exec \"\$progdir\\\\\$program\" \${1+\"\$@\"}
cannam@89 3962 "
cannam@89 3963 ;;
cannam@89 3964
cannam@89 3965 *)
cannam@89 3966 $ECHO "\
cannam@89 3967 if test -n \"\$lt_option_debug\"; then
cannam@89 3968 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2
cannam@89 3969 func_lt_dump_args \${1+\"\$@\"} 1>&2
cannam@89 3970 fi
cannam@89 3971 exec \"\$progdir/\$program\" \${1+\"\$@\"}
cannam@89 3972 "
cannam@89 3973 ;;
cannam@89 3974 esac
cannam@89 3975 $ECHO "\
cannam@89 3976 \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2
cannam@89 3977 exit 1
cannam@89 3978 }
cannam@89 3979
cannam@89 3980 # A function to encapsulate launching the target application
cannam@89 3981 # Strips options in the --lt-* namespace from \$@ and
cannam@89 3982 # launches target application with the remaining arguments.
cannam@89 3983 func_exec_program ()
cannam@89 3984 {
cannam@89 3985 for lt_wr_arg
cannam@89 3986 do
cannam@89 3987 case \$lt_wr_arg in
cannam@89 3988 --lt-*) ;;
cannam@89 3989 *) set x \"\$@\" \"\$lt_wr_arg\"; shift;;
cannam@89 3990 esac
cannam@89 3991 shift
cannam@89 3992 done
cannam@89 3993 func_exec_program_core \${1+\"\$@\"}
cannam@89 3994 }
cannam@89 3995
cannam@89 3996 # Parse options
cannam@89 3997 func_parse_lt_options \"\$0\" \${1+\"\$@\"}
cannam@89 3998
cannam@89 3999 # Find the directory that this script lives in.
cannam@89 4000 thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\`
cannam@89 4001 test \"x\$thisdir\" = \"x\$file\" && thisdir=.
cannam@89 4002
cannam@89 4003 # Follow symbolic links until we get to the real thisdir.
cannam@89 4004 file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\`
cannam@89 4005 while test -n \"\$file\"; do
cannam@89 4006 destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\`
cannam@89 4007
cannam@89 4008 # If there was a directory component, then change thisdir.
cannam@89 4009 if test \"x\$destdir\" != \"x\$file\"; then
cannam@89 4010 case \"\$destdir\" in
cannam@89 4011 [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
cannam@89 4012 *) thisdir=\"\$thisdir/\$destdir\" ;;
cannam@89 4013 esac
cannam@89 4014 fi
cannam@89 4015
cannam@89 4016 file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\`
cannam@89 4017 file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\`
cannam@89 4018 done
cannam@89 4019
cannam@89 4020 # Usually 'no', except on cygwin/mingw when embedded into
cannam@89 4021 # the cwrapper.
cannam@89 4022 WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1
cannam@89 4023 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then
cannam@89 4024 # special case for '.'
cannam@89 4025 if test \"\$thisdir\" = \".\"; then
cannam@89 4026 thisdir=\`pwd\`
cannam@89 4027 fi
cannam@89 4028 # remove .libs from thisdir
cannam@89 4029 case \"\$thisdir\" in
cannam@89 4030 *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;;
cannam@89 4031 $objdir ) thisdir=. ;;
cannam@89 4032 esac
cannam@89 4033 fi
cannam@89 4034
cannam@89 4035 # Try to get the absolute directory name.
cannam@89 4036 absdir=\`cd \"\$thisdir\" && pwd\`
cannam@89 4037 test -n \"\$absdir\" && thisdir=\"\$absdir\"
cannam@89 4038 "
cannam@89 4039
cannam@89 4040 if test "$fast_install" = yes; then
cannam@89 4041 $ECHO "\
cannam@89 4042 program=lt-'$outputname'$exeext
cannam@89 4043 progdir=\"\$thisdir/$objdir\"
cannam@89 4044
cannam@89 4045 if test ! -f \"\$progdir/\$program\" ||
cannam@89 4046 { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\
cannam@89 4047 test \"X\$file\" != \"X\$progdir/\$program\"; }; then
cannam@89 4048
cannam@89 4049 file=\"\$\$-\$program\"
cannam@89 4050
cannam@89 4051 if test ! -d \"\$progdir\"; then
cannam@89 4052 $MKDIR \"\$progdir\"
cannam@89 4053 else
cannam@89 4054 $RM \"\$progdir/\$file\"
cannam@89 4055 fi"
cannam@89 4056
cannam@89 4057 $ECHO "\
cannam@89 4058
cannam@89 4059 # relink executable if necessary
cannam@89 4060 if test -n \"\$relink_command\"; then
cannam@89 4061 if relink_command_output=\`eval \$relink_command 2>&1\`; then :
cannam@89 4062 else
cannam@89 4063 $ECHO \"\$relink_command_output\" >&2
cannam@89 4064 $RM \"\$progdir/\$file\"
cannam@89 4065 exit 1
cannam@89 4066 fi
cannam@89 4067 fi
cannam@89 4068
cannam@89 4069 $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
cannam@89 4070 { $RM \"\$progdir/\$program\";
cannam@89 4071 $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; }
cannam@89 4072 $RM \"\$progdir/\$file\"
cannam@89 4073 fi"
cannam@89 4074 else
cannam@89 4075 $ECHO "\
cannam@89 4076 program='$outputname'
cannam@89 4077 progdir=\"\$thisdir/$objdir\"
cannam@89 4078 "
cannam@89 4079 fi
cannam@89 4080
cannam@89 4081 $ECHO "\
cannam@89 4082
cannam@89 4083 if test -f \"\$progdir/\$program\"; then"
cannam@89 4084
cannam@89 4085 # fixup the dll searchpath if we need to.
cannam@89 4086 #
cannam@89 4087 # Fix the DLL searchpath if we need to. Do this before prepending
cannam@89 4088 # to shlibpath, because on Windows, both are PATH and uninstalled
cannam@89 4089 # libraries must come first.
cannam@89 4090 if test -n "$dllsearchpath"; then
cannam@89 4091 $ECHO "\
cannam@89 4092 # Add the dll search path components to the executable PATH
cannam@89 4093 PATH=$dllsearchpath:\$PATH
cannam@89 4094 "
cannam@89 4095 fi
cannam@89 4096
cannam@89 4097 # Export our shlibpath_var if we have one.
cannam@89 4098 if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
cannam@89 4099 $ECHO "\
cannam@89 4100 # Add our own library path to $shlibpath_var
cannam@89 4101 $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
cannam@89 4102
cannam@89 4103 # Some systems cannot cope with colon-terminated $shlibpath_var
cannam@89 4104 # The second colon is a workaround for a bug in BeOS R4 sed
cannam@89 4105 $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\`
cannam@89 4106
cannam@89 4107 export $shlibpath_var
cannam@89 4108 "
cannam@89 4109 fi
cannam@89 4110
cannam@89 4111 $ECHO "\
cannam@89 4112 if test \"\$libtool_execute_magic\" != \"$magic\"; then
cannam@89 4113 # Run the actual program with our arguments.
cannam@89 4114 func_exec_program \${1+\"\$@\"}
cannam@89 4115 fi
cannam@89 4116 else
cannam@89 4117 # The program doesn't exist.
cannam@89 4118 \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2
cannam@89 4119 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2
cannam@89 4120 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2
cannam@89 4121 exit 1
cannam@89 4122 fi
cannam@89 4123 fi\
cannam@89 4124 "
cannam@89 4125 }
cannam@89 4126
cannam@89 4127
cannam@89 4128 # func_emit_cwrapperexe_src
cannam@89 4129 # emit the source code for a wrapper executable on stdout
cannam@89 4130 # Must ONLY be called from within func_mode_link because
cannam@89 4131 # it depends on a number of variable set therein.
cannam@89 4132 func_emit_cwrapperexe_src ()
cannam@89 4133 {
cannam@89 4134 cat <<EOF
cannam@89 4135
cannam@89 4136 /* $cwrappersource - temporary wrapper executable for $objdir/$outputname
cannam@89 4137 Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@89 4138
cannam@89 4139 The $output program cannot be directly executed until all the libtool
cannam@89 4140 libraries that it depends on are installed.
cannam@89 4141
cannam@89 4142 This wrapper executable should never be moved out of the build directory.
cannam@89 4143 If it is, it will not operate correctly.
cannam@89 4144 */
cannam@89 4145 EOF
cannam@89 4146 cat <<"EOF"
cannam@89 4147 #ifdef _MSC_VER
cannam@89 4148 # define _CRT_SECURE_NO_DEPRECATE 1
cannam@89 4149 #endif
cannam@89 4150 #include <stdio.h>
cannam@89 4151 #include <stdlib.h>
cannam@89 4152 #ifdef _MSC_VER
cannam@89 4153 # include <direct.h>
cannam@89 4154 # include <process.h>
cannam@89 4155 # include <io.h>
cannam@89 4156 #else
cannam@89 4157 # include <unistd.h>
cannam@89 4158 # include <stdint.h>
cannam@89 4159 # ifdef __CYGWIN__
cannam@89 4160 # include <io.h>
cannam@89 4161 # endif
cannam@89 4162 #endif
cannam@89 4163 #include <malloc.h>
cannam@89 4164 #include <stdarg.h>
cannam@89 4165 #include <assert.h>
cannam@89 4166 #include <string.h>
cannam@89 4167 #include <ctype.h>
cannam@89 4168 #include <errno.h>
cannam@89 4169 #include <fcntl.h>
cannam@89 4170 #include <sys/stat.h>
cannam@89 4171
cannam@89 4172 /* declarations of non-ANSI functions */
cannam@89 4173 #if defined(__MINGW32__)
cannam@89 4174 # ifdef __STRICT_ANSI__
cannam@89 4175 int _putenv (const char *);
cannam@89 4176 # endif
cannam@89 4177 #elif defined(__CYGWIN__)
cannam@89 4178 # ifdef __STRICT_ANSI__
cannam@89 4179 char *realpath (const char *, char *);
cannam@89 4180 int putenv (char *);
cannam@89 4181 int setenv (const char *, const char *, int);
cannam@89 4182 # endif
cannam@89 4183 /* #elif defined (other platforms) ... */
cannam@89 4184 #endif
cannam@89 4185
cannam@89 4186 /* portability defines, excluding path handling macros */
cannam@89 4187 #if defined(_MSC_VER)
cannam@89 4188 # define setmode _setmode
cannam@89 4189 # define stat _stat
cannam@89 4190 # define chmod _chmod
cannam@89 4191 # define getcwd _getcwd
cannam@89 4192 # define putenv _putenv
cannam@89 4193 # define S_IXUSR _S_IEXEC
cannam@89 4194 # ifndef _INTPTR_T_DEFINED
cannam@89 4195 # define _INTPTR_T_DEFINED
cannam@89 4196 # define intptr_t int
cannam@89 4197 # endif
cannam@89 4198 #elif defined(__MINGW32__)
cannam@89 4199 # define setmode _setmode
cannam@89 4200 # define stat _stat
cannam@89 4201 # define chmod _chmod
cannam@89 4202 # define getcwd _getcwd
cannam@89 4203 # define putenv _putenv
cannam@89 4204 #elif defined(__CYGWIN__)
cannam@89 4205 # define HAVE_SETENV
cannam@89 4206 # define FOPEN_WB "wb"
cannam@89 4207 /* #elif defined (other platforms) ... */
cannam@89 4208 #endif
cannam@89 4209
cannam@89 4210 #if defined(PATH_MAX)
cannam@89 4211 # define LT_PATHMAX PATH_MAX
cannam@89 4212 #elif defined(MAXPATHLEN)
cannam@89 4213 # define LT_PATHMAX MAXPATHLEN
cannam@89 4214 #else
cannam@89 4215 # define LT_PATHMAX 1024
cannam@89 4216 #endif
cannam@89 4217
cannam@89 4218 #ifndef S_IXOTH
cannam@89 4219 # define S_IXOTH 0
cannam@89 4220 #endif
cannam@89 4221 #ifndef S_IXGRP
cannam@89 4222 # define S_IXGRP 0
cannam@89 4223 #endif
cannam@89 4224
cannam@89 4225 /* path handling portability macros */
cannam@89 4226 #ifndef DIR_SEPARATOR
cannam@89 4227 # define DIR_SEPARATOR '/'
cannam@89 4228 # define PATH_SEPARATOR ':'
cannam@89 4229 #endif
cannam@89 4230
cannam@89 4231 #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \
cannam@89 4232 defined (__OS2__)
cannam@89 4233 # define HAVE_DOS_BASED_FILE_SYSTEM
cannam@89 4234 # define FOPEN_WB "wb"
cannam@89 4235 # ifndef DIR_SEPARATOR_2
cannam@89 4236 # define DIR_SEPARATOR_2 '\\'
cannam@89 4237 # endif
cannam@89 4238 # ifndef PATH_SEPARATOR_2
cannam@89 4239 # define PATH_SEPARATOR_2 ';'
cannam@89 4240 # endif
cannam@89 4241 #endif
cannam@89 4242
cannam@89 4243 #ifndef DIR_SEPARATOR_2
cannam@89 4244 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
cannam@89 4245 #else /* DIR_SEPARATOR_2 */
cannam@89 4246 # define IS_DIR_SEPARATOR(ch) \
cannam@89 4247 (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
cannam@89 4248 #endif /* DIR_SEPARATOR_2 */
cannam@89 4249
cannam@89 4250 #ifndef PATH_SEPARATOR_2
cannam@89 4251 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR)
cannam@89 4252 #else /* PATH_SEPARATOR_2 */
cannam@89 4253 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2)
cannam@89 4254 #endif /* PATH_SEPARATOR_2 */
cannam@89 4255
cannam@89 4256 #ifndef FOPEN_WB
cannam@89 4257 # define FOPEN_WB "w"
cannam@89 4258 #endif
cannam@89 4259 #ifndef _O_BINARY
cannam@89 4260 # define _O_BINARY 0
cannam@89 4261 #endif
cannam@89 4262
cannam@89 4263 #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type)))
cannam@89 4264 #define XFREE(stale) do { \
cannam@89 4265 if (stale) { free ((void *) stale); stale = 0; } \
cannam@89 4266 } while (0)
cannam@89 4267
cannam@89 4268 #if defined(LT_DEBUGWRAPPER)
cannam@89 4269 static int lt_debug = 1;
cannam@89 4270 #else
cannam@89 4271 static int lt_debug = 0;
cannam@89 4272 #endif
cannam@89 4273
cannam@89 4274 const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */
cannam@89 4275
cannam@89 4276 void *xmalloc (size_t num);
cannam@89 4277 char *xstrdup (const char *string);
cannam@89 4278 const char *base_name (const char *name);
cannam@89 4279 char *find_executable (const char *wrapper);
cannam@89 4280 char *chase_symlinks (const char *pathspec);
cannam@89 4281 int make_executable (const char *path);
cannam@89 4282 int check_executable (const char *path);
cannam@89 4283 char *strendzap (char *str, const char *pat);
cannam@89 4284 void lt_debugprintf (const char *file, int line, const char *fmt, ...);
cannam@89 4285 void lt_fatal (const char *file, int line, const char *message, ...);
cannam@89 4286 static const char *nonnull (const char *s);
cannam@89 4287 static const char *nonempty (const char *s);
cannam@89 4288 void lt_setenv (const char *name, const char *value);
cannam@89 4289 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
cannam@89 4290 void lt_update_exe_path (const char *name, const char *value);
cannam@89 4291 void lt_update_lib_path (const char *name, const char *value);
cannam@89 4292 char **prepare_spawn (char **argv);
cannam@89 4293 void lt_dump_script (FILE *f);
cannam@89 4294 EOF
cannam@89 4295
cannam@89 4296 cat <<EOF
cannam@89 4297 volatile const char * MAGIC_EXE = "$magic_exe";
cannam@89 4298 const char * LIB_PATH_VARNAME = "$shlibpath_var";
cannam@89 4299 EOF
cannam@89 4300
cannam@89 4301 if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
cannam@89 4302 func_to_host_path "$temp_rpath"
cannam@89 4303 cat <<EOF
cannam@89 4304 const char * LIB_PATH_VALUE = "$func_to_host_path_result";
cannam@89 4305 EOF
cannam@89 4306 else
cannam@89 4307 cat <<"EOF"
cannam@89 4308 const char * LIB_PATH_VALUE = "";
cannam@89 4309 EOF
cannam@89 4310 fi
cannam@89 4311
cannam@89 4312 if test -n "$dllsearchpath"; then
cannam@89 4313 func_to_host_path "$dllsearchpath:"
cannam@89 4314 cat <<EOF
cannam@89 4315 const char * EXE_PATH_VARNAME = "PATH";
cannam@89 4316 const char * EXE_PATH_VALUE = "$func_to_host_path_result";
cannam@89 4317 EOF
cannam@89 4318 else
cannam@89 4319 cat <<"EOF"
cannam@89 4320 const char * EXE_PATH_VARNAME = "";
cannam@89 4321 const char * EXE_PATH_VALUE = "";
cannam@89 4322 EOF
cannam@89 4323 fi
cannam@89 4324
cannam@89 4325 if test "$fast_install" = yes; then
cannam@89 4326 cat <<EOF
cannam@89 4327 const char * TARGET_PROGRAM_NAME = "lt-$outputname"; /* hopefully, no .exe */
cannam@89 4328 EOF
cannam@89 4329 else
cannam@89 4330 cat <<EOF
cannam@89 4331 const char * TARGET_PROGRAM_NAME = "$outputname"; /* hopefully, no .exe */
cannam@89 4332 EOF
cannam@89 4333 fi
cannam@89 4334
cannam@89 4335
cannam@89 4336 cat <<"EOF"
cannam@89 4337
cannam@89 4338 #define LTWRAPPER_OPTION_PREFIX "--lt-"
cannam@89 4339
cannam@89 4340 static const char *ltwrapper_option_prefix = LTWRAPPER_OPTION_PREFIX;
cannam@89 4341 static const char *dumpscript_opt = LTWRAPPER_OPTION_PREFIX "dump-script";
cannam@89 4342 static const char *debug_opt = LTWRAPPER_OPTION_PREFIX "debug";
cannam@89 4343
cannam@89 4344 int
cannam@89 4345 main (int argc, char *argv[])
cannam@89 4346 {
cannam@89 4347 char **newargz;
cannam@89 4348 int newargc;
cannam@89 4349 char *tmp_pathspec;
cannam@89 4350 char *actual_cwrapper_path;
cannam@89 4351 char *actual_cwrapper_name;
cannam@89 4352 char *target_name;
cannam@89 4353 char *lt_argv_zero;
cannam@89 4354 intptr_t rval = 127;
cannam@89 4355
cannam@89 4356 int i;
cannam@89 4357
cannam@89 4358 program_name = (char *) xstrdup (base_name (argv[0]));
cannam@89 4359 newargz = XMALLOC (char *, argc + 1);
cannam@89 4360
cannam@89 4361 /* very simple arg parsing; don't want to rely on getopt
cannam@89 4362 * also, copy all non cwrapper options to newargz, except
cannam@89 4363 * argz[0], which is handled differently
cannam@89 4364 */
cannam@89 4365 newargc=0;
cannam@89 4366 for (i = 1; i < argc; i++)
cannam@89 4367 {
cannam@89 4368 if (strcmp (argv[i], dumpscript_opt) == 0)
cannam@89 4369 {
cannam@89 4370 EOF
cannam@89 4371 case "$host" in
cannam@89 4372 *mingw* | *cygwin* )
cannam@89 4373 # make stdout use "unix" line endings
cannam@89 4374 echo " setmode(1,_O_BINARY);"
cannam@89 4375 ;;
cannam@89 4376 esac
cannam@89 4377
cannam@89 4378 cat <<"EOF"
cannam@89 4379 lt_dump_script (stdout);
cannam@89 4380 return 0;
cannam@89 4381 }
cannam@89 4382 if (strcmp (argv[i], debug_opt) == 0)
cannam@89 4383 {
cannam@89 4384 lt_debug = 1;
cannam@89 4385 continue;
cannam@89 4386 }
cannam@89 4387 if (strcmp (argv[i], ltwrapper_option_prefix) == 0)
cannam@89 4388 {
cannam@89 4389 /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX
cannam@89 4390 namespace, but it is not one of the ones we know about and
cannam@89 4391 have already dealt with, above (inluding dump-script), then
cannam@89 4392 report an error. Otherwise, targets might begin to believe
cannam@89 4393 they are allowed to use options in the LTWRAPPER_OPTION_PREFIX
cannam@89 4394 namespace. The first time any user complains about this, we'll
cannam@89 4395 need to make LTWRAPPER_OPTION_PREFIX a configure-time option
cannam@89 4396 or a configure.ac-settable value.
cannam@89 4397 */
cannam@89 4398 lt_fatal (__FILE__, __LINE__,
cannam@89 4399 "unrecognized %s option: '%s'",
cannam@89 4400 ltwrapper_option_prefix, argv[i]);
cannam@89 4401 }
cannam@89 4402 /* otherwise ... */
cannam@89 4403 newargz[++newargc] = xstrdup (argv[i]);
cannam@89 4404 }
cannam@89 4405 newargz[++newargc] = NULL;
cannam@89 4406
cannam@89 4407 EOF
cannam@89 4408 cat <<EOF
cannam@89 4409 /* The GNU banner must be the first non-error debug message */
cannam@89 4410 lt_debugprintf (__FILE__, __LINE__, "libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\n");
cannam@89 4411 EOF
cannam@89 4412 cat <<"EOF"
cannam@89 4413 lt_debugprintf (__FILE__, __LINE__, "(main) argv[0]: %s\n", argv[0]);
cannam@89 4414 lt_debugprintf (__FILE__, __LINE__, "(main) program_name: %s\n", program_name);
cannam@89 4415
cannam@89 4416 tmp_pathspec = find_executable (argv[0]);
cannam@89 4417 if (tmp_pathspec == NULL)
cannam@89 4418 lt_fatal (__FILE__, __LINE__, "couldn't find %s", argv[0]);
cannam@89 4419 lt_debugprintf (__FILE__, __LINE__,
cannam@89 4420 "(main) found exe (before symlink chase) at: %s\n",
cannam@89 4421 tmp_pathspec);
cannam@89 4422
cannam@89 4423 actual_cwrapper_path = chase_symlinks (tmp_pathspec);
cannam@89 4424 lt_debugprintf (__FILE__, __LINE__,
cannam@89 4425 "(main) found exe (after symlink chase) at: %s\n",
cannam@89 4426 actual_cwrapper_path);
cannam@89 4427 XFREE (tmp_pathspec);
cannam@89 4428
cannam@89 4429 actual_cwrapper_name = xstrdup (base_name (actual_cwrapper_path));
cannam@89 4430 strendzap (actual_cwrapper_path, actual_cwrapper_name);
cannam@89 4431
cannam@89 4432 /* wrapper name transforms */
cannam@89 4433 strendzap (actual_cwrapper_name, ".exe");
cannam@89 4434 tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
cannam@89 4435 XFREE (actual_cwrapper_name);
cannam@89 4436 actual_cwrapper_name = tmp_pathspec;
cannam@89 4437 tmp_pathspec = 0;
cannam@89 4438
cannam@89 4439 /* target_name transforms -- use actual target program name; might have lt- prefix */
cannam@89 4440 target_name = xstrdup (base_name (TARGET_PROGRAM_NAME));
cannam@89 4441 strendzap (target_name, ".exe");
cannam@89 4442 tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
cannam@89 4443 XFREE (target_name);
cannam@89 4444 target_name = tmp_pathspec;
cannam@89 4445 tmp_pathspec = 0;
cannam@89 4446
cannam@89 4447 lt_debugprintf (__FILE__, __LINE__,
cannam@89 4448 "(main) libtool target name: %s\n",
cannam@89 4449 target_name);
cannam@89 4450 EOF
cannam@89 4451
cannam@89 4452 cat <<EOF
cannam@89 4453 newargz[0] =
cannam@89 4454 XMALLOC (char, (strlen (actual_cwrapper_path) +
cannam@89 4455 strlen ("$objdir") + 1 + strlen (actual_cwrapper_name) + 1));
cannam@89 4456 strcpy (newargz[0], actual_cwrapper_path);
cannam@89 4457 strcat (newargz[0], "$objdir");
cannam@89 4458 strcat (newargz[0], "/");
cannam@89 4459 EOF
cannam@89 4460
cannam@89 4461 cat <<"EOF"
cannam@89 4462 /* stop here, and copy so we don't have to do this twice */
cannam@89 4463 tmp_pathspec = xstrdup (newargz[0]);
cannam@89 4464
cannam@89 4465 /* do NOT want the lt- prefix here, so use actual_cwrapper_name */
cannam@89 4466 strcat (newargz[0], actual_cwrapper_name);
cannam@89 4467
cannam@89 4468 /* DO want the lt- prefix here if it exists, so use target_name */
cannam@89 4469 lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
cannam@89 4470 XFREE (tmp_pathspec);
cannam@89 4471 tmp_pathspec = NULL;
cannam@89 4472 EOF
cannam@89 4473
cannam@89 4474 case $host_os in
cannam@89 4475 mingw*)
cannam@89 4476 cat <<"EOF"
cannam@89 4477 {
cannam@89 4478 char* p;
cannam@89 4479 while ((p = strchr (newargz[0], '\\')) != NULL)
cannam@89 4480 {
cannam@89 4481 *p = '/';
cannam@89 4482 }
cannam@89 4483 while ((p = strchr (lt_argv_zero, '\\')) != NULL)
cannam@89 4484 {
cannam@89 4485 *p = '/';
cannam@89 4486 }
cannam@89 4487 }
cannam@89 4488 EOF
cannam@89 4489 ;;
cannam@89 4490 esac
cannam@89 4491
cannam@89 4492 cat <<"EOF"
cannam@89 4493 XFREE (target_name);
cannam@89 4494 XFREE (actual_cwrapper_path);
cannam@89 4495 XFREE (actual_cwrapper_name);
cannam@89 4496
cannam@89 4497 lt_setenv ("BIN_SH", "xpg4"); /* for Tru64 */
cannam@89 4498 lt_setenv ("DUALCASE", "1"); /* for MSK sh */
cannam@89 4499 /* Update the DLL searchpath. EXE_PATH_VALUE ($dllsearchpath) must
cannam@89 4500 be prepended before (that is, appear after) LIB_PATH_VALUE ($temp_rpath)
cannam@89 4501 because on Windows, both *_VARNAMEs are PATH but uninstalled
cannam@89 4502 libraries must come first. */
cannam@89 4503 lt_update_exe_path (EXE_PATH_VARNAME, EXE_PATH_VALUE);
cannam@89 4504 lt_update_lib_path (LIB_PATH_VARNAME, LIB_PATH_VALUE);
cannam@89 4505
cannam@89 4506 lt_debugprintf (__FILE__, __LINE__, "(main) lt_argv_zero: %s\n",
cannam@89 4507 nonnull (lt_argv_zero));
cannam@89 4508 for (i = 0; i < newargc; i++)
cannam@89 4509 {
cannam@89 4510 lt_debugprintf (__FILE__, __LINE__, "(main) newargz[%d]: %s\n",
cannam@89 4511 i, nonnull (newargz[i]));
cannam@89 4512 }
cannam@89 4513
cannam@89 4514 EOF
cannam@89 4515
cannam@89 4516 case $host_os in
cannam@89 4517 mingw*)
cannam@89 4518 cat <<"EOF"
cannam@89 4519 /* execv doesn't actually work on mingw as expected on unix */
cannam@89 4520 newargz = prepare_spawn (newargz);
cannam@89 4521 rval = _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz);
cannam@89 4522 if (rval == -1)
cannam@89 4523 {
cannam@89 4524 /* failed to start process */
cannam@89 4525 lt_debugprintf (__FILE__, __LINE__,
cannam@89 4526 "(main) failed to launch target \"%s\": %s\n",
cannam@89 4527 lt_argv_zero, nonnull (strerror (errno)));
cannam@89 4528 return 127;
cannam@89 4529 }
cannam@89 4530 return rval;
cannam@89 4531 EOF
cannam@89 4532 ;;
cannam@89 4533 *)
cannam@89 4534 cat <<"EOF"
cannam@89 4535 execv (lt_argv_zero, newargz);
cannam@89 4536 return rval; /* =127, but avoids unused variable warning */
cannam@89 4537 EOF
cannam@89 4538 ;;
cannam@89 4539 esac
cannam@89 4540
cannam@89 4541 cat <<"EOF"
cannam@89 4542 }
cannam@89 4543
cannam@89 4544 void *
cannam@89 4545 xmalloc (size_t num)
cannam@89 4546 {
cannam@89 4547 void *p = (void *) malloc (num);
cannam@89 4548 if (!p)
cannam@89 4549 lt_fatal (__FILE__, __LINE__, "memory exhausted");
cannam@89 4550
cannam@89 4551 return p;
cannam@89 4552 }
cannam@89 4553
cannam@89 4554 char *
cannam@89 4555 xstrdup (const char *string)
cannam@89 4556 {
cannam@89 4557 return string ? strcpy ((char *) xmalloc (strlen (string) + 1),
cannam@89 4558 string) : NULL;
cannam@89 4559 }
cannam@89 4560
cannam@89 4561 const char *
cannam@89 4562 base_name (const char *name)
cannam@89 4563 {
cannam@89 4564 const char *base;
cannam@89 4565
cannam@89 4566 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
cannam@89 4567 /* Skip over the disk name in MSDOS pathnames. */
cannam@89 4568 if (isalpha ((unsigned char) name[0]) && name[1] == ':')
cannam@89 4569 name += 2;
cannam@89 4570 #endif
cannam@89 4571
cannam@89 4572 for (base = name; *name; name++)
cannam@89 4573 if (IS_DIR_SEPARATOR (*name))
cannam@89 4574 base = name + 1;
cannam@89 4575 return base;
cannam@89 4576 }
cannam@89 4577
cannam@89 4578 int
cannam@89 4579 check_executable (const char *path)
cannam@89 4580 {
cannam@89 4581 struct stat st;
cannam@89 4582
cannam@89 4583 lt_debugprintf (__FILE__, __LINE__, "(check_executable): %s\n",
cannam@89 4584 nonempty (path));
cannam@89 4585 if ((!path) || (!*path))
cannam@89 4586 return 0;
cannam@89 4587
cannam@89 4588 if ((stat (path, &st) >= 0)
cannam@89 4589 && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
cannam@89 4590 return 1;
cannam@89 4591 else
cannam@89 4592 return 0;
cannam@89 4593 }
cannam@89 4594
cannam@89 4595 int
cannam@89 4596 make_executable (const char *path)
cannam@89 4597 {
cannam@89 4598 int rval = 0;
cannam@89 4599 struct stat st;
cannam@89 4600
cannam@89 4601 lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n",
cannam@89 4602 nonempty (path));
cannam@89 4603 if ((!path) || (!*path))
cannam@89 4604 return 0;
cannam@89 4605
cannam@89 4606 if (stat (path, &st) >= 0)
cannam@89 4607 {
cannam@89 4608 rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR);
cannam@89 4609 }
cannam@89 4610 return rval;
cannam@89 4611 }
cannam@89 4612
cannam@89 4613 /* Searches for the full path of the wrapper. Returns
cannam@89 4614 newly allocated full path name if found, NULL otherwise
cannam@89 4615 Does not chase symlinks, even on platforms that support them.
cannam@89 4616 */
cannam@89 4617 char *
cannam@89 4618 find_executable (const char *wrapper)
cannam@89 4619 {
cannam@89 4620 int has_slash = 0;
cannam@89 4621 const char *p;
cannam@89 4622 const char *p_next;
cannam@89 4623 /* static buffer for getcwd */
cannam@89 4624 char tmp[LT_PATHMAX + 1];
cannam@89 4625 int tmp_len;
cannam@89 4626 char *concat_name;
cannam@89 4627
cannam@89 4628 lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n",
cannam@89 4629 nonempty (wrapper));
cannam@89 4630
cannam@89 4631 if ((wrapper == NULL) || (*wrapper == '\0'))
cannam@89 4632 return NULL;
cannam@89 4633
cannam@89 4634 /* Absolute path? */
cannam@89 4635 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
cannam@89 4636 if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':')
cannam@89 4637 {
cannam@89 4638 concat_name = xstrdup (wrapper);
cannam@89 4639 if (check_executable (concat_name))
cannam@89 4640 return concat_name;
cannam@89 4641 XFREE (concat_name);
cannam@89 4642 }
cannam@89 4643 else
cannam@89 4644 {
cannam@89 4645 #endif
cannam@89 4646 if (IS_DIR_SEPARATOR (wrapper[0]))
cannam@89 4647 {
cannam@89 4648 concat_name = xstrdup (wrapper);
cannam@89 4649 if (check_executable (concat_name))
cannam@89 4650 return concat_name;
cannam@89 4651 XFREE (concat_name);
cannam@89 4652 }
cannam@89 4653 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
cannam@89 4654 }
cannam@89 4655 #endif
cannam@89 4656
cannam@89 4657 for (p = wrapper; *p; p++)
cannam@89 4658 if (*p == '/')
cannam@89 4659 {
cannam@89 4660 has_slash = 1;
cannam@89 4661 break;
cannam@89 4662 }
cannam@89 4663 if (!has_slash)
cannam@89 4664 {
cannam@89 4665 /* no slashes; search PATH */
cannam@89 4666 const char *path = getenv ("PATH");
cannam@89 4667 if (path != NULL)
cannam@89 4668 {
cannam@89 4669 for (p = path; *p; p = p_next)
cannam@89 4670 {
cannam@89 4671 const char *q;
cannam@89 4672 size_t p_len;
cannam@89 4673 for (q = p; *q; q++)
cannam@89 4674 if (IS_PATH_SEPARATOR (*q))
cannam@89 4675 break;
cannam@89 4676 p_len = q - p;
cannam@89 4677 p_next = (*q == '\0' ? q : q + 1);
cannam@89 4678 if (p_len == 0)
cannam@89 4679 {
cannam@89 4680 /* empty path: current directory */
cannam@89 4681 if (getcwd (tmp, LT_PATHMAX) == NULL)
cannam@89 4682 lt_fatal (__FILE__, __LINE__, "getcwd failed: %s",
cannam@89 4683 nonnull (strerror (errno)));
cannam@89 4684 tmp_len = strlen (tmp);
cannam@89 4685 concat_name =
cannam@89 4686 XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
cannam@89 4687 memcpy (concat_name, tmp, tmp_len);
cannam@89 4688 concat_name[tmp_len] = '/';
cannam@89 4689 strcpy (concat_name + tmp_len + 1, wrapper);
cannam@89 4690 }
cannam@89 4691 else
cannam@89 4692 {
cannam@89 4693 concat_name =
cannam@89 4694 XMALLOC (char, p_len + 1 + strlen (wrapper) + 1);
cannam@89 4695 memcpy (concat_name, p, p_len);
cannam@89 4696 concat_name[p_len] = '/';
cannam@89 4697 strcpy (concat_name + p_len + 1, wrapper);
cannam@89 4698 }
cannam@89 4699 if (check_executable (concat_name))
cannam@89 4700 return concat_name;
cannam@89 4701 XFREE (concat_name);
cannam@89 4702 }
cannam@89 4703 }
cannam@89 4704 /* not found in PATH; assume curdir */
cannam@89 4705 }
cannam@89 4706 /* Relative path | not found in path: prepend cwd */
cannam@89 4707 if (getcwd (tmp, LT_PATHMAX) == NULL)
cannam@89 4708 lt_fatal (__FILE__, __LINE__, "getcwd failed: %s",
cannam@89 4709 nonnull (strerror (errno)));
cannam@89 4710 tmp_len = strlen (tmp);
cannam@89 4711 concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
cannam@89 4712 memcpy (concat_name, tmp, tmp_len);
cannam@89 4713 concat_name[tmp_len] = '/';
cannam@89 4714 strcpy (concat_name + tmp_len + 1, wrapper);
cannam@89 4715
cannam@89 4716 if (check_executable (concat_name))
cannam@89 4717 return concat_name;
cannam@89 4718 XFREE (concat_name);
cannam@89 4719 return NULL;
cannam@89 4720 }
cannam@89 4721
cannam@89 4722 char *
cannam@89 4723 chase_symlinks (const char *pathspec)
cannam@89 4724 {
cannam@89 4725 #ifndef S_ISLNK
cannam@89 4726 return xstrdup (pathspec);
cannam@89 4727 #else
cannam@89 4728 char buf[LT_PATHMAX];
cannam@89 4729 struct stat s;
cannam@89 4730 char *tmp_pathspec = xstrdup (pathspec);
cannam@89 4731 char *p;
cannam@89 4732 int has_symlinks = 0;
cannam@89 4733 while (strlen (tmp_pathspec) && !has_symlinks)
cannam@89 4734 {
cannam@89 4735 lt_debugprintf (__FILE__, __LINE__,
cannam@89 4736 "checking path component for symlinks: %s\n",
cannam@89 4737 tmp_pathspec);
cannam@89 4738 if (lstat (tmp_pathspec, &s) == 0)
cannam@89 4739 {
cannam@89 4740 if (S_ISLNK (s.st_mode) != 0)
cannam@89 4741 {
cannam@89 4742 has_symlinks = 1;
cannam@89 4743 break;
cannam@89 4744 }
cannam@89 4745
cannam@89 4746 /* search backwards for last DIR_SEPARATOR */
cannam@89 4747 p = tmp_pathspec + strlen (tmp_pathspec) - 1;
cannam@89 4748 while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
cannam@89 4749 p--;
cannam@89 4750 if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
cannam@89 4751 {
cannam@89 4752 /* no more DIR_SEPARATORS left */
cannam@89 4753 break;
cannam@89 4754 }
cannam@89 4755 *p = '\0';
cannam@89 4756 }
cannam@89 4757 else
cannam@89 4758 {
cannam@89 4759 lt_fatal (__FILE__, __LINE__,
cannam@89 4760 "error accessing file \"%s\": %s",
cannam@89 4761 tmp_pathspec, nonnull (strerror (errno)));
cannam@89 4762 }
cannam@89 4763 }
cannam@89 4764 XFREE (tmp_pathspec);
cannam@89 4765
cannam@89 4766 if (!has_symlinks)
cannam@89 4767 {
cannam@89 4768 return xstrdup (pathspec);
cannam@89 4769 }
cannam@89 4770
cannam@89 4771 tmp_pathspec = realpath (pathspec, buf);
cannam@89 4772 if (tmp_pathspec == 0)
cannam@89 4773 {
cannam@89 4774 lt_fatal (__FILE__, __LINE__,
cannam@89 4775 "could not follow symlinks for %s", pathspec);
cannam@89 4776 }
cannam@89 4777 return xstrdup (tmp_pathspec);
cannam@89 4778 #endif
cannam@89 4779 }
cannam@89 4780
cannam@89 4781 char *
cannam@89 4782 strendzap (char *str, const char *pat)
cannam@89 4783 {
cannam@89 4784 size_t len, patlen;
cannam@89 4785
cannam@89 4786 assert (str != NULL);
cannam@89 4787 assert (pat != NULL);
cannam@89 4788
cannam@89 4789 len = strlen (str);
cannam@89 4790 patlen = strlen (pat);
cannam@89 4791
cannam@89 4792 if (patlen <= len)
cannam@89 4793 {
cannam@89 4794 str += len - patlen;
cannam@89 4795 if (strcmp (str, pat) == 0)
cannam@89 4796 *str = '\0';
cannam@89 4797 }
cannam@89 4798 return str;
cannam@89 4799 }
cannam@89 4800
cannam@89 4801 void
cannam@89 4802 lt_debugprintf (const char *file, int line, const char *fmt, ...)
cannam@89 4803 {
cannam@89 4804 va_list args;
cannam@89 4805 if (lt_debug)
cannam@89 4806 {
cannam@89 4807 (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line);
cannam@89 4808 va_start (args, fmt);
cannam@89 4809 (void) vfprintf (stderr, fmt, args);
cannam@89 4810 va_end (args);
cannam@89 4811 }
cannam@89 4812 }
cannam@89 4813
cannam@89 4814 static void
cannam@89 4815 lt_error_core (int exit_status, const char *file,
cannam@89 4816 int line, const char *mode,
cannam@89 4817 const char *message, va_list ap)
cannam@89 4818 {
cannam@89 4819 fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode);
cannam@89 4820 vfprintf (stderr, message, ap);
cannam@89 4821 fprintf (stderr, ".\n");
cannam@89 4822
cannam@89 4823 if (exit_status >= 0)
cannam@89 4824 exit (exit_status);
cannam@89 4825 }
cannam@89 4826
cannam@89 4827 void
cannam@89 4828 lt_fatal (const char *file, int line, const char *message, ...)
cannam@89 4829 {
cannam@89 4830 va_list ap;
cannam@89 4831 va_start (ap, message);
cannam@89 4832 lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap);
cannam@89 4833 va_end (ap);
cannam@89 4834 }
cannam@89 4835
cannam@89 4836 static const char *
cannam@89 4837 nonnull (const char *s)
cannam@89 4838 {
cannam@89 4839 return s ? s : "(null)";
cannam@89 4840 }
cannam@89 4841
cannam@89 4842 static const char *
cannam@89 4843 nonempty (const char *s)
cannam@89 4844 {
cannam@89 4845 return (s && !*s) ? "(empty)" : nonnull (s);
cannam@89 4846 }
cannam@89 4847
cannam@89 4848 void
cannam@89 4849 lt_setenv (const char *name, const char *value)
cannam@89 4850 {
cannam@89 4851 lt_debugprintf (__FILE__, __LINE__,
cannam@89 4852 "(lt_setenv) setting '%s' to '%s'\n",
cannam@89 4853 nonnull (name), nonnull (value));
cannam@89 4854 {
cannam@89 4855 #ifdef HAVE_SETENV
cannam@89 4856 /* always make a copy, for consistency with !HAVE_SETENV */
cannam@89 4857 char *str = xstrdup (value);
cannam@89 4858 setenv (name, str, 1);
cannam@89 4859 #else
cannam@89 4860 int len = strlen (name) + 1 + strlen (value) + 1;
cannam@89 4861 char *str = XMALLOC (char, len);
cannam@89 4862 sprintf (str, "%s=%s", name, value);
cannam@89 4863 if (putenv (str) != EXIT_SUCCESS)
cannam@89 4864 {
cannam@89 4865 XFREE (str);
cannam@89 4866 }
cannam@89 4867 #endif
cannam@89 4868 }
cannam@89 4869 }
cannam@89 4870
cannam@89 4871 char *
cannam@89 4872 lt_extend_str (const char *orig_value, const char *add, int to_end)
cannam@89 4873 {
cannam@89 4874 char *new_value;
cannam@89 4875 if (orig_value && *orig_value)
cannam@89 4876 {
cannam@89 4877 int orig_value_len = strlen (orig_value);
cannam@89 4878 int add_len = strlen (add);
cannam@89 4879 new_value = XMALLOC (char, add_len + orig_value_len + 1);
cannam@89 4880 if (to_end)
cannam@89 4881 {
cannam@89 4882 strcpy (new_value, orig_value);
cannam@89 4883 strcpy (new_value + orig_value_len, add);
cannam@89 4884 }
cannam@89 4885 else
cannam@89 4886 {
cannam@89 4887 strcpy (new_value, add);
cannam@89 4888 strcpy (new_value + add_len, orig_value);
cannam@89 4889 }
cannam@89 4890 }
cannam@89 4891 else
cannam@89 4892 {
cannam@89 4893 new_value = xstrdup (add);
cannam@89 4894 }
cannam@89 4895 return new_value;
cannam@89 4896 }
cannam@89 4897
cannam@89 4898 void
cannam@89 4899 lt_update_exe_path (const char *name, const char *value)
cannam@89 4900 {
cannam@89 4901 lt_debugprintf (__FILE__, __LINE__,
cannam@89 4902 "(lt_update_exe_path) modifying '%s' by prepending '%s'\n",
cannam@89 4903 nonnull (name), nonnull (value));
cannam@89 4904
cannam@89 4905 if (name && *name && value && *value)
cannam@89 4906 {
cannam@89 4907 char *new_value = lt_extend_str (getenv (name), value, 0);
cannam@89 4908 /* some systems can't cope with a ':'-terminated path #' */
cannam@89 4909 int len = strlen (new_value);
cannam@89 4910 while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1]))
cannam@89 4911 {
cannam@89 4912 new_value[len-1] = '\0';
cannam@89 4913 }
cannam@89 4914 lt_setenv (name, new_value);
cannam@89 4915 XFREE (new_value);
cannam@89 4916 }
cannam@89 4917 }
cannam@89 4918
cannam@89 4919 void
cannam@89 4920 lt_update_lib_path (const char *name, const char *value)
cannam@89 4921 {
cannam@89 4922 lt_debugprintf (__FILE__, __LINE__,
cannam@89 4923 "(lt_update_lib_path) modifying '%s' by prepending '%s'\n",
cannam@89 4924 nonnull (name), nonnull (value));
cannam@89 4925
cannam@89 4926 if (name && *name && value && *value)
cannam@89 4927 {
cannam@89 4928 char *new_value = lt_extend_str (getenv (name), value, 0);
cannam@89 4929 lt_setenv (name, new_value);
cannam@89 4930 XFREE (new_value);
cannam@89 4931 }
cannam@89 4932 }
cannam@89 4933
cannam@89 4934 EOF
cannam@89 4935 case $host_os in
cannam@89 4936 mingw*)
cannam@89 4937 cat <<"EOF"
cannam@89 4938
cannam@89 4939 /* Prepares an argument vector before calling spawn().
cannam@89 4940 Note that spawn() does not by itself call the command interpreter
cannam@89 4941 (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") :
cannam@89 4942 ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
cannam@89 4943 GetVersionEx(&v);
cannam@89 4944 v.dwPlatformId == VER_PLATFORM_WIN32_NT;
cannam@89 4945 }) ? "cmd.exe" : "command.com").
cannam@89 4946 Instead it simply concatenates the arguments, separated by ' ', and calls
cannam@89 4947 CreateProcess(). We must quote the arguments since Win32 CreateProcess()
cannam@89 4948 interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a
cannam@89 4949 special way:
cannam@89 4950 - Space and tab are interpreted as delimiters. They are not treated as
cannam@89 4951 delimiters if they are surrounded by double quotes: "...".
cannam@89 4952 - Unescaped double quotes are removed from the input. Their only effect is
cannam@89 4953 that within double quotes, space and tab are treated like normal
cannam@89 4954 characters.
cannam@89 4955 - Backslashes not followed by double quotes are not special.
cannam@89 4956 - But 2*n+1 backslashes followed by a double quote become
cannam@89 4957 n backslashes followed by a double quote (n >= 0):
cannam@89 4958 \" -> "
cannam@89 4959 \\\" -> \"
cannam@89 4960 \\\\\" -> \\"
cannam@89 4961 */
cannam@89 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@89 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@89 4964 char **
cannam@89 4965 prepare_spawn (char **argv)
cannam@89 4966 {
cannam@89 4967 size_t argc;
cannam@89 4968 char **new_argv;
cannam@89 4969 size_t i;
cannam@89 4970
cannam@89 4971 /* Count number of arguments. */
cannam@89 4972 for (argc = 0; argv[argc] != NULL; argc++)
cannam@89 4973 ;
cannam@89 4974
cannam@89 4975 /* Allocate new argument vector. */
cannam@89 4976 new_argv = XMALLOC (char *, argc + 1);
cannam@89 4977
cannam@89 4978 /* Put quoted arguments into the new argument vector. */
cannam@89 4979 for (i = 0; i < argc; i++)
cannam@89 4980 {
cannam@89 4981 const char *string = argv[i];
cannam@89 4982
cannam@89 4983 if (string[0] == '\0')
cannam@89 4984 new_argv[i] = xstrdup ("\"\"");
cannam@89 4985 else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL)
cannam@89 4986 {
cannam@89 4987 int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL);
cannam@89 4988 size_t length;
cannam@89 4989 unsigned int backslashes;
cannam@89 4990 const char *s;
cannam@89 4991 char *quoted_string;
cannam@89 4992 char *p;
cannam@89 4993
cannam@89 4994 length = 0;
cannam@89 4995 backslashes = 0;
cannam@89 4996 if (quote_around)
cannam@89 4997 length++;
cannam@89 4998 for (s = string; *s != '\0'; s++)
cannam@89 4999 {
cannam@89 5000 char c = *s;
cannam@89 5001 if (c == '"')
cannam@89 5002 length += backslashes + 1;
cannam@89 5003 length++;
cannam@89 5004 if (c == '\\')
cannam@89 5005 backslashes++;
cannam@89 5006 else
cannam@89 5007 backslashes = 0;
cannam@89 5008 }
cannam@89 5009 if (quote_around)
cannam@89 5010 length += backslashes + 1;
cannam@89 5011
cannam@89 5012 quoted_string = XMALLOC (char, length + 1);
cannam@89 5013
cannam@89 5014 p = quoted_string;
cannam@89 5015 backslashes = 0;
cannam@89 5016 if (quote_around)
cannam@89 5017 *p++ = '"';
cannam@89 5018 for (s = string; *s != '\0'; s++)
cannam@89 5019 {
cannam@89 5020 char c = *s;
cannam@89 5021 if (c == '"')
cannam@89 5022 {
cannam@89 5023 unsigned int j;
cannam@89 5024 for (j = backslashes + 1; j > 0; j--)
cannam@89 5025 *p++ = '\\';
cannam@89 5026 }
cannam@89 5027 *p++ = c;
cannam@89 5028 if (c == '\\')
cannam@89 5029 backslashes++;
cannam@89 5030 else
cannam@89 5031 backslashes = 0;
cannam@89 5032 }
cannam@89 5033 if (quote_around)
cannam@89 5034 {
cannam@89 5035 unsigned int j;
cannam@89 5036 for (j = backslashes; j > 0; j--)
cannam@89 5037 *p++ = '\\';
cannam@89 5038 *p++ = '"';
cannam@89 5039 }
cannam@89 5040 *p = '\0';
cannam@89 5041
cannam@89 5042 new_argv[i] = quoted_string;
cannam@89 5043 }
cannam@89 5044 else
cannam@89 5045 new_argv[i] = (char *) string;
cannam@89 5046 }
cannam@89 5047 new_argv[argc] = NULL;
cannam@89 5048
cannam@89 5049 return new_argv;
cannam@89 5050 }
cannam@89 5051 EOF
cannam@89 5052 ;;
cannam@89 5053 esac
cannam@89 5054
cannam@89 5055 cat <<"EOF"
cannam@89 5056 void lt_dump_script (FILE* f)
cannam@89 5057 {
cannam@89 5058 EOF
cannam@89 5059 func_emit_wrapper yes |
cannam@89 5060 $SED -e 's/\([\\"]\)/\\\1/g' \
cannam@89 5061 -e 's/^/ fputs ("/' -e 's/$/\\n", f);/'
cannam@89 5062
cannam@89 5063 cat <<"EOF"
cannam@89 5064 }
cannam@89 5065 EOF
cannam@89 5066 }
cannam@89 5067 # end: func_emit_cwrapperexe_src
cannam@89 5068
cannam@89 5069 # func_win32_import_lib_p ARG
cannam@89 5070 # True if ARG is an import lib, as indicated by $file_magic_cmd
cannam@89 5071 func_win32_import_lib_p ()
cannam@89 5072 {
cannam@89 5073 $opt_debug
cannam@89 5074 case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in
cannam@89 5075 *import*) : ;;
cannam@89 5076 *) false ;;
cannam@89 5077 esac
cannam@89 5078 }
cannam@89 5079
cannam@89 5080 # func_mode_link arg...
cannam@89 5081 func_mode_link ()
cannam@89 5082 {
cannam@89 5083 $opt_debug
cannam@89 5084 case $host in
cannam@89 5085 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
cannam@89 5086 # It is impossible to link a dll without this setting, and
cannam@89 5087 # we shouldn't force the makefile maintainer to figure out
cannam@89 5088 # which system we are compiling for in order to pass an extra
cannam@89 5089 # flag for every libtool invocation.
cannam@89 5090 # allow_undefined=no
cannam@89 5091
cannam@89 5092 # FIXME: Unfortunately, there are problems with the above when trying
cannam@89 5093 # to make a dll which has undefined symbols, in which case not
cannam@89 5094 # even a static library is built. For now, we need to specify
cannam@89 5095 # -no-undefined on the libtool link line when we can be certain
cannam@89 5096 # that all symbols are satisfied, otherwise we get a static library.
cannam@89 5097 allow_undefined=yes
cannam@89 5098 ;;
cannam@89 5099 *)
cannam@89 5100 allow_undefined=yes
cannam@89 5101 ;;
cannam@89 5102 esac
cannam@89 5103 libtool_args=$nonopt
cannam@89 5104 base_compile="$nonopt $@"
cannam@89 5105 compile_command=$nonopt
cannam@89 5106 finalize_command=$nonopt
cannam@89 5107
cannam@89 5108 compile_rpath=
cannam@89 5109 finalize_rpath=
cannam@89 5110 compile_shlibpath=
cannam@89 5111 finalize_shlibpath=
cannam@89 5112 convenience=
cannam@89 5113 old_convenience=
cannam@89 5114 deplibs=
cannam@89 5115 old_deplibs=
cannam@89 5116 compiler_flags=
cannam@89 5117 linker_flags=
cannam@89 5118 dllsearchpath=
cannam@89 5119 lib_search_path=`pwd`
cannam@89 5120 inst_prefix_dir=
cannam@89 5121 new_inherited_linker_flags=
cannam@89 5122
cannam@89 5123 avoid_version=no
cannam@89 5124 bindir=
cannam@89 5125 dlfiles=
cannam@89 5126 dlprefiles=
cannam@89 5127 dlself=no
cannam@89 5128 export_dynamic=no
cannam@89 5129 export_symbols=
cannam@89 5130 export_symbols_regex=
cannam@89 5131 generated=
cannam@89 5132 libobjs=
cannam@89 5133 ltlibs=
cannam@89 5134 module=no
cannam@89 5135 no_install=no
cannam@89 5136 objs=
cannam@89 5137 non_pic_objects=
cannam@89 5138 precious_files_regex=
cannam@89 5139 prefer_static_libs=no
cannam@89 5140 preload=no
cannam@89 5141 prev=
cannam@89 5142 prevarg=
cannam@89 5143 release=
cannam@89 5144 rpath=
cannam@89 5145 xrpath=
cannam@89 5146 perm_rpath=
cannam@89 5147 temp_rpath=
cannam@89 5148 thread_safe=no
cannam@89 5149 vinfo=
cannam@89 5150 vinfo_number=no
cannam@89 5151 weak_libs=
cannam@89 5152 single_module="${wl}-single_module"
cannam@89 5153 func_infer_tag $base_compile
cannam@89 5154
cannam@89 5155 # We need to know -static, to get the right output filenames.
cannam@89 5156 for arg
cannam@89 5157 do
cannam@89 5158 case $arg in
cannam@89 5159 -shared)
cannam@89 5160 test "$build_libtool_libs" != yes && \
cannam@89 5161 func_fatal_configuration "can not build a shared library"
cannam@89 5162 build_old_libs=no
cannam@89 5163 break
cannam@89 5164 ;;
cannam@89 5165 -all-static | -static | -static-libtool-libs)
cannam@89 5166 case $arg in
cannam@89 5167 -all-static)
cannam@89 5168 if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
cannam@89 5169 func_warning "complete static linking is impossible in this configuration"
cannam@89 5170 fi
cannam@89 5171 if test -n "$link_static_flag"; then
cannam@89 5172 dlopen_self=$dlopen_self_static
cannam@89 5173 fi
cannam@89 5174 prefer_static_libs=yes
cannam@89 5175 ;;
cannam@89 5176 -static)
cannam@89 5177 if test -z "$pic_flag" && test -n "$link_static_flag"; then
cannam@89 5178 dlopen_self=$dlopen_self_static
cannam@89 5179 fi
cannam@89 5180 prefer_static_libs=built
cannam@89 5181 ;;
cannam@89 5182 -static-libtool-libs)
cannam@89 5183 if test -z "$pic_flag" && test -n "$link_static_flag"; then
cannam@89 5184 dlopen_self=$dlopen_self_static
cannam@89 5185 fi
cannam@89 5186 prefer_static_libs=yes
cannam@89 5187 ;;
cannam@89 5188 esac
cannam@89 5189 build_libtool_libs=no
cannam@89 5190 build_old_libs=yes
cannam@89 5191 break
cannam@89 5192 ;;
cannam@89 5193 esac
cannam@89 5194 done
cannam@89 5195
cannam@89 5196 # See if our shared archives depend on static archives.
cannam@89 5197 test -n "$old_archive_from_new_cmds" && build_old_libs=yes
cannam@89 5198
cannam@89 5199 # Go through the arguments, transforming them on the way.
cannam@89 5200 while test "$#" -gt 0; do
cannam@89 5201 arg="$1"
cannam@89 5202 shift
cannam@89 5203 func_quote_for_eval "$arg"
cannam@89 5204 qarg=$func_quote_for_eval_unquoted_result
cannam@89 5205 func_append libtool_args " $func_quote_for_eval_result"
cannam@89 5206
cannam@89 5207 # If the previous option needs an argument, assign it.
cannam@89 5208 if test -n "$prev"; then
cannam@89 5209 case $prev in
cannam@89 5210 output)
cannam@89 5211 func_append compile_command " @OUTPUT@"
cannam@89 5212 func_append finalize_command " @OUTPUT@"
cannam@89 5213 ;;
cannam@89 5214 esac
cannam@89 5215
cannam@89 5216 case $prev in
cannam@89 5217 bindir)
cannam@89 5218 bindir="$arg"
cannam@89 5219 prev=
cannam@89 5220 continue
cannam@89 5221 ;;
cannam@89 5222 dlfiles|dlprefiles)
cannam@89 5223 if test "$preload" = no; then
cannam@89 5224 # Add the symbol object into the linking commands.
cannam@89 5225 func_append compile_command " @SYMFILE@"
cannam@89 5226 func_append finalize_command " @SYMFILE@"
cannam@89 5227 preload=yes
cannam@89 5228 fi
cannam@89 5229 case $arg in
cannam@89 5230 *.la | *.lo) ;; # We handle these cases below.
cannam@89 5231 force)
cannam@89 5232 if test "$dlself" = no; then
cannam@89 5233 dlself=needless
cannam@89 5234 export_dynamic=yes
cannam@89 5235 fi
cannam@89 5236 prev=
cannam@89 5237 continue
cannam@89 5238 ;;
cannam@89 5239 self)
cannam@89 5240 if test "$prev" = dlprefiles; then
cannam@89 5241 dlself=yes
cannam@89 5242 elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
cannam@89 5243 dlself=yes
cannam@89 5244 else
cannam@89 5245 dlself=needless
cannam@89 5246 export_dynamic=yes
cannam@89 5247 fi
cannam@89 5248 prev=
cannam@89 5249 continue
cannam@89 5250 ;;
cannam@89 5251 *)
cannam@89 5252 if test "$prev" = dlfiles; then
cannam@89 5253 func_append dlfiles " $arg"
cannam@89 5254 else
cannam@89 5255 func_append dlprefiles " $arg"
cannam@89 5256 fi
cannam@89 5257 prev=
cannam@89 5258 continue
cannam@89 5259 ;;
cannam@89 5260 esac
cannam@89 5261 ;;
cannam@89 5262 expsyms)
cannam@89 5263 export_symbols="$arg"
cannam@89 5264 test -f "$arg" \
cannam@89 5265 || func_fatal_error "symbol file \`$arg' does not exist"
cannam@89 5266 prev=
cannam@89 5267 continue
cannam@89 5268 ;;
cannam@89 5269 expsyms_regex)
cannam@89 5270 export_symbols_regex="$arg"
cannam@89 5271 prev=
cannam@89 5272 continue
cannam@89 5273 ;;
cannam@89 5274 framework)
cannam@89 5275 case $host in
cannam@89 5276 *-*-darwin*)
cannam@89 5277 case "$deplibs " in
cannam@89 5278 *" $qarg.ltframework "*) ;;
cannam@89 5279 *) func_append deplibs " $qarg.ltframework" # this is fixed later
cannam@89 5280 ;;
cannam@89 5281 esac
cannam@89 5282 ;;
cannam@89 5283 esac
cannam@89 5284 prev=
cannam@89 5285 continue
cannam@89 5286 ;;
cannam@89 5287 inst_prefix)
cannam@89 5288 inst_prefix_dir="$arg"
cannam@89 5289 prev=
cannam@89 5290 continue
cannam@89 5291 ;;
cannam@89 5292 objectlist)
cannam@89 5293 if test -f "$arg"; then
cannam@89 5294 save_arg=$arg
cannam@89 5295 moreargs=
cannam@89 5296 for fil in `cat "$save_arg"`
cannam@89 5297 do
cannam@89 5298 # func_append moreargs " $fil"
cannam@89 5299 arg=$fil
cannam@89 5300 # A libtool-controlled object.
cannam@89 5301
cannam@89 5302 # Check to see that this really is a libtool object.
cannam@89 5303 if func_lalib_unsafe_p "$arg"; then
cannam@89 5304 pic_object=
cannam@89 5305 non_pic_object=
cannam@89 5306
cannam@89 5307 # Read the .lo file
cannam@89 5308 func_source "$arg"
cannam@89 5309
cannam@89 5310 if test -z "$pic_object" ||
cannam@89 5311 test -z "$non_pic_object" ||
cannam@89 5312 test "$pic_object" = none &&
cannam@89 5313 test "$non_pic_object" = none; then
cannam@89 5314 func_fatal_error "cannot find name of object for \`$arg'"
cannam@89 5315 fi
cannam@89 5316
cannam@89 5317 # Extract subdirectory from the argument.
cannam@89 5318 func_dirname "$arg" "/" ""
cannam@89 5319 xdir="$func_dirname_result"
cannam@89 5320
cannam@89 5321 if test "$pic_object" != none; then
cannam@89 5322 # Prepend the subdirectory the object is found in.
cannam@89 5323 pic_object="$xdir$pic_object"
cannam@89 5324
cannam@89 5325 if test "$prev" = dlfiles; then
cannam@89 5326 if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
cannam@89 5327 func_append dlfiles " $pic_object"
cannam@89 5328 prev=
cannam@89 5329 continue
cannam@89 5330 else
cannam@89 5331 # If libtool objects are unsupported, then we need to preload.
cannam@89 5332 prev=dlprefiles
cannam@89 5333 fi
cannam@89 5334 fi
cannam@89 5335
cannam@89 5336 # CHECK ME: I think I busted this. -Ossama
cannam@89 5337 if test "$prev" = dlprefiles; then
cannam@89 5338 # Preload the old-style object.
cannam@89 5339 func_append dlprefiles " $pic_object"
cannam@89 5340 prev=
cannam@89 5341 fi
cannam@89 5342
cannam@89 5343 # A PIC object.
cannam@89 5344 func_append libobjs " $pic_object"
cannam@89 5345 arg="$pic_object"
cannam@89 5346 fi
cannam@89 5347
cannam@89 5348 # Non-PIC object.
cannam@89 5349 if test "$non_pic_object" != none; then
cannam@89 5350 # Prepend the subdirectory the object is found in.
cannam@89 5351 non_pic_object="$xdir$non_pic_object"
cannam@89 5352
cannam@89 5353 # A standard non-PIC object
cannam@89 5354 func_append non_pic_objects " $non_pic_object"
cannam@89 5355 if test -z "$pic_object" || test "$pic_object" = none ; then
cannam@89 5356 arg="$non_pic_object"
cannam@89 5357 fi
cannam@89 5358 else
cannam@89 5359 # If the PIC object exists, use it instead.
cannam@89 5360 # $xdir was prepended to $pic_object above.
cannam@89 5361 non_pic_object="$pic_object"
cannam@89 5362 func_append non_pic_objects " $non_pic_object"
cannam@89 5363 fi
cannam@89 5364 else
cannam@89 5365 # Only an error if not doing a dry-run.
cannam@89 5366 if $opt_dry_run; then
cannam@89 5367 # Extract subdirectory from the argument.
cannam@89 5368 func_dirname "$arg" "/" ""
cannam@89 5369 xdir="$func_dirname_result"
cannam@89 5370
cannam@89 5371 func_lo2o "$arg"
cannam@89 5372 pic_object=$xdir$objdir/$func_lo2o_result
cannam@89 5373 non_pic_object=$xdir$func_lo2o_result
cannam@89 5374 func_append libobjs " $pic_object"
cannam@89 5375 func_append non_pic_objects " $non_pic_object"
cannam@89 5376 else
cannam@89 5377 func_fatal_error "\`$arg' is not a valid libtool object"
cannam@89 5378 fi
cannam@89 5379 fi
cannam@89 5380 done
cannam@89 5381 else
cannam@89 5382 func_fatal_error "link input file \`$arg' does not exist"
cannam@89 5383 fi
cannam@89 5384 arg=$save_arg
cannam@89 5385 prev=
cannam@89 5386 continue
cannam@89 5387 ;;
cannam@89 5388 precious_regex)
cannam@89 5389 precious_files_regex="$arg"
cannam@89 5390 prev=
cannam@89 5391 continue
cannam@89 5392 ;;
cannam@89 5393 release)
cannam@89 5394 release="-$arg"
cannam@89 5395 prev=
cannam@89 5396 continue
cannam@89 5397 ;;
cannam@89 5398 rpath | xrpath)
cannam@89 5399 # We need an absolute path.
cannam@89 5400 case $arg in
cannam@89 5401 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@89 5402 *)
cannam@89 5403 func_fatal_error "only absolute run-paths are allowed"
cannam@89 5404 ;;
cannam@89 5405 esac
cannam@89 5406 if test "$prev" = rpath; then
cannam@89 5407 case "$rpath " in
cannam@89 5408 *" $arg "*) ;;
cannam@89 5409 *) func_append rpath " $arg" ;;
cannam@89 5410 esac
cannam@89 5411 else
cannam@89 5412 case "$xrpath " in
cannam@89 5413 *" $arg "*) ;;
cannam@89 5414 *) func_append xrpath " $arg" ;;
cannam@89 5415 esac
cannam@89 5416 fi
cannam@89 5417 prev=
cannam@89 5418 continue
cannam@89 5419 ;;
cannam@89 5420 shrext)
cannam@89 5421 shrext_cmds="$arg"
cannam@89 5422 prev=
cannam@89 5423 continue
cannam@89 5424 ;;
cannam@89 5425 weak)
cannam@89 5426 func_append weak_libs " $arg"
cannam@89 5427 prev=
cannam@89 5428 continue
cannam@89 5429 ;;
cannam@89 5430 xcclinker)
cannam@89 5431 func_append linker_flags " $qarg"
cannam@89 5432 func_append compiler_flags " $qarg"
cannam@89 5433 prev=
cannam@89 5434 func_append compile_command " $qarg"
cannam@89 5435 func_append finalize_command " $qarg"
cannam@89 5436 continue
cannam@89 5437 ;;
cannam@89 5438 xcompiler)
cannam@89 5439 func_append compiler_flags " $qarg"
cannam@89 5440 prev=
cannam@89 5441 func_append compile_command " $qarg"
cannam@89 5442 func_append finalize_command " $qarg"
cannam@89 5443 continue
cannam@89 5444 ;;
cannam@89 5445 xlinker)
cannam@89 5446 func_append linker_flags " $qarg"
cannam@89 5447 func_append compiler_flags " $wl$qarg"
cannam@89 5448 prev=
cannam@89 5449 func_append compile_command " $wl$qarg"
cannam@89 5450 func_append finalize_command " $wl$qarg"
cannam@89 5451 continue
cannam@89 5452 ;;
cannam@89 5453 *)
cannam@89 5454 eval "$prev=\"\$arg\""
cannam@89 5455 prev=
cannam@89 5456 continue
cannam@89 5457 ;;
cannam@89 5458 esac
cannam@89 5459 fi # test -n "$prev"
cannam@89 5460
cannam@89 5461 prevarg="$arg"
cannam@89 5462
cannam@89 5463 case $arg in
cannam@89 5464 -all-static)
cannam@89 5465 if test -n "$link_static_flag"; then
cannam@89 5466 # See comment for -static flag below, for more details.
cannam@89 5467 func_append compile_command " $link_static_flag"
cannam@89 5468 func_append finalize_command " $link_static_flag"
cannam@89 5469 fi
cannam@89 5470 continue
cannam@89 5471 ;;
cannam@89 5472
cannam@89 5473 -allow-undefined)
cannam@89 5474 # FIXME: remove this flag sometime in the future.
cannam@89 5475 func_fatal_error "\`-allow-undefined' must not be used because it is the default"
cannam@89 5476 ;;
cannam@89 5477
cannam@89 5478 -avoid-version)
cannam@89 5479 avoid_version=yes
cannam@89 5480 continue
cannam@89 5481 ;;
cannam@89 5482
cannam@89 5483 -bindir)
cannam@89 5484 prev=bindir
cannam@89 5485 continue
cannam@89 5486 ;;
cannam@89 5487
cannam@89 5488 -dlopen)
cannam@89 5489 prev=dlfiles
cannam@89 5490 continue
cannam@89 5491 ;;
cannam@89 5492
cannam@89 5493 -dlpreopen)
cannam@89 5494 prev=dlprefiles
cannam@89 5495 continue
cannam@89 5496 ;;
cannam@89 5497
cannam@89 5498 -export-dynamic)
cannam@89 5499 export_dynamic=yes
cannam@89 5500 continue
cannam@89 5501 ;;
cannam@89 5502
cannam@89 5503 -export-symbols | -export-symbols-regex)
cannam@89 5504 if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
cannam@89 5505 func_fatal_error "more than one -exported-symbols argument is not allowed"
cannam@89 5506 fi
cannam@89 5507 if test "X$arg" = "X-export-symbols"; then
cannam@89 5508 prev=expsyms
cannam@89 5509 else
cannam@89 5510 prev=expsyms_regex
cannam@89 5511 fi
cannam@89 5512 continue
cannam@89 5513 ;;
cannam@89 5514
cannam@89 5515 -framework)
cannam@89 5516 prev=framework
cannam@89 5517 continue
cannam@89 5518 ;;
cannam@89 5519
cannam@89 5520 -inst-prefix-dir)
cannam@89 5521 prev=inst_prefix
cannam@89 5522 continue
cannam@89 5523 ;;
cannam@89 5524
cannam@89 5525 # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
cannam@89 5526 # so, if we see these flags be careful not to treat them like -L
cannam@89 5527 -L[A-Z][A-Z]*:*)
cannam@89 5528 case $with_gcc/$host in
cannam@89 5529 no/*-*-irix* | /*-*-irix*)
cannam@89 5530 func_append compile_command " $arg"
cannam@89 5531 func_append finalize_command " $arg"
cannam@89 5532 ;;
cannam@89 5533 esac
cannam@89 5534 continue
cannam@89 5535 ;;
cannam@89 5536
cannam@89 5537 -L*)
cannam@89 5538 func_stripname "-L" '' "$arg"
cannam@89 5539 if test -z "$func_stripname_result"; then
cannam@89 5540 if test "$#" -gt 0; then
cannam@89 5541 func_fatal_error "require no space between \`-L' and \`$1'"
cannam@89 5542 else
cannam@89 5543 func_fatal_error "need path for \`-L' option"
cannam@89 5544 fi
cannam@89 5545 fi
cannam@89 5546 func_resolve_sysroot "$func_stripname_result"
cannam@89 5547 dir=$func_resolve_sysroot_result
cannam@89 5548 # We need an absolute path.
cannam@89 5549 case $dir in
cannam@89 5550 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@89 5551 *)
cannam@89 5552 absdir=`cd "$dir" && pwd`
cannam@89 5553 test -z "$absdir" && \
cannam@89 5554 func_fatal_error "cannot determine absolute directory name of \`$dir'"
cannam@89 5555 dir="$absdir"
cannam@89 5556 ;;
cannam@89 5557 esac
cannam@89 5558 case "$deplibs " in
cannam@89 5559 *" -L$dir "* | *" $arg "*)
cannam@89 5560 # Will only happen for absolute or sysroot arguments
cannam@89 5561 ;;
cannam@89 5562 *)
cannam@89 5563 # Preserve sysroot, but never include relative directories
cannam@89 5564 case $dir in
cannam@89 5565 [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;;
cannam@89 5566 *) func_append deplibs " -L$dir" ;;
cannam@89 5567 esac
cannam@89 5568 func_append lib_search_path " $dir"
cannam@89 5569 ;;
cannam@89 5570 esac
cannam@89 5571 case $host in
cannam@89 5572 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
cannam@89 5573 testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'`
cannam@89 5574 case :$dllsearchpath: in
cannam@89 5575 *":$dir:"*) ;;
cannam@89 5576 ::) dllsearchpath=$dir;;
cannam@89 5577 *) func_append dllsearchpath ":$dir";;
cannam@89 5578 esac
cannam@89 5579 case :$dllsearchpath: in
cannam@89 5580 *":$testbindir:"*) ;;
cannam@89 5581 ::) dllsearchpath=$testbindir;;
cannam@89 5582 *) func_append dllsearchpath ":$testbindir";;
cannam@89 5583 esac
cannam@89 5584 ;;
cannam@89 5585 esac
cannam@89 5586 continue
cannam@89 5587 ;;
cannam@89 5588
cannam@89 5589 -l*)
cannam@89 5590 if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
cannam@89 5591 case $host in
cannam@89 5592 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*)
cannam@89 5593 # These systems don't actually have a C or math library (as such)
cannam@89 5594 continue
cannam@89 5595 ;;
cannam@89 5596 *-*-os2*)
cannam@89 5597 # These systems don't actually have a C library (as such)
cannam@89 5598 test "X$arg" = "X-lc" && continue
cannam@89 5599 ;;
cannam@89 5600 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@89 5601 # Do not include libc due to us having libc/libc_r.
cannam@89 5602 test "X$arg" = "X-lc" && continue
cannam@89 5603 ;;
cannam@89 5604 *-*-rhapsody* | *-*-darwin1.[012])
cannam@89 5605 # Rhapsody C and math libraries are in the System framework
cannam@89 5606 func_append deplibs " System.ltframework"
cannam@89 5607 continue
cannam@89 5608 ;;
cannam@89 5609 *-*-sco3.2v5* | *-*-sco5v6*)
cannam@89 5610 # Causes problems with __ctype
cannam@89 5611 test "X$arg" = "X-lc" && continue
cannam@89 5612 ;;
cannam@89 5613 *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
cannam@89 5614 # Compiler inserts libc in the correct place for threads to work
cannam@89 5615 test "X$arg" = "X-lc" && continue
cannam@89 5616 ;;
cannam@89 5617 esac
cannam@89 5618 elif test "X$arg" = "X-lc_r"; then
cannam@89 5619 case $host in
cannam@89 5620 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@89 5621 # Do not include libc_r directly, use -pthread flag.
cannam@89 5622 continue
cannam@89 5623 ;;
cannam@89 5624 esac
cannam@89 5625 fi
cannam@89 5626 func_append deplibs " $arg"
cannam@89 5627 continue
cannam@89 5628 ;;
cannam@89 5629
cannam@89 5630 -module)
cannam@89 5631 module=yes
cannam@89 5632 continue
cannam@89 5633 ;;
cannam@89 5634
cannam@89 5635 # Tru64 UNIX uses -model [arg] to determine the layout of C++
cannam@89 5636 # classes, name mangling, and exception handling.
cannam@89 5637 # Darwin uses the -arch flag to determine output architecture.
cannam@89 5638 -model|-arch|-isysroot|--sysroot)
cannam@89 5639 func_append compiler_flags " $arg"
cannam@89 5640 func_append compile_command " $arg"
cannam@89 5641 func_append finalize_command " $arg"
cannam@89 5642 prev=xcompiler
cannam@89 5643 continue
cannam@89 5644 ;;
cannam@89 5645
cannam@89 5646 -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
cannam@89 5647 func_append compiler_flags " $arg"
cannam@89 5648 func_append compile_command " $arg"
cannam@89 5649 func_append finalize_command " $arg"
cannam@89 5650 case "$new_inherited_linker_flags " in
cannam@89 5651 *" $arg "*) ;;
cannam@89 5652 * ) func_append new_inherited_linker_flags " $arg" ;;
cannam@89 5653 esac
cannam@89 5654 continue
cannam@89 5655 ;;
cannam@89 5656
cannam@89 5657 -multi_module)
cannam@89 5658 single_module="${wl}-multi_module"
cannam@89 5659 continue
cannam@89 5660 ;;
cannam@89 5661
cannam@89 5662 -no-fast-install)
cannam@89 5663 fast_install=no
cannam@89 5664 continue
cannam@89 5665 ;;
cannam@89 5666
cannam@89 5667 -no-install)
cannam@89 5668 case $host in
cannam@89 5669 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*)
cannam@89 5670 # The PATH hackery in wrapper scripts is required on Windows
cannam@89 5671 # and Darwin in order for the loader to find any dlls it needs.
cannam@89 5672 func_warning "\`-no-install' is ignored for $host"
cannam@89 5673 func_warning "assuming \`-no-fast-install' instead"
cannam@89 5674 fast_install=no
cannam@89 5675 ;;
cannam@89 5676 *) no_install=yes ;;
cannam@89 5677 esac
cannam@89 5678 continue
cannam@89 5679 ;;
cannam@89 5680
cannam@89 5681 -no-undefined)
cannam@89 5682 allow_undefined=no
cannam@89 5683 continue
cannam@89 5684 ;;
cannam@89 5685
cannam@89 5686 -objectlist)
cannam@89 5687 prev=objectlist
cannam@89 5688 continue
cannam@89 5689 ;;
cannam@89 5690
cannam@89 5691 -o) prev=output ;;
cannam@89 5692
cannam@89 5693 -precious-files-regex)
cannam@89 5694 prev=precious_regex
cannam@89 5695 continue
cannam@89 5696 ;;
cannam@89 5697
cannam@89 5698 -release)
cannam@89 5699 prev=release
cannam@89 5700 continue
cannam@89 5701 ;;
cannam@89 5702
cannam@89 5703 -rpath)
cannam@89 5704 prev=rpath
cannam@89 5705 continue
cannam@89 5706 ;;
cannam@89 5707
cannam@89 5708 -R)
cannam@89 5709 prev=xrpath
cannam@89 5710 continue
cannam@89 5711 ;;
cannam@89 5712
cannam@89 5713 -R*)
cannam@89 5714 func_stripname '-R' '' "$arg"
cannam@89 5715 dir=$func_stripname_result
cannam@89 5716 # We need an absolute path.
cannam@89 5717 case $dir in
cannam@89 5718 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@89 5719 =*)
cannam@89 5720 func_stripname '=' '' "$dir"
cannam@89 5721 dir=$lt_sysroot$func_stripname_result
cannam@89 5722 ;;
cannam@89 5723 *)
cannam@89 5724 func_fatal_error "only absolute run-paths are allowed"
cannam@89 5725 ;;
cannam@89 5726 esac
cannam@89 5727 case "$xrpath " in
cannam@89 5728 *" $dir "*) ;;
cannam@89 5729 *) func_append xrpath " $dir" ;;
cannam@89 5730 esac
cannam@89 5731 continue
cannam@89 5732 ;;
cannam@89 5733
cannam@89 5734 -shared)
cannam@89 5735 # The effects of -shared are defined in a previous loop.
cannam@89 5736 continue
cannam@89 5737 ;;
cannam@89 5738
cannam@89 5739 -shrext)
cannam@89 5740 prev=shrext
cannam@89 5741 continue
cannam@89 5742 ;;
cannam@89 5743
cannam@89 5744 -static | -static-libtool-libs)
cannam@89 5745 # The effects of -static are defined in a previous loop.
cannam@89 5746 # We used to do the same as -all-static on platforms that
cannam@89 5747 # didn't have a PIC flag, but the assumption that the effects
cannam@89 5748 # would be equivalent was wrong. It would break on at least
cannam@89 5749 # Digital Unix and AIX.
cannam@89 5750 continue
cannam@89 5751 ;;
cannam@89 5752
cannam@89 5753 -thread-safe)
cannam@89 5754 thread_safe=yes
cannam@89 5755 continue
cannam@89 5756 ;;
cannam@89 5757
cannam@89 5758 -version-info)
cannam@89 5759 prev=vinfo
cannam@89 5760 continue
cannam@89 5761 ;;
cannam@89 5762
cannam@89 5763 -version-number)
cannam@89 5764 prev=vinfo
cannam@89 5765 vinfo_number=yes
cannam@89 5766 continue
cannam@89 5767 ;;
cannam@89 5768
cannam@89 5769 -weak)
cannam@89 5770 prev=weak
cannam@89 5771 continue
cannam@89 5772 ;;
cannam@89 5773
cannam@89 5774 -Wc,*)
cannam@89 5775 func_stripname '-Wc,' '' "$arg"
cannam@89 5776 args=$func_stripname_result
cannam@89 5777 arg=
cannam@89 5778 save_ifs="$IFS"; IFS=','
cannam@89 5779 for flag in $args; do
cannam@89 5780 IFS="$save_ifs"
cannam@89 5781 func_quote_for_eval "$flag"
cannam@89 5782 func_append arg " $func_quote_for_eval_result"
cannam@89 5783 func_append compiler_flags " $func_quote_for_eval_result"
cannam@89 5784 done
cannam@89 5785 IFS="$save_ifs"
cannam@89 5786 func_stripname ' ' '' "$arg"
cannam@89 5787 arg=$func_stripname_result
cannam@89 5788 ;;
cannam@89 5789
cannam@89 5790 -Wl,*)
cannam@89 5791 func_stripname '-Wl,' '' "$arg"
cannam@89 5792 args=$func_stripname_result
cannam@89 5793 arg=
cannam@89 5794 save_ifs="$IFS"; IFS=','
cannam@89 5795 for flag in $args; do
cannam@89 5796 IFS="$save_ifs"
cannam@89 5797 func_quote_for_eval "$flag"
cannam@89 5798 func_append arg " $wl$func_quote_for_eval_result"
cannam@89 5799 func_append compiler_flags " $wl$func_quote_for_eval_result"
cannam@89 5800 func_append linker_flags " $func_quote_for_eval_result"
cannam@89 5801 done
cannam@89 5802 IFS="$save_ifs"
cannam@89 5803 func_stripname ' ' '' "$arg"
cannam@89 5804 arg=$func_stripname_result
cannam@89 5805 ;;
cannam@89 5806
cannam@89 5807 -Xcompiler)
cannam@89 5808 prev=xcompiler
cannam@89 5809 continue
cannam@89 5810 ;;
cannam@89 5811
cannam@89 5812 -Xlinker)
cannam@89 5813 prev=xlinker
cannam@89 5814 continue
cannam@89 5815 ;;
cannam@89 5816
cannam@89 5817 -XCClinker)
cannam@89 5818 prev=xcclinker
cannam@89 5819 continue
cannam@89 5820 ;;
cannam@89 5821
cannam@89 5822 # -msg_* for osf cc
cannam@89 5823 -msg_*)
cannam@89 5824 func_quote_for_eval "$arg"
cannam@89 5825 arg="$func_quote_for_eval_result"
cannam@89 5826 ;;
cannam@89 5827
cannam@89 5828 # Flags to be passed through unchanged, with rationale:
cannam@89 5829 # -64, -mips[0-9] enable 64-bit mode for the SGI compiler
cannam@89 5830 # -r[0-9][0-9]* specify processor for the SGI compiler
cannam@89 5831 # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler
cannam@89 5832 # +DA*, +DD* enable 64-bit mode for the HP compiler
cannam@89 5833 # -q* compiler args for the IBM compiler
cannam@89 5834 # -m*, -t[45]*, -txscale* architecture-specific flags for GCC
cannam@89 5835 # -F/path path to uninstalled frameworks, gcc on darwin
cannam@89 5836 # -p, -pg, --coverage, -fprofile-* profiling flags for GCC
cannam@89 5837 # @file GCC response files
cannam@89 5838 # -tp=* Portland pgcc target processor selection
cannam@89 5839 # --sysroot=* for sysroot support
cannam@89 5840 # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization
cannam@89 5841 -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
cannam@89 5842 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
cannam@89 5843 -O*|-flto*|-fwhopr*|-fuse-linker-plugin)
cannam@89 5844 func_quote_for_eval "$arg"
cannam@89 5845 arg="$func_quote_for_eval_result"
cannam@89 5846 func_append compile_command " $arg"
cannam@89 5847 func_append finalize_command " $arg"
cannam@89 5848 func_append compiler_flags " $arg"
cannam@89 5849 continue
cannam@89 5850 ;;
cannam@89 5851
cannam@89 5852 # Some other compiler flag.
cannam@89 5853 -* | +*)
cannam@89 5854 func_quote_for_eval "$arg"
cannam@89 5855 arg="$func_quote_for_eval_result"
cannam@89 5856 ;;
cannam@89 5857
cannam@89 5858 *.$objext)
cannam@89 5859 # A standard object.
cannam@89 5860 func_append objs " $arg"
cannam@89 5861 ;;
cannam@89 5862
cannam@89 5863 *.lo)
cannam@89 5864 # A libtool-controlled object.
cannam@89 5865
cannam@89 5866 # Check to see that this really is a libtool object.
cannam@89 5867 if func_lalib_unsafe_p "$arg"; then
cannam@89 5868 pic_object=
cannam@89 5869 non_pic_object=
cannam@89 5870
cannam@89 5871 # Read the .lo file
cannam@89 5872 func_source "$arg"
cannam@89 5873
cannam@89 5874 if test -z "$pic_object" ||
cannam@89 5875 test -z "$non_pic_object" ||
cannam@89 5876 test "$pic_object" = none &&
cannam@89 5877 test "$non_pic_object" = none; then
cannam@89 5878 func_fatal_error "cannot find name of object for \`$arg'"
cannam@89 5879 fi
cannam@89 5880
cannam@89 5881 # Extract subdirectory from the argument.
cannam@89 5882 func_dirname "$arg" "/" ""
cannam@89 5883 xdir="$func_dirname_result"
cannam@89 5884
cannam@89 5885 if test "$pic_object" != none; then
cannam@89 5886 # Prepend the subdirectory the object is found in.
cannam@89 5887 pic_object="$xdir$pic_object"
cannam@89 5888
cannam@89 5889 if test "$prev" = dlfiles; then
cannam@89 5890 if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
cannam@89 5891 func_append dlfiles " $pic_object"
cannam@89 5892 prev=
cannam@89 5893 continue
cannam@89 5894 else
cannam@89 5895 # If libtool objects are unsupported, then we need to preload.
cannam@89 5896 prev=dlprefiles
cannam@89 5897 fi
cannam@89 5898 fi
cannam@89 5899
cannam@89 5900 # CHECK ME: I think I busted this. -Ossama
cannam@89 5901 if test "$prev" = dlprefiles; then
cannam@89 5902 # Preload the old-style object.
cannam@89 5903 func_append dlprefiles " $pic_object"
cannam@89 5904 prev=
cannam@89 5905 fi
cannam@89 5906
cannam@89 5907 # A PIC object.
cannam@89 5908 func_append libobjs " $pic_object"
cannam@89 5909 arg="$pic_object"
cannam@89 5910 fi
cannam@89 5911
cannam@89 5912 # Non-PIC object.
cannam@89 5913 if test "$non_pic_object" != none; then
cannam@89 5914 # Prepend the subdirectory the object is found in.
cannam@89 5915 non_pic_object="$xdir$non_pic_object"
cannam@89 5916
cannam@89 5917 # A standard non-PIC object
cannam@89 5918 func_append non_pic_objects " $non_pic_object"
cannam@89 5919 if test -z "$pic_object" || test "$pic_object" = none ; then
cannam@89 5920 arg="$non_pic_object"
cannam@89 5921 fi
cannam@89 5922 else
cannam@89 5923 # If the PIC object exists, use it instead.
cannam@89 5924 # $xdir was prepended to $pic_object above.
cannam@89 5925 non_pic_object="$pic_object"
cannam@89 5926 func_append non_pic_objects " $non_pic_object"
cannam@89 5927 fi
cannam@89 5928 else
cannam@89 5929 # Only an error if not doing a dry-run.
cannam@89 5930 if $opt_dry_run; then
cannam@89 5931 # Extract subdirectory from the argument.
cannam@89 5932 func_dirname "$arg" "/" ""
cannam@89 5933 xdir="$func_dirname_result"
cannam@89 5934
cannam@89 5935 func_lo2o "$arg"
cannam@89 5936 pic_object=$xdir$objdir/$func_lo2o_result
cannam@89 5937 non_pic_object=$xdir$func_lo2o_result
cannam@89 5938 func_append libobjs " $pic_object"
cannam@89 5939 func_append non_pic_objects " $non_pic_object"
cannam@89 5940 else
cannam@89 5941 func_fatal_error "\`$arg' is not a valid libtool object"
cannam@89 5942 fi
cannam@89 5943 fi
cannam@89 5944 ;;
cannam@89 5945
cannam@89 5946 *.$libext)
cannam@89 5947 # An archive.
cannam@89 5948 func_append deplibs " $arg"
cannam@89 5949 func_append old_deplibs " $arg"
cannam@89 5950 continue
cannam@89 5951 ;;
cannam@89 5952
cannam@89 5953 *.la)
cannam@89 5954 # A libtool-controlled library.
cannam@89 5955
cannam@89 5956 func_resolve_sysroot "$arg"
cannam@89 5957 if test "$prev" = dlfiles; then
cannam@89 5958 # This library was specified with -dlopen.
cannam@89 5959 func_append dlfiles " $func_resolve_sysroot_result"
cannam@89 5960 prev=
cannam@89 5961 elif test "$prev" = dlprefiles; then
cannam@89 5962 # The library was specified with -dlpreopen.
cannam@89 5963 func_append dlprefiles " $func_resolve_sysroot_result"
cannam@89 5964 prev=
cannam@89 5965 else
cannam@89 5966 func_append deplibs " $func_resolve_sysroot_result"
cannam@89 5967 fi
cannam@89 5968 continue
cannam@89 5969 ;;
cannam@89 5970
cannam@89 5971 # Some other compiler argument.
cannam@89 5972 *)
cannam@89 5973 # Unknown arguments in both finalize_command and compile_command need
cannam@89 5974 # to be aesthetically quoted because they are evaled later.
cannam@89 5975 func_quote_for_eval "$arg"
cannam@89 5976 arg="$func_quote_for_eval_result"
cannam@89 5977 ;;
cannam@89 5978 esac # arg
cannam@89 5979
cannam@89 5980 # Now actually substitute the argument into the commands.
cannam@89 5981 if test -n "$arg"; then
cannam@89 5982 func_append compile_command " $arg"
cannam@89 5983 func_append finalize_command " $arg"
cannam@89 5984 fi
cannam@89 5985 done # argument parsing loop
cannam@89 5986
cannam@89 5987 test -n "$prev" && \
cannam@89 5988 func_fatal_help "the \`$prevarg' option requires an argument"
cannam@89 5989
cannam@89 5990 if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
cannam@89 5991 eval arg=\"$export_dynamic_flag_spec\"
cannam@89 5992 func_append compile_command " $arg"
cannam@89 5993 func_append finalize_command " $arg"
cannam@89 5994 fi
cannam@89 5995
cannam@89 5996 oldlibs=
cannam@89 5997 # calculate the name of the file, without its directory
cannam@89 5998 func_basename "$output"
cannam@89 5999 outputname="$func_basename_result"
cannam@89 6000 libobjs_save="$libobjs"
cannam@89 6001
cannam@89 6002 if test -n "$shlibpath_var"; then
cannam@89 6003 # get the directories listed in $shlibpath_var
cannam@89 6004 eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\`
cannam@89 6005 else
cannam@89 6006 shlib_search_path=
cannam@89 6007 fi
cannam@89 6008 eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
cannam@89 6009 eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"
cannam@89 6010
cannam@89 6011 func_dirname "$output" "/" ""
cannam@89 6012 output_objdir="$func_dirname_result$objdir"
cannam@89 6013 func_to_tool_file "$output_objdir/"
cannam@89 6014 tool_output_objdir=$func_to_tool_file_result
cannam@89 6015 # Create the object directory.
cannam@89 6016 func_mkdir_p "$output_objdir"
cannam@89 6017
cannam@89 6018 # Determine the type of output
cannam@89 6019 case $output in
cannam@89 6020 "")
cannam@89 6021 func_fatal_help "you must specify an output file"
cannam@89 6022 ;;
cannam@89 6023 *.$libext) linkmode=oldlib ;;
cannam@89 6024 *.lo | *.$objext) linkmode=obj ;;
cannam@89 6025 *.la) linkmode=lib ;;
cannam@89 6026 *) linkmode=prog ;; # Anything else should be a program.
cannam@89 6027 esac
cannam@89 6028
cannam@89 6029 specialdeplibs=
cannam@89 6030
cannam@89 6031 libs=
cannam@89 6032 # Find all interdependent deplibs by searching for libraries
cannam@89 6033 # that are linked more than once (e.g. -la -lb -la)
cannam@89 6034 for deplib in $deplibs; do
cannam@89 6035 if $opt_preserve_dup_deps ; then
cannam@89 6036 case "$libs " in
cannam@89 6037 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
cannam@89 6038 esac
cannam@89 6039 fi
cannam@89 6040 func_append libs " $deplib"
cannam@89 6041 done
cannam@89 6042
cannam@89 6043 if test "$linkmode" = lib; then
cannam@89 6044 libs="$predeps $libs $compiler_lib_search_path $postdeps"
cannam@89 6045
cannam@89 6046 # Compute libraries that are listed more than once in $predeps
cannam@89 6047 # $postdeps and mark them as special (i.e., whose duplicates are
cannam@89 6048 # not to be eliminated).
cannam@89 6049 pre_post_deps=
cannam@89 6050 if $opt_duplicate_compiler_generated_deps; then
cannam@89 6051 for pre_post_dep in $predeps $postdeps; do
cannam@89 6052 case "$pre_post_deps " in
cannam@89 6053 *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;;
cannam@89 6054 esac
cannam@89 6055 func_append pre_post_deps " $pre_post_dep"
cannam@89 6056 done
cannam@89 6057 fi
cannam@89 6058 pre_post_deps=
cannam@89 6059 fi
cannam@89 6060
cannam@89 6061 deplibs=
cannam@89 6062 newdependency_libs=
cannam@89 6063 newlib_search_path=
cannam@89 6064 need_relink=no # whether we're linking any uninstalled libtool libraries
cannam@89 6065 notinst_deplibs= # not-installed libtool libraries
cannam@89 6066 notinst_path= # paths that contain not-installed libtool libraries
cannam@89 6067
cannam@89 6068 case $linkmode in
cannam@89 6069 lib)
cannam@89 6070 passes="conv dlpreopen link"
cannam@89 6071 for file in $dlfiles $dlprefiles; do
cannam@89 6072 case $file in
cannam@89 6073 *.la) ;;
cannam@89 6074 *)
cannam@89 6075 func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file"
cannam@89 6076 ;;
cannam@89 6077 esac
cannam@89 6078 done
cannam@89 6079 ;;
cannam@89 6080 prog)
cannam@89 6081 compile_deplibs=
cannam@89 6082 finalize_deplibs=
cannam@89 6083 alldeplibs=no
cannam@89 6084 newdlfiles=
cannam@89 6085 newdlprefiles=
cannam@89 6086 passes="conv scan dlopen dlpreopen link"
cannam@89 6087 ;;
cannam@89 6088 *) passes="conv"
cannam@89 6089 ;;
cannam@89 6090 esac
cannam@89 6091
cannam@89 6092 for pass in $passes; do
cannam@89 6093 # The preopen pass in lib mode reverses $deplibs; put it back here
cannam@89 6094 # so that -L comes before libs that need it for instance...
cannam@89 6095 if test "$linkmode,$pass" = "lib,link"; then
cannam@89 6096 ## FIXME: Find the place where the list is rebuilt in the wrong
cannam@89 6097 ## order, and fix it there properly
cannam@89 6098 tmp_deplibs=
cannam@89 6099 for deplib in $deplibs; do
cannam@89 6100 tmp_deplibs="$deplib $tmp_deplibs"
cannam@89 6101 done
cannam@89 6102 deplibs="$tmp_deplibs"
cannam@89 6103 fi
cannam@89 6104
cannam@89 6105 if test "$linkmode,$pass" = "lib,link" ||
cannam@89 6106 test "$linkmode,$pass" = "prog,scan"; then
cannam@89 6107 libs="$deplibs"
cannam@89 6108 deplibs=
cannam@89 6109 fi
cannam@89 6110 if test "$linkmode" = prog; then
cannam@89 6111 case $pass in
cannam@89 6112 dlopen) libs="$dlfiles" ;;
cannam@89 6113 dlpreopen) libs="$dlprefiles" ;;
cannam@89 6114 link)
cannam@89 6115 libs="$deplibs %DEPLIBS%"
cannam@89 6116 test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
cannam@89 6117 ;;
cannam@89 6118 esac
cannam@89 6119 fi
cannam@89 6120 if test "$linkmode,$pass" = "lib,dlpreopen"; then
cannam@89 6121 # Collect and forward deplibs of preopened libtool libs
cannam@89 6122 for lib in $dlprefiles; do
cannam@89 6123 # Ignore non-libtool-libs
cannam@89 6124 dependency_libs=
cannam@89 6125 func_resolve_sysroot "$lib"
cannam@89 6126 case $lib in
cannam@89 6127 *.la) func_source "$func_resolve_sysroot_result" ;;
cannam@89 6128 esac
cannam@89 6129
cannam@89 6130 # Collect preopened libtool deplibs, except any this library
cannam@89 6131 # has declared as weak libs
cannam@89 6132 for deplib in $dependency_libs; do
cannam@89 6133 func_basename "$deplib"
cannam@89 6134 deplib_base=$func_basename_result
cannam@89 6135 case " $weak_libs " in
cannam@89 6136 *" $deplib_base "*) ;;
cannam@89 6137 *) func_append deplibs " $deplib" ;;
cannam@89 6138 esac
cannam@89 6139 done
cannam@89 6140 done
cannam@89 6141 libs="$dlprefiles"
cannam@89 6142 fi
cannam@89 6143 if test "$pass" = dlopen; then
cannam@89 6144 # Collect dlpreopened libraries
cannam@89 6145 save_deplibs="$deplibs"
cannam@89 6146 deplibs=
cannam@89 6147 fi
cannam@89 6148
cannam@89 6149 for deplib in $libs; do
cannam@89 6150 lib=
cannam@89 6151 found=no
cannam@89 6152 case $deplib in
cannam@89 6153 -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
cannam@89 6154 if test "$linkmode,$pass" = "prog,link"; then
cannam@89 6155 compile_deplibs="$deplib $compile_deplibs"
cannam@89 6156 finalize_deplibs="$deplib $finalize_deplibs"
cannam@89 6157 else
cannam@89 6158 func_append compiler_flags " $deplib"
cannam@89 6159 if test "$linkmode" = lib ; then
cannam@89 6160 case "$new_inherited_linker_flags " in
cannam@89 6161 *" $deplib "*) ;;
cannam@89 6162 * ) func_append new_inherited_linker_flags " $deplib" ;;
cannam@89 6163 esac
cannam@89 6164 fi
cannam@89 6165 fi
cannam@89 6166 continue
cannam@89 6167 ;;
cannam@89 6168 -l*)
cannam@89 6169 if test "$linkmode" != lib && test "$linkmode" != prog; then
cannam@89 6170 func_warning "\`-l' is ignored for archives/objects"
cannam@89 6171 continue
cannam@89 6172 fi
cannam@89 6173 func_stripname '-l' '' "$deplib"
cannam@89 6174 name=$func_stripname_result
cannam@89 6175 if test "$linkmode" = lib; then
cannam@89 6176 searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path"
cannam@89 6177 else
cannam@89 6178 searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path"
cannam@89 6179 fi
cannam@89 6180 for searchdir in $searchdirs; do
cannam@89 6181 for search_ext in .la $std_shrext .so .a; do
cannam@89 6182 # Search the libtool library
cannam@89 6183 lib="$searchdir/lib${name}${search_ext}"
cannam@89 6184 if test -f "$lib"; then
cannam@89 6185 if test "$search_ext" = ".la"; then
cannam@89 6186 found=yes
cannam@89 6187 else
cannam@89 6188 found=no
cannam@89 6189 fi
cannam@89 6190 break 2
cannam@89 6191 fi
cannam@89 6192 done
cannam@89 6193 done
cannam@89 6194 if test "$found" != yes; then
cannam@89 6195 # deplib doesn't seem to be a libtool library
cannam@89 6196 if test "$linkmode,$pass" = "prog,link"; then
cannam@89 6197 compile_deplibs="$deplib $compile_deplibs"
cannam@89 6198 finalize_deplibs="$deplib $finalize_deplibs"
cannam@89 6199 else
cannam@89 6200 deplibs="$deplib $deplibs"
cannam@89 6201 test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
cannam@89 6202 fi
cannam@89 6203 continue
cannam@89 6204 else # deplib is a libtool library
cannam@89 6205 # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,
cannam@89 6206 # We need to do some special things here, and not later.
cannam@89 6207 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@89 6208 case " $predeps $postdeps " in
cannam@89 6209 *" $deplib "*)
cannam@89 6210 if func_lalib_p "$lib"; then
cannam@89 6211 library_names=
cannam@89 6212 old_library=
cannam@89 6213 func_source "$lib"
cannam@89 6214 for l in $old_library $library_names; do
cannam@89 6215 ll="$l"
cannam@89 6216 done
cannam@89 6217 if test "X$ll" = "X$old_library" ; then # only static version available
cannam@89 6218 found=no
cannam@89 6219 func_dirname "$lib" "" "."
cannam@89 6220 ladir="$func_dirname_result"
cannam@89 6221 lib=$ladir/$old_library
cannam@89 6222 if test "$linkmode,$pass" = "prog,link"; then
cannam@89 6223 compile_deplibs="$deplib $compile_deplibs"
cannam@89 6224 finalize_deplibs="$deplib $finalize_deplibs"
cannam@89 6225 else
cannam@89 6226 deplibs="$deplib $deplibs"
cannam@89 6227 test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
cannam@89 6228 fi
cannam@89 6229 continue
cannam@89 6230 fi
cannam@89 6231 fi
cannam@89 6232 ;;
cannam@89 6233 *) ;;
cannam@89 6234 esac
cannam@89 6235 fi
cannam@89 6236 fi
cannam@89 6237 ;; # -l
cannam@89 6238 *.ltframework)
cannam@89 6239 if test "$linkmode,$pass" = "prog,link"; then
cannam@89 6240 compile_deplibs="$deplib $compile_deplibs"
cannam@89 6241 finalize_deplibs="$deplib $finalize_deplibs"
cannam@89 6242 else
cannam@89 6243 deplibs="$deplib $deplibs"
cannam@89 6244 if test "$linkmode" = lib ; then
cannam@89 6245 case "$new_inherited_linker_flags " in
cannam@89 6246 *" $deplib "*) ;;
cannam@89 6247 * ) func_append new_inherited_linker_flags " $deplib" ;;
cannam@89 6248 esac
cannam@89 6249 fi
cannam@89 6250 fi
cannam@89 6251 continue
cannam@89 6252 ;;
cannam@89 6253 -L*)
cannam@89 6254 case $linkmode in
cannam@89 6255 lib)
cannam@89 6256 deplibs="$deplib $deplibs"
cannam@89 6257 test "$pass" = conv && continue
cannam@89 6258 newdependency_libs="$deplib $newdependency_libs"
cannam@89 6259 func_stripname '-L' '' "$deplib"
cannam@89 6260 func_resolve_sysroot "$func_stripname_result"
cannam@89 6261 func_append newlib_search_path " $func_resolve_sysroot_result"
cannam@89 6262 ;;
cannam@89 6263 prog)
cannam@89 6264 if test "$pass" = conv; then
cannam@89 6265 deplibs="$deplib $deplibs"
cannam@89 6266 continue
cannam@89 6267 fi
cannam@89 6268 if test "$pass" = scan; then
cannam@89 6269 deplibs="$deplib $deplibs"
cannam@89 6270 else
cannam@89 6271 compile_deplibs="$deplib $compile_deplibs"
cannam@89 6272 finalize_deplibs="$deplib $finalize_deplibs"
cannam@89 6273 fi
cannam@89 6274 func_stripname '-L' '' "$deplib"
cannam@89 6275 func_resolve_sysroot "$func_stripname_result"
cannam@89 6276 func_append newlib_search_path " $func_resolve_sysroot_result"
cannam@89 6277 ;;
cannam@89 6278 *)
cannam@89 6279 func_warning "\`-L' is ignored for archives/objects"
cannam@89 6280 ;;
cannam@89 6281 esac # linkmode
cannam@89 6282 continue
cannam@89 6283 ;; # -L
cannam@89 6284 -R*)
cannam@89 6285 if test "$pass" = link; then
cannam@89 6286 func_stripname '-R' '' "$deplib"
cannam@89 6287 func_resolve_sysroot "$func_stripname_result"
cannam@89 6288 dir=$func_resolve_sysroot_result
cannam@89 6289 # Make sure the xrpath contains only unique directories.
cannam@89 6290 case "$xrpath " in
cannam@89 6291 *" $dir "*) ;;
cannam@89 6292 *) func_append xrpath " $dir" ;;
cannam@89 6293 esac
cannam@89 6294 fi
cannam@89 6295 deplibs="$deplib $deplibs"
cannam@89 6296 continue
cannam@89 6297 ;;
cannam@89 6298 *.la)
cannam@89 6299 func_resolve_sysroot "$deplib"
cannam@89 6300 lib=$func_resolve_sysroot_result
cannam@89 6301 ;;
cannam@89 6302 *.$libext)
cannam@89 6303 if test "$pass" = conv; then
cannam@89 6304 deplibs="$deplib $deplibs"
cannam@89 6305 continue
cannam@89 6306 fi
cannam@89 6307 case $linkmode in
cannam@89 6308 lib)
cannam@89 6309 # Linking convenience modules into shared libraries is allowed,
cannam@89 6310 # but linking other static libraries is non-portable.
cannam@89 6311 case " $dlpreconveniencelibs " in
cannam@89 6312 *" $deplib "*) ;;
cannam@89 6313 *)
cannam@89 6314 valid_a_lib=no
cannam@89 6315 case $deplibs_check_method in
cannam@89 6316 match_pattern*)
cannam@89 6317 set dummy $deplibs_check_method; shift
cannam@89 6318 match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
cannam@89 6319 if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \
cannam@89 6320 | $EGREP "$match_pattern_regex" > /dev/null; then
cannam@89 6321 valid_a_lib=yes
cannam@89 6322 fi
cannam@89 6323 ;;
cannam@89 6324 pass_all)
cannam@89 6325 valid_a_lib=yes
cannam@89 6326 ;;
cannam@89 6327 esac
cannam@89 6328 if test "$valid_a_lib" != yes; then
cannam@89 6329 echo
cannam@89 6330 $ECHO "*** Warning: Trying to link with static lib archive $deplib."
cannam@89 6331 echo "*** I have the capability to make that library automatically link in when"
cannam@89 6332 echo "*** you link to this library. But I can only do this if you have a"
cannam@89 6333 echo "*** shared version of the library, which you do not appear to have"
cannam@89 6334 echo "*** because the file extensions .$libext of this argument makes me believe"
cannam@89 6335 echo "*** that it is just a static archive that I should not use here."
cannam@89 6336 else
cannam@89 6337 echo
cannam@89 6338 $ECHO "*** Warning: Linking the shared library $output against the"
cannam@89 6339 $ECHO "*** static library $deplib is not portable!"
cannam@89 6340 deplibs="$deplib $deplibs"
cannam@89 6341 fi
cannam@89 6342 ;;
cannam@89 6343 esac
cannam@89 6344 continue
cannam@89 6345 ;;
cannam@89 6346 prog)
cannam@89 6347 if test "$pass" != link; then
cannam@89 6348 deplibs="$deplib $deplibs"
cannam@89 6349 else
cannam@89 6350 compile_deplibs="$deplib $compile_deplibs"
cannam@89 6351 finalize_deplibs="$deplib $finalize_deplibs"
cannam@89 6352 fi
cannam@89 6353 continue
cannam@89 6354 ;;
cannam@89 6355 esac # linkmode
cannam@89 6356 ;; # *.$libext
cannam@89 6357 *.lo | *.$objext)
cannam@89 6358 if test "$pass" = conv; then
cannam@89 6359 deplibs="$deplib $deplibs"
cannam@89 6360 elif test "$linkmode" = prog; then
cannam@89 6361 if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
cannam@89 6362 # If there is no dlopen support or we're linking statically,
cannam@89 6363 # we need to preload.
cannam@89 6364 func_append newdlprefiles " $deplib"
cannam@89 6365 compile_deplibs="$deplib $compile_deplibs"
cannam@89 6366 finalize_deplibs="$deplib $finalize_deplibs"
cannam@89 6367 else
cannam@89 6368 func_append newdlfiles " $deplib"
cannam@89 6369 fi
cannam@89 6370 fi
cannam@89 6371 continue
cannam@89 6372 ;;
cannam@89 6373 %DEPLIBS%)
cannam@89 6374 alldeplibs=yes
cannam@89 6375 continue
cannam@89 6376 ;;
cannam@89 6377 esac # case $deplib
cannam@89 6378
cannam@89 6379 if test "$found" = yes || test -f "$lib"; then :
cannam@89 6380 else
cannam@89 6381 func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'"
cannam@89 6382 fi
cannam@89 6383
cannam@89 6384 # Check to see that this really is a libtool archive.
cannam@89 6385 func_lalib_unsafe_p "$lib" \
cannam@89 6386 || func_fatal_error "\`$lib' is not a valid libtool archive"
cannam@89 6387
cannam@89 6388 func_dirname "$lib" "" "."
cannam@89 6389 ladir="$func_dirname_result"
cannam@89 6390
cannam@89 6391 dlname=
cannam@89 6392 dlopen=
cannam@89 6393 dlpreopen=
cannam@89 6394 libdir=
cannam@89 6395 library_names=
cannam@89 6396 old_library=
cannam@89 6397 inherited_linker_flags=
cannam@89 6398 # If the library was installed with an old release of libtool,
cannam@89 6399 # it will not redefine variables installed, or shouldnotlink
cannam@89 6400 installed=yes
cannam@89 6401 shouldnotlink=no
cannam@89 6402 avoidtemprpath=
cannam@89 6403
cannam@89 6404
cannam@89 6405 # Read the .la file
cannam@89 6406 func_source "$lib"
cannam@89 6407
cannam@89 6408 # Convert "-framework foo" to "foo.ltframework"
cannam@89 6409 if test -n "$inherited_linker_flags"; then
cannam@89 6410 tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'`
cannam@89 6411 for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do
cannam@89 6412 case " $new_inherited_linker_flags " in
cannam@89 6413 *" $tmp_inherited_linker_flag "*) ;;
cannam@89 6414 *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";;
cannam@89 6415 esac
cannam@89 6416 done
cannam@89 6417 fi
cannam@89 6418 dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@89 6419 if test "$linkmode,$pass" = "lib,link" ||
cannam@89 6420 test "$linkmode,$pass" = "prog,scan" ||
cannam@89 6421 { test "$linkmode" != prog && test "$linkmode" != lib; }; then
cannam@89 6422 test -n "$dlopen" && func_append dlfiles " $dlopen"
cannam@89 6423 test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen"
cannam@89 6424 fi
cannam@89 6425
cannam@89 6426 if test "$pass" = conv; then
cannam@89 6427 # Only check for convenience libraries
cannam@89 6428 deplibs="$lib $deplibs"
cannam@89 6429 if test -z "$libdir"; then
cannam@89 6430 if test -z "$old_library"; then
cannam@89 6431 func_fatal_error "cannot find name of link library for \`$lib'"
cannam@89 6432 fi
cannam@89 6433 # It is a libtool convenience library, so add in its objects.
cannam@89 6434 func_append convenience " $ladir/$objdir/$old_library"
cannam@89 6435 func_append old_convenience " $ladir/$objdir/$old_library"
cannam@89 6436 tmp_libs=
cannam@89 6437 for deplib in $dependency_libs; do
cannam@89 6438 deplibs="$deplib $deplibs"
cannam@89 6439 if $opt_preserve_dup_deps ; then
cannam@89 6440 case "$tmp_libs " in
cannam@89 6441 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
cannam@89 6442 esac
cannam@89 6443 fi
cannam@89 6444 func_append tmp_libs " $deplib"
cannam@89 6445 done
cannam@89 6446 elif test "$linkmode" != prog && test "$linkmode" != lib; then
cannam@89 6447 func_fatal_error "\`$lib' is not a convenience library"
cannam@89 6448 fi
cannam@89 6449 continue
cannam@89 6450 fi # $pass = conv
cannam@89 6451
cannam@89 6452
cannam@89 6453 # Get the name of the library we link against.
cannam@89 6454 linklib=
cannam@89 6455 if test -n "$old_library" &&
cannam@89 6456 { test "$prefer_static_libs" = yes ||
cannam@89 6457 test "$prefer_static_libs,$installed" = "built,no"; }; then
cannam@89 6458 linklib=$old_library
cannam@89 6459 else
cannam@89 6460 for l in $old_library $library_names; do
cannam@89 6461 linklib="$l"
cannam@89 6462 done
cannam@89 6463 fi
cannam@89 6464 if test -z "$linklib"; then
cannam@89 6465 func_fatal_error "cannot find name of link library for \`$lib'"
cannam@89 6466 fi
cannam@89 6467
cannam@89 6468 # This library was specified with -dlopen.
cannam@89 6469 if test "$pass" = dlopen; then
cannam@89 6470 if test -z "$libdir"; then
cannam@89 6471 func_fatal_error "cannot -dlopen a convenience library: \`$lib'"
cannam@89 6472 fi
cannam@89 6473 if test -z "$dlname" ||
cannam@89 6474 test "$dlopen_support" != yes ||
cannam@89 6475 test "$build_libtool_libs" = no; then
cannam@89 6476 # If there is no dlname, no dlopen support or we're linking
cannam@89 6477 # statically, we need to preload. We also need to preload any
cannam@89 6478 # dependent libraries so libltdl's deplib preloader doesn't
cannam@89 6479 # bomb out in the load deplibs phase.
cannam@89 6480 func_append dlprefiles " $lib $dependency_libs"
cannam@89 6481 else
cannam@89 6482 func_append newdlfiles " $lib"
cannam@89 6483 fi
cannam@89 6484 continue
cannam@89 6485 fi # $pass = dlopen
cannam@89 6486
cannam@89 6487 # We need an absolute path.
cannam@89 6488 case $ladir in
cannam@89 6489 [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;
cannam@89 6490 *)
cannam@89 6491 abs_ladir=`cd "$ladir" && pwd`
cannam@89 6492 if test -z "$abs_ladir"; then
cannam@89 6493 func_warning "cannot determine absolute directory name of \`$ladir'"
cannam@89 6494 func_warning "passing it literally to the linker, although it might fail"
cannam@89 6495 abs_ladir="$ladir"
cannam@89 6496 fi
cannam@89 6497 ;;
cannam@89 6498 esac
cannam@89 6499 func_basename "$lib"
cannam@89 6500 laname="$func_basename_result"
cannam@89 6501
cannam@89 6502 # Find the relevant object directory and library name.
cannam@89 6503 if test "X$installed" = Xyes; then
cannam@89 6504 if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
cannam@89 6505 func_warning "library \`$lib' was moved."
cannam@89 6506 dir="$ladir"
cannam@89 6507 absdir="$abs_ladir"
cannam@89 6508 libdir="$abs_ladir"
cannam@89 6509 else
cannam@89 6510 dir="$lt_sysroot$libdir"
cannam@89 6511 absdir="$lt_sysroot$libdir"
cannam@89 6512 fi
cannam@89 6513 test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes
cannam@89 6514 else
cannam@89 6515 if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then
cannam@89 6516 dir="$ladir"
cannam@89 6517 absdir="$abs_ladir"
cannam@89 6518 # Remove this search path later
cannam@89 6519 func_append notinst_path " $abs_ladir"
cannam@89 6520 else
cannam@89 6521 dir="$ladir/$objdir"
cannam@89 6522 absdir="$abs_ladir/$objdir"
cannam@89 6523 # Remove this search path later
cannam@89 6524 func_append notinst_path " $abs_ladir"
cannam@89 6525 fi
cannam@89 6526 fi # $installed = yes
cannam@89 6527 func_stripname 'lib' '.la' "$laname"
cannam@89 6528 name=$func_stripname_result
cannam@89 6529
cannam@89 6530 # This library was specified with -dlpreopen.
cannam@89 6531 if test "$pass" = dlpreopen; then
cannam@89 6532 if test -z "$libdir" && test "$linkmode" = prog; then
cannam@89 6533 func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'"
cannam@89 6534 fi
cannam@89 6535 case "$host" in
cannam@89 6536 # special handling for platforms with PE-DLLs.
cannam@89 6537 *cygwin* | *mingw* | *cegcc* )
cannam@89 6538 # Linker will automatically link against shared library if both
cannam@89 6539 # static and shared are present. Therefore, ensure we extract
cannam@89 6540 # symbols from the import library if a shared library is present
cannam@89 6541 # (otherwise, the dlopen module name will be incorrect). We do
cannam@89 6542 # this by putting the import library name into $newdlprefiles.
cannam@89 6543 # We recover the dlopen module name by 'saving' the la file
cannam@89 6544 # name in a special purpose variable, and (later) extracting the
cannam@89 6545 # dlname from the la file.
cannam@89 6546 if test -n "$dlname"; then
cannam@89 6547 func_tr_sh "$dir/$linklib"
cannam@89 6548 eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname"
cannam@89 6549 func_append newdlprefiles " $dir/$linklib"
cannam@89 6550 else
cannam@89 6551 func_append newdlprefiles " $dir/$old_library"
cannam@89 6552 # Keep a list of preopened convenience libraries to check
cannam@89 6553 # that they are being used correctly in the link pass.
cannam@89 6554 test -z "$libdir" && \
cannam@89 6555 func_append dlpreconveniencelibs " $dir/$old_library"
cannam@89 6556 fi
cannam@89 6557 ;;
cannam@89 6558 * )
cannam@89 6559 # Prefer using a static library (so that no silly _DYNAMIC symbols
cannam@89 6560 # are required to link).
cannam@89 6561 if test -n "$old_library"; then
cannam@89 6562 func_append newdlprefiles " $dir/$old_library"
cannam@89 6563 # Keep a list of preopened convenience libraries to check
cannam@89 6564 # that they are being used correctly in the link pass.
cannam@89 6565 test -z "$libdir" && \
cannam@89 6566 func_append dlpreconveniencelibs " $dir/$old_library"
cannam@89 6567 # Otherwise, use the dlname, so that lt_dlopen finds it.
cannam@89 6568 elif test -n "$dlname"; then
cannam@89 6569 func_append newdlprefiles " $dir/$dlname"
cannam@89 6570 else
cannam@89 6571 func_append newdlprefiles " $dir/$linklib"
cannam@89 6572 fi
cannam@89 6573 ;;
cannam@89 6574 esac
cannam@89 6575 fi # $pass = dlpreopen
cannam@89 6576
cannam@89 6577 if test -z "$libdir"; then
cannam@89 6578 # Link the convenience library
cannam@89 6579 if test "$linkmode" = lib; then
cannam@89 6580 deplibs="$dir/$old_library $deplibs"
cannam@89 6581 elif test "$linkmode,$pass" = "prog,link"; then
cannam@89 6582 compile_deplibs="$dir/$old_library $compile_deplibs"
cannam@89 6583 finalize_deplibs="$dir/$old_library $finalize_deplibs"
cannam@89 6584 else
cannam@89 6585 deplibs="$lib $deplibs" # used for prog,scan pass
cannam@89 6586 fi
cannam@89 6587 continue
cannam@89 6588 fi
cannam@89 6589
cannam@89 6590
cannam@89 6591 if test "$linkmode" = prog && test "$pass" != link; then
cannam@89 6592 func_append newlib_search_path " $ladir"
cannam@89 6593 deplibs="$lib $deplibs"
cannam@89 6594
cannam@89 6595 linkalldeplibs=no
cannam@89 6596 if test "$link_all_deplibs" != no || test -z "$library_names" ||
cannam@89 6597 test "$build_libtool_libs" = no; then
cannam@89 6598 linkalldeplibs=yes
cannam@89 6599 fi
cannam@89 6600
cannam@89 6601 tmp_libs=
cannam@89 6602 for deplib in $dependency_libs; do
cannam@89 6603 case $deplib in
cannam@89 6604 -L*) func_stripname '-L' '' "$deplib"
cannam@89 6605 func_resolve_sysroot "$func_stripname_result"
cannam@89 6606 func_append newlib_search_path " $func_resolve_sysroot_result"
cannam@89 6607 ;;
cannam@89 6608 esac
cannam@89 6609 # Need to link against all dependency_libs?
cannam@89 6610 if test "$linkalldeplibs" = yes; then
cannam@89 6611 deplibs="$deplib $deplibs"
cannam@89 6612 else
cannam@89 6613 # Need to hardcode shared library paths
cannam@89 6614 # or/and link against static libraries
cannam@89 6615 newdependency_libs="$deplib $newdependency_libs"
cannam@89 6616 fi
cannam@89 6617 if $opt_preserve_dup_deps ; then
cannam@89 6618 case "$tmp_libs " in
cannam@89 6619 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
cannam@89 6620 esac
cannam@89 6621 fi
cannam@89 6622 func_append tmp_libs " $deplib"
cannam@89 6623 done # for deplib
cannam@89 6624 continue
cannam@89 6625 fi # $linkmode = prog...
cannam@89 6626
cannam@89 6627 if test "$linkmode,$pass" = "prog,link"; then
cannam@89 6628 if test -n "$library_names" &&
cannam@89 6629 { { test "$prefer_static_libs" = no ||
cannam@89 6630 test "$prefer_static_libs,$installed" = "built,yes"; } ||
cannam@89 6631 test -z "$old_library"; }; then
cannam@89 6632 # We need to hardcode the library path
cannam@89 6633 if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then
cannam@89 6634 # Make sure the rpath contains only unique directories.
cannam@89 6635 case "$temp_rpath:" in
cannam@89 6636 *"$absdir:"*) ;;
cannam@89 6637 *) func_append temp_rpath "$absdir:" ;;
cannam@89 6638 esac
cannam@89 6639 fi
cannam@89 6640
cannam@89 6641 # Hardcode the library path.
cannam@89 6642 # Skip directories that are in the system default run-time
cannam@89 6643 # search path.
cannam@89 6644 case " $sys_lib_dlsearch_path " in
cannam@89 6645 *" $absdir "*) ;;
cannam@89 6646 *)
cannam@89 6647 case "$compile_rpath " in
cannam@89 6648 *" $absdir "*) ;;
cannam@89 6649 *) func_append compile_rpath " $absdir" ;;
cannam@89 6650 esac
cannam@89 6651 ;;
cannam@89 6652 esac
cannam@89 6653 case " $sys_lib_dlsearch_path " in
cannam@89 6654 *" $libdir "*) ;;
cannam@89 6655 *)
cannam@89 6656 case "$finalize_rpath " in
cannam@89 6657 *" $libdir "*) ;;
cannam@89 6658 *) func_append finalize_rpath " $libdir" ;;
cannam@89 6659 esac
cannam@89 6660 ;;
cannam@89 6661 esac
cannam@89 6662 fi # $linkmode,$pass = prog,link...
cannam@89 6663
cannam@89 6664 if test "$alldeplibs" = yes &&
cannam@89 6665 { test "$deplibs_check_method" = pass_all ||
cannam@89 6666 { test "$build_libtool_libs" = yes &&
cannam@89 6667 test -n "$library_names"; }; }; then
cannam@89 6668 # We only need to search for static libraries
cannam@89 6669 continue
cannam@89 6670 fi
cannam@89 6671 fi
cannam@89 6672
cannam@89 6673 link_static=no # Whether the deplib will be linked statically
cannam@89 6674 use_static_libs=$prefer_static_libs
cannam@89 6675 if test "$use_static_libs" = built && test "$installed" = yes; then
cannam@89 6676 use_static_libs=no
cannam@89 6677 fi
cannam@89 6678 if test -n "$library_names" &&
cannam@89 6679 { test "$use_static_libs" = no || test -z "$old_library"; }; then
cannam@89 6680 case $host in
cannam@89 6681 *cygwin* | *mingw* | *cegcc*)
cannam@89 6682 # No point in relinking DLLs because paths are not encoded
cannam@89 6683 func_append notinst_deplibs " $lib"
cannam@89 6684 need_relink=no
cannam@89 6685 ;;
cannam@89 6686 *)
cannam@89 6687 if test "$installed" = no; then
cannam@89 6688 func_append notinst_deplibs " $lib"
cannam@89 6689 need_relink=yes
cannam@89 6690 fi
cannam@89 6691 ;;
cannam@89 6692 esac
cannam@89 6693 # This is a shared library
cannam@89 6694
cannam@89 6695 # Warn about portability, can't link against -module's on some
cannam@89 6696 # systems (darwin). Don't bleat about dlopened modules though!
cannam@89 6697 dlopenmodule=""
cannam@89 6698 for dlpremoduletest in $dlprefiles; do
cannam@89 6699 if test "X$dlpremoduletest" = "X$lib"; then
cannam@89 6700 dlopenmodule="$dlpremoduletest"
cannam@89 6701 break
cannam@89 6702 fi
cannam@89 6703 done
cannam@89 6704 if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then
cannam@89 6705 echo
cannam@89 6706 if test "$linkmode" = prog; then
cannam@89 6707 $ECHO "*** Warning: Linking the executable $output against the loadable module"
cannam@89 6708 else
cannam@89 6709 $ECHO "*** Warning: Linking the shared library $output against the loadable module"
cannam@89 6710 fi
cannam@89 6711 $ECHO "*** $linklib is not portable!"
cannam@89 6712 fi
cannam@89 6713 if test "$linkmode" = lib &&
cannam@89 6714 test "$hardcode_into_libs" = yes; then
cannam@89 6715 # Hardcode the library path.
cannam@89 6716 # Skip directories that are in the system default run-time
cannam@89 6717 # search path.
cannam@89 6718 case " $sys_lib_dlsearch_path " in
cannam@89 6719 *" $absdir "*) ;;
cannam@89 6720 *)
cannam@89 6721 case "$compile_rpath " in
cannam@89 6722 *" $absdir "*) ;;
cannam@89 6723 *) func_append compile_rpath " $absdir" ;;
cannam@89 6724 esac
cannam@89 6725 ;;
cannam@89 6726 esac
cannam@89 6727 case " $sys_lib_dlsearch_path " in
cannam@89 6728 *" $libdir "*) ;;
cannam@89 6729 *)
cannam@89 6730 case "$finalize_rpath " in
cannam@89 6731 *" $libdir "*) ;;
cannam@89 6732 *) func_append finalize_rpath " $libdir" ;;
cannam@89 6733 esac
cannam@89 6734 ;;
cannam@89 6735 esac
cannam@89 6736 fi
cannam@89 6737
cannam@89 6738 if test -n "$old_archive_from_expsyms_cmds"; then
cannam@89 6739 # figure out the soname
cannam@89 6740 set dummy $library_names
cannam@89 6741 shift
cannam@89 6742 realname="$1"
cannam@89 6743 shift
cannam@89 6744 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@89 6745 # use dlname if we got it. it's perfectly good, no?
cannam@89 6746 if test -n "$dlname"; then
cannam@89 6747 soname="$dlname"
cannam@89 6748 elif test -n "$soname_spec"; then
cannam@89 6749 # bleh windows
cannam@89 6750 case $host in
cannam@89 6751 *cygwin* | mingw* | *cegcc*)
cannam@89 6752 func_arith $current - $age
cannam@89 6753 major=$func_arith_result
cannam@89 6754 versuffix="-$major"
cannam@89 6755 ;;
cannam@89 6756 esac
cannam@89 6757 eval soname=\"$soname_spec\"
cannam@89 6758 else
cannam@89 6759 soname="$realname"
cannam@89 6760 fi
cannam@89 6761
cannam@89 6762 # Make a new name for the extract_expsyms_cmds to use
cannam@89 6763 soroot="$soname"
cannam@89 6764 func_basename "$soroot"
cannam@89 6765 soname="$func_basename_result"
cannam@89 6766 func_stripname 'lib' '.dll' "$soname"
cannam@89 6767 newlib=libimp-$func_stripname_result.a
cannam@89 6768
cannam@89 6769 # If the library has no export list, then create one now
cannam@89 6770 if test -f "$output_objdir/$soname-def"; then :
cannam@89 6771 else
cannam@89 6772 func_verbose "extracting exported symbol list from \`$soname'"
cannam@89 6773 func_execute_cmds "$extract_expsyms_cmds" 'exit $?'
cannam@89 6774 fi
cannam@89 6775
cannam@89 6776 # Create $newlib
cannam@89 6777 if test -f "$output_objdir/$newlib"; then :; else
cannam@89 6778 func_verbose "generating import library for \`$soname'"
cannam@89 6779 func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?'
cannam@89 6780 fi
cannam@89 6781 # make sure the library variables are pointing to the new library
cannam@89 6782 dir=$output_objdir
cannam@89 6783 linklib=$newlib
cannam@89 6784 fi # test -n "$old_archive_from_expsyms_cmds"
cannam@89 6785
cannam@89 6786 if test "$linkmode" = prog || test "$opt_mode" != relink; then
cannam@89 6787 add_shlibpath=
cannam@89 6788 add_dir=
cannam@89 6789 add=
cannam@89 6790 lib_linked=yes
cannam@89 6791 case $hardcode_action in
cannam@89 6792 immediate | unsupported)
cannam@89 6793 if test "$hardcode_direct" = no; then
cannam@89 6794 add="$dir/$linklib"
cannam@89 6795 case $host in
cannam@89 6796 *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;;
cannam@89 6797 *-*-sysv4*uw2*) add_dir="-L$dir" ;;
cannam@89 6798 *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \
cannam@89 6799 *-*-unixware7*) add_dir="-L$dir" ;;
cannam@89 6800 *-*-darwin* )
cannam@89 6801 # if the lib is a (non-dlopened) module then we can not
cannam@89 6802 # link against it, someone is ignoring the earlier warnings
cannam@89 6803 if /usr/bin/file -L $add 2> /dev/null |
cannam@89 6804 $GREP ": [^:]* bundle" >/dev/null ; then
cannam@89 6805 if test "X$dlopenmodule" != "X$lib"; then
cannam@89 6806 $ECHO "*** Warning: lib $linklib is a module, not a shared library"
cannam@89 6807 if test -z "$old_library" ; then
cannam@89 6808 echo
cannam@89 6809 echo "*** And there doesn't seem to be a static archive available"
cannam@89 6810 echo "*** The link will probably fail, sorry"
cannam@89 6811 else
cannam@89 6812 add="$dir/$old_library"
cannam@89 6813 fi
cannam@89 6814 elif test -n "$old_library"; then
cannam@89 6815 add="$dir/$old_library"
cannam@89 6816 fi
cannam@89 6817 fi
cannam@89 6818 esac
cannam@89 6819 elif test "$hardcode_minus_L" = no; then
cannam@89 6820 case $host in
cannam@89 6821 *-*-sunos*) add_shlibpath="$dir" ;;
cannam@89 6822 esac
cannam@89 6823 add_dir="-L$dir"
cannam@89 6824 add="-l$name"
cannam@89 6825 elif test "$hardcode_shlibpath_var" = no; then
cannam@89 6826 add_shlibpath="$dir"
cannam@89 6827 add="-l$name"
cannam@89 6828 else
cannam@89 6829 lib_linked=no
cannam@89 6830 fi
cannam@89 6831 ;;
cannam@89 6832 relink)
cannam@89 6833 if test "$hardcode_direct" = yes &&
cannam@89 6834 test "$hardcode_direct_absolute" = no; then
cannam@89 6835 add="$dir/$linklib"
cannam@89 6836 elif test "$hardcode_minus_L" = yes; then
cannam@89 6837 add_dir="-L$dir"
cannam@89 6838 # Try looking first in the location we're being installed to.
cannam@89 6839 if test -n "$inst_prefix_dir"; then
cannam@89 6840 case $libdir in
cannam@89 6841 [\\/]*)
cannam@89 6842 func_append add_dir " -L$inst_prefix_dir$libdir"
cannam@89 6843 ;;
cannam@89 6844 esac
cannam@89 6845 fi
cannam@89 6846 add="-l$name"
cannam@89 6847 elif test "$hardcode_shlibpath_var" = yes; then
cannam@89 6848 add_shlibpath="$dir"
cannam@89 6849 add="-l$name"
cannam@89 6850 else
cannam@89 6851 lib_linked=no
cannam@89 6852 fi
cannam@89 6853 ;;
cannam@89 6854 *) lib_linked=no ;;
cannam@89 6855 esac
cannam@89 6856
cannam@89 6857 if test "$lib_linked" != yes; then
cannam@89 6858 func_fatal_configuration "unsupported hardcode properties"
cannam@89 6859 fi
cannam@89 6860
cannam@89 6861 if test -n "$add_shlibpath"; then
cannam@89 6862 case :$compile_shlibpath: in
cannam@89 6863 *":$add_shlibpath:"*) ;;
cannam@89 6864 *) func_append compile_shlibpath "$add_shlibpath:" ;;
cannam@89 6865 esac
cannam@89 6866 fi
cannam@89 6867 if test "$linkmode" = prog; then
cannam@89 6868 test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
cannam@89 6869 test -n "$add" && compile_deplibs="$add $compile_deplibs"
cannam@89 6870 else
cannam@89 6871 test -n "$add_dir" && deplibs="$add_dir $deplibs"
cannam@89 6872 test -n "$add" && deplibs="$add $deplibs"
cannam@89 6873 if test "$hardcode_direct" != yes &&
cannam@89 6874 test "$hardcode_minus_L" != yes &&
cannam@89 6875 test "$hardcode_shlibpath_var" = yes; then
cannam@89 6876 case :$finalize_shlibpath: in
cannam@89 6877 *":$libdir:"*) ;;
cannam@89 6878 *) func_append finalize_shlibpath "$libdir:" ;;
cannam@89 6879 esac
cannam@89 6880 fi
cannam@89 6881 fi
cannam@89 6882 fi
cannam@89 6883
cannam@89 6884 if test "$linkmode" = prog || test "$opt_mode" = relink; then
cannam@89 6885 add_shlibpath=
cannam@89 6886 add_dir=
cannam@89 6887 add=
cannam@89 6888 # Finalize command for both is simple: just hardcode it.
cannam@89 6889 if test "$hardcode_direct" = yes &&
cannam@89 6890 test "$hardcode_direct_absolute" = no; then
cannam@89 6891 add="$libdir/$linklib"
cannam@89 6892 elif test "$hardcode_minus_L" = yes; then
cannam@89 6893 add_dir="-L$libdir"
cannam@89 6894 add="-l$name"
cannam@89 6895 elif test "$hardcode_shlibpath_var" = yes; then
cannam@89 6896 case :$finalize_shlibpath: in
cannam@89 6897 *":$libdir:"*) ;;
cannam@89 6898 *) func_append finalize_shlibpath "$libdir:" ;;
cannam@89 6899 esac
cannam@89 6900 add="-l$name"
cannam@89 6901 elif test "$hardcode_automatic" = yes; then
cannam@89 6902 if test -n "$inst_prefix_dir" &&
cannam@89 6903 test -f "$inst_prefix_dir$libdir/$linklib" ; then
cannam@89 6904 add="$inst_prefix_dir$libdir/$linklib"
cannam@89 6905 else
cannam@89 6906 add="$libdir/$linklib"
cannam@89 6907 fi
cannam@89 6908 else
cannam@89 6909 # We cannot seem to hardcode it, guess we'll fake it.
cannam@89 6910 add_dir="-L$libdir"
cannam@89 6911 # Try looking first in the location we're being installed to.
cannam@89 6912 if test -n "$inst_prefix_dir"; then
cannam@89 6913 case $libdir in
cannam@89 6914 [\\/]*)
cannam@89 6915 func_append add_dir " -L$inst_prefix_dir$libdir"
cannam@89 6916 ;;
cannam@89 6917 esac
cannam@89 6918 fi
cannam@89 6919 add="-l$name"
cannam@89 6920 fi
cannam@89 6921
cannam@89 6922 if test "$linkmode" = prog; then
cannam@89 6923 test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
cannam@89 6924 test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
cannam@89 6925 else
cannam@89 6926 test -n "$add_dir" && deplibs="$add_dir $deplibs"
cannam@89 6927 test -n "$add" && deplibs="$add $deplibs"
cannam@89 6928 fi
cannam@89 6929 fi
cannam@89 6930 elif test "$linkmode" = prog; then
cannam@89 6931 # Here we assume that one of hardcode_direct or hardcode_minus_L
cannam@89 6932 # is not unsupported. This is valid on all known static and
cannam@89 6933 # shared platforms.
cannam@89 6934 if test "$hardcode_direct" != unsupported; then
cannam@89 6935 test -n "$old_library" && linklib="$old_library"
cannam@89 6936 compile_deplibs="$dir/$linklib $compile_deplibs"
cannam@89 6937 finalize_deplibs="$dir/$linklib $finalize_deplibs"
cannam@89 6938 else
cannam@89 6939 compile_deplibs="-l$name -L$dir $compile_deplibs"
cannam@89 6940 finalize_deplibs="-l$name -L$dir $finalize_deplibs"
cannam@89 6941 fi
cannam@89 6942 elif test "$build_libtool_libs" = yes; then
cannam@89 6943 # Not a shared library
cannam@89 6944 if test "$deplibs_check_method" != pass_all; then
cannam@89 6945 # We're trying link a shared library against a static one
cannam@89 6946 # but the system doesn't support it.
cannam@89 6947
cannam@89 6948 # Just print a warning and add the library to dependency_libs so
cannam@89 6949 # that the program can be linked against the static library.
cannam@89 6950 echo
cannam@89 6951 $ECHO "*** Warning: This system can not link to static lib archive $lib."
cannam@89 6952 echo "*** I have the capability to make that library automatically link in when"
cannam@89 6953 echo "*** you link to this library. But I can only do this if you have a"
cannam@89 6954 echo "*** shared version of the library, which you do not appear to have."
cannam@89 6955 if test "$module" = yes; then
cannam@89 6956 echo "*** But as you try to build a module library, libtool will still create "
cannam@89 6957 echo "*** a static module, that should work as long as the dlopening application"
cannam@89 6958 echo "*** is linked with the -dlopen flag to resolve symbols at runtime."
cannam@89 6959 if test -z "$global_symbol_pipe"; then
cannam@89 6960 echo
cannam@89 6961 echo "*** However, this would only work if libtool was able to extract symbol"
cannam@89 6962 echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
cannam@89 6963 echo "*** not find such a program. So, this module is probably useless."
cannam@89 6964 echo "*** \`nm' from GNU binutils and a full rebuild may help."
cannam@89 6965 fi
cannam@89 6966 if test "$build_old_libs" = no; then
cannam@89 6967 build_libtool_libs=module
cannam@89 6968 build_old_libs=yes
cannam@89 6969 else
cannam@89 6970 build_libtool_libs=no
cannam@89 6971 fi
cannam@89 6972 fi
cannam@89 6973 else
cannam@89 6974 deplibs="$dir/$old_library $deplibs"
cannam@89 6975 link_static=yes
cannam@89 6976 fi
cannam@89 6977 fi # link shared/static library?
cannam@89 6978
cannam@89 6979 if test "$linkmode" = lib; then
cannam@89 6980 if test -n "$dependency_libs" &&
cannam@89 6981 { test "$hardcode_into_libs" != yes ||
cannam@89 6982 test "$build_old_libs" = yes ||
cannam@89 6983 test "$link_static" = yes; }; then
cannam@89 6984 # Extract -R from dependency_libs
cannam@89 6985 temp_deplibs=
cannam@89 6986 for libdir in $dependency_libs; do
cannam@89 6987 case $libdir in
cannam@89 6988 -R*) func_stripname '-R' '' "$libdir"
cannam@89 6989 temp_xrpath=$func_stripname_result
cannam@89 6990 case " $xrpath " in
cannam@89 6991 *" $temp_xrpath "*) ;;
cannam@89 6992 *) func_append xrpath " $temp_xrpath";;
cannam@89 6993 esac;;
cannam@89 6994 *) func_append temp_deplibs " $libdir";;
cannam@89 6995 esac
cannam@89 6996 done
cannam@89 6997 dependency_libs="$temp_deplibs"
cannam@89 6998 fi
cannam@89 6999
cannam@89 7000 func_append newlib_search_path " $absdir"
cannam@89 7001 # Link against this library
cannam@89 7002 test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
cannam@89 7003 # ... and its dependency_libs
cannam@89 7004 tmp_libs=
cannam@89 7005 for deplib in $dependency_libs; do
cannam@89 7006 newdependency_libs="$deplib $newdependency_libs"
cannam@89 7007 case $deplib in
cannam@89 7008 -L*) func_stripname '-L' '' "$deplib"
cannam@89 7009 func_resolve_sysroot "$func_stripname_result";;
cannam@89 7010 *) func_resolve_sysroot "$deplib" ;;
cannam@89 7011 esac
cannam@89 7012 if $opt_preserve_dup_deps ; then
cannam@89 7013 case "$tmp_libs " in
cannam@89 7014 *" $func_resolve_sysroot_result "*)
cannam@89 7015 func_append specialdeplibs " $func_resolve_sysroot_result" ;;
cannam@89 7016 esac
cannam@89 7017 fi
cannam@89 7018 func_append tmp_libs " $func_resolve_sysroot_result"
cannam@89 7019 done
cannam@89 7020
cannam@89 7021 if test "$link_all_deplibs" != no; then
cannam@89 7022 # Add the search paths of all dependency libraries
cannam@89 7023 for deplib in $dependency_libs; do
cannam@89 7024 path=
cannam@89 7025 case $deplib in
cannam@89 7026 -L*) path="$deplib" ;;
cannam@89 7027 *.la)
cannam@89 7028 func_resolve_sysroot "$deplib"
cannam@89 7029 deplib=$func_resolve_sysroot_result
cannam@89 7030 func_dirname "$deplib" "" "."
cannam@89 7031 dir=$func_dirname_result
cannam@89 7032 # We need an absolute path.
cannam@89 7033 case $dir in
cannam@89 7034 [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;
cannam@89 7035 *)
cannam@89 7036 absdir=`cd "$dir" && pwd`
cannam@89 7037 if test -z "$absdir"; then
cannam@89 7038 func_warning "cannot determine absolute directory name of \`$dir'"
cannam@89 7039 absdir="$dir"
cannam@89 7040 fi
cannam@89 7041 ;;
cannam@89 7042 esac
cannam@89 7043 if $GREP "^installed=no" $deplib > /dev/null; then
cannam@89 7044 case $host in
cannam@89 7045 *-*-darwin*)
cannam@89 7046 depdepl=
cannam@89 7047 eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib`
cannam@89 7048 if test -n "$deplibrary_names" ; then
cannam@89 7049 for tmp in $deplibrary_names ; do
cannam@89 7050 depdepl=$tmp
cannam@89 7051 done
cannam@89 7052 if test -f "$absdir/$objdir/$depdepl" ; then
cannam@89 7053 depdepl="$absdir/$objdir/$depdepl"
cannam@89 7054 darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
cannam@89 7055 if test -z "$darwin_install_name"; then
cannam@89 7056 darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
cannam@89 7057 fi
cannam@89 7058 func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}"
cannam@89 7059 func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}"
cannam@89 7060 path=
cannam@89 7061 fi
cannam@89 7062 fi
cannam@89 7063 ;;
cannam@89 7064 *)
cannam@89 7065 path="-L$absdir/$objdir"
cannam@89 7066 ;;
cannam@89 7067 esac
cannam@89 7068 else
cannam@89 7069 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
cannam@89 7070 test -z "$libdir" && \
cannam@89 7071 func_fatal_error "\`$deplib' is not a valid libtool archive"
cannam@89 7072 test "$absdir" != "$libdir" && \
cannam@89 7073 func_warning "\`$deplib' seems to be moved"
cannam@89 7074
cannam@89 7075 path="-L$absdir"
cannam@89 7076 fi
cannam@89 7077 ;;
cannam@89 7078 esac
cannam@89 7079 case " $deplibs " in
cannam@89 7080 *" $path "*) ;;
cannam@89 7081 *) deplibs="$path $deplibs" ;;
cannam@89 7082 esac
cannam@89 7083 done
cannam@89 7084 fi # link_all_deplibs != no
cannam@89 7085 fi # linkmode = lib
cannam@89 7086 done # for deplib in $libs
cannam@89 7087 if test "$pass" = link; then
cannam@89 7088 if test "$linkmode" = "prog"; then
cannam@89 7089 compile_deplibs="$new_inherited_linker_flags $compile_deplibs"
cannam@89 7090 finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs"
cannam@89 7091 else
cannam@89 7092 compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@89 7093 fi
cannam@89 7094 fi
cannam@89 7095 dependency_libs="$newdependency_libs"
cannam@89 7096 if test "$pass" = dlpreopen; then
cannam@89 7097 # Link the dlpreopened libraries before other libraries
cannam@89 7098 for deplib in $save_deplibs; do
cannam@89 7099 deplibs="$deplib $deplibs"
cannam@89 7100 done
cannam@89 7101 fi
cannam@89 7102 if test "$pass" != dlopen; then
cannam@89 7103 if test "$pass" != conv; then
cannam@89 7104 # Make sure lib_search_path contains only unique directories.
cannam@89 7105 lib_search_path=
cannam@89 7106 for dir in $newlib_search_path; do
cannam@89 7107 case "$lib_search_path " in
cannam@89 7108 *" $dir "*) ;;
cannam@89 7109 *) func_append lib_search_path " $dir" ;;
cannam@89 7110 esac
cannam@89 7111 done
cannam@89 7112 newlib_search_path=
cannam@89 7113 fi
cannam@89 7114
cannam@89 7115 if test "$linkmode,$pass" != "prog,link"; then
cannam@89 7116 vars="deplibs"
cannam@89 7117 else
cannam@89 7118 vars="compile_deplibs finalize_deplibs"
cannam@89 7119 fi
cannam@89 7120 for var in $vars dependency_libs; do
cannam@89 7121 # Add libraries to $var in reverse order
cannam@89 7122 eval tmp_libs=\"\$$var\"
cannam@89 7123 new_libs=
cannam@89 7124 for deplib in $tmp_libs; do
cannam@89 7125 # FIXME: Pedantically, this is the right thing to do, so
cannam@89 7126 # that some nasty dependency loop isn't accidentally
cannam@89 7127 # broken:
cannam@89 7128 #new_libs="$deplib $new_libs"
cannam@89 7129 # Pragmatically, this seems to cause very few problems in
cannam@89 7130 # practice:
cannam@89 7131 case $deplib in
cannam@89 7132 -L*) new_libs="$deplib $new_libs" ;;
cannam@89 7133 -R*) ;;
cannam@89 7134 *)
cannam@89 7135 # And here is the reason: when a library appears more
cannam@89 7136 # than once as an explicit dependence of a library, or
cannam@89 7137 # is implicitly linked in more than once by the
cannam@89 7138 # compiler, it is considered special, and multiple
cannam@89 7139 # occurrences thereof are not removed. Compare this
cannam@89 7140 # with having the same library being listed as a
cannam@89 7141 # dependency of multiple other libraries: in this case,
cannam@89 7142 # we know (pedantically, we assume) the library does not
cannam@89 7143 # need to be listed more than once, so we keep only the
cannam@89 7144 # last copy. This is not always right, but it is rare
cannam@89 7145 # enough that we require users that really mean to play
cannam@89 7146 # such unportable linking tricks to link the library
cannam@89 7147 # using -Wl,-lname, so that libtool does not consider it
cannam@89 7148 # for duplicate removal.
cannam@89 7149 case " $specialdeplibs " in
cannam@89 7150 *" $deplib "*) new_libs="$deplib $new_libs" ;;
cannam@89 7151 *)
cannam@89 7152 case " $new_libs " in
cannam@89 7153 *" $deplib "*) ;;
cannam@89 7154 *) new_libs="$deplib $new_libs" ;;
cannam@89 7155 esac
cannam@89 7156 ;;
cannam@89 7157 esac
cannam@89 7158 ;;
cannam@89 7159 esac
cannam@89 7160 done
cannam@89 7161 tmp_libs=
cannam@89 7162 for deplib in $new_libs; do
cannam@89 7163 case $deplib in
cannam@89 7164 -L*)
cannam@89 7165 case " $tmp_libs " in
cannam@89 7166 *" $deplib "*) ;;
cannam@89 7167 *) func_append tmp_libs " $deplib" ;;
cannam@89 7168 esac
cannam@89 7169 ;;
cannam@89 7170 *) func_append tmp_libs " $deplib" ;;
cannam@89 7171 esac
cannam@89 7172 done
cannam@89 7173 eval $var=\"$tmp_libs\"
cannam@89 7174 done # for var
cannam@89 7175 fi
cannam@89 7176 # Last step: remove runtime libs from dependency_libs
cannam@89 7177 # (they stay in deplibs)
cannam@89 7178 tmp_libs=
cannam@89 7179 for i in $dependency_libs ; do
cannam@89 7180 case " $predeps $postdeps $compiler_lib_search_path " in
cannam@89 7181 *" $i "*)
cannam@89 7182 i=""
cannam@89 7183 ;;
cannam@89 7184 esac
cannam@89 7185 if test -n "$i" ; then
cannam@89 7186 func_append tmp_libs " $i"
cannam@89 7187 fi
cannam@89 7188 done
cannam@89 7189 dependency_libs=$tmp_libs
cannam@89 7190 done # for pass
cannam@89 7191 if test "$linkmode" = prog; then
cannam@89 7192 dlfiles="$newdlfiles"
cannam@89 7193 fi
cannam@89 7194 if test "$linkmode" = prog || test "$linkmode" = lib; then
cannam@89 7195 dlprefiles="$newdlprefiles"
cannam@89 7196 fi
cannam@89 7197
cannam@89 7198 case $linkmode in
cannam@89 7199 oldlib)
cannam@89 7200 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@89 7201 func_warning "\`-dlopen' is ignored for archives"
cannam@89 7202 fi
cannam@89 7203
cannam@89 7204 case " $deplibs" in
cannam@89 7205 *\ -l* | *\ -L*)
cannam@89 7206 func_warning "\`-l' and \`-L' are ignored for archives" ;;
cannam@89 7207 esac
cannam@89 7208
cannam@89 7209 test -n "$rpath" && \
cannam@89 7210 func_warning "\`-rpath' is ignored for archives"
cannam@89 7211
cannam@89 7212 test -n "$xrpath" && \
cannam@89 7213 func_warning "\`-R' is ignored for archives"
cannam@89 7214
cannam@89 7215 test -n "$vinfo" && \
cannam@89 7216 func_warning "\`-version-info/-version-number' is ignored for archives"
cannam@89 7217
cannam@89 7218 test -n "$release" && \
cannam@89 7219 func_warning "\`-release' is ignored for archives"
cannam@89 7220
cannam@89 7221 test -n "$export_symbols$export_symbols_regex" && \
cannam@89 7222 func_warning "\`-export-symbols' is ignored for archives"
cannam@89 7223
cannam@89 7224 # Now set the variables for building old libraries.
cannam@89 7225 build_libtool_libs=no
cannam@89 7226 oldlibs="$output"
cannam@89 7227 func_append objs "$old_deplibs"
cannam@89 7228 ;;
cannam@89 7229
cannam@89 7230 lib)
cannam@89 7231 # Make sure we only generate libraries of the form `libNAME.la'.
cannam@89 7232 case $outputname in
cannam@89 7233 lib*)
cannam@89 7234 func_stripname 'lib' '.la' "$outputname"
cannam@89 7235 name=$func_stripname_result
cannam@89 7236 eval shared_ext=\"$shrext_cmds\"
cannam@89 7237 eval libname=\"$libname_spec\"
cannam@89 7238 ;;
cannam@89 7239 *)
cannam@89 7240 test "$module" = no && \
cannam@89 7241 func_fatal_help "libtool library \`$output' must begin with \`lib'"
cannam@89 7242
cannam@89 7243 if test "$need_lib_prefix" != no; then
cannam@89 7244 # Add the "lib" prefix for modules if required
cannam@89 7245 func_stripname '' '.la' "$outputname"
cannam@89 7246 name=$func_stripname_result
cannam@89 7247 eval shared_ext=\"$shrext_cmds\"
cannam@89 7248 eval libname=\"$libname_spec\"
cannam@89 7249 else
cannam@89 7250 func_stripname '' '.la' "$outputname"
cannam@89 7251 libname=$func_stripname_result
cannam@89 7252 fi
cannam@89 7253 ;;
cannam@89 7254 esac
cannam@89 7255
cannam@89 7256 if test -n "$objs"; then
cannam@89 7257 if test "$deplibs_check_method" != pass_all; then
cannam@89 7258 func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs"
cannam@89 7259 else
cannam@89 7260 echo
cannam@89 7261 $ECHO "*** Warning: Linking the shared library $output against the non-libtool"
cannam@89 7262 $ECHO "*** objects $objs is not portable!"
cannam@89 7263 func_append libobjs " $objs"
cannam@89 7264 fi
cannam@89 7265 fi
cannam@89 7266
cannam@89 7267 test "$dlself" != no && \
cannam@89 7268 func_warning "\`-dlopen self' is ignored for libtool libraries"
cannam@89 7269
cannam@89 7270 set dummy $rpath
cannam@89 7271 shift
cannam@89 7272 test "$#" -gt 1 && \
cannam@89 7273 func_warning "ignoring multiple \`-rpath's for a libtool library"
cannam@89 7274
cannam@89 7275 install_libdir="$1"
cannam@89 7276
cannam@89 7277 oldlibs=
cannam@89 7278 if test -z "$rpath"; then
cannam@89 7279 if test "$build_libtool_libs" = yes; then
cannam@89 7280 # Building a libtool convenience library.
cannam@89 7281 # Some compilers have problems with a `.al' extension so
cannam@89 7282 # convenience libraries should have the same extension an
cannam@89 7283 # archive normally would.
cannam@89 7284 oldlibs="$output_objdir/$libname.$libext $oldlibs"
cannam@89 7285 build_libtool_libs=convenience
cannam@89 7286 build_old_libs=yes
cannam@89 7287 fi
cannam@89 7288
cannam@89 7289 test -n "$vinfo" && \
cannam@89 7290 func_warning "\`-version-info/-version-number' is ignored for convenience libraries"
cannam@89 7291
cannam@89 7292 test -n "$release" && \
cannam@89 7293 func_warning "\`-release' is ignored for convenience libraries"
cannam@89 7294 else
cannam@89 7295
cannam@89 7296 # Parse the version information argument.
cannam@89 7297 save_ifs="$IFS"; IFS=':'
cannam@89 7298 set dummy $vinfo 0 0 0
cannam@89 7299 shift
cannam@89 7300 IFS="$save_ifs"
cannam@89 7301
cannam@89 7302 test -n "$7" && \
cannam@89 7303 func_fatal_help "too many parameters to \`-version-info'"
cannam@89 7304
cannam@89 7305 # convert absolute version numbers to libtool ages
cannam@89 7306 # this retains compatibility with .la files and attempts
cannam@89 7307 # to make the code below a bit more comprehensible
cannam@89 7308
cannam@89 7309 case $vinfo_number in
cannam@89 7310 yes)
cannam@89 7311 number_major="$1"
cannam@89 7312 number_minor="$2"
cannam@89 7313 number_revision="$3"
cannam@89 7314 #
cannam@89 7315 # There are really only two kinds -- those that
cannam@89 7316 # use the current revision as the major version
cannam@89 7317 # and those that subtract age and use age as
cannam@89 7318 # a minor version. But, then there is irix
cannam@89 7319 # which has an extra 1 added just for fun
cannam@89 7320 #
cannam@89 7321 case $version_type in
cannam@89 7322 darwin|linux|osf|windows|none)
cannam@89 7323 func_arith $number_major + $number_minor
cannam@89 7324 current=$func_arith_result
cannam@89 7325 age="$number_minor"
cannam@89 7326 revision="$number_revision"
cannam@89 7327 ;;
cannam@89 7328 freebsd-aout|freebsd-elf|qnx|sunos)
cannam@89 7329 current="$number_major"
cannam@89 7330 revision="$number_minor"
cannam@89 7331 age="0"
cannam@89 7332 ;;
cannam@89 7333 irix|nonstopux)
cannam@89 7334 func_arith $number_major + $number_minor
cannam@89 7335 current=$func_arith_result
cannam@89 7336 age="$number_minor"
cannam@89 7337 revision="$number_minor"
cannam@89 7338 lt_irix_increment=no
cannam@89 7339 ;;
cannam@89 7340 *)
cannam@89 7341 func_fatal_configuration "$modename: unknown library version type \`$version_type'"
cannam@89 7342 ;;
cannam@89 7343 esac
cannam@89 7344 ;;
cannam@89 7345 no)
cannam@89 7346 current="$1"
cannam@89 7347 revision="$2"
cannam@89 7348 age="$3"
cannam@89 7349 ;;
cannam@89 7350 esac
cannam@89 7351
cannam@89 7352 # Check that each of the things are valid numbers.
cannam@89 7353 case $current in
cannam@89 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@89 7355 *)
cannam@89 7356 func_error "CURRENT \`$current' must be a nonnegative integer"
cannam@89 7357 func_fatal_error "\`$vinfo' is not valid version information"
cannam@89 7358 ;;
cannam@89 7359 esac
cannam@89 7360
cannam@89 7361 case $revision in
cannam@89 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@89 7363 *)
cannam@89 7364 func_error "REVISION \`$revision' must be a nonnegative integer"
cannam@89 7365 func_fatal_error "\`$vinfo' is not valid version information"
cannam@89 7366 ;;
cannam@89 7367 esac
cannam@89 7368
cannam@89 7369 case $age in
cannam@89 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@89 7371 *)
cannam@89 7372 func_error "AGE \`$age' must be a nonnegative integer"
cannam@89 7373 func_fatal_error "\`$vinfo' is not valid version information"
cannam@89 7374 ;;
cannam@89 7375 esac
cannam@89 7376
cannam@89 7377 if test "$age" -gt "$current"; then
cannam@89 7378 func_error "AGE \`$age' is greater than the current interface number \`$current'"
cannam@89 7379 func_fatal_error "\`$vinfo' is not valid version information"
cannam@89 7380 fi
cannam@89 7381
cannam@89 7382 # Calculate the version variables.
cannam@89 7383 major=
cannam@89 7384 versuffix=
cannam@89 7385 verstring=
cannam@89 7386 case $version_type in
cannam@89 7387 none) ;;
cannam@89 7388
cannam@89 7389 darwin)
cannam@89 7390 # Like Linux, but with the current version available in
cannam@89 7391 # verstring for coding it into the library header
cannam@89 7392 func_arith $current - $age
cannam@89 7393 major=.$func_arith_result
cannam@89 7394 versuffix="$major.$age.$revision"
cannam@89 7395 # Darwin ld doesn't like 0 for these options...
cannam@89 7396 func_arith $current + 1
cannam@89 7397 minor_current=$func_arith_result
cannam@89 7398 xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
cannam@89 7399 verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
cannam@89 7400 ;;
cannam@89 7401
cannam@89 7402 freebsd-aout)
cannam@89 7403 major=".$current"
cannam@89 7404 versuffix=".$current.$revision";
cannam@89 7405 ;;
cannam@89 7406
cannam@89 7407 freebsd-elf)
cannam@89 7408 major=".$current"
cannam@89 7409 versuffix=".$current"
cannam@89 7410 ;;
cannam@89 7411
cannam@89 7412 irix | nonstopux)
cannam@89 7413 if test "X$lt_irix_increment" = "Xno"; then
cannam@89 7414 func_arith $current - $age
cannam@89 7415 else
cannam@89 7416 func_arith $current - $age + 1
cannam@89 7417 fi
cannam@89 7418 major=$func_arith_result
cannam@89 7419
cannam@89 7420 case $version_type in
cannam@89 7421 nonstopux) verstring_prefix=nonstopux ;;
cannam@89 7422 *) verstring_prefix=sgi ;;
cannam@89 7423 esac
cannam@89 7424 verstring="$verstring_prefix$major.$revision"
cannam@89 7425
cannam@89 7426 # Add in all the interfaces that we are compatible with.
cannam@89 7427 loop=$revision
cannam@89 7428 while test "$loop" -ne 0; do
cannam@89 7429 func_arith $revision - $loop
cannam@89 7430 iface=$func_arith_result
cannam@89 7431 func_arith $loop - 1
cannam@89 7432 loop=$func_arith_result
cannam@89 7433 verstring="$verstring_prefix$major.$iface:$verstring"
cannam@89 7434 done
cannam@89 7435
cannam@89 7436 # Before this point, $major must not contain `.'.
cannam@89 7437 major=.$major
cannam@89 7438 versuffix="$major.$revision"
cannam@89 7439 ;;
cannam@89 7440
cannam@89 7441 linux)
cannam@89 7442 func_arith $current - $age
cannam@89 7443 major=.$func_arith_result
cannam@89 7444 versuffix="$major.$age.$revision"
cannam@89 7445 ;;
cannam@89 7446
cannam@89 7447 osf)
cannam@89 7448 func_arith $current - $age
cannam@89 7449 major=.$func_arith_result
cannam@89 7450 versuffix=".$current.$age.$revision"
cannam@89 7451 verstring="$current.$age.$revision"
cannam@89 7452
cannam@89 7453 # Add in all the interfaces that we are compatible with.
cannam@89 7454 loop=$age
cannam@89 7455 while test "$loop" -ne 0; do
cannam@89 7456 func_arith $current - $loop
cannam@89 7457 iface=$func_arith_result
cannam@89 7458 func_arith $loop - 1
cannam@89 7459 loop=$func_arith_result
cannam@89 7460 verstring="$verstring:${iface}.0"
cannam@89 7461 done
cannam@89 7462
cannam@89 7463 # Make executables depend on our current version.
cannam@89 7464 func_append verstring ":${current}.0"
cannam@89 7465 ;;
cannam@89 7466
cannam@89 7467 qnx)
cannam@89 7468 major=".$current"
cannam@89 7469 versuffix=".$current"
cannam@89 7470 ;;
cannam@89 7471
cannam@89 7472 sunos)
cannam@89 7473 major=".$current"
cannam@89 7474 versuffix=".$current.$revision"
cannam@89 7475 ;;
cannam@89 7476
cannam@89 7477 windows)
cannam@89 7478 # Use '-' rather than '.', since we only want one
cannam@89 7479 # extension on DOS 8.3 filesystems.
cannam@89 7480 func_arith $current - $age
cannam@89 7481 major=$func_arith_result
cannam@89 7482 versuffix="-$major"
cannam@89 7483 ;;
cannam@89 7484
cannam@89 7485 *)
cannam@89 7486 func_fatal_configuration "unknown library version type \`$version_type'"
cannam@89 7487 ;;
cannam@89 7488 esac
cannam@89 7489
cannam@89 7490 # Clear the version info if we defaulted, and they specified a release.
cannam@89 7491 if test -z "$vinfo" && test -n "$release"; then
cannam@89 7492 major=
cannam@89 7493 case $version_type in
cannam@89 7494 darwin)
cannam@89 7495 # we can't check for "0.0" in archive_cmds due to quoting
cannam@89 7496 # problems, so we reset it completely
cannam@89 7497 verstring=
cannam@89 7498 ;;
cannam@89 7499 *)
cannam@89 7500 verstring="0.0"
cannam@89 7501 ;;
cannam@89 7502 esac
cannam@89 7503 if test "$need_version" = no; then
cannam@89 7504 versuffix=
cannam@89 7505 else
cannam@89 7506 versuffix=".0.0"
cannam@89 7507 fi
cannam@89 7508 fi
cannam@89 7509
cannam@89 7510 # Remove version info from name if versioning should be avoided
cannam@89 7511 if test "$avoid_version" = yes && test "$need_version" = no; then
cannam@89 7512 major=
cannam@89 7513 versuffix=
cannam@89 7514 verstring=""
cannam@89 7515 fi
cannam@89 7516
cannam@89 7517 # Check to see if the archive will have undefined symbols.
cannam@89 7518 if test "$allow_undefined" = yes; then
cannam@89 7519 if test "$allow_undefined_flag" = unsupported; then
cannam@89 7520 func_warning "undefined symbols not allowed in $host shared libraries"
cannam@89 7521 build_libtool_libs=no
cannam@89 7522 build_old_libs=yes
cannam@89 7523 fi
cannam@89 7524 else
cannam@89 7525 # Don't allow undefined symbols.
cannam@89 7526 allow_undefined_flag="$no_undefined_flag"
cannam@89 7527 fi
cannam@89 7528
cannam@89 7529 fi
cannam@89 7530
cannam@89 7531 func_generate_dlsyms "$libname" "$libname" "yes"
cannam@89 7532 func_append libobjs " $symfileobj"
cannam@89 7533 test "X$libobjs" = "X " && libobjs=
cannam@89 7534
cannam@89 7535 if test "$opt_mode" != relink; then
cannam@89 7536 # Remove our outputs, but don't remove object files since they
cannam@89 7537 # may have been created when compiling PIC objects.
cannam@89 7538 removelist=
cannam@89 7539 tempremovelist=`$ECHO "$output_objdir/*"`
cannam@89 7540 for p in $tempremovelist; do
cannam@89 7541 case $p in
cannam@89 7542 *.$objext | *.gcno)
cannam@89 7543 ;;
cannam@89 7544 $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
cannam@89 7545 if test "X$precious_files_regex" != "X"; then
cannam@89 7546 if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
cannam@89 7547 then
cannam@89 7548 continue
cannam@89 7549 fi
cannam@89 7550 fi
cannam@89 7551 func_append removelist " $p"
cannam@89 7552 ;;
cannam@89 7553 *) ;;
cannam@89 7554 esac
cannam@89 7555 done
cannam@89 7556 test -n "$removelist" && \
cannam@89 7557 func_show_eval "${RM}r \$removelist"
cannam@89 7558 fi
cannam@89 7559
cannam@89 7560 # Now set the variables for building old libraries.
cannam@89 7561 if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
cannam@89 7562 func_append oldlibs " $output_objdir/$libname.$libext"
cannam@89 7563
cannam@89 7564 # Transform .lo files to .o files.
cannam@89 7565 oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP`
cannam@89 7566 fi
cannam@89 7567
cannam@89 7568 # Eliminate all temporary directories.
cannam@89 7569 #for path in $notinst_path; do
cannam@89 7570 # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"`
cannam@89 7571 # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"`
cannam@89 7572 # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"`
cannam@89 7573 #done
cannam@89 7574
cannam@89 7575 if test -n "$xrpath"; then
cannam@89 7576 # If the user specified any rpath flags, then add them.
cannam@89 7577 temp_xrpath=
cannam@89 7578 for libdir in $xrpath; do
cannam@89 7579 func_replace_sysroot "$libdir"
cannam@89 7580 func_append temp_xrpath " -R$func_replace_sysroot_result"
cannam@89 7581 case "$finalize_rpath " in
cannam@89 7582 *" $libdir "*) ;;
cannam@89 7583 *) func_append finalize_rpath " $libdir" ;;
cannam@89 7584 esac
cannam@89 7585 done
cannam@89 7586 if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then
cannam@89 7587 dependency_libs="$temp_xrpath $dependency_libs"
cannam@89 7588 fi
cannam@89 7589 fi
cannam@89 7590
cannam@89 7591 # Make sure dlfiles contains only unique files that won't be dlpreopened
cannam@89 7592 old_dlfiles="$dlfiles"
cannam@89 7593 dlfiles=
cannam@89 7594 for lib in $old_dlfiles; do
cannam@89 7595 case " $dlprefiles $dlfiles " in
cannam@89 7596 *" $lib "*) ;;
cannam@89 7597 *) func_append dlfiles " $lib" ;;
cannam@89 7598 esac
cannam@89 7599 done
cannam@89 7600
cannam@89 7601 # Make sure dlprefiles contains only unique files
cannam@89 7602 old_dlprefiles="$dlprefiles"
cannam@89 7603 dlprefiles=
cannam@89 7604 for lib in $old_dlprefiles; do
cannam@89 7605 case "$dlprefiles " in
cannam@89 7606 *" $lib "*) ;;
cannam@89 7607 *) func_append dlprefiles " $lib" ;;
cannam@89 7608 esac
cannam@89 7609 done
cannam@89 7610
cannam@89 7611 if test "$build_libtool_libs" = yes; then
cannam@89 7612 if test -n "$rpath"; then
cannam@89 7613 case $host in
cannam@89 7614 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*)
cannam@89 7615 # these systems don't actually have a c library (as such)!
cannam@89 7616 ;;
cannam@89 7617 *-*-rhapsody* | *-*-darwin1.[012])
cannam@89 7618 # Rhapsody C library is in the System framework
cannam@89 7619 func_append deplibs " System.ltframework"
cannam@89 7620 ;;
cannam@89 7621 *-*-netbsd*)
cannam@89 7622 # Don't link with libc until the a.out ld.so is fixed.
cannam@89 7623 ;;
cannam@89 7624 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@89 7625 # Do not include libc due to us having libc/libc_r.
cannam@89 7626 ;;
cannam@89 7627 *-*-sco3.2v5* | *-*-sco5v6*)
cannam@89 7628 # Causes problems with __ctype
cannam@89 7629 ;;
cannam@89 7630 *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
cannam@89 7631 # Compiler inserts libc in the correct place for threads to work
cannam@89 7632 ;;
cannam@89 7633 *)
cannam@89 7634 # Add libc to deplibs on all other systems if necessary.
cannam@89 7635 if test "$build_libtool_need_lc" = "yes"; then
cannam@89 7636 func_append deplibs " -lc"
cannam@89 7637 fi
cannam@89 7638 ;;
cannam@89 7639 esac
cannam@89 7640 fi
cannam@89 7641
cannam@89 7642 # Transform deplibs into only deplibs that can be linked in shared.
cannam@89 7643 name_save=$name
cannam@89 7644 libname_save=$libname
cannam@89 7645 release_save=$release
cannam@89 7646 versuffix_save=$versuffix
cannam@89 7647 major_save=$major
cannam@89 7648 # I'm not sure if I'm treating the release correctly. I think
cannam@89 7649 # release should show up in the -l (ie -lgmp5) so we don't want to
cannam@89 7650 # add it in twice. Is that correct?
cannam@89 7651 release=""
cannam@89 7652 versuffix=""
cannam@89 7653 major=""
cannam@89 7654 newdeplibs=
cannam@89 7655 droppeddeps=no
cannam@89 7656 case $deplibs_check_method in
cannam@89 7657 pass_all)
cannam@89 7658 # Don't check for shared/static. Everything works.
cannam@89 7659 # This might be a little naive. We might want to check
cannam@89 7660 # whether the library exists or not. But this is on
cannam@89 7661 # osf3 & osf4 and I'm not really sure... Just
cannam@89 7662 # implementing what was already the behavior.
cannam@89 7663 newdeplibs=$deplibs
cannam@89 7664 ;;
cannam@89 7665 test_compile)
cannam@89 7666 # This code stresses the "libraries are programs" paradigm to its
cannam@89 7667 # limits. Maybe even breaks it. We compile a program, linking it
cannam@89 7668 # against the deplibs as a proxy for the library. Then we can check
cannam@89 7669 # whether they linked in statically or dynamically with ldd.
cannam@89 7670 $opt_dry_run || $RM conftest.c
cannam@89 7671 cat > conftest.c <<EOF
cannam@89 7672 int main() { return 0; }
cannam@89 7673 EOF
cannam@89 7674 $opt_dry_run || $RM conftest
cannam@89 7675 if $LTCC $LTCFLAGS -o conftest conftest.c $deplibs; then
cannam@89 7676 ldd_output=`ldd conftest`
cannam@89 7677 for i in $deplibs; do
cannam@89 7678 case $i in
cannam@89 7679 -l*)
cannam@89 7680 func_stripname -l '' "$i"
cannam@89 7681 name=$func_stripname_result
cannam@89 7682 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@89 7683 case " $predeps $postdeps " in
cannam@89 7684 *" $i "*)
cannam@89 7685 func_append newdeplibs " $i"
cannam@89 7686 i=""
cannam@89 7687 ;;
cannam@89 7688 esac
cannam@89 7689 fi
cannam@89 7690 if test -n "$i" ; then
cannam@89 7691 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@89 7692 deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
cannam@89 7693 set dummy $deplib_matches; shift
cannam@89 7694 deplib_match=$1
cannam@89 7695 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
cannam@89 7696 func_append newdeplibs " $i"
cannam@89 7697 else
cannam@89 7698 droppeddeps=yes
cannam@89 7699 echo
cannam@89 7700 $ECHO "*** Warning: dynamic linker does not accept needed library $i."
cannam@89 7701 echo "*** I have the capability to make that library automatically link in when"
cannam@89 7702 echo "*** you link to this library. But I can only do this if you have a"
cannam@89 7703 echo "*** shared version of the library, which I believe you do not have"
cannam@89 7704 echo "*** because a test_compile did reveal that the linker did not use it for"
cannam@89 7705 echo "*** its dynamic dependency list that programs get resolved with at runtime."
cannam@89 7706 fi
cannam@89 7707 fi
cannam@89 7708 ;;
cannam@89 7709 *)
cannam@89 7710 func_append newdeplibs " $i"
cannam@89 7711 ;;
cannam@89 7712 esac
cannam@89 7713 done
cannam@89 7714 else
cannam@89 7715 # Error occurred in the first compile. Let's try to salvage
cannam@89 7716 # the situation: Compile a separate program for each library.
cannam@89 7717 for i in $deplibs; do
cannam@89 7718 case $i in
cannam@89 7719 -l*)
cannam@89 7720 func_stripname -l '' "$i"
cannam@89 7721 name=$func_stripname_result
cannam@89 7722 $opt_dry_run || $RM conftest
cannam@89 7723 if $LTCC $LTCFLAGS -o conftest conftest.c $i; then
cannam@89 7724 ldd_output=`ldd conftest`
cannam@89 7725 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@89 7726 case " $predeps $postdeps " in
cannam@89 7727 *" $i "*)
cannam@89 7728 func_append newdeplibs " $i"
cannam@89 7729 i=""
cannam@89 7730 ;;
cannam@89 7731 esac
cannam@89 7732 fi
cannam@89 7733 if test -n "$i" ; then
cannam@89 7734 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@89 7735 deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
cannam@89 7736 set dummy $deplib_matches; shift
cannam@89 7737 deplib_match=$1
cannam@89 7738 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
cannam@89 7739 func_append newdeplibs " $i"
cannam@89 7740 else
cannam@89 7741 droppeddeps=yes
cannam@89 7742 echo
cannam@89 7743 $ECHO "*** Warning: dynamic linker does not accept needed library $i."
cannam@89 7744 echo "*** I have the capability to make that library automatically link in when"
cannam@89 7745 echo "*** you link to this library. But I can only do this if you have a"
cannam@89 7746 echo "*** shared version of the library, which you do not appear to have"
cannam@89 7747 echo "*** because a test_compile did reveal that the linker did not use this one"
cannam@89 7748 echo "*** as a dynamic dependency that programs can get resolved with at runtime."
cannam@89 7749 fi
cannam@89 7750 fi
cannam@89 7751 else
cannam@89 7752 droppeddeps=yes
cannam@89 7753 echo
cannam@89 7754 $ECHO "*** Warning! Library $i is needed by this library but I was not able to"
cannam@89 7755 echo "*** make it link in! You will probably need to install it or some"
cannam@89 7756 echo "*** library that it depends on before this library will be fully"
cannam@89 7757 echo "*** functional. Installing it before continuing would be even better."
cannam@89 7758 fi
cannam@89 7759 ;;
cannam@89 7760 *)
cannam@89 7761 func_append newdeplibs " $i"
cannam@89 7762 ;;
cannam@89 7763 esac
cannam@89 7764 done
cannam@89 7765 fi
cannam@89 7766 ;;
cannam@89 7767 file_magic*)
cannam@89 7768 set dummy $deplibs_check_method; shift
cannam@89 7769 file_magic_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
cannam@89 7770 for a_deplib in $deplibs; do
cannam@89 7771 case $a_deplib in
cannam@89 7772 -l*)
cannam@89 7773 func_stripname -l '' "$a_deplib"
cannam@89 7774 name=$func_stripname_result
cannam@89 7775 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@89 7776 case " $predeps $postdeps " in
cannam@89 7777 *" $a_deplib "*)
cannam@89 7778 func_append newdeplibs " $a_deplib"
cannam@89 7779 a_deplib=""
cannam@89 7780 ;;
cannam@89 7781 esac
cannam@89 7782 fi
cannam@89 7783 if test -n "$a_deplib" ; then
cannam@89 7784 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@89 7785 if test -n "$file_magic_glob"; then
cannam@89 7786 libnameglob=`func_echo_all "$libname" | $SED -e $file_magic_glob`
cannam@89 7787 else
cannam@89 7788 libnameglob=$libname
cannam@89 7789 fi
cannam@89 7790 test "$want_nocaseglob" = yes && nocaseglob=`shopt -p nocaseglob`
cannam@89 7791 for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
cannam@89 7792 if test "$want_nocaseglob" = yes; then
cannam@89 7793 shopt -s nocaseglob
cannam@89 7794 potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`
cannam@89 7795 $nocaseglob
cannam@89 7796 else
cannam@89 7797 potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`
cannam@89 7798 fi
cannam@89 7799 for potent_lib in $potential_libs; do
cannam@89 7800 # Follow soft links.
cannam@89 7801 if ls -lLd "$potent_lib" 2>/dev/null |
cannam@89 7802 $GREP " -> " >/dev/null; then
cannam@89 7803 continue
cannam@89 7804 fi
cannam@89 7805 # The statement above tries to avoid entering an
cannam@89 7806 # endless loop below, in case of cyclic links.
cannam@89 7807 # We might still enter an endless loop, since a link
cannam@89 7808 # loop can be closed while we follow links,
cannam@89 7809 # but so what?
cannam@89 7810 potlib="$potent_lib"
cannam@89 7811 while test -h "$potlib" 2>/dev/null; do
cannam@89 7812 potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'`
cannam@89 7813 case $potliblink in
cannam@89 7814 [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
cannam@89 7815 *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";;
cannam@89 7816 esac
cannam@89 7817 done
cannam@89 7818 if eval $file_magic_cmd \"\$potlib\" 2>/dev/null |
cannam@89 7819 $SED -e 10q |
cannam@89 7820 $EGREP "$file_magic_regex" > /dev/null; then
cannam@89 7821 func_append newdeplibs " $a_deplib"
cannam@89 7822 a_deplib=""
cannam@89 7823 break 2
cannam@89 7824 fi
cannam@89 7825 done
cannam@89 7826 done
cannam@89 7827 fi
cannam@89 7828 if test -n "$a_deplib" ; then
cannam@89 7829 droppeddeps=yes
cannam@89 7830 echo
cannam@89 7831 $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
cannam@89 7832 echo "*** I have the capability to make that library automatically link in when"
cannam@89 7833 echo "*** you link to this library. But I can only do this if you have a"
cannam@89 7834 echo "*** shared version of the library, which you do not appear to have"
cannam@89 7835 echo "*** because I did check the linker path looking for a file starting"
cannam@89 7836 if test -z "$potlib" ; then
cannam@89 7837 $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
cannam@89 7838 else
cannam@89 7839 $ECHO "*** with $libname and none of the candidates passed a file format test"
cannam@89 7840 $ECHO "*** using a file magic. Last file checked: $potlib"
cannam@89 7841 fi
cannam@89 7842 fi
cannam@89 7843 ;;
cannam@89 7844 *)
cannam@89 7845 # Add a -L argument.
cannam@89 7846 func_append newdeplibs " $a_deplib"
cannam@89 7847 ;;
cannam@89 7848 esac
cannam@89 7849 done # Gone through all deplibs.
cannam@89 7850 ;;
cannam@89 7851 match_pattern*)
cannam@89 7852 set dummy $deplibs_check_method; shift
cannam@89 7853 match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
cannam@89 7854 for a_deplib in $deplibs; do
cannam@89 7855 case $a_deplib in
cannam@89 7856 -l*)
cannam@89 7857 func_stripname -l '' "$a_deplib"
cannam@89 7858 name=$func_stripname_result
cannam@89 7859 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@89 7860 case " $predeps $postdeps " in
cannam@89 7861 *" $a_deplib "*)
cannam@89 7862 func_append newdeplibs " $a_deplib"
cannam@89 7863 a_deplib=""
cannam@89 7864 ;;
cannam@89 7865 esac
cannam@89 7866 fi
cannam@89 7867 if test -n "$a_deplib" ; then
cannam@89 7868 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@89 7869 for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
cannam@89 7870 potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
cannam@89 7871 for potent_lib in $potential_libs; do
cannam@89 7872 potlib="$potent_lib" # see symlink-check above in file_magic test
cannam@89 7873 if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \
cannam@89 7874 $EGREP "$match_pattern_regex" > /dev/null; then
cannam@89 7875 func_append newdeplibs " $a_deplib"
cannam@89 7876 a_deplib=""
cannam@89 7877 break 2
cannam@89 7878 fi
cannam@89 7879 done
cannam@89 7880 done
cannam@89 7881 fi
cannam@89 7882 if test -n "$a_deplib" ; then
cannam@89 7883 droppeddeps=yes
cannam@89 7884 echo
cannam@89 7885 $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
cannam@89 7886 echo "*** I have the capability to make that library automatically link in when"
cannam@89 7887 echo "*** you link to this library. But I can only do this if you have a"
cannam@89 7888 echo "*** shared version of the library, which you do not appear to have"
cannam@89 7889 echo "*** because I did check the linker path looking for a file starting"
cannam@89 7890 if test -z "$potlib" ; then
cannam@89 7891 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
cannam@89 7892 else
cannam@89 7893 $ECHO "*** with $libname and none of the candidates passed a file format test"
cannam@89 7894 $ECHO "*** using a regex pattern. Last file checked: $potlib"
cannam@89 7895 fi
cannam@89 7896 fi
cannam@89 7897 ;;
cannam@89 7898 *)
cannam@89 7899 # Add a -L argument.
cannam@89 7900 func_append newdeplibs " $a_deplib"
cannam@89 7901 ;;
cannam@89 7902 esac
cannam@89 7903 done # Gone through all deplibs.
cannam@89 7904 ;;
cannam@89 7905 none | unknown | *)
cannam@89 7906 newdeplibs=""
cannam@89 7907 tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'`
cannam@89 7908 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@89 7909 for i in $predeps $postdeps ; do
cannam@89 7910 # can't use Xsed below, because $i might contain '/'
cannam@89 7911 tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"`
cannam@89 7912 done
cannam@89 7913 fi
cannam@89 7914 case $tmp_deplibs in
cannam@89 7915 *[!\ \ ]*)
cannam@89 7916 echo
cannam@89 7917 if test "X$deplibs_check_method" = "Xnone"; then
cannam@89 7918 echo "*** Warning: inter-library dependencies are not supported in this platform."
cannam@89 7919 else
cannam@89 7920 echo "*** Warning: inter-library dependencies are not known to be supported."
cannam@89 7921 fi
cannam@89 7922 echo "*** All declared inter-library dependencies are being dropped."
cannam@89 7923 droppeddeps=yes
cannam@89 7924 ;;
cannam@89 7925 esac
cannam@89 7926 ;;
cannam@89 7927 esac
cannam@89 7928 versuffix=$versuffix_save
cannam@89 7929 major=$major_save
cannam@89 7930 release=$release_save
cannam@89 7931 libname=$libname_save
cannam@89 7932 name=$name_save
cannam@89 7933
cannam@89 7934 case $host in
cannam@89 7935 *-*-rhapsody* | *-*-darwin1.[012])
cannam@89 7936 # On Rhapsody replace the C library with the System framework
cannam@89 7937 newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'`
cannam@89 7938 ;;
cannam@89 7939 esac
cannam@89 7940
cannam@89 7941 if test "$droppeddeps" = yes; then
cannam@89 7942 if test "$module" = yes; then
cannam@89 7943 echo
cannam@89 7944 echo "*** Warning: libtool could not satisfy all declared inter-library"
cannam@89 7945 $ECHO "*** dependencies of module $libname. Therefore, libtool will create"
cannam@89 7946 echo "*** a static module, that should work as long as the dlopening"
cannam@89 7947 echo "*** application is linked with the -dlopen flag."
cannam@89 7948 if test -z "$global_symbol_pipe"; then
cannam@89 7949 echo
cannam@89 7950 echo "*** However, this would only work if libtool was able to extract symbol"
cannam@89 7951 echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
cannam@89 7952 echo "*** not find such a program. So, this module is probably useless."
cannam@89 7953 echo "*** \`nm' from GNU binutils and a full rebuild may help."
cannam@89 7954 fi
cannam@89 7955 if test "$build_old_libs" = no; then
cannam@89 7956 oldlibs="$output_objdir/$libname.$libext"
cannam@89 7957 build_libtool_libs=module
cannam@89 7958 build_old_libs=yes
cannam@89 7959 else
cannam@89 7960 build_libtool_libs=no
cannam@89 7961 fi
cannam@89 7962 else
cannam@89 7963 echo "*** The inter-library dependencies that have been dropped here will be"
cannam@89 7964 echo "*** automatically added whenever a program is linked with this library"
cannam@89 7965 echo "*** or is declared to -dlopen it."
cannam@89 7966
cannam@89 7967 if test "$allow_undefined" = no; then
cannam@89 7968 echo
cannam@89 7969 echo "*** Since this library must not contain undefined symbols,"
cannam@89 7970 echo "*** because either the platform does not support them or"
cannam@89 7971 echo "*** it was explicitly requested with -no-undefined,"
cannam@89 7972 echo "*** libtool will only create a static version of it."
cannam@89 7973 if test "$build_old_libs" = no; then
cannam@89 7974 oldlibs="$output_objdir/$libname.$libext"
cannam@89 7975 build_libtool_libs=module
cannam@89 7976 build_old_libs=yes
cannam@89 7977 else
cannam@89 7978 build_libtool_libs=no
cannam@89 7979 fi
cannam@89 7980 fi
cannam@89 7981 fi
cannam@89 7982 fi
cannam@89 7983 # Done checking deplibs!
cannam@89 7984 deplibs=$newdeplibs
cannam@89 7985 fi
cannam@89 7986 # Time to change all our "foo.ltframework" stuff back to "-framework foo"
cannam@89 7987 case $host in
cannam@89 7988 *-*-darwin*)
cannam@89 7989 newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@89 7990 new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@89 7991 deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@89 7992 ;;
cannam@89 7993 esac
cannam@89 7994
cannam@89 7995 # move library search paths that coincide with paths to not yet
cannam@89 7996 # installed libraries to the beginning of the library search list
cannam@89 7997 new_libs=
cannam@89 7998 for path in $notinst_path; do
cannam@89 7999 case " $new_libs " in
cannam@89 8000 *" -L$path/$objdir "*) ;;
cannam@89 8001 *)
cannam@89 8002 case " $deplibs " in
cannam@89 8003 *" -L$path/$objdir "*)
cannam@89 8004 func_append new_libs " -L$path/$objdir" ;;
cannam@89 8005 esac
cannam@89 8006 ;;
cannam@89 8007 esac
cannam@89 8008 done
cannam@89 8009 for deplib in $deplibs; do
cannam@89 8010 case $deplib in
cannam@89 8011 -L*)
cannam@89 8012 case " $new_libs " in
cannam@89 8013 *" $deplib "*) ;;
cannam@89 8014 *) func_append new_libs " $deplib" ;;
cannam@89 8015 esac
cannam@89 8016 ;;
cannam@89 8017 *) func_append new_libs " $deplib" ;;
cannam@89 8018 esac
cannam@89 8019 done
cannam@89 8020 deplibs="$new_libs"
cannam@89 8021
cannam@89 8022 # All the library-specific variables (install_libdir is set above).
cannam@89 8023 library_names=
cannam@89 8024 old_library=
cannam@89 8025 dlname=
cannam@89 8026
cannam@89 8027 # Test again, we may have decided not to build it any more
cannam@89 8028 if test "$build_libtool_libs" = yes; then
cannam@89 8029 if test "$hardcode_into_libs" = yes; then
cannam@89 8030 # Hardcode the library paths
cannam@89 8031 hardcode_libdirs=
cannam@89 8032 dep_rpath=
cannam@89 8033 rpath="$finalize_rpath"
cannam@89 8034 test "$opt_mode" != relink && rpath="$compile_rpath$rpath"
cannam@89 8035 for libdir in $rpath; do
cannam@89 8036 if test -n "$hardcode_libdir_flag_spec"; then
cannam@89 8037 if test -n "$hardcode_libdir_separator"; then
cannam@89 8038 func_replace_sysroot "$libdir"
cannam@89 8039 libdir=$func_replace_sysroot_result
cannam@89 8040 if test -z "$hardcode_libdirs"; then
cannam@89 8041 hardcode_libdirs="$libdir"
cannam@89 8042 else
cannam@89 8043 # Just accumulate the unique libdirs.
cannam@89 8044 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@89 8045 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@89 8046 ;;
cannam@89 8047 *)
cannam@89 8048 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
cannam@89 8049 ;;
cannam@89 8050 esac
cannam@89 8051 fi
cannam@89 8052 else
cannam@89 8053 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@89 8054 func_append dep_rpath " $flag"
cannam@89 8055 fi
cannam@89 8056 elif test -n "$runpath_var"; then
cannam@89 8057 case "$perm_rpath " in
cannam@89 8058 *" $libdir "*) ;;
cannam@89 8059 *) func_apped perm_rpath " $libdir" ;;
cannam@89 8060 esac
cannam@89 8061 fi
cannam@89 8062 done
cannam@89 8063 # Substitute the hardcoded libdirs into the rpath.
cannam@89 8064 if test -n "$hardcode_libdir_separator" &&
cannam@89 8065 test -n "$hardcode_libdirs"; then
cannam@89 8066 libdir="$hardcode_libdirs"
cannam@89 8067 if test -n "$hardcode_libdir_flag_spec_ld"; then
cannam@89 8068 eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\"
cannam@89 8069 else
cannam@89 8070 eval dep_rpath=\"$hardcode_libdir_flag_spec\"
cannam@89 8071 fi
cannam@89 8072 fi
cannam@89 8073 if test -n "$runpath_var" && test -n "$perm_rpath"; then
cannam@89 8074 # We should set the runpath_var.
cannam@89 8075 rpath=
cannam@89 8076 for dir in $perm_rpath; do
cannam@89 8077 func_append rpath "$dir:"
cannam@89 8078 done
cannam@89 8079 eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var"
cannam@89 8080 fi
cannam@89 8081 test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs"
cannam@89 8082 fi
cannam@89 8083
cannam@89 8084 shlibpath="$finalize_shlibpath"
cannam@89 8085 test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath"
cannam@89 8086 if test -n "$shlibpath"; then
cannam@89 8087 eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var"
cannam@89 8088 fi
cannam@89 8089
cannam@89 8090 # Get the real and link names of the library.
cannam@89 8091 eval shared_ext=\"$shrext_cmds\"
cannam@89 8092 eval library_names=\"$library_names_spec\"
cannam@89 8093 set dummy $library_names
cannam@89 8094 shift
cannam@89 8095 realname="$1"
cannam@89 8096 shift
cannam@89 8097
cannam@89 8098 if test -n "$soname_spec"; then
cannam@89 8099 eval soname=\"$soname_spec\"
cannam@89 8100 else
cannam@89 8101 soname="$realname"
cannam@89 8102 fi
cannam@89 8103 if test -z "$dlname"; then
cannam@89 8104 dlname=$soname
cannam@89 8105 fi
cannam@89 8106
cannam@89 8107 lib="$output_objdir/$realname"
cannam@89 8108 linknames=
cannam@89 8109 for link
cannam@89 8110 do
cannam@89 8111 func_append linknames " $link"
cannam@89 8112 done
cannam@89 8113
cannam@89 8114 # Use standard objects if they are pic
cannam@89 8115 test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@89 8116 test "X$libobjs" = "X " && libobjs=
cannam@89 8117
cannam@89 8118 delfiles=
cannam@89 8119 if test -n "$export_symbols" && test -n "$include_expsyms"; then
cannam@89 8120 $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp"
cannam@89 8121 export_symbols="$output_objdir/$libname.uexp"
cannam@89 8122 func_append delfiles " $export_symbols"
cannam@89 8123 fi
cannam@89 8124
cannam@89 8125 orig_export_symbols=
cannam@89 8126 case $host_os in
cannam@89 8127 cygwin* | mingw* | cegcc*)
cannam@89 8128 if test -n "$export_symbols" && test -z "$export_symbols_regex"; then
cannam@89 8129 # exporting using user supplied symfile
cannam@89 8130 if test "x`$SED 1q $export_symbols`" != xEXPORTS; then
cannam@89 8131 # and it's NOT already a .def file. Must figure out
cannam@89 8132 # which of the given symbols are data symbols and tag
cannam@89 8133 # them as such. So, trigger use of export_symbols_cmds.
cannam@89 8134 # export_symbols gets reassigned inside the "prepare
cannam@89 8135 # the list of exported symbols" if statement, so the
cannam@89 8136 # include_expsyms logic still works.
cannam@89 8137 orig_export_symbols="$export_symbols"
cannam@89 8138 export_symbols=
cannam@89 8139 always_export_symbols=yes
cannam@89 8140 fi
cannam@89 8141 fi
cannam@89 8142 ;;
cannam@89 8143 esac
cannam@89 8144
cannam@89 8145 # Prepare the list of exported symbols
cannam@89 8146 if test -z "$export_symbols"; then
cannam@89 8147 if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
cannam@89 8148 func_verbose "generating symbol list for \`$libname.la'"
cannam@89 8149 export_symbols="$output_objdir/$libname.exp"
cannam@89 8150 $opt_dry_run || $RM $export_symbols
cannam@89 8151 cmds=$export_symbols_cmds
cannam@89 8152 save_ifs="$IFS"; IFS='~'
cannam@89 8153 for cmd1 in $cmds; do
cannam@89 8154 IFS="$save_ifs"
cannam@89 8155 # Take the normal branch if the nm_file_list_spec branch
cannam@89 8156 # doesn't work or if tool conversion is not needed.
cannam@89 8157 case $nm_file_list_spec~$to_tool_file_cmd in
cannam@89 8158 *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*)
cannam@89 8159 try_normal_branch=yes
cannam@89 8160 eval cmd=\"$cmd1\"
cannam@89 8161 func_len " $cmd"
cannam@89 8162 len=$func_len_result
cannam@89 8163 ;;
cannam@89 8164 *)
cannam@89 8165 try_normal_branch=no
cannam@89 8166 ;;
cannam@89 8167 esac
cannam@89 8168 if test "$try_normal_branch" = yes \
cannam@89 8169 && { test "$len" -lt "$max_cmd_len" \
cannam@89 8170 || test "$max_cmd_len" -le -1; }
cannam@89 8171 then
cannam@89 8172 func_show_eval "$cmd" 'exit $?'
cannam@89 8173 skipped_export=false
cannam@89 8174 elif test -n "$nm_file_list_spec"; then
cannam@89 8175 func_basename "$output"
cannam@89 8176 output_la=$func_basename_result
cannam@89 8177 save_libobjs=$libobjs
cannam@89 8178 save_output=$output
cannam@89 8179 output=${output_objdir}/${output_la}.nm
cannam@89 8180 func_to_tool_file "$output"
cannam@89 8181 libobjs=$nm_file_list_spec$func_to_tool_file_result
cannam@89 8182 func_append delfiles " $output"
cannam@89 8183 func_verbose "creating $NM input file list: $output"
cannam@89 8184 for obj in $save_libobjs; do
cannam@89 8185 func_to_tool_file "$obj"
cannam@89 8186 $ECHO "$func_to_tool_file_result"
cannam@89 8187 done > "$output"
cannam@89 8188 eval cmd=\"$cmd1\"
cannam@89 8189 func_show_eval "$cmd" 'exit $?'
cannam@89 8190 output=$save_output
cannam@89 8191 libobjs=$save_libobjs
cannam@89 8192 skipped_export=false
cannam@89 8193 else
cannam@89 8194 # The command line is too long to execute in one step.
cannam@89 8195 func_verbose "using reloadable object file for export list..."
cannam@89 8196 skipped_export=:
cannam@89 8197 # Break out early, otherwise skipped_export may be
cannam@89 8198 # set to false by a later but shorter cmd.
cannam@89 8199 break
cannam@89 8200 fi
cannam@89 8201 done
cannam@89 8202 IFS="$save_ifs"
cannam@89 8203 if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then
cannam@89 8204 func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
cannam@89 8205 func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
cannam@89 8206 fi
cannam@89 8207 fi
cannam@89 8208 fi
cannam@89 8209
cannam@89 8210 if test -n "$export_symbols" && test -n "$include_expsyms"; then
cannam@89 8211 tmp_export_symbols="$export_symbols"
cannam@89 8212 test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
cannam@89 8213 $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"'
cannam@89 8214 fi
cannam@89 8215
cannam@89 8216 if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then
cannam@89 8217 # The given exports_symbols file has to be filtered, so filter it.
cannam@89 8218 func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
cannam@89 8219 # FIXME: $output_objdir/$libname.filter potentially contains lots of
cannam@89 8220 # 's' commands which not all seds can handle. GNU sed should be fine
cannam@89 8221 # though. Also, the filter scales superlinearly with the number of
cannam@89 8222 # global variables. join(1) would be nice here, but unfortunately
cannam@89 8223 # isn't a blessed tool.
cannam@89 8224 $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter
cannam@89 8225 func_append delfiles " $export_symbols $output_objdir/$libname.filter"
cannam@89 8226 export_symbols=$output_objdir/$libname.def
cannam@89 8227 $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
cannam@89 8228 fi
cannam@89 8229
cannam@89 8230 tmp_deplibs=
cannam@89 8231 for test_deplib in $deplibs; do
cannam@89 8232 case " $convenience " in
cannam@89 8233 *" $test_deplib "*) ;;
cannam@89 8234 *)
cannam@89 8235 func_append tmp_deplibs " $test_deplib"
cannam@89 8236 ;;
cannam@89 8237 esac
cannam@89 8238 done
cannam@89 8239 deplibs="$tmp_deplibs"
cannam@89 8240
cannam@89 8241 if test -n "$convenience"; then
cannam@89 8242 if test -n "$whole_archive_flag_spec" &&
cannam@89 8243 test "$compiler_needs_object" = yes &&
cannam@89 8244 test -z "$libobjs"; then
cannam@89 8245 # extract the archives, so we have objects to list.
cannam@89 8246 # TODO: could optimize this to just extract one archive.
cannam@89 8247 whole_archive_flag_spec=
cannam@89 8248 fi
cannam@89 8249 if test -n "$whole_archive_flag_spec"; then
cannam@89 8250 save_libobjs=$libobjs
cannam@89 8251 eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
cannam@89 8252 test "X$libobjs" = "X " && libobjs=
cannam@89 8253 else
cannam@89 8254 gentop="$output_objdir/${outputname}x"
cannam@89 8255 func_append generated " $gentop"
cannam@89 8256
cannam@89 8257 func_extract_archives $gentop $convenience
cannam@89 8258 func_append libobjs " $func_extract_archives_result"
cannam@89 8259 test "X$libobjs" = "X " && libobjs=
cannam@89 8260 fi
cannam@89 8261 fi
cannam@89 8262
cannam@89 8263 if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
cannam@89 8264 eval flag=\"$thread_safe_flag_spec\"
cannam@89 8265 func_append linker_flags " $flag"
cannam@89 8266 fi
cannam@89 8267
cannam@89 8268 # Make a backup of the uninstalled library when relinking
cannam@89 8269 if test "$opt_mode" = relink; then
cannam@89 8270 $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?
cannam@89 8271 fi
cannam@89 8272
cannam@89 8273 # Do each of the archive commands.
cannam@89 8274 if test "$module" = yes && test -n "$module_cmds" ; then
cannam@89 8275 if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
cannam@89 8276 eval test_cmds=\"$module_expsym_cmds\"
cannam@89 8277 cmds=$module_expsym_cmds
cannam@89 8278 else
cannam@89 8279 eval test_cmds=\"$module_cmds\"
cannam@89 8280 cmds=$module_cmds
cannam@89 8281 fi
cannam@89 8282 else
cannam@89 8283 if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
cannam@89 8284 eval test_cmds=\"$archive_expsym_cmds\"
cannam@89 8285 cmds=$archive_expsym_cmds
cannam@89 8286 else
cannam@89 8287 eval test_cmds=\"$archive_cmds\"
cannam@89 8288 cmds=$archive_cmds
cannam@89 8289 fi
cannam@89 8290 fi
cannam@89 8291
cannam@89 8292 if test "X$skipped_export" != "X:" &&
cannam@89 8293 func_len " $test_cmds" &&
cannam@89 8294 len=$func_len_result &&
cannam@89 8295 test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
cannam@89 8296 :
cannam@89 8297 else
cannam@89 8298 # The command line is too long to link in one step, link piecewise
cannam@89 8299 # or, if using GNU ld and skipped_export is not :, use a linker
cannam@89 8300 # script.
cannam@89 8301
cannam@89 8302 # Save the value of $output and $libobjs because we want to
cannam@89 8303 # use them later. If we have whole_archive_flag_spec, we
cannam@89 8304 # want to use save_libobjs as it was before
cannam@89 8305 # whole_archive_flag_spec was expanded, because we can't
cannam@89 8306 # assume the linker understands whole_archive_flag_spec.
cannam@89 8307 # This may have to be revisited, in case too many
cannam@89 8308 # convenience libraries get linked in and end up exceeding
cannam@89 8309 # the spec.
cannam@89 8310 if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then
cannam@89 8311 save_libobjs=$libobjs
cannam@89 8312 fi
cannam@89 8313 save_output=$output
cannam@89 8314 func_basename "$output"
cannam@89 8315 output_la=$func_basename_result
cannam@89 8316
cannam@89 8317 # Clear the reloadable object creation command queue and
cannam@89 8318 # initialize k to one.
cannam@89 8319 test_cmds=
cannam@89 8320 concat_cmds=
cannam@89 8321 objlist=
cannam@89 8322 last_robj=
cannam@89 8323 k=1
cannam@89 8324
cannam@89 8325 if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then
cannam@89 8326 output=${output_objdir}/${output_la}.lnkscript
cannam@89 8327 func_verbose "creating GNU ld script: $output"
cannam@89 8328 echo 'INPUT (' > $output
cannam@89 8329 for obj in $save_libobjs
cannam@89 8330 do
cannam@89 8331 func_to_tool_file "$obj"
cannam@89 8332 $ECHO "$func_to_tool_file_result" >> $output
cannam@89 8333 done
cannam@89 8334 echo ')' >> $output
cannam@89 8335 func_append delfiles " $output"
cannam@89 8336 func_to_tool_file "$output"
cannam@89 8337 output=$func_to_tool_file_result
cannam@89 8338 elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then
cannam@89 8339 output=${output_objdir}/${output_la}.lnk
cannam@89 8340 func_verbose "creating linker input file list: $output"
cannam@89 8341 : > $output
cannam@89 8342 set x $save_libobjs
cannam@89 8343 shift
cannam@89 8344 firstobj=
cannam@89 8345 if test "$compiler_needs_object" = yes; then
cannam@89 8346 firstobj="$1 "
cannam@89 8347 shift
cannam@89 8348 fi
cannam@89 8349 for obj
cannam@89 8350 do
cannam@89 8351 func_to_tool_file "$obj"
cannam@89 8352 $ECHO "$func_to_tool_file_result" >> $output
cannam@89 8353 done
cannam@89 8354 func_append delfiles " $output"
cannam@89 8355 func_to_tool_file "$output"
cannam@89 8356 output=$firstobj\"$file_list_spec$func_to_tool_file_result\"
cannam@89 8357 else
cannam@89 8358 if test -n "$save_libobjs"; then
cannam@89 8359 func_verbose "creating reloadable object files..."
cannam@89 8360 output=$output_objdir/$output_la-${k}.$objext
cannam@89 8361 eval test_cmds=\"$reload_cmds\"
cannam@89 8362 func_len " $test_cmds"
cannam@89 8363 len0=$func_len_result
cannam@89 8364 len=$len0
cannam@89 8365
cannam@89 8366 # Loop over the list of objects to be linked.
cannam@89 8367 for obj in $save_libobjs
cannam@89 8368 do
cannam@89 8369 func_len " $obj"
cannam@89 8370 func_arith $len + $func_len_result
cannam@89 8371 len=$func_arith_result
cannam@89 8372 if test "X$objlist" = X ||
cannam@89 8373 test "$len" -lt "$max_cmd_len"; then
cannam@89 8374 func_append objlist " $obj"
cannam@89 8375 else
cannam@89 8376 # The command $test_cmds is almost too long, add a
cannam@89 8377 # command to the queue.
cannam@89 8378 if test "$k" -eq 1 ; then
cannam@89 8379 # The first file doesn't have a previous command to add.
cannam@89 8380 reload_objs=$objlist
cannam@89 8381 eval concat_cmds=\"$reload_cmds\"
cannam@89 8382 else
cannam@89 8383 # All subsequent reloadable object files will link in
cannam@89 8384 # the last one created.
cannam@89 8385 reload_objs="$objlist $last_robj"
cannam@89 8386 eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\"
cannam@89 8387 fi
cannam@89 8388 last_robj=$output_objdir/$output_la-${k}.$objext
cannam@89 8389 func_arith $k + 1
cannam@89 8390 k=$func_arith_result
cannam@89 8391 output=$output_objdir/$output_la-${k}.$objext
cannam@89 8392 objlist=" $obj"
cannam@89 8393 func_len " $last_robj"
cannam@89 8394 func_arith $len0 + $func_len_result
cannam@89 8395 len=$func_arith_result
cannam@89 8396 fi
cannam@89 8397 done
cannam@89 8398 # Handle the remaining objects by creating one last
cannam@89 8399 # reloadable object file. All subsequent reloadable object
cannam@89 8400 # files will link in the last one created.
cannam@89 8401 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
cannam@89 8402 reload_objs="$objlist $last_robj"
cannam@89 8403 eval concat_cmds=\"\${concat_cmds}$reload_cmds\"
cannam@89 8404 if test -n "$last_robj"; then
cannam@89 8405 eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\"
cannam@89 8406 fi
cannam@89 8407 func_append delfiles " $output"
cannam@89 8408
cannam@89 8409 else
cannam@89 8410 output=
cannam@89 8411 fi
cannam@89 8412
cannam@89 8413 if ${skipped_export-false}; then
cannam@89 8414 func_verbose "generating symbol list for \`$libname.la'"
cannam@89 8415 export_symbols="$output_objdir/$libname.exp"
cannam@89 8416 $opt_dry_run || $RM $export_symbols
cannam@89 8417 libobjs=$output
cannam@89 8418 # Append the command to create the export file.
cannam@89 8419 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
cannam@89 8420 eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\"
cannam@89 8421 if test -n "$last_robj"; then
cannam@89 8422 eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\"
cannam@89 8423 fi
cannam@89 8424 fi
cannam@89 8425
cannam@89 8426 test -n "$save_libobjs" &&
cannam@89 8427 func_verbose "creating a temporary reloadable object file: $output"
cannam@89 8428
cannam@89 8429 # Loop through the commands generated above and execute them.
cannam@89 8430 save_ifs="$IFS"; IFS='~'
cannam@89 8431 for cmd in $concat_cmds; do
cannam@89 8432 IFS="$save_ifs"
cannam@89 8433 $opt_silent || {
cannam@89 8434 func_quote_for_expand "$cmd"
cannam@89 8435 eval "func_echo $func_quote_for_expand_result"
cannam@89 8436 }
cannam@89 8437 $opt_dry_run || eval "$cmd" || {
cannam@89 8438 lt_exit=$?
cannam@89 8439
cannam@89 8440 # Restore the uninstalled library and exit
cannam@89 8441 if test "$opt_mode" = relink; then
cannam@89 8442 ( cd "$output_objdir" && \
cannam@89 8443 $RM "${realname}T" && \
cannam@89 8444 $MV "${realname}U" "$realname" )
cannam@89 8445 fi
cannam@89 8446
cannam@89 8447 exit $lt_exit
cannam@89 8448 }
cannam@89 8449 done
cannam@89 8450 IFS="$save_ifs"
cannam@89 8451
cannam@89 8452 if test -n "$export_symbols_regex" && ${skipped_export-false}; then
cannam@89 8453 func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
cannam@89 8454 func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
cannam@89 8455 fi
cannam@89 8456 fi
cannam@89 8457
cannam@89 8458 if ${skipped_export-false}; then
cannam@89 8459 if test -n "$export_symbols" && test -n "$include_expsyms"; then
cannam@89 8460 tmp_export_symbols="$export_symbols"
cannam@89 8461 test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
cannam@89 8462 $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"'
cannam@89 8463 fi
cannam@89 8464
cannam@89 8465 if test -n "$orig_export_symbols"; then
cannam@89 8466 # The given exports_symbols file has to be filtered, so filter it.
cannam@89 8467 func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
cannam@89 8468 # FIXME: $output_objdir/$libname.filter potentially contains lots of
cannam@89 8469 # 's' commands which not all seds can handle. GNU sed should be fine
cannam@89 8470 # though. Also, the filter scales superlinearly with the number of
cannam@89 8471 # global variables. join(1) would be nice here, but unfortunately
cannam@89 8472 # isn't a blessed tool.
cannam@89 8473 $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter
cannam@89 8474 func_append delfiles " $export_symbols $output_objdir/$libname.filter"
cannam@89 8475 export_symbols=$output_objdir/$libname.def
cannam@89 8476 $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
cannam@89 8477 fi
cannam@89 8478 fi
cannam@89 8479
cannam@89 8480 libobjs=$output
cannam@89 8481 # Restore the value of output.
cannam@89 8482 output=$save_output
cannam@89 8483
cannam@89 8484 if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then
cannam@89 8485 eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
cannam@89 8486 test "X$libobjs" = "X " && libobjs=
cannam@89 8487 fi
cannam@89 8488 # Expand the library linking commands again to reset the
cannam@89 8489 # value of $libobjs for piecewise linking.
cannam@89 8490
cannam@89 8491 # Do each of the archive commands.
cannam@89 8492 if test "$module" = yes && test -n "$module_cmds" ; then
cannam@89 8493 if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
cannam@89 8494 cmds=$module_expsym_cmds
cannam@89 8495 else
cannam@89 8496 cmds=$module_cmds
cannam@89 8497 fi
cannam@89 8498 else
cannam@89 8499 if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
cannam@89 8500 cmds=$archive_expsym_cmds
cannam@89 8501 else
cannam@89 8502 cmds=$archive_cmds
cannam@89 8503 fi
cannam@89 8504 fi
cannam@89 8505 fi
cannam@89 8506
cannam@89 8507 if test -n "$delfiles"; then
cannam@89 8508 # Append the command to remove temporary files to $cmds.
cannam@89 8509 eval cmds=\"\$cmds~\$RM $delfiles\"
cannam@89 8510 fi
cannam@89 8511
cannam@89 8512 # Add any objects from preloaded convenience libraries
cannam@89 8513 if test -n "$dlprefiles"; then
cannam@89 8514 gentop="$output_objdir/${outputname}x"
cannam@89 8515 func_append generated " $gentop"
cannam@89 8516
cannam@89 8517 func_extract_archives $gentop $dlprefiles
cannam@89 8518 func_append libobjs " $func_extract_archives_result"
cannam@89 8519 test "X$libobjs" = "X " && libobjs=
cannam@89 8520 fi
cannam@89 8521
cannam@89 8522 save_ifs="$IFS"; IFS='~'
cannam@89 8523 for cmd in $cmds; do
cannam@89 8524 IFS="$save_ifs"
cannam@89 8525 eval cmd=\"$cmd\"
cannam@89 8526 $opt_silent || {
cannam@89 8527 func_quote_for_expand "$cmd"
cannam@89 8528 eval "func_echo $func_quote_for_expand_result"
cannam@89 8529 }
cannam@89 8530 $opt_dry_run || eval "$cmd" || {
cannam@89 8531 lt_exit=$?
cannam@89 8532
cannam@89 8533 # Restore the uninstalled library and exit
cannam@89 8534 if test "$opt_mode" = relink; then
cannam@89 8535 ( cd "$output_objdir" && \
cannam@89 8536 $RM "${realname}T" && \
cannam@89 8537 $MV "${realname}U" "$realname" )
cannam@89 8538 fi
cannam@89 8539
cannam@89 8540 exit $lt_exit
cannam@89 8541 }
cannam@89 8542 done
cannam@89 8543 IFS="$save_ifs"
cannam@89 8544
cannam@89 8545 # Restore the uninstalled library and exit
cannam@89 8546 if test "$opt_mode" = relink; then
cannam@89 8547 $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $?
cannam@89 8548
cannam@89 8549 if test -n "$convenience"; then
cannam@89 8550 if test -z "$whole_archive_flag_spec"; then
cannam@89 8551 func_show_eval '${RM}r "$gentop"'
cannam@89 8552 fi
cannam@89 8553 fi
cannam@89 8554
cannam@89 8555 exit $EXIT_SUCCESS
cannam@89 8556 fi
cannam@89 8557
cannam@89 8558 # Create links to the real library.
cannam@89 8559 for linkname in $linknames; do
cannam@89 8560 if test "$realname" != "$linkname"; then
cannam@89 8561 func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?'
cannam@89 8562 fi
cannam@89 8563 done
cannam@89 8564
cannam@89 8565 # If -module or -export-dynamic was specified, set the dlname.
cannam@89 8566 if test "$module" = yes || test "$export_dynamic" = yes; then
cannam@89 8567 # On all known operating systems, these are identical.
cannam@89 8568 dlname="$soname"
cannam@89 8569 fi
cannam@89 8570 fi
cannam@89 8571 ;;
cannam@89 8572
cannam@89 8573 obj)
cannam@89 8574 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@89 8575 func_warning "\`-dlopen' is ignored for objects"
cannam@89 8576 fi
cannam@89 8577
cannam@89 8578 case " $deplibs" in
cannam@89 8579 *\ -l* | *\ -L*)
cannam@89 8580 func_warning "\`-l' and \`-L' are ignored for objects" ;;
cannam@89 8581 esac
cannam@89 8582
cannam@89 8583 test -n "$rpath" && \
cannam@89 8584 func_warning "\`-rpath' is ignored for objects"
cannam@89 8585
cannam@89 8586 test -n "$xrpath" && \
cannam@89 8587 func_warning "\`-R' is ignored for objects"
cannam@89 8588
cannam@89 8589 test -n "$vinfo" && \
cannam@89 8590 func_warning "\`-version-info' is ignored for objects"
cannam@89 8591
cannam@89 8592 test -n "$release" && \
cannam@89 8593 func_warning "\`-release' is ignored for objects"
cannam@89 8594
cannam@89 8595 case $output in
cannam@89 8596 *.lo)
cannam@89 8597 test -n "$objs$old_deplibs" && \
cannam@89 8598 func_fatal_error "cannot build library object \`$output' from non-libtool objects"
cannam@89 8599
cannam@89 8600 libobj=$output
cannam@89 8601 func_lo2o "$libobj"
cannam@89 8602 obj=$func_lo2o_result
cannam@89 8603 ;;
cannam@89 8604 *)
cannam@89 8605 libobj=
cannam@89 8606 obj="$output"
cannam@89 8607 ;;
cannam@89 8608 esac
cannam@89 8609
cannam@89 8610 # Delete the old objects.
cannam@89 8611 $opt_dry_run || $RM $obj $libobj
cannam@89 8612
cannam@89 8613 # Objects from convenience libraries. This assumes
cannam@89 8614 # single-version convenience libraries. Whenever we create
cannam@89 8615 # different ones for PIC/non-PIC, this we'll have to duplicate
cannam@89 8616 # the extraction.
cannam@89 8617 reload_conv_objs=
cannam@89 8618 gentop=
cannam@89 8619 # reload_cmds runs $LD directly, so let us get rid of
cannam@89 8620 # -Wl from whole_archive_flag_spec and hope we can get by with
cannam@89 8621 # turning comma into space..
cannam@89 8622 wl=
cannam@89 8623
cannam@89 8624 if test -n "$convenience"; then
cannam@89 8625 if test -n "$whole_archive_flag_spec"; then
cannam@89 8626 eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\"
cannam@89 8627 reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'`
cannam@89 8628 else
cannam@89 8629 gentop="$output_objdir/${obj}x"
cannam@89 8630 func_append generated " $gentop"
cannam@89 8631
cannam@89 8632 func_extract_archives $gentop $convenience
cannam@89 8633 reload_conv_objs="$reload_objs $func_extract_archives_result"
cannam@89 8634 fi
cannam@89 8635 fi
cannam@89 8636
cannam@89 8637 # If we're not building shared, we need to use non_pic_objs
cannam@89 8638 test "$build_libtool_libs" != yes && libobjs="$non_pic_objects"
cannam@89 8639
cannam@89 8640 # Create the old-style object.
cannam@89 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@89 8642
cannam@89 8643 output="$obj"
cannam@89 8644 func_execute_cmds "$reload_cmds" 'exit $?'
cannam@89 8645
cannam@89 8646 # Exit if we aren't doing a library object file.
cannam@89 8647 if test -z "$libobj"; then
cannam@89 8648 if test -n "$gentop"; then
cannam@89 8649 func_show_eval '${RM}r "$gentop"'
cannam@89 8650 fi
cannam@89 8651
cannam@89 8652 exit $EXIT_SUCCESS
cannam@89 8653 fi
cannam@89 8654
cannam@89 8655 if test "$build_libtool_libs" != yes; then
cannam@89 8656 if test -n "$gentop"; then
cannam@89 8657 func_show_eval '${RM}r "$gentop"'
cannam@89 8658 fi
cannam@89 8659
cannam@89 8660 # Create an invalid libtool object if no PIC, so that we don't
cannam@89 8661 # accidentally link it into a program.
cannam@89 8662 # $show "echo timestamp > $libobj"
cannam@89 8663 # $opt_dry_run || eval "echo timestamp > $libobj" || exit $?
cannam@89 8664 exit $EXIT_SUCCESS
cannam@89 8665 fi
cannam@89 8666
cannam@89 8667 if test -n "$pic_flag" || test "$pic_mode" != default; then
cannam@89 8668 # Only do commands if we really have different PIC objects.
cannam@89 8669 reload_objs="$libobjs $reload_conv_objs"
cannam@89 8670 output="$libobj"
cannam@89 8671 func_execute_cmds "$reload_cmds" 'exit $?'
cannam@89 8672 fi
cannam@89 8673
cannam@89 8674 if test -n "$gentop"; then
cannam@89 8675 func_show_eval '${RM}r "$gentop"'
cannam@89 8676 fi
cannam@89 8677
cannam@89 8678 exit $EXIT_SUCCESS
cannam@89 8679 ;;
cannam@89 8680
cannam@89 8681 prog)
cannam@89 8682 case $host in
cannam@89 8683 *cygwin*) func_stripname '' '.exe' "$output"
cannam@89 8684 output=$func_stripname_result.exe;;
cannam@89 8685 esac
cannam@89 8686 test -n "$vinfo" && \
cannam@89 8687 func_warning "\`-version-info' is ignored for programs"
cannam@89 8688
cannam@89 8689 test -n "$release" && \
cannam@89 8690 func_warning "\`-release' is ignored for programs"
cannam@89 8691
cannam@89 8692 test "$preload" = yes \
cannam@89 8693 && test "$dlopen_support" = unknown \
cannam@89 8694 && test "$dlopen_self" = unknown \
cannam@89 8695 && test "$dlopen_self_static" = unknown && \
cannam@89 8696 func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support."
cannam@89 8697
cannam@89 8698 case $host in
cannam@89 8699 *-*-rhapsody* | *-*-darwin1.[012])
cannam@89 8700 # On Rhapsody replace the C library is the System framework
cannam@89 8701 compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'`
cannam@89 8702 finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'`
cannam@89 8703 ;;
cannam@89 8704 esac
cannam@89 8705
cannam@89 8706 case $host in
cannam@89 8707 *-*-darwin*)
cannam@89 8708 # Don't allow lazy linking, it breaks C++ global constructors
cannam@89 8709 # But is supposedly fixed on 10.4 or later (yay!).
cannam@89 8710 if test "$tagname" = CXX ; then
cannam@89 8711 case ${MACOSX_DEPLOYMENT_TARGET-10.0} in
cannam@89 8712 10.[0123])
cannam@89 8713 func_append compile_command " ${wl}-bind_at_load"
cannam@89 8714 func_append finalize_command " ${wl}-bind_at_load"
cannam@89 8715 ;;
cannam@89 8716 esac
cannam@89 8717 fi
cannam@89 8718 # Time to change all our "foo.ltframework" stuff back to "-framework foo"
cannam@89 8719 compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@89 8720 finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@89 8721 ;;
cannam@89 8722 esac
cannam@89 8723
cannam@89 8724
cannam@89 8725 # move library search paths that coincide with paths to not yet
cannam@89 8726 # installed libraries to the beginning of the library search list
cannam@89 8727 new_libs=
cannam@89 8728 for path in $notinst_path; do
cannam@89 8729 case " $new_libs " in
cannam@89 8730 *" -L$path/$objdir "*) ;;
cannam@89 8731 *)
cannam@89 8732 case " $compile_deplibs " in
cannam@89 8733 *" -L$path/$objdir "*)
cannam@89 8734 func_append new_libs " -L$path/$objdir" ;;
cannam@89 8735 esac
cannam@89 8736 ;;
cannam@89 8737 esac
cannam@89 8738 done
cannam@89 8739 for deplib in $compile_deplibs; do
cannam@89 8740 case $deplib in
cannam@89 8741 -L*)
cannam@89 8742 case " $new_libs " in
cannam@89 8743 *" $deplib "*) ;;
cannam@89 8744 *) func_append new_libs " $deplib" ;;
cannam@89 8745 esac
cannam@89 8746 ;;
cannam@89 8747 *) func_append new_libs " $deplib" ;;
cannam@89 8748 esac
cannam@89 8749 done
cannam@89 8750 compile_deplibs="$new_libs"
cannam@89 8751
cannam@89 8752
cannam@89 8753 func_append compile_command " $compile_deplibs"
cannam@89 8754 func_append finalize_command " $finalize_deplibs"
cannam@89 8755
cannam@89 8756 if test -n "$rpath$xrpath"; then
cannam@89 8757 # If the user specified any rpath flags, then add them.
cannam@89 8758 for libdir in $rpath $xrpath; do
cannam@89 8759 # This is the magic to use -rpath.
cannam@89 8760 case "$finalize_rpath " in
cannam@89 8761 *" $libdir "*) ;;
cannam@89 8762 *) func_append finalize_rpath " $libdir" ;;
cannam@89 8763 esac
cannam@89 8764 done
cannam@89 8765 fi
cannam@89 8766
cannam@89 8767 # Now hardcode the library paths
cannam@89 8768 rpath=
cannam@89 8769 hardcode_libdirs=
cannam@89 8770 for libdir in $compile_rpath $finalize_rpath; do
cannam@89 8771 if test -n "$hardcode_libdir_flag_spec"; then
cannam@89 8772 if test -n "$hardcode_libdir_separator"; then
cannam@89 8773 if test -z "$hardcode_libdirs"; then
cannam@89 8774 hardcode_libdirs="$libdir"
cannam@89 8775 else
cannam@89 8776 # Just accumulate the unique libdirs.
cannam@89 8777 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@89 8778 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@89 8779 ;;
cannam@89 8780 *)
cannam@89 8781 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
cannam@89 8782 ;;
cannam@89 8783 esac
cannam@89 8784 fi
cannam@89 8785 else
cannam@89 8786 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@89 8787 func_append rpath " $flag"
cannam@89 8788 fi
cannam@89 8789 elif test -n "$runpath_var"; then
cannam@89 8790 case "$perm_rpath " in
cannam@89 8791 *" $libdir "*) ;;
cannam@89 8792 *) func_append perm_rpath " $libdir" ;;
cannam@89 8793 esac
cannam@89 8794 fi
cannam@89 8795 case $host in
cannam@89 8796 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
cannam@89 8797 testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'`
cannam@89 8798 case :$dllsearchpath: in
cannam@89 8799 *":$libdir:"*) ;;
cannam@89 8800 ::) dllsearchpath=$libdir;;
cannam@89 8801 *) func_append dllsearchpath ":$libdir";;
cannam@89 8802 esac
cannam@89 8803 case :$dllsearchpath: in
cannam@89 8804 *":$testbindir:"*) ;;
cannam@89 8805 ::) dllsearchpath=$testbindir;;
cannam@89 8806 *) func_append dllsearchpath ":$testbindir";;
cannam@89 8807 esac
cannam@89 8808 ;;
cannam@89 8809 esac
cannam@89 8810 done
cannam@89 8811 # Substitute the hardcoded libdirs into the rpath.
cannam@89 8812 if test -n "$hardcode_libdir_separator" &&
cannam@89 8813 test -n "$hardcode_libdirs"; then
cannam@89 8814 libdir="$hardcode_libdirs"
cannam@89 8815 eval rpath=\" $hardcode_libdir_flag_spec\"
cannam@89 8816 fi
cannam@89 8817 compile_rpath="$rpath"
cannam@89 8818
cannam@89 8819 rpath=
cannam@89 8820 hardcode_libdirs=
cannam@89 8821 for libdir in $finalize_rpath; do
cannam@89 8822 if test -n "$hardcode_libdir_flag_spec"; then
cannam@89 8823 if test -n "$hardcode_libdir_separator"; then
cannam@89 8824 if test -z "$hardcode_libdirs"; then
cannam@89 8825 hardcode_libdirs="$libdir"
cannam@89 8826 else
cannam@89 8827 # Just accumulate the unique libdirs.
cannam@89 8828 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@89 8829 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@89 8830 ;;
cannam@89 8831 *)
cannam@89 8832 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
cannam@89 8833 ;;
cannam@89 8834 esac
cannam@89 8835 fi
cannam@89 8836 else
cannam@89 8837 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@89 8838 func_append rpath " $flag"
cannam@89 8839 fi
cannam@89 8840 elif test -n "$runpath_var"; then
cannam@89 8841 case "$finalize_perm_rpath " in
cannam@89 8842 *" $libdir "*) ;;
cannam@89 8843 *) func_append finalize_perm_rpath " $libdir" ;;
cannam@89 8844 esac
cannam@89 8845 fi
cannam@89 8846 done
cannam@89 8847 # Substitute the hardcoded libdirs into the rpath.
cannam@89 8848 if test -n "$hardcode_libdir_separator" &&
cannam@89 8849 test -n "$hardcode_libdirs"; then
cannam@89 8850 libdir="$hardcode_libdirs"
cannam@89 8851 eval rpath=\" $hardcode_libdir_flag_spec\"
cannam@89 8852 fi
cannam@89 8853 finalize_rpath="$rpath"
cannam@89 8854
cannam@89 8855 if test -n "$libobjs" && test "$build_old_libs" = yes; then
cannam@89 8856 # Transform all the library objects into standard objects.
cannam@89 8857 compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@89 8858 finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@89 8859 fi
cannam@89 8860
cannam@89 8861 func_generate_dlsyms "$outputname" "@PROGRAM@" "no"
cannam@89 8862
cannam@89 8863 # template prelinking step
cannam@89 8864 if test -n "$prelink_cmds"; then
cannam@89 8865 func_execute_cmds "$prelink_cmds" 'exit $?'
cannam@89 8866 fi
cannam@89 8867
cannam@89 8868 wrappers_required=yes
cannam@89 8869 case $host in
cannam@89 8870 *cegcc* | *mingw32ce*)
cannam@89 8871 # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway.
cannam@89 8872 wrappers_required=no
cannam@89 8873 ;;
cannam@89 8874 *cygwin* | *mingw* )
cannam@89 8875 if test "$build_libtool_libs" != yes; then
cannam@89 8876 wrappers_required=no
cannam@89 8877 fi
cannam@89 8878 ;;
cannam@89 8879 *)
cannam@89 8880 if test "$need_relink" = no || test "$build_libtool_libs" != yes; then
cannam@89 8881 wrappers_required=no
cannam@89 8882 fi
cannam@89 8883 ;;
cannam@89 8884 esac
cannam@89 8885 if test "$wrappers_required" = no; then
cannam@89 8886 # Replace the output file specification.
cannam@89 8887 compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'`
cannam@89 8888 link_command="$compile_command$compile_rpath"
cannam@89 8889
cannam@89 8890 # We have no uninstalled library dependencies, so finalize right now.
cannam@89 8891 exit_status=0
cannam@89 8892 func_show_eval "$link_command" 'exit_status=$?'
cannam@89 8893
cannam@89 8894 if test -n "$postlink_cmds"; then
cannam@89 8895 func_to_tool_file "$output"
cannam@89 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@89 8897 func_execute_cmds "$postlink_cmds" 'exit $?'
cannam@89 8898 fi
cannam@89 8899
cannam@89 8900 # Delete the generated files.
cannam@89 8901 if test -f "$output_objdir/${outputname}S.${objext}"; then
cannam@89 8902 func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"'
cannam@89 8903 fi
cannam@89 8904
cannam@89 8905 exit $exit_status
cannam@89 8906 fi
cannam@89 8907
cannam@89 8908 if test -n "$compile_shlibpath$finalize_shlibpath"; then
cannam@89 8909 compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command"
cannam@89 8910 fi
cannam@89 8911 if test -n "$finalize_shlibpath"; then
cannam@89 8912 finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
cannam@89 8913 fi
cannam@89 8914
cannam@89 8915 compile_var=
cannam@89 8916 finalize_var=
cannam@89 8917 if test -n "$runpath_var"; then
cannam@89 8918 if test -n "$perm_rpath"; then
cannam@89 8919 # We should set the runpath_var.
cannam@89 8920 rpath=
cannam@89 8921 for dir in $perm_rpath; do
cannam@89 8922 func_append rpath "$dir:"
cannam@89 8923 done
cannam@89 8924 compile_var="$runpath_var=\"$rpath\$$runpath_var\" "
cannam@89 8925 fi
cannam@89 8926 if test -n "$finalize_perm_rpath"; then
cannam@89 8927 # We should set the runpath_var.
cannam@89 8928 rpath=
cannam@89 8929 for dir in $finalize_perm_rpath; do
cannam@89 8930 func_append rpath "$dir:"
cannam@89 8931 done
cannam@89 8932 finalize_var="$runpath_var=\"$rpath\$$runpath_var\" "
cannam@89 8933 fi
cannam@89 8934 fi
cannam@89 8935
cannam@89 8936 if test "$no_install" = yes; then
cannam@89 8937 # We don't need to create a wrapper script.
cannam@89 8938 link_command="$compile_var$compile_command$compile_rpath"
cannam@89 8939 # Replace the output file specification.
cannam@89 8940 link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'`
cannam@89 8941 # Delete the old output file.
cannam@89 8942 $opt_dry_run || $RM $output
cannam@89 8943 # Link the executable and exit
cannam@89 8944 func_show_eval "$link_command" 'exit $?'
cannam@89 8945
cannam@89 8946 if test -n "$postlink_cmds"; then
cannam@89 8947 func_to_tool_file "$output"
cannam@89 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@89 8949 func_execute_cmds "$postlink_cmds" 'exit $?'
cannam@89 8950 fi
cannam@89 8951
cannam@89 8952 exit $EXIT_SUCCESS
cannam@89 8953 fi
cannam@89 8954
cannam@89 8955 if test "$hardcode_action" = relink; then
cannam@89 8956 # Fast installation is not supported
cannam@89 8957 link_command="$compile_var$compile_command$compile_rpath"
cannam@89 8958 relink_command="$finalize_var$finalize_command$finalize_rpath"
cannam@89 8959
cannam@89 8960 func_warning "this platform does not like uninstalled shared libraries"
cannam@89 8961 func_warning "\`$output' will be relinked during installation"
cannam@89 8962 else
cannam@89 8963 if test "$fast_install" != no; then
cannam@89 8964 link_command="$finalize_var$compile_command$finalize_rpath"
cannam@89 8965 if test "$fast_install" = yes; then
cannam@89 8966 relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'`
cannam@89 8967 else
cannam@89 8968 # fast_install is set to needless
cannam@89 8969 relink_command=
cannam@89 8970 fi
cannam@89 8971 else
cannam@89 8972 link_command="$compile_var$compile_command$compile_rpath"
cannam@89 8973 relink_command="$finalize_var$finalize_command$finalize_rpath"
cannam@89 8974 fi
cannam@89 8975 fi
cannam@89 8976
cannam@89 8977 # Replace the output file specification.
cannam@89 8978 link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
cannam@89 8979
cannam@89 8980 # Delete the old output files.
cannam@89 8981 $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname
cannam@89 8982
cannam@89 8983 func_show_eval "$link_command" 'exit $?'
cannam@89 8984
cannam@89 8985 if test -n "$postlink_cmds"; then
cannam@89 8986 func_to_tool_file "$output_objdir/$outputname"
cannam@89 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@89 8988 func_execute_cmds "$postlink_cmds" 'exit $?'
cannam@89 8989 fi
cannam@89 8990
cannam@89 8991 # Now create the wrapper script.
cannam@89 8992 func_verbose "creating $output"
cannam@89 8993
cannam@89 8994 # Quote the relink command for shipping.
cannam@89 8995 if test -n "$relink_command"; then
cannam@89 8996 # Preserve any variables that may affect compiler behavior
cannam@89 8997 for var in $variables_saved_for_relink; do
cannam@89 8998 if eval test -z \"\${$var+set}\"; then
cannam@89 8999 relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
cannam@89 9000 elif eval var_value=\$$var; test -z "$var_value"; then
cannam@89 9001 relink_command="$var=; export $var; $relink_command"
cannam@89 9002 else
cannam@89 9003 func_quote_for_eval "$var_value"
cannam@89 9004 relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
cannam@89 9005 fi
cannam@89 9006 done
cannam@89 9007 relink_command="(cd `pwd`; $relink_command)"
cannam@89 9008 relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"`
cannam@89 9009 fi
cannam@89 9010
cannam@89 9011 # Only actually do things if not in dry run mode.
cannam@89 9012 $opt_dry_run || {
cannam@89 9013 # win32 will think the script is a binary if it has
cannam@89 9014 # a .exe suffix, so we strip it off here.
cannam@89 9015 case $output in
cannam@89 9016 *.exe) func_stripname '' '.exe' "$output"
cannam@89 9017 output=$func_stripname_result ;;
cannam@89 9018 esac
cannam@89 9019 # test for cygwin because mv fails w/o .exe extensions
cannam@89 9020 case $host in
cannam@89 9021 *cygwin*)
cannam@89 9022 exeext=.exe
cannam@89 9023 func_stripname '' '.exe' "$outputname"
cannam@89 9024 outputname=$func_stripname_result ;;
cannam@89 9025 *) exeext= ;;
cannam@89 9026 esac
cannam@89 9027 case $host in
cannam@89 9028 *cygwin* | *mingw* )
cannam@89 9029 func_dirname_and_basename "$output" "" "."
cannam@89 9030 output_name=$func_basename_result
cannam@89 9031 output_path=$func_dirname_result
cannam@89 9032 cwrappersource="$output_path/$objdir/lt-$output_name.c"
cannam@89 9033 cwrapper="$output_path/$output_name.exe"
cannam@89 9034 $RM $cwrappersource $cwrapper
cannam@89 9035 trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
cannam@89 9036
cannam@89 9037 func_emit_cwrapperexe_src > $cwrappersource
cannam@89 9038
cannam@89 9039 # The wrapper executable is built using the $host compiler,
cannam@89 9040 # because it contains $host paths and files. If cross-
cannam@89 9041 # compiling, it, like the target executable, must be
cannam@89 9042 # executed on the $host or under an emulation environment.
cannam@89 9043 $opt_dry_run || {
cannam@89 9044 $LTCC $LTCFLAGS -o $cwrapper $cwrappersource
cannam@89 9045 $STRIP $cwrapper
cannam@89 9046 }
cannam@89 9047
cannam@89 9048 # Now, create the wrapper script for func_source use:
cannam@89 9049 func_ltwrapper_scriptname $cwrapper
cannam@89 9050 $RM $func_ltwrapper_scriptname_result
cannam@89 9051 trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15
cannam@89 9052 $opt_dry_run || {
cannam@89 9053 # note: this script will not be executed, so do not chmod.
cannam@89 9054 if test "x$build" = "x$host" ; then
cannam@89 9055 $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result
cannam@89 9056 else
cannam@89 9057 func_emit_wrapper no > $func_ltwrapper_scriptname_result
cannam@89 9058 fi
cannam@89 9059 }
cannam@89 9060 ;;
cannam@89 9061 * )
cannam@89 9062 $RM $output
cannam@89 9063 trap "$RM $output; exit $EXIT_FAILURE" 1 2 15
cannam@89 9064
cannam@89 9065 func_emit_wrapper no > $output
cannam@89 9066 chmod +x $output
cannam@89 9067 ;;
cannam@89 9068 esac
cannam@89 9069 }
cannam@89 9070 exit $EXIT_SUCCESS
cannam@89 9071 ;;
cannam@89 9072 esac
cannam@89 9073
cannam@89 9074 # See if we need to build an old-fashioned archive.
cannam@89 9075 for oldlib in $oldlibs; do
cannam@89 9076
cannam@89 9077 if test "$build_libtool_libs" = convenience; then
cannam@89 9078 oldobjs="$libobjs_save $symfileobj"
cannam@89 9079 addlibs="$convenience"
cannam@89 9080 build_libtool_libs=no
cannam@89 9081 else
cannam@89 9082 if test "$build_libtool_libs" = module; then
cannam@89 9083 oldobjs="$libobjs_save"
cannam@89 9084 build_libtool_libs=no
cannam@89 9085 else
cannam@89 9086 oldobjs="$old_deplibs $non_pic_objects"
cannam@89 9087 if test "$preload" = yes && test -f "$symfileobj"; then
cannam@89 9088 func_append oldobjs " $symfileobj"
cannam@89 9089 fi
cannam@89 9090 fi
cannam@89 9091 addlibs="$old_convenience"
cannam@89 9092 fi
cannam@89 9093
cannam@89 9094 if test -n "$addlibs"; then
cannam@89 9095 gentop="$output_objdir/${outputname}x"
cannam@89 9096 func_append generated " $gentop"
cannam@89 9097
cannam@89 9098 func_extract_archives $gentop $addlibs
cannam@89 9099 func_append oldobjs " $func_extract_archives_result"
cannam@89 9100 fi
cannam@89 9101
cannam@89 9102 # Do each command in the archive commands.
cannam@89 9103 if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
cannam@89 9104 cmds=$old_archive_from_new_cmds
cannam@89 9105 else
cannam@89 9106
cannam@89 9107 # Add any objects from preloaded convenience libraries
cannam@89 9108 if test -n "$dlprefiles"; then
cannam@89 9109 gentop="$output_objdir/${outputname}x"
cannam@89 9110 func_append generated " $gentop"
cannam@89 9111
cannam@89 9112 func_extract_archives $gentop $dlprefiles
cannam@89 9113 func_append oldobjs " $func_extract_archives_result"
cannam@89 9114 fi
cannam@89 9115
cannam@89 9116 # POSIX demands no paths to be encoded in archives. We have
cannam@89 9117 # to avoid creating archives with duplicate basenames if we
cannam@89 9118 # might have to extract them afterwards, e.g., when creating a
cannam@89 9119 # static archive out of a convenience library, or when linking
cannam@89 9120 # the entirety of a libtool archive into another (currently
cannam@89 9121 # not supported by libtool).
cannam@89 9122 if (for obj in $oldobjs
cannam@89 9123 do
cannam@89 9124 func_basename "$obj"
cannam@89 9125 $ECHO "$func_basename_result"
cannam@89 9126 done | sort | sort -uc >/dev/null 2>&1); then
cannam@89 9127 :
cannam@89 9128 else
cannam@89 9129 echo "copying selected object files to avoid basename conflicts..."
cannam@89 9130 gentop="$output_objdir/${outputname}x"
cannam@89 9131 func_append generated " $gentop"
cannam@89 9132 func_mkdir_p "$gentop"
cannam@89 9133 save_oldobjs=$oldobjs
cannam@89 9134 oldobjs=
cannam@89 9135 counter=1
cannam@89 9136 for obj in $save_oldobjs
cannam@89 9137 do
cannam@89 9138 func_basename "$obj"
cannam@89 9139 objbase="$func_basename_result"
cannam@89 9140 case " $oldobjs " in
cannam@89 9141 " ") oldobjs=$obj ;;
cannam@89 9142 *[\ /]"$objbase "*)
cannam@89 9143 while :; do
cannam@89 9144 # Make sure we don't pick an alternate name that also
cannam@89 9145 # overlaps.
cannam@89 9146 newobj=lt$counter-$objbase
cannam@89 9147 func_arith $counter + 1
cannam@89 9148 counter=$func_arith_result
cannam@89 9149 case " $oldobjs " in
cannam@89 9150 *[\ /]"$newobj "*) ;;
cannam@89 9151 *) if test ! -f "$gentop/$newobj"; then break; fi ;;
cannam@89 9152 esac
cannam@89 9153 done
cannam@89 9154 func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj"
cannam@89 9155 func_append oldobjs " $gentop/$newobj"
cannam@89 9156 ;;
cannam@89 9157 *) func_append oldobjs " $obj" ;;
cannam@89 9158 esac
cannam@89 9159 done
cannam@89 9160 fi
cannam@89 9161 eval cmds=\"$old_archive_cmds\"
cannam@89 9162
cannam@89 9163 func_len " $cmds"
cannam@89 9164 len=$func_len_result
cannam@89 9165 if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
cannam@89 9166 cmds=$old_archive_cmds
cannam@89 9167 elif test -n "$archiver_list_spec"; then
cannam@89 9168 func_verbose "using command file archive linking..."
cannam@89 9169 for obj in $oldobjs
cannam@89 9170 do
cannam@89 9171 func_to_tool_file "$obj"
cannam@89 9172 $ECHO "$func_to_tool_file_result"
cannam@89 9173 done > $output_objdir/$libname.libcmd
cannam@89 9174 func_to_tool_file "$output_objdir/$libname.libcmd"
cannam@89 9175 oldobjs=" $archiver_list_spec$func_to_tool_file_result"
cannam@89 9176 cmds=$old_archive_cmds
cannam@89 9177 else
cannam@89 9178 # the command line is too long to link in one step, link in parts
cannam@89 9179 func_verbose "using piecewise archive linking..."
cannam@89 9180 save_RANLIB=$RANLIB
cannam@89 9181 RANLIB=:
cannam@89 9182 objlist=
cannam@89 9183 concat_cmds=
cannam@89 9184 save_oldobjs=$oldobjs
cannam@89 9185 oldobjs=
cannam@89 9186 # Is there a better way of finding the last object in the list?
cannam@89 9187 for obj in $save_oldobjs
cannam@89 9188 do
cannam@89 9189 last_oldobj=$obj
cannam@89 9190 done
cannam@89 9191 eval test_cmds=\"$old_archive_cmds\"
cannam@89 9192 func_len " $test_cmds"
cannam@89 9193 len0=$func_len_result
cannam@89 9194 len=$len0
cannam@89 9195 for obj in $save_oldobjs
cannam@89 9196 do
cannam@89 9197 func_len " $obj"
cannam@89 9198 func_arith $len + $func_len_result
cannam@89 9199 len=$func_arith_result
cannam@89 9200 func_append objlist " $obj"
cannam@89 9201 if test "$len" -lt "$max_cmd_len"; then
cannam@89 9202 :
cannam@89 9203 else
cannam@89 9204 # the above command should be used before it gets too long
cannam@89 9205 oldobjs=$objlist
cannam@89 9206 if test "$obj" = "$last_oldobj" ; then
cannam@89 9207 RANLIB=$save_RANLIB
cannam@89 9208 fi
cannam@89 9209 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
cannam@89 9210 eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\"
cannam@89 9211 objlist=
cannam@89 9212 len=$len0
cannam@89 9213 fi
cannam@89 9214 done
cannam@89 9215 RANLIB=$save_RANLIB
cannam@89 9216 oldobjs=$objlist
cannam@89 9217 if test "X$oldobjs" = "X" ; then
cannam@89 9218 eval cmds=\"\$concat_cmds\"
cannam@89 9219 else
cannam@89 9220 eval cmds=\"\$concat_cmds~\$old_archive_cmds\"
cannam@89 9221 fi
cannam@89 9222 fi
cannam@89 9223 fi
cannam@89 9224 func_execute_cmds "$cmds" 'exit $?'
cannam@89 9225 done
cannam@89 9226
cannam@89 9227 test -n "$generated" && \
cannam@89 9228 func_show_eval "${RM}r$generated"
cannam@89 9229
cannam@89 9230 # Now create the libtool archive.
cannam@89 9231 case $output in
cannam@89 9232 *.la)
cannam@89 9233 old_library=
cannam@89 9234 test "$build_old_libs" = yes && old_library="$libname.$libext"
cannam@89 9235 func_verbose "creating $output"
cannam@89 9236
cannam@89 9237 # Preserve any variables that may affect compiler behavior
cannam@89 9238 for var in $variables_saved_for_relink; do
cannam@89 9239 if eval test -z \"\${$var+set}\"; then
cannam@89 9240 relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
cannam@89 9241 elif eval var_value=\$$var; test -z "$var_value"; then
cannam@89 9242 relink_command="$var=; export $var; $relink_command"
cannam@89 9243 else
cannam@89 9244 func_quote_for_eval "$var_value"
cannam@89 9245 relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
cannam@89 9246 fi
cannam@89 9247 done
cannam@89 9248 # Quote the link command for shipping.
cannam@89 9249 relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
cannam@89 9250 relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"`
cannam@89 9251 if test "$hardcode_automatic" = yes ; then
cannam@89 9252 relink_command=
cannam@89 9253 fi
cannam@89 9254
cannam@89 9255 # Only create the output if not a dry run.
cannam@89 9256 $opt_dry_run || {
cannam@89 9257 for installed in no yes; do
cannam@89 9258 if test "$installed" = yes; then
cannam@89 9259 if test -z "$install_libdir"; then
cannam@89 9260 break
cannam@89 9261 fi
cannam@89 9262 output="$output_objdir/$outputname"i
cannam@89 9263 # Replace all uninstalled libtool libraries with the installed ones
cannam@89 9264 newdependency_libs=
cannam@89 9265 for deplib in $dependency_libs; do
cannam@89 9266 case $deplib in
cannam@89 9267 *.la)
cannam@89 9268 func_basename "$deplib"
cannam@89 9269 name="$func_basename_result"
cannam@89 9270 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
cannam@89 9271 test -z "$libdir" && \
cannam@89 9272 func_fatal_error "\`$deplib' is not a valid libtool archive"
cannam@89 9273 func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name"
cannam@89 9274 ;;
cannam@89 9275 -L*)
cannam@89 9276 func_stripname -L '' "$deplib"
cannam@89 9277 func_replace_sysroot "$func_stripname_result"
cannam@89 9278 func_append newdependency_libs " -L$func_replace_sysroot_result"
cannam@89 9279 ;;
cannam@89 9280 -R*)
cannam@89 9281 func_stripname -R '' "$deplib"
cannam@89 9282 func_replace_sysroot "$func_stripname_result"
cannam@89 9283 func_append newdependency_libs " -R$func_replace_sysroot_result"
cannam@89 9284 ;;
cannam@89 9285 *) func_append newdependency_libs " $deplib" ;;
cannam@89 9286 esac
cannam@89 9287 done
cannam@89 9288 dependency_libs="$newdependency_libs"
cannam@89 9289 newdlfiles=
cannam@89 9290
cannam@89 9291 for lib in $dlfiles; do
cannam@89 9292 case $lib in
cannam@89 9293 *.la)
cannam@89 9294 func_basename "$lib"
cannam@89 9295 name="$func_basename_result"
cannam@89 9296 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
cannam@89 9297 test -z "$libdir" && \
cannam@89 9298 func_fatal_error "\`$lib' is not a valid libtool archive"
cannam@89 9299 func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name"
cannam@89 9300 ;;
cannam@89 9301 *) func_append newdlfiles " $lib" ;;
cannam@89 9302 esac
cannam@89 9303 done
cannam@89 9304 dlfiles="$newdlfiles"
cannam@89 9305 newdlprefiles=
cannam@89 9306 for lib in $dlprefiles; do
cannam@89 9307 case $lib in
cannam@89 9308 *.la)
cannam@89 9309 # Only pass preopened files to the pseudo-archive (for
cannam@89 9310 # eventual linking with the app. that links it) if we
cannam@89 9311 # didn't already link the preopened objects directly into
cannam@89 9312 # the library:
cannam@89 9313 func_basename "$lib"
cannam@89 9314 name="$func_basename_result"
cannam@89 9315 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
cannam@89 9316 test -z "$libdir" && \
cannam@89 9317 func_fatal_error "\`$lib' is not a valid libtool archive"
cannam@89 9318 func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name"
cannam@89 9319 ;;
cannam@89 9320 esac
cannam@89 9321 done
cannam@89 9322 dlprefiles="$newdlprefiles"
cannam@89 9323 else
cannam@89 9324 newdlfiles=
cannam@89 9325 for lib in $dlfiles; do
cannam@89 9326 case $lib in
cannam@89 9327 [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
cannam@89 9328 *) abs=`pwd`"/$lib" ;;
cannam@89 9329 esac
cannam@89 9330 func_append newdlfiles " $abs"
cannam@89 9331 done
cannam@89 9332 dlfiles="$newdlfiles"
cannam@89 9333 newdlprefiles=
cannam@89 9334 for lib in $dlprefiles; do
cannam@89 9335 case $lib in
cannam@89 9336 [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
cannam@89 9337 *) abs=`pwd`"/$lib" ;;
cannam@89 9338 esac
cannam@89 9339 func_append newdlprefiles " $abs"
cannam@89 9340 done
cannam@89 9341 dlprefiles="$newdlprefiles"
cannam@89 9342 fi
cannam@89 9343 $RM $output
cannam@89 9344 # place dlname in correct position for cygwin
cannam@89 9345 # In fact, it would be nice if we could use this code for all target
cannam@89 9346 # systems that can't hard-code library paths into their executables
cannam@89 9347 # and that have no shared library path variable independent of PATH,
cannam@89 9348 # but it turns out we can't easily determine that from inspecting
cannam@89 9349 # libtool variables, so we have to hard-code the OSs to which it
cannam@89 9350 # applies here; at the moment, that means platforms that use the PE
cannam@89 9351 # object format with DLL files. See the long comment at the top of
cannam@89 9352 # tests/bindir.at for full details.
cannam@89 9353 tdlname=$dlname
cannam@89 9354 case $host,$output,$installed,$module,$dlname in
cannam@89 9355 *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll)
cannam@89 9356 # If a -bindir argument was supplied, place the dll there.
cannam@89 9357 if test "x$bindir" != x ;
cannam@89 9358 then
cannam@89 9359 func_relative_path "$install_libdir" "$bindir"
cannam@89 9360 tdlname=$func_relative_path_result$dlname
cannam@89 9361 else
cannam@89 9362 # Otherwise fall back on heuristic.
cannam@89 9363 tdlname=../bin/$dlname
cannam@89 9364 fi
cannam@89 9365 ;;
cannam@89 9366 esac
cannam@89 9367 $ECHO > $output "\
cannam@89 9368 # $outputname - a libtool library file
cannam@89 9369 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@89 9370 #
cannam@89 9371 # Please DO NOT delete this file!
cannam@89 9372 # It is necessary for linking the library.
cannam@89 9373
cannam@89 9374 # The name that we can dlopen(3).
cannam@89 9375 dlname='$tdlname'
cannam@89 9376
cannam@89 9377 # Names of this library.
cannam@89 9378 library_names='$library_names'
cannam@89 9379
cannam@89 9380 # The name of the static archive.
cannam@89 9381 old_library='$old_library'
cannam@89 9382
cannam@89 9383 # Linker flags that can not go in dependency_libs.
cannam@89 9384 inherited_linker_flags='$new_inherited_linker_flags'
cannam@89 9385
cannam@89 9386 # Libraries that this one depends upon.
cannam@89 9387 dependency_libs='$dependency_libs'
cannam@89 9388
cannam@89 9389 # Names of additional weak libraries provided by this library
cannam@89 9390 weak_library_names='$weak_libs'
cannam@89 9391
cannam@89 9392 # Version information for $libname.
cannam@89 9393 current=$current
cannam@89 9394 age=$age
cannam@89 9395 revision=$revision
cannam@89 9396
cannam@89 9397 # Is this an already installed library?
cannam@89 9398 installed=$installed
cannam@89 9399
cannam@89 9400 # Should we warn about portability when linking against -modules?
cannam@89 9401 shouldnotlink=$module
cannam@89 9402
cannam@89 9403 # Files to dlopen/dlpreopen
cannam@89 9404 dlopen='$dlfiles'
cannam@89 9405 dlpreopen='$dlprefiles'
cannam@89 9406
cannam@89 9407 # Directory that this library needs to be installed in:
cannam@89 9408 libdir='$install_libdir'"
cannam@89 9409 if test "$installed" = no && test "$need_relink" = yes; then
cannam@89 9410 $ECHO >> $output "\
cannam@89 9411 relink_command=\"$relink_command\""
cannam@89 9412 fi
cannam@89 9413 done
cannam@89 9414 }
cannam@89 9415
cannam@89 9416 # Do a symbolic link so that the libtool archive can be found in
cannam@89 9417 # LD_LIBRARY_PATH before the program is installed.
cannam@89 9418 func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?'
cannam@89 9419 ;;
cannam@89 9420 esac
cannam@89 9421 exit $EXIT_SUCCESS
cannam@89 9422 }
cannam@89 9423
cannam@89 9424 { test "$opt_mode" = link || test "$opt_mode" = relink; } &&
cannam@89 9425 func_mode_link ${1+"$@"}
cannam@89 9426
cannam@89 9427
cannam@89 9428 # func_mode_uninstall arg...
cannam@89 9429 func_mode_uninstall ()
cannam@89 9430 {
cannam@89 9431 $opt_debug
cannam@89 9432 RM="$nonopt"
cannam@89 9433 files=
cannam@89 9434 rmforce=
cannam@89 9435 exit_status=0
cannam@89 9436
cannam@89 9437 # This variable tells wrapper scripts just to set variables rather
cannam@89 9438 # than running their programs.
cannam@89 9439 libtool_install_magic="$magic"
cannam@89 9440
cannam@89 9441 for arg
cannam@89 9442 do
cannam@89 9443 case $arg in
cannam@89 9444 -f) func_append RM " $arg"; rmforce=yes ;;
cannam@89 9445 -*) func_append RM " $arg" ;;
cannam@89 9446 *) func_append files " $arg" ;;
cannam@89 9447 esac
cannam@89 9448 done
cannam@89 9449
cannam@89 9450 test -z "$RM" && \
cannam@89 9451 func_fatal_help "you must specify an RM program"
cannam@89 9452
cannam@89 9453 rmdirs=
cannam@89 9454
cannam@89 9455 for file in $files; do
cannam@89 9456 func_dirname "$file" "" "."
cannam@89 9457 dir="$func_dirname_result"
cannam@89 9458 if test "X$dir" = X.; then
cannam@89 9459 odir="$objdir"
cannam@89 9460 else
cannam@89 9461 odir="$dir/$objdir"
cannam@89 9462 fi
cannam@89 9463 func_basename "$file"
cannam@89 9464 name="$func_basename_result"
cannam@89 9465 test "$opt_mode" = uninstall && odir="$dir"
cannam@89 9466
cannam@89 9467 # Remember odir for removal later, being careful to avoid duplicates
cannam@89 9468 if test "$opt_mode" = clean; then
cannam@89 9469 case " $rmdirs " in
cannam@89 9470 *" $odir "*) ;;
cannam@89 9471 *) func_append rmdirs " $odir" ;;
cannam@89 9472 esac
cannam@89 9473 fi
cannam@89 9474
cannam@89 9475 # Don't error if the file doesn't exist and rm -f was used.
cannam@89 9476 if { test -L "$file"; } >/dev/null 2>&1 ||
cannam@89 9477 { test -h "$file"; } >/dev/null 2>&1 ||
cannam@89 9478 test -f "$file"; then
cannam@89 9479 :
cannam@89 9480 elif test -d "$file"; then
cannam@89 9481 exit_status=1
cannam@89 9482 continue
cannam@89 9483 elif test "$rmforce" = yes; then
cannam@89 9484 continue
cannam@89 9485 fi
cannam@89 9486
cannam@89 9487 rmfiles="$file"
cannam@89 9488
cannam@89 9489 case $name in
cannam@89 9490 *.la)
cannam@89 9491 # Possibly a libtool archive, so verify it.
cannam@89 9492 if func_lalib_p "$file"; then
cannam@89 9493 func_source $dir/$name
cannam@89 9494
cannam@89 9495 # Delete the libtool libraries and symlinks.
cannam@89 9496 for n in $library_names; do
cannam@89 9497 func_append rmfiles " $odir/$n"
cannam@89 9498 done
cannam@89 9499 test -n "$old_library" && func_append rmfiles " $odir/$old_library"
cannam@89 9500
cannam@89 9501 case "$opt_mode" in
cannam@89 9502 clean)
cannam@89 9503 case " $library_names " in
cannam@89 9504 *" $dlname "*) ;;
cannam@89 9505 *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;;
cannam@89 9506 esac
cannam@89 9507 test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i"
cannam@89 9508 ;;
cannam@89 9509 uninstall)
cannam@89 9510 if test -n "$library_names"; then
cannam@89 9511 # Do each command in the postuninstall commands.
cannam@89 9512 func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
cannam@89 9513 fi
cannam@89 9514
cannam@89 9515 if test -n "$old_library"; then
cannam@89 9516 # Do each command in the old_postuninstall commands.
cannam@89 9517 func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
cannam@89 9518 fi
cannam@89 9519 # FIXME: should reinstall the best remaining shared library.
cannam@89 9520 ;;
cannam@89 9521 esac
cannam@89 9522 fi
cannam@89 9523 ;;
cannam@89 9524
cannam@89 9525 *.lo)
cannam@89 9526 # Possibly a libtool object, so verify it.
cannam@89 9527 if func_lalib_p "$file"; then
cannam@89 9528
cannam@89 9529 # Read the .lo file
cannam@89 9530 func_source $dir/$name
cannam@89 9531
cannam@89 9532 # Add PIC object to the list of files to remove.
cannam@89 9533 if test -n "$pic_object" &&
cannam@89 9534 test "$pic_object" != none; then
cannam@89 9535 func_append rmfiles " $dir/$pic_object"
cannam@89 9536 fi
cannam@89 9537
cannam@89 9538 # Add non-PIC object to the list of files to remove.
cannam@89 9539 if test -n "$non_pic_object" &&
cannam@89 9540 test "$non_pic_object" != none; then
cannam@89 9541 func_append rmfiles " $dir/$non_pic_object"
cannam@89 9542 fi
cannam@89 9543 fi
cannam@89 9544 ;;
cannam@89 9545
cannam@89 9546 *)
cannam@89 9547 if test "$opt_mode" = clean ; then
cannam@89 9548 noexename=$name
cannam@89 9549 case $file in
cannam@89 9550 *.exe)
cannam@89 9551 func_stripname '' '.exe' "$file"
cannam@89 9552 file=$func_stripname_result
cannam@89 9553 func_stripname '' '.exe' "$name"
cannam@89 9554 noexename=$func_stripname_result
cannam@89 9555 # $file with .exe has already been added to rmfiles,
cannam@89 9556 # add $file without .exe
cannam@89 9557 func_append rmfiles " $file"
cannam@89 9558 ;;
cannam@89 9559 esac
cannam@89 9560 # Do a test to see if this is a libtool program.
cannam@89 9561 if func_ltwrapper_p "$file"; then
cannam@89 9562 if func_ltwrapper_executable_p "$file"; then
cannam@89 9563 func_ltwrapper_scriptname "$file"
cannam@89 9564 relink_command=
cannam@89 9565 func_source $func_ltwrapper_scriptname_result
cannam@89 9566 func_append rmfiles " $func_ltwrapper_scriptname_result"
cannam@89 9567 else
cannam@89 9568 relink_command=
cannam@89 9569 func_source $dir/$noexename
cannam@89 9570 fi
cannam@89 9571
cannam@89 9572 # note $name still contains .exe if it was in $file originally
cannam@89 9573 # as does the version of $file that was added into $rmfiles
cannam@89 9574 func_append rmfiles " $odir/$name $odir/${name}S.${objext}"
cannam@89 9575 if test "$fast_install" = yes && test -n "$relink_command"; then
cannam@89 9576 func_append rmfiles " $odir/lt-$name"
cannam@89 9577 fi
cannam@89 9578 if test "X$noexename" != "X$name" ; then
cannam@89 9579 func_append rmfiles " $odir/lt-${noexename}.c"
cannam@89 9580 fi
cannam@89 9581 fi
cannam@89 9582 fi
cannam@89 9583 ;;
cannam@89 9584 esac
cannam@89 9585 func_show_eval "$RM $rmfiles" 'exit_status=1'
cannam@89 9586 done
cannam@89 9587
cannam@89 9588 # Try to remove the ${objdir}s in the directories where we deleted files
cannam@89 9589 for dir in $rmdirs; do
cannam@89 9590 if test -d "$dir"; then
cannam@89 9591 func_show_eval "rmdir $dir >/dev/null 2>&1"
cannam@89 9592 fi
cannam@89 9593 done
cannam@89 9594
cannam@89 9595 exit $exit_status
cannam@89 9596 }
cannam@89 9597
cannam@89 9598 { test "$opt_mode" = uninstall || test "$opt_mode" = clean; } &&
cannam@89 9599 func_mode_uninstall ${1+"$@"}
cannam@89 9600
cannam@89 9601 test -z "$opt_mode" && {
cannam@89 9602 help="$generic_help"
cannam@89 9603 func_fatal_help "you must specify a MODE"
cannam@89 9604 }
cannam@89 9605
cannam@89 9606 test -z "$exec_cmd" && \
cannam@89 9607 func_fatal_help "invalid operation mode \`$opt_mode'"
cannam@89 9608
cannam@89 9609 if test -n "$exec_cmd"; then
cannam@89 9610 eval exec "$exec_cmd"
cannam@89 9611 exit $EXIT_FAILURE
cannam@89 9612 fi
cannam@89 9613
cannam@89 9614 exit $exit_status
cannam@89 9615
cannam@89 9616
cannam@89 9617 # The TAGs below are defined such that we never get into a situation
cannam@89 9618 # in which we disable both kinds of libraries. Given conflicting
cannam@89 9619 # choices, we go for a static library, that is the most portable,
cannam@89 9620 # since we can't tell whether shared libraries were disabled because
cannam@89 9621 # the user asked for that or because the platform doesn't support
cannam@89 9622 # them. This is particularly important on AIX, because we don't
cannam@89 9623 # support having both static and shared libraries enabled at the same
cannam@89 9624 # time on that platform, so we default to a shared-only configuration.
cannam@89 9625 # If a disable-shared tag is given, we'll fallback to a static-only
cannam@89 9626 # configuration. But we'll never go from static-only to shared-only.
cannam@89 9627
cannam@89 9628 # ### BEGIN LIBTOOL TAG CONFIG: disable-shared
cannam@89 9629 build_libtool_libs=no
cannam@89 9630 build_old_libs=yes
cannam@89 9631 # ### END LIBTOOL TAG CONFIG: disable-shared
cannam@89 9632
cannam@89 9633 # ### BEGIN LIBTOOL TAG CONFIG: disable-static
cannam@89 9634 build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`
cannam@89 9635 # ### END LIBTOOL TAG CONFIG: disable-static
cannam@89 9636
cannam@89 9637 # Local Variables:
cannam@89 9638 # mode:shell-script
cannam@89 9639 # sh-indentation:2
cannam@89 9640 # End:
cannam@89 9641 # vi:sw=2
cannam@89 9642