annotate src/portaudio_20140130/ltmain.sh @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents e3d5853d5918
children
rev   line source
cannam@124 1
cannam@124 2 # libtool (GNU libtool) 2.4
cannam@124 3 # Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
cannam@124 4
cannam@124 5 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006,
cannam@124 6 # 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
cannam@124 7 # This is free software; see the source for copying conditions. There is NO
cannam@124 8 # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
cannam@124 9
cannam@124 10 # GNU Libtool is free software; you can redistribute it and/or modify
cannam@124 11 # it under the terms of the GNU General Public License as published by
cannam@124 12 # the Free Software Foundation; either version 2 of the License, or
cannam@124 13 # (at your option) any later version.
cannam@124 14 #
cannam@124 15 # As a special exception to the GNU General Public License,
cannam@124 16 # if you distribute this file as part of a program or library that
cannam@124 17 # is built using GNU Libtool, you may include this file under the
cannam@124 18 # same distribution terms that you use for the rest of that program.
cannam@124 19 #
cannam@124 20 # GNU Libtool is distributed in the hope that it will be useful, but
cannam@124 21 # WITHOUT ANY WARRANTY; without even the implied warranty of
cannam@124 22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
cannam@124 23 # General Public License for more details.
cannam@124 24 #
cannam@124 25 # You should have received a copy of the GNU General Public License
cannam@124 26 # along with GNU Libtool; see the file COPYING. If not, a copy
cannam@124 27 # can be downloaded from http://www.gnu.org/licenses/gpl.html,
cannam@124 28 # or obtained by writing to the Free Software Foundation, Inc.,
cannam@124 29 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
cannam@124 30
cannam@124 31 # Usage: $progname [OPTION]... [MODE-ARG]...
cannam@124 32 #
cannam@124 33 # Provide generalized library-building support services.
cannam@124 34 #
cannam@124 35 # --config show all configuration variables
cannam@124 36 # --debug enable verbose shell tracing
cannam@124 37 # -n, --dry-run display commands without modifying any files
cannam@124 38 # --features display basic configuration information and exit
cannam@124 39 # --mode=MODE use operation mode MODE
cannam@124 40 # --preserve-dup-deps don't remove duplicate dependency libraries
cannam@124 41 # --quiet, --silent don't print informational messages
cannam@124 42 # --no-quiet, --no-silent
cannam@124 43 # print informational messages (default)
cannam@124 44 # --tag=TAG use configuration variables from tag TAG
cannam@124 45 # -v, --verbose print more informational messages than default
cannam@124 46 # --no-verbose don't print the extra informational messages
cannam@124 47 # --version print version information
cannam@124 48 # -h, --help, --help-all print short, long, or detailed help message
cannam@124 49 #
cannam@124 50 # MODE must be one of the following:
cannam@124 51 #
cannam@124 52 # clean remove files from the build directory
cannam@124 53 # compile compile a source file into a libtool object
cannam@124 54 # execute automatically set library path, then run a program
cannam@124 55 # finish complete the installation of libtool libraries
cannam@124 56 # install install libraries or executables
cannam@124 57 # link create a library or an executable
cannam@124 58 # uninstall remove libraries from an installed directory
cannam@124 59 #
cannam@124 60 # MODE-ARGS vary depending on the MODE. When passed as first option,
cannam@124 61 # `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that.
cannam@124 62 # Try `$progname --help --mode=MODE' for a more detailed description of MODE.
cannam@124 63 #
cannam@124 64 # When reporting a bug, please describe a test case to reproduce it and
cannam@124 65 # include the following information:
cannam@124 66 #
cannam@124 67 # host-triplet: $host
cannam@124 68 # shell: $SHELL
cannam@124 69 # compiler: $LTCC
cannam@124 70 # compiler flags: $LTCFLAGS
cannam@124 71 # linker: $LD (gnu? $with_gnu_ld)
cannam@124 72 # $progname: (GNU libtool) 2.4 Debian-2.4-2ubuntu1
cannam@124 73 # automake: $automake_version
cannam@124 74 # autoconf: $autoconf_version
cannam@124 75 #
cannam@124 76 # Report bugs to <bug-libtool@gnu.org>.
cannam@124 77 # GNU libtool home page: <http://www.gnu.org/software/libtool/>.
cannam@124 78 # General help using GNU software: <http://www.gnu.org/gethelp/>.
cannam@124 79
cannam@124 80 PROGRAM=libtool
cannam@124 81 PACKAGE=libtool
cannam@124 82 VERSION="2.4 Debian-2.4-2ubuntu1"
cannam@124 83 TIMESTAMP=""
cannam@124 84 package_revision=1.3293
cannam@124 85
cannam@124 86 # Be Bourne compatible
cannam@124 87 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
cannam@124 88 emulate sh
cannam@124 89 NULLCMD=:
cannam@124 90 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
cannam@124 91 # is contrary to our usage. Disable this feature.
cannam@124 92 alias -g '${1+"$@"}'='"$@"'
cannam@124 93 setopt NO_GLOB_SUBST
cannam@124 94 else
cannam@124 95 case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
cannam@124 96 fi
cannam@124 97 BIN_SH=xpg4; export BIN_SH # for Tru64
cannam@124 98 DUALCASE=1; export DUALCASE # for MKS sh
cannam@124 99
cannam@124 100 # A function that is used when there is no print builtin or printf.
cannam@124 101 func_fallback_echo ()
cannam@124 102 {
cannam@124 103 eval 'cat <<_LTECHO_EOF
cannam@124 104 $1
cannam@124 105 _LTECHO_EOF'
cannam@124 106 }
cannam@124 107
cannam@124 108 # NLS nuisances: We save the old values to restore during execute mode.
cannam@124 109 lt_user_locale=
cannam@124 110 lt_safe_locale=
cannam@124 111 for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
cannam@124 112 do
cannam@124 113 eval "if test \"\${$lt_var+set}\" = set; then
cannam@124 114 save_$lt_var=\$$lt_var
cannam@124 115 $lt_var=C
cannam@124 116 export $lt_var
cannam@124 117 lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\"
cannam@124 118 lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\"
cannam@124 119 fi"
cannam@124 120 done
cannam@124 121 LC_ALL=C
cannam@124 122 LANGUAGE=C
cannam@124 123 export LANGUAGE LC_ALL
cannam@124 124
cannam@124 125 $lt_unset CDPATH
cannam@124 126
cannam@124 127
cannam@124 128 # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
cannam@124 129 # is ksh but when the shell is invoked as "sh" and the current value of
cannam@124 130 # the _XPG environment variable is not equal to 1 (one), the special
cannam@124 131 # positional parameter $0, within a function call, is the name of the
cannam@124 132 # function.
cannam@124 133 progpath="$0"
cannam@124 134
cannam@124 135
cannam@124 136
cannam@124 137 : ${CP="cp -f"}
cannam@124 138 test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'}
cannam@124 139 : ${EGREP="/bin/grep -E"}
cannam@124 140 : ${FGREP="/bin/grep -F"}
cannam@124 141 : ${GREP="/bin/grep"}
cannam@124 142 : ${LN_S="ln -s"}
cannam@124 143 : ${MAKE="make"}
cannam@124 144 : ${MKDIR="mkdir"}
cannam@124 145 : ${MV="mv -f"}
cannam@124 146 : ${RM="rm -f"}
cannam@124 147 : ${SED="/bin/sed"}
cannam@124 148 : ${SHELL="${CONFIG_SHELL-/bin/sh}"}
cannam@124 149 : ${Xsed="$SED -e 1s/^X//"}
cannam@124 150
cannam@124 151 # Global variables:
cannam@124 152 EXIT_SUCCESS=0
cannam@124 153 EXIT_FAILURE=1
cannam@124 154 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing.
cannam@124 155 EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake.
cannam@124 156
cannam@124 157 exit_status=$EXIT_SUCCESS
cannam@124 158
cannam@124 159 # Make sure IFS has a sensible default
cannam@124 160 lt_nl='
cannam@124 161 '
cannam@124 162 IFS=" $lt_nl"
cannam@124 163
cannam@124 164 dirname="s,/[^/]*$,,"
cannam@124 165 basename="s,^.*/,,"
cannam@124 166
cannam@124 167 # func_dirname file append nondir_replacement
cannam@124 168 # Compute the dirname of FILE. If nonempty, add APPEND to the result,
cannam@124 169 # otherwise set result to NONDIR_REPLACEMENT.
cannam@124 170 func_dirname ()
cannam@124 171 {
cannam@124 172 func_dirname_result=`$ECHO "${1}" | $SED "$dirname"`
cannam@124 173 if test "X$func_dirname_result" = "X${1}"; then
cannam@124 174 func_dirname_result="${3}"
cannam@124 175 else
cannam@124 176 func_dirname_result="$func_dirname_result${2}"
cannam@124 177 fi
cannam@124 178 } # func_dirname may be replaced by extended shell implementation
cannam@124 179
cannam@124 180
cannam@124 181 # func_basename file
cannam@124 182 func_basename ()
cannam@124 183 {
cannam@124 184 func_basename_result=`$ECHO "${1}" | $SED "$basename"`
cannam@124 185 } # func_basename may be replaced by extended shell implementation
cannam@124 186
cannam@124 187
cannam@124 188 # func_dirname_and_basename file append nondir_replacement
cannam@124 189 # perform func_basename and func_dirname in a single function
cannam@124 190 # call:
cannam@124 191 # dirname: Compute the dirname of FILE. If nonempty,
cannam@124 192 # add APPEND to the result, otherwise set result
cannam@124 193 # to NONDIR_REPLACEMENT.
cannam@124 194 # value returned in "$func_dirname_result"
cannam@124 195 # basename: Compute filename of FILE.
cannam@124 196 # value retuned in "$func_basename_result"
cannam@124 197 # Implementation must be kept synchronized with func_dirname
cannam@124 198 # and func_basename. For efficiency, we do not delegate to
cannam@124 199 # those functions but instead duplicate the functionality here.
cannam@124 200 func_dirname_and_basename ()
cannam@124 201 {
cannam@124 202 # Extract subdirectory from the argument.
cannam@124 203 func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"`
cannam@124 204 if test "X$func_dirname_result" = "X${1}"; then
cannam@124 205 func_dirname_result="${3}"
cannam@124 206 else
cannam@124 207 func_dirname_result="$func_dirname_result${2}"
cannam@124 208 fi
cannam@124 209 func_basename_result=`$ECHO "${1}" | $SED -e "$basename"`
cannam@124 210 } # func_dirname_and_basename may be replaced by extended shell implementation
cannam@124 211
cannam@124 212
cannam@124 213 # func_stripname prefix suffix name
cannam@124 214 # strip PREFIX and SUFFIX off of NAME.
cannam@124 215 # PREFIX and SUFFIX must not contain globbing or regex special
cannam@124 216 # characters, hashes, percent signs, but SUFFIX may contain a leading
cannam@124 217 # dot (in which case that matches only a dot).
cannam@124 218 # func_strip_suffix prefix name
cannam@124 219 func_stripname ()
cannam@124 220 {
cannam@124 221 case ${2} in
cannam@124 222 .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;;
cannam@124 223 *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;;
cannam@124 224 esac
cannam@124 225 } # func_stripname may be replaced by extended shell implementation
cannam@124 226
cannam@124 227
cannam@124 228 # These SED scripts presuppose an absolute path with a trailing slash.
cannam@124 229 pathcar='s,^/\([^/]*\).*$,\1,'
cannam@124 230 pathcdr='s,^/[^/]*,,'
cannam@124 231 removedotparts=':dotsl
cannam@124 232 s@/\./@/@g
cannam@124 233 t dotsl
cannam@124 234 s,/\.$,/,'
cannam@124 235 collapseslashes='s@/\{1,\}@/@g'
cannam@124 236 finalslash='s,/*$,/,'
cannam@124 237
cannam@124 238 # func_normal_abspath PATH
cannam@124 239 # Remove doubled-up and trailing slashes, "." path components,
cannam@124 240 # and cancel out any ".." path components in PATH after making
cannam@124 241 # it an absolute path.
cannam@124 242 # value returned in "$func_normal_abspath_result"
cannam@124 243 func_normal_abspath ()
cannam@124 244 {
cannam@124 245 # Start from root dir and reassemble the path.
cannam@124 246 func_normal_abspath_result=
cannam@124 247 func_normal_abspath_tpath=$1
cannam@124 248 func_normal_abspath_altnamespace=
cannam@124 249 case $func_normal_abspath_tpath in
cannam@124 250 "")
cannam@124 251 # Empty path, that just means $cwd.
cannam@124 252 func_stripname '' '/' "`pwd`"
cannam@124 253 func_normal_abspath_result=$func_stripname_result
cannam@124 254 return
cannam@124 255 ;;
cannam@124 256 # The next three entries are used to spot a run of precisely
cannam@124 257 # two leading slashes without using negated character classes;
cannam@124 258 # we take advantage of case's first-match behaviour.
cannam@124 259 ///*)
cannam@124 260 # Unusual form of absolute path, do nothing.
cannam@124 261 ;;
cannam@124 262 //*)
cannam@124 263 # Not necessarily an ordinary path; POSIX reserves leading '//'
cannam@124 264 # and for example Cygwin uses it to access remote file shares
cannam@124 265 # over CIFS/SMB, so we conserve a leading double slash if found.
cannam@124 266 func_normal_abspath_altnamespace=/
cannam@124 267 ;;
cannam@124 268 /*)
cannam@124 269 # Absolute path, do nothing.
cannam@124 270 ;;
cannam@124 271 *)
cannam@124 272 # Relative path, prepend $cwd.
cannam@124 273 func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath
cannam@124 274 ;;
cannam@124 275 esac
cannam@124 276 # Cancel out all the simple stuff to save iterations. We also want
cannam@124 277 # the path to end with a slash for ease of parsing, so make sure
cannam@124 278 # there is one (and only one) here.
cannam@124 279 func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
cannam@124 280 -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"`
cannam@124 281 while :; do
cannam@124 282 # Processed it all yet?
cannam@124 283 if test "$func_normal_abspath_tpath" = / ; then
cannam@124 284 # If we ascended to the root using ".." the result may be empty now.
cannam@124 285 if test -z "$func_normal_abspath_result" ; then
cannam@124 286 func_normal_abspath_result=/
cannam@124 287 fi
cannam@124 288 break
cannam@124 289 fi
cannam@124 290 func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \
cannam@124 291 -e "$pathcar"`
cannam@124 292 func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
cannam@124 293 -e "$pathcdr"`
cannam@124 294 # Figure out what to do with it
cannam@124 295 case $func_normal_abspath_tcomponent in
cannam@124 296 "")
cannam@124 297 # Trailing empty path component, ignore it.
cannam@124 298 ;;
cannam@124 299 ..)
cannam@124 300 # Parent dir; strip last assembled component from result.
cannam@124 301 func_dirname "$func_normal_abspath_result"
cannam@124 302 func_normal_abspath_result=$func_dirname_result
cannam@124 303 ;;
cannam@124 304 *)
cannam@124 305 # Actual path component, append it.
cannam@124 306 func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent
cannam@124 307 ;;
cannam@124 308 esac
cannam@124 309 done
cannam@124 310 # Restore leading double-slash if one was found on entry.
cannam@124 311 func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result
cannam@124 312 }
cannam@124 313
cannam@124 314 # func_relative_path SRCDIR DSTDIR
cannam@124 315 # generates a relative path from SRCDIR to DSTDIR, with a trailing
cannam@124 316 # slash if non-empty, suitable for immediately appending a filename
cannam@124 317 # without needing to append a separator.
cannam@124 318 # value returned in "$func_relative_path_result"
cannam@124 319 func_relative_path ()
cannam@124 320 {
cannam@124 321 func_relative_path_result=
cannam@124 322 func_normal_abspath "$1"
cannam@124 323 func_relative_path_tlibdir=$func_normal_abspath_result
cannam@124 324 func_normal_abspath "$2"
cannam@124 325 func_relative_path_tbindir=$func_normal_abspath_result
cannam@124 326
cannam@124 327 # Ascend the tree starting from libdir
cannam@124 328 while :; do
cannam@124 329 # check if we have found a prefix of bindir
cannam@124 330 case $func_relative_path_tbindir in
cannam@124 331 $func_relative_path_tlibdir)
cannam@124 332 # found an exact match
cannam@124 333 func_relative_path_tcancelled=
cannam@124 334 break
cannam@124 335 ;;
cannam@124 336 $func_relative_path_tlibdir*)
cannam@124 337 # found a matching prefix
cannam@124 338 func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir"
cannam@124 339 func_relative_path_tcancelled=$func_stripname_result
cannam@124 340 if test -z "$func_relative_path_result"; then
cannam@124 341 func_relative_path_result=.
cannam@124 342 fi
cannam@124 343 break
cannam@124 344 ;;
cannam@124 345 *)
cannam@124 346 func_dirname $func_relative_path_tlibdir
cannam@124 347 func_relative_path_tlibdir=${func_dirname_result}
cannam@124 348 if test "x$func_relative_path_tlibdir" = x ; then
cannam@124 349 # Have to descend all the way to the root!
cannam@124 350 func_relative_path_result=../$func_relative_path_result
cannam@124 351 func_relative_path_tcancelled=$func_relative_path_tbindir
cannam@124 352 break
cannam@124 353 fi
cannam@124 354 func_relative_path_result=../$func_relative_path_result
cannam@124 355 ;;
cannam@124 356 esac
cannam@124 357 done
cannam@124 358
cannam@124 359 # Now calculate path; take care to avoid doubling-up slashes.
cannam@124 360 func_stripname '' '/' "$func_relative_path_result"
cannam@124 361 func_relative_path_result=$func_stripname_result
cannam@124 362 func_stripname '/' '/' "$func_relative_path_tcancelled"
cannam@124 363 if test "x$func_stripname_result" != x ; then
cannam@124 364 func_relative_path_result=${func_relative_path_result}/${func_stripname_result}
cannam@124 365 fi
cannam@124 366
cannam@124 367 # Normalisation. If bindir is libdir, return empty string,
cannam@124 368 # else relative path ending with a slash; either way, target
cannam@124 369 # file name can be directly appended.
cannam@124 370 if test ! -z "$func_relative_path_result"; then
cannam@124 371 func_stripname './' '' "$func_relative_path_result/"
cannam@124 372 func_relative_path_result=$func_stripname_result
cannam@124 373 fi
cannam@124 374 }
cannam@124 375
cannam@124 376 # The name of this program:
cannam@124 377 func_dirname_and_basename "$progpath"
cannam@124 378 progname=$func_basename_result
cannam@124 379
cannam@124 380 # Make sure we have an absolute path for reexecution:
cannam@124 381 case $progpath in
cannam@124 382 [\\/]*|[A-Za-z]:\\*) ;;
cannam@124 383 *[\\/]*)
cannam@124 384 progdir=$func_dirname_result
cannam@124 385 progdir=`cd "$progdir" && pwd`
cannam@124 386 progpath="$progdir/$progname"
cannam@124 387 ;;
cannam@124 388 *)
cannam@124 389 save_IFS="$IFS"
cannam@124 390 IFS=:
cannam@124 391 for progdir in $PATH; do
cannam@124 392 IFS="$save_IFS"
cannam@124 393 test -x "$progdir/$progname" && break
cannam@124 394 done
cannam@124 395 IFS="$save_IFS"
cannam@124 396 test -n "$progdir" || progdir=`pwd`
cannam@124 397 progpath="$progdir/$progname"
cannam@124 398 ;;
cannam@124 399 esac
cannam@124 400
cannam@124 401 # Sed substitution that helps us do robust quoting. It backslashifies
cannam@124 402 # metacharacters that are still active within double-quoted strings.
cannam@124 403 Xsed="${SED}"' -e 1s/^X//'
cannam@124 404 sed_quote_subst='s/\([`"$\\]\)/\\\1/g'
cannam@124 405
cannam@124 406 # Same as above, but do not quote variable references.
cannam@124 407 double_quote_subst='s/\(["`\\]\)/\\\1/g'
cannam@124 408
cannam@124 409 # Sed substitution that turns a string into a regex matching for the
cannam@124 410 # string literally.
cannam@124 411 sed_make_literal_regex='s,[].[^$\\*\/],\\&,g'
cannam@124 412
cannam@124 413 # Sed substitution that converts a w32 file name or path
cannam@124 414 # which contains forward slashes, into one that contains
cannam@124 415 # (escaped) backslashes. A very naive implementation.
cannam@124 416 lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g'
cannam@124 417
cannam@124 418 # Re-`\' parameter expansions in output of double_quote_subst that were
cannam@124 419 # `\'-ed in input to the same. If an odd number of `\' preceded a '$'
cannam@124 420 # in input to double_quote_subst, that '$' was protected from expansion.
cannam@124 421 # Since each input `\' is now two `\'s, look for any number of runs of
cannam@124 422 # four `\'s followed by two `\'s and then a '$'. `\' that '$'.
cannam@124 423 bs='\\'
cannam@124 424 bs2='\\\\'
cannam@124 425 bs4='\\\\\\\\'
cannam@124 426 dollar='\$'
cannam@124 427 sed_double_backslash="\
cannam@124 428 s/$bs4/&\\
cannam@124 429 /g
cannam@124 430 s/^$bs2$dollar/$bs&/
cannam@124 431 s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g
cannam@124 432 s/\n//g"
cannam@124 433
cannam@124 434 # Standard options:
cannam@124 435 opt_dry_run=false
cannam@124 436 opt_help=false
cannam@124 437 opt_quiet=false
cannam@124 438 opt_verbose=false
cannam@124 439 opt_warning=:
cannam@124 440
cannam@124 441 # func_echo arg...
cannam@124 442 # Echo program name prefixed message, along with the current mode
cannam@124 443 # name if it has been set yet.
cannam@124 444 func_echo ()
cannam@124 445 {
cannam@124 446 $ECHO "$progname: ${opt_mode+$opt_mode: }$*"
cannam@124 447 }
cannam@124 448
cannam@124 449 # func_verbose arg...
cannam@124 450 # Echo program name prefixed message in verbose mode only.
cannam@124 451 func_verbose ()
cannam@124 452 {
cannam@124 453 $opt_verbose && func_echo ${1+"$@"}
cannam@124 454
cannam@124 455 # A bug in bash halts the script if the last line of a function
cannam@124 456 # fails when set -e is in force, so we need another command to
cannam@124 457 # work around that:
cannam@124 458 :
cannam@124 459 }
cannam@124 460
cannam@124 461 # func_echo_all arg...
cannam@124 462 # Invoke $ECHO with all args, space-separated.
cannam@124 463 func_echo_all ()
cannam@124 464 {
cannam@124 465 $ECHO "$*"
cannam@124 466 }
cannam@124 467
cannam@124 468 # func_error arg...
cannam@124 469 # Echo program name prefixed message to standard error.
cannam@124 470 func_error ()
cannam@124 471 {
cannam@124 472 $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2
cannam@124 473 }
cannam@124 474
cannam@124 475 # func_warning arg...
cannam@124 476 # Echo program name prefixed warning message to standard error.
cannam@124 477 func_warning ()
cannam@124 478 {
cannam@124 479 $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2
cannam@124 480
cannam@124 481 # bash bug again:
cannam@124 482 :
cannam@124 483 }
cannam@124 484
cannam@124 485 # func_fatal_error arg...
cannam@124 486 # Echo program name prefixed message to standard error, and exit.
cannam@124 487 func_fatal_error ()
cannam@124 488 {
cannam@124 489 func_error ${1+"$@"}
cannam@124 490 exit $EXIT_FAILURE
cannam@124 491 }
cannam@124 492
cannam@124 493 # func_fatal_help arg...
cannam@124 494 # Echo program name prefixed message to standard error, followed by
cannam@124 495 # a help hint, and exit.
cannam@124 496 func_fatal_help ()
cannam@124 497 {
cannam@124 498 func_error ${1+"$@"}
cannam@124 499 func_fatal_error "$help"
cannam@124 500 }
cannam@124 501 help="Try \`$progname --help' for more information." ## default
cannam@124 502
cannam@124 503
cannam@124 504 # func_grep expression filename
cannam@124 505 # Check whether EXPRESSION matches any line of FILENAME, without output.
cannam@124 506 func_grep ()
cannam@124 507 {
cannam@124 508 $GREP "$1" "$2" >/dev/null 2>&1
cannam@124 509 }
cannam@124 510
cannam@124 511
cannam@124 512 # func_mkdir_p directory-path
cannam@124 513 # Make sure the entire path to DIRECTORY-PATH is available.
cannam@124 514 func_mkdir_p ()
cannam@124 515 {
cannam@124 516 my_directory_path="$1"
cannam@124 517 my_dir_list=
cannam@124 518
cannam@124 519 if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then
cannam@124 520
cannam@124 521 # Protect directory names starting with `-'
cannam@124 522 case $my_directory_path in
cannam@124 523 -*) my_directory_path="./$my_directory_path" ;;
cannam@124 524 esac
cannam@124 525
cannam@124 526 # While some portion of DIR does not yet exist...
cannam@124 527 while test ! -d "$my_directory_path"; do
cannam@124 528 # ...make a list in topmost first order. Use a colon delimited
cannam@124 529 # list incase some portion of path contains whitespace.
cannam@124 530 my_dir_list="$my_directory_path:$my_dir_list"
cannam@124 531
cannam@124 532 # If the last portion added has no slash in it, the list is done
cannam@124 533 case $my_directory_path in */*) ;; *) break ;; esac
cannam@124 534
cannam@124 535 # ...otherwise throw away the child directory and loop
cannam@124 536 my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"`
cannam@124 537 done
cannam@124 538 my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'`
cannam@124 539
cannam@124 540 save_mkdir_p_IFS="$IFS"; IFS=':'
cannam@124 541 for my_dir in $my_dir_list; do
cannam@124 542 IFS="$save_mkdir_p_IFS"
cannam@124 543 # mkdir can fail with a `File exist' error if two processes
cannam@124 544 # try to create one of the directories concurrently. Don't
cannam@124 545 # stop in that case!
cannam@124 546 $MKDIR "$my_dir" 2>/dev/null || :
cannam@124 547 done
cannam@124 548 IFS="$save_mkdir_p_IFS"
cannam@124 549
cannam@124 550 # Bail out if we (or some other process) failed to create a directory.
cannam@124 551 test -d "$my_directory_path" || \
cannam@124 552 func_fatal_error "Failed to create \`$1'"
cannam@124 553 fi
cannam@124 554 }
cannam@124 555
cannam@124 556
cannam@124 557 # func_mktempdir [string]
cannam@124 558 # Make a temporary directory that won't clash with other running
cannam@124 559 # libtool processes, and avoids race conditions if possible. If
cannam@124 560 # given, STRING is the basename for that directory.
cannam@124 561 func_mktempdir ()
cannam@124 562 {
cannam@124 563 my_template="${TMPDIR-/tmp}/${1-$progname}"
cannam@124 564
cannam@124 565 if test "$opt_dry_run" = ":"; then
cannam@124 566 # Return a directory name, but don't create it in dry-run mode
cannam@124 567 my_tmpdir="${my_template}-$$"
cannam@124 568 else
cannam@124 569
cannam@124 570 # If mktemp works, use that first and foremost
cannam@124 571 my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null`
cannam@124 572
cannam@124 573 if test ! -d "$my_tmpdir"; then
cannam@124 574 # Failing that, at least try and use $RANDOM to avoid a race
cannam@124 575 my_tmpdir="${my_template}-${RANDOM-0}$$"
cannam@124 576
cannam@124 577 save_mktempdir_umask=`umask`
cannam@124 578 umask 0077
cannam@124 579 $MKDIR "$my_tmpdir"
cannam@124 580 umask $save_mktempdir_umask
cannam@124 581 fi
cannam@124 582
cannam@124 583 # If we're not in dry-run mode, bomb out on failure
cannam@124 584 test -d "$my_tmpdir" || \
cannam@124 585 func_fatal_error "cannot create temporary directory \`$my_tmpdir'"
cannam@124 586 fi
cannam@124 587
cannam@124 588 $ECHO "$my_tmpdir"
cannam@124 589 }
cannam@124 590
cannam@124 591
cannam@124 592 # func_quote_for_eval arg
cannam@124 593 # Aesthetically quote ARG to be evaled later.
cannam@124 594 # This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT
cannam@124 595 # is double-quoted, suitable for a subsequent eval, whereas
cannam@124 596 # FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters
cannam@124 597 # which are still active within double quotes backslashified.
cannam@124 598 func_quote_for_eval ()
cannam@124 599 {
cannam@124 600 case $1 in
cannam@124 601 *[\\\`\"\$]*)
cannam@124 602 func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;;
cannam@124 603 *)
cannam@124 604 func_quote_for_eval_unquoted_result="$1" ;;
cannam@124 605 esac
cannam@124 606
cannam@124 607 case $func_quote_for_eval_unquoted_result in
cannam@124 608 # Double-quote args containing shell metacharacters to delay
cannam@124 609 # word splitting, command substitution and and variable
cannam@124 610 # expansion for a subsequent eval.
cannam@124 611 # Many Bourne shells cannot handle close brackets correctly
cannam@124 612 # in scan sets, so we specify it separately.
cannam@124 613 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
cannam@124 614 func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\""
cannam@124 615 ;;
cannam@124 616 *)
cannam@124 617 func_quote_for_eval_result="$func_quote_for_eval_unquoted_result"
cannam@124 618 esac
cannam@124 619 }
cannam@124 620
cannam@124 621
cannam@124 622 # func_quote_for_expand arg
cannam@124 623 # Aesthetically quote ARG to be evaled later; same as above,
cannam@124 624 # but do not quote variable references.
cannam@124 625 func_quote_for_expand ()
cannam@124 626 {
cannam@124 627 case $1 in
cannam@124 628 *[\\\`\"]*)
cannam@124 629 my_arg=`$ECHO "$1" | $SED \
cannam@124 630 -e "$double_quote_subst" -e "$sed_double_backslash"` ;;
cannam@124 631 *)
cannam@124 632 my_arg="$1" ;;
cannam@124 633 esac
cannam@124 634
cannam@124 635 case $my_arg in
cannam@124 636 # Double-quote args containing shell metacharacters to delay
cannam@124 637 # word splitting and command substitution for a subsequent eval.
cannam@124 638 # Many Bourne shells cannot handle close brackets correctly
cannam@124 639 # in scan sets, so we specify it separately.
cannam@124 640 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
cannam@124 641 my_arg="\"$my_arg\""
cannam@124 642 ;;
cannam@124 643 esac
cannam@124 644
cannam@124 645 func_quote_for_expand_result="$my_arg"
cannam@124 646 }
cannam@124 647
cannam@124 648
cannam@124 649 # func_show_eval cmd [fail_exp]
cannam@124 650 # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is
cannam@124 651 # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP
cannam@124 652 # is given, then evaluate it.
cannam@124 653 func_show_eval ()
cannam@124 654 {
cannam@124 655 my_cmd="$1"
cannam@124 656 my_fail_exp="${2-:}"
cannam@124 657
cannam@124 658 ${opt_silent-false} || {
cannam@124 659 func_quote_for_expand "$my_cmd"
cannam@124 660 eval "func_echo $func_quote_for_expand_result"
cannam@124 661 }
cannam@124 662
cannam@124 663 if ${opt_dry_run-false}; then :; else
cannam@124 664 eval "$my_cmd"
cannam@124 665 my_status=$?
cannam@124 666 if test "$my_status" -eq 0; then :; else
cannam@124 667 eval "(exit $my_status); $my_fail_exp"
cannam@124 668 fi
cannam@124 669 fi
cannam@124 670 }
cannam@124 671
cannam@124 672
cannam@124 673 # func_show_eval_locale cmd [fail_exp]
cannam@124 674 # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is
cannam@124 675 # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP
cannam@124 676 # is given, then evaluate it. Use the saved locale for evaluation.
cannam@124 677 func_show_eval_locale ()
cannam@124 678 {
cannam@124 679 my_cmd="$1"
cannam@124 680 my_fail_exp="${2-:}"
cannam@124 681
cannam@124 682 ${opt_silent-false} || {
cannam@124 683 func_quote_for_expand "$my_cmd"
cannam@124 684 eval "func_echo $func_quote_for_expand_result"
cannam@124 685 }
cannam@124 686
cannam@124 687 if ${opt_dry_run-false}; then :; else
cannam@124 688 eval "$lt_user_locale
cannam@124 689 $my_cmd"
cannam@124 690 my_status=$?
cannam@124 691 eval "$lt_safe_locale"
cannam@124 692 if test "$my_status" -eq 0; then :; else
cannam@124 693 eval "(exit $my_status); $my_fail_exp"
cannam@124 694 fi
cannam@124 695 fi
cannam@124 696 }
cannam@124 697
cannam@124 698 # func_tr_sh
cannam@124 699 # Turn $1 into a string suitable for a shell variable name.
cannam@124 700 # Result is stored in $func_tr_sh_result. All characters
cannam@124 701 # not in the set a-zA-Z0-9_ are replaced with '_'. Further,
cannam@124 702 # if $1 begins with a digit, a '_' is prepended as well.
cannam@124 703 func_tr_sh ()
cannam@124 704 {
cannam@124 705 case $1 in
cannam@124 706 [0-9]* | *[!a-zA-Z0-9_]*)
cannam@124 707 func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'`
cannam@124 708 ;;
cannam@124 709 * )
cannam@124 710 func_tr_sh_result=$1
cannam@124 711 ;;
cannam@124 712 esac
cannam@124 713 }
cannam@124 714
cannam@124 715
cannam@124 716 # func_version
cannam@124 717 # Echo version message to standard output and exit.
cannam@124 718 func_version ()
cannam@124 719 {
cannam@124 720 $opt_debug
cannam@124 721
cannam@124 722 $SED -n '/(C)/!b go
cannam@124 723 :more
cannam@124 724 /\./!{
cannam@124 725 N
cannam@124 726 s/\n# / /
cannam@124 727 b more
cannam@124 728 }
cannam@124 729 :go
cannam@124 730 /^# '$PROGRAM' (GNU /,/# warranty; / {
cannam@124 731 s/^# //
cannam@124 732 s/^# *$//
cannam@124 733 s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/
cannam@124 734 p
cannam@124 735 }' < "$progpath"
cannam@124 736 exit $?
cannam@124 737 }
cannam@124 738
cannam@124 739 # func_usage
cannam@124 740 # Echo short help message to standard output and exit.
cannam@124 741 func_usage ()
cannam@124 742 {
cannam@124 743 $opt_debug
cannam@124 744
cannam@124 745 $SED -n '/^# Usage:/,/^# *.*--help/ {
cannam@124 746 s/^# //
cannam@124 747 s/^# *$//
cannam@124 748 s/\$progname/'$progname'/
cannam@124 749 p
cannam@124 750 }' < "$progpath"
cannam@124 751 echo
cannam@124 752 $ECHO "run \`$progname --help | more' for full usage"
cannam@124 753 exit $?
cannam@124 754 }
cannam@124 755
cannam@124 756 # func_help [NOEXIT]
cannam@124 757 # Echo long help message to standard output and exit,
cannam@124 758 # unless 'noexit' is passed as argument.
cannam@124 759 func_help ()
cannam@124 760 {
cannam@124 761 $opt_debug
cannam@124 762
cannam@124 763 $SED -n '/^# Usage:/,/# Report bugs to/ {
cannam@124 764 :print
cannam@124 765 s/^# //
cannam@124 766 s/^# *$//
cannam@124 767 s*\$progname*'$progname'*
cannam@124 768 s*\$host*'"$host"'*
cannam@124 769 s*\$SHELL*'"$SHELL"'*
cannam@124 770 s*\$LTCC*'"$LTCC"'*
cannam@124 771 s*\$LTCFLAGS*'"$LTCFLAGS"'*
cannam@124 772 s*\$LD*'"$LD"'*
cannam@124 773 s/\$with_gnu_ld/'"$with_gnu_ld"'/
cannam@124 774 s/\$automake_version/'"`(automake --version) 2>/dev/null |$SED 1q`"'/
cannam@124 775 s/\$autoconf_version/'"`(autoconf --version) 2>/dev/null |$SED 1q`"'/
cannam@124 776 p
cannam@124 777 d
cannam@124 778 }
cannam@124 779 /^# .* home page:/b print
cannam@124 780 /^# General help using/b print
cannam@124 781 ' < "$progpath"
cannam@124 782 ret=$?
cannam@124 783 if test -z "$1"; then
cannam@124 784 exit $ret
cannam@124 785 fi
cannam@124 786 }
cannam@124 787
cannam@124 788 # func_missing_arg argname
cannam@124 789 # Echo program name prefixed message to standard error and set global
cannam@124 790 # exit_cmd.
cannam@124 791 func_missing_arg ()
cannam@124 792 {
cannam@124 793 $opt_debug
cannam@124 794
cannam@124 795 func_error "missing argument for $1."
cannam@124 796 exit_cmd=exit
cannam@124 797 }
cannam@124 798
cannam@124 799
cannam@124 800 # func_split_short_opt shortopt
cannam@124 801 # Set func_split_short_opt_name and func_split_short_opt_arg shell
cannam@124 802 # variables after splitting SHORTOPT after the 2nd character.
cannam@124 803 func_split_short_opt ()
cannam@124 804 {
cannam@124 805 my_sed_short_opt='1s/^\(..\).*$/\1/;q'
cannam@124 806 my_sed_short_rest='1s/^..\(.*\)$/\1/;q'
cannam@124 807
cannam@124 808 func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"`
cannam@124 809 func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"`
cannam@124 810 } # func_split_short_opt may be replaced by extended shell implementation
cannam@124 811
cannam@124 812
cannam@124 813 # func_split_long_opt longopt
cannam@124 814 # Set func_split_long_opt_name and func_split_long_opt_arg shell
cannam@124 815 # variables after splitting LONGOPT at the `=' sign.
cannam@124 816 func_split_long_opt ()
cannam@124 817 {
cannam@124 818 my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q'
cannam@124 819 my_sed_long_arg='1s/^--[^=]*=//'
cannam@124 820
cannam@124 821 func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"`
cannam@124 822 func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"`
cannam@124 823 } # func_split_long_opt may be replaced by extended shell implementation
cannam@124 824
cannam@124 825 exit_cmd=:
cannam@124 826
cannam@124 827
cannam@124 828
cannam@124 829
cannam@124 830
cannam@124 831 magic="%%%MAGIC variable%%%"
cannam@124 832 magic_exe="%%%MAGIC EXE variable%%%"
cannam@124 833
cannam@124 834 # Global variables.
cannam@124 835 nonopt=
cannam@124 836 preserve_args=
cannam@124 837 lo2o="s/\\.lo\$/.${objext}/"
cannam@124 838 o2lo="s/\\.${objext}\$/.lo/"
cannam@124 839 extracted_archives=
cannam@124 840 extracted_serial=0
cannam@124 841
cannam@124 842 # If this variable is set in any of the actions, the command in it
cannam@124 843 # will be execed at the end. This prevents here-documents from being
cannam@124 844 # left over by shells.
cannam@124 845 exec_cmd=
cannam@124 846
cannam@124 847 # func_append var value
cannam@124 848 # Append VALUE to the end of shell variable VAR.
cannam@124 849 func_append ()
cannam@124 850 {
cannam@124 851 eval "${1}=\$${1}\${2}"
cannam@124 852 } # func_append may be replaced by extended shell implementation
cannam@124 853
cannam@124 854 # func_append_quoted var value
cannam@124 855 # Quote VALUE and append to the end of shell variable VAR, separated
cannam@124 856 # by a space.
cannam@124 857 func_append_quoted ()
cannam@124 858 {
cannam@124 859 func_quote_for_eval "${2}"
cannam@124 860 eval "${1}=\$${1}\\ \$func_quote_for_eval_result"
cannam@124 861 } # func_append_quoted may be replaced by extended shell implementation
cannam@124 862
cannam@124 863
cannam@124 864 # func_arith arithmetic-term...
cannam@124 865 func_arith ()
cannam@124 866 {
cannam@124 867 func_arith_result=`expr "${@}"`
cannam@124 868 } # func_arith may be replaced by extended shell implementation
cannam@124 869
cannam@124 870
cannam@124 871 # func_len string
cannam@124 872 # STRING may not start with a hyphen.
cannam@124 873 func_len ()
cannam@124 874 {
cannam@124 875 func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len`
cannam@124 876 } # func_len may be replaced by extended shell implementation
cannam@124 877
cannam@124 878
cannam@124 879 # func_lo2o object
cannam@124 880 func_lo2o ()
cannam@124 881 {
cannam@124 882 func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"`
cannam@124 883 } # func_lo2o may be replaced by extended shell implementation
cannam@124 884
cannam@124 885
cannam@124 886 # func_xform libobj-or-source
cannam@124 887 func_xform ()
cannam@124 888 {
cannam@124 889 func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'`
cannam@124 890 } # func_xform may be replaced by extended shell implementation
cannam@124 891
cannam@124 892
cannam@124 893 # func_fatal_configuration arg...
cannam@124 894 # Echo program name prefixed message to standard error, followed by
cannam@124 895 # a configuration failure hint, and exit.
cannam@124 896 func_fatal_configuration ()
cannam@124 897 {
cannam@124 898 func_error ${1+"$@"}
cannam@124 899 func_error "See the $PACKAGE documentation for more information."
cannam@124 900 func_fatal_error "Fatal configuration error."
cannam@124 901 }
cannam@124 902
cannam@124 903
cannam@124 904 # func_config
cannam@124 905 # Display the configuration for all the tags in this script.
cannam@124 906 func_config ()
cannam@124 907 {
cannam@124 908 re_begincf='^# ### BEGIN LIBTOOL'
cannam@124 909 re_endcf='^# ### END LIBTOOL'
cannam@124 910
cannam@124 911 # Default configuration.
cannam@124 912 $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath"
cannam@124 913
cannam@124 914 # Now print the configurations for the tags.
cannam@124 915 for tagname in $taglist; do
cannam@124 916 $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath"
cannam@124 917 done
cannam@124 918
cannam@124 919 exit $?
cannam@124 920 }
cannam@124 921
cannam@124 922 # func_features
cannam@124 923 # Display the features supported by this script.
cannam@124 924 func_features ()
cannam@124 925 {
cannam@124 926 echo "host: $host"
cannam@124 927 if test "$build_libtool_libs" = yes; then
cannam@124 928 echo "enable shared libraries"
cannam@124 929 else
cannam@124 930 echo "disable shared libraries"
cannam@124 931 fi
cannam@124 932 if test "$build_old_libs" = yes; then
cannam@124 933 echo "enable static libraries"
cannam@124 934 else
cannam@124 935 echo "disable static libraries"
cannam@124 936 fi
cannam@124 937
cannam@124 938 exit $?
cannam@124 939 }
cannam@124 940
cannam@124 941 # func_enable_tag tagname
cannam@124 942 # Verify that TAGNAME is valid, and either flag an error and exit, or
cannam@124 943 # enable the TAGNAME tag. We also add TAGNAME to the global $taglist
cannam@124 944 # variable here.
cannam@124 945 func_enable_tag ()
cannam@124 946 {
cannam@124 947 # Global variable:
cannam@124 948 tagname="$1"
cannam@124 949
cannam@124 950 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
cannam@124 951 re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
cannam@124 952 sed_extractcf="/$re_begincf/,/$re_endcf/p"
cannam@124 953
cannam@124 954 # Validate tagname.
cannam@124 955 case $tagname in
cannam@124 956 *[!-_A-Za-z0-9,/]*)
cannam@124 957 func_fatal_error "invalid tag name: $tagname"
cannam@124 958 ;;
cannam@124 959 esac
cannam@124 960
cannam@124 961 # Don't test for the "default" C tag, as we know it's
cannam@124 962 # there but not specially marked.
cannam@124 963 case $tagname in
cannam@124 964 CC) ;;
cannam@124 965 *)
cannam@124 966 if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then
cannam@124 967 taglist="$taglist $tagname"
cannam@124 968
cannam@124 969 # Evaluate the configuration. Be careful to quote the path
cannam@124 970 # and the sed script, to avoid splitting on whitespace, but
cannam@124 971 # also don't use non-portable quotes within backquotes within
cannam@124 972 # quotes we have to do it in 2 steps:
cannam@124 973 extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"`
cannam@124 974 eval "$extractedcf"
cannam@124 975 else
cannam@124 976 func_error "ignoring unknown tag $tagname"
cannam@124 977 fi
cannam@124 978 ;;
cannam@124 979 esac
cannam@124 980 }
cannam@124 981
cannam@124 982 # func_check_version_match
cannam@124 983 # Ensure that we are using m4 macros, and libtool script from the same
cannam@124 984 # release of libtool.
cannam@124 985 func_check_version_match ()
cannam@124 986 {
cannam@124 987 if test "$package_revision" != "$macro_revision"; then
cannam@124 988 if test "$VERSION" != "$macro_version"; then
cannam@124 989 if test -z "$macro_version"; then
cannam@124 990 cat >&2 <<_LT_EOF
cannam@124 991 $progname: Version mismatch error. This is $PACKAGE $VERSION, but the
cannam@124 992 $progname: definition of this LT_INIT comes from an older release.
cannam@124 993 $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
cannam@124 994 $progname: and run autoconf again.
cannam@124 995 _LT_EOF
cannam@124 996 else
cannam@124 997 cat >&2 <<_LT_EOF
cannam@124 998 $progname: Version mismatch error. This is $PACKAGE $VERSION, but the
cannam@124 999 $progname: definition of this LT_INIT comes from $PACKAGE $macro_version.
cannam@124 1000 $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
cannam@124 1001 $progname: and run autoconf again.
cannam@124 1002 _LT_EOF
cannam@124 1003 fi
cannam@124 1004 else
cannam@124 1005 cat >&2 <<_LT_EOF
cannam@124 1006 $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision,
cannam@124 1007 $progname: but the definition of this LT_INIT comes from revision $macro_revision.
cannam@124 1008 $progname: You should recreate aclocal.m4 with macros from revision $package_revision
cannam@124 1009 $progname: of $PACKAGE $VERSION and run autoconf again.
cannam@124 1010 _LT_EOF
cannam@124 1011 fi
cannam@124 1012
cannam@124 1013 exit $EXIT_MISMATCH
cannam@124 1014 fi
cannam@124 1015 }
cannam@124 1016
cannam@124 1017
cannam@124 1018 # Shorthand for --mode=foo, only valid as the first argument
cannam@124 1019 case $1 in
cannam@124 1020 clean|clea|cle|cl)
cannam@124 1021 shift; set dummy --mode clean ${1+"$@"}; shift
cannam@124 1022 ;;
cannam@124 1023 compile|compil|compi|comp|com|co|c)
cannam@124 1024 shift; set dummy --mode compile ${1+"$@"}; shift
cannam@124 1025 ;;
cannam@124 1026 execute|execut|execu|exec|exe|ex|e)
cannam@124 1027 shift; set dummy --mode execute ${1+"$@"}; shift
cannam@124 1028 ;;
cannam@124 1029 finish|finis|fini|fin|fi|f)
cannam@124 1030 shift; set dummy --mode finish ${1+"$@"}; shift
cannam@124 1031 ;;
cannam@124 1032 install|instal|insta|inst|ins|in|i)
cannam@124 1033 shift; set dummy --mode install ${1+"$@"}; shift
cannam@124 1034 ;;
cannam@124 1035 link|lin|li|l)
cannam@124 1036 shift; set dummy --mode link ${1+"$@"}; shift
cannam@124 1037 ;;
cannam@124 1038 uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)
cannam@124 1039 shift; set dummy --mode uninstall ${1+"$@"}; shift
cannam@124 1040 ;;
cannam@124 1041 esac
cannam@124 1042
cannam@124 1043
cannam@124 1044
cannam@124 1045 # Option defaults:
cannam@124 1046 opt_debug=:
cannam@124 1047 opt_dry_run=false
cannam@124 1048 opt_config=false
cannam@124 1049 opt_preserve_dup_deps=false
cannam@124 1050 opt_features=false
cannam@124 1051 opt_finish=false
cannam@124 1052 opt_help=false
cannam@124 1053 opt_help_all=false
cannam@124 1054 opt_silent=:
cannam@124 1055 opt_verbose=:
cannam@124 1056 opt_silent=false
cannam@124 1057 opt_verbose=false
cannam@124 1058
cannam@124 1059
cannam@124 1060 # Parse options once, thoroughly. This comes as soon as possible in the
cannam@124 1061 # script to make things like `--version' happen as quickly as we can.
cannam@124 1062 {
cannam@124 1063 # this just eases exit handling
cannam@124 1064 while test $# -gt 0; do
cannam@124 1065 opt="$1"
cannam@124 1066 shift
cannam@124 1067 case $opt in
cannam@124 1068 --debug|-x) opt_debug='set -x'
cannam@124 1069 func_echo "enabling shell trace mode"
cannam@124 1070 $opt_debug
cannam@124 1071 ;;
cannam@124 1072 --dry-run|--dryrun|-n)
cannam@124 1073 opt_dry_run=:
cannam@124 1074 ;;
cannam@124 1075 --config)
cannam@124 1076 opt_config=:
cannam@124 1077 func_config
cannam@124 1078 ;;
cannam@124 1079 --dlopen|-dlopen)
cannam@124 1080 optarg="$1"
cannam@124 1081 opt_dlopen="${opt_dlopen+$opt_dlopen
cannam@124 1082 }$optarg"
cannam@124 1083 shift
cannam@124 1084 ;;
cannam@124 1085 --preserve-dup-deps)
cannam@124 1086 opt_preserve_dup_deps=:
cannam@124 1087 ;;
cannam@124 1088 --features)
cannam@124 1089 opt_features=:
cannam@124 1090 func_features
cannam@124 1091 ;;
cannam@124 1092 --finish)
cannam@124 1093 opt_finish=:
cannam@124 1094 set dummy --mode finish ${1+"$@"}; shift
cannam@124 1095 ;;
cannam@124 1096 --help)
cannam@124 1097 opt_help=:
cannam@124 1098 ;;
cannam@124 1099 --help-all)
cannam@124 1100 opt_help_all=:
cannam@124 1101 opt_help=': help-all'
cannam@124 1102 ;;
cannam@124 1103 --mode)
cannam@124 1104 test $# = 0 && func_missing_arg $opt && break
cannam@124 1105 optarg="$1"
cannam@124 1106 opt_mode="$optarg"
cannam@124 1107 case $optarg in
cannam@124 1108 # Valid mode arguments:
cannam@124 1109 clean|compile|execute|finish|install|link|relink|uninstall) ;;
cannam@124 1110
cannam@124 1111 # Catch anything else as an error
cannam@124 1112 *) func_error "invalid argument for $opt"
cannam@124 1113 exit_cmd=exit
cannam@124 1114 break
cannam@124 1115 ;;
cannam@124 1116 esac
cannam@124 1117 shift
cannam@124 1118 ;;
cannam@124 1119 --no-silent|--no-quiet)
cannam@124 1120 opt_silent=false
cannam@124 1121 func_append preserve_args " $opt"
cannam@124 1122 ;;
cannam@124 1123 --no-verbose)
cannam@124 1124 opt_verbose=false
cannam@124 1125 func_append preserve_args " $opt"
cannam@124 1126 ;;
cannam@124 1127 --silent|--quiet)
cannam@124 1128 opt_silent=:
cannam@124 1129 func_append preserve_args " $opt"
cannam@124 1130 opt_verbose=false
cannam@124 1131 ;;
cannam@124 1132 --verbose|-v)
cannam@124 1133 opt_verbose=:
cannam@124 1134 func_append preserve_args " $opt"
cannam@124 1135 opt_silent=false
cannam@124 1136 ;;
cannam@124 1137 --tag)
cannam@124 1138 test $# = 0 && func_missing_arg $opt && break
cannam@124 1139 optarg="$1"
cannam@124 1140 opt_tag="$optarg"
cannam@124 1141 func_append preserve_args " $opt $optarg"
cannam@124 1142 func_enable_tag "$optarg"
cannam@124 1143 shift
cannam@124 1144 ;;
cannam@124 1145
cannam@124 1146 -\?|-h) func_usage ;;
cannam@124 1147 --help) func_help ;;
cannam@124 1148 --version) func_version ;;
cannam@124 1149
cannam@124 1150 # Separate optargs to long options:
cannam@124 1151 --*=*)
cannam@124 1152 func_split_long_opt "$opt"
cannam@124 1153 set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"}
cannam@124 1154 shift
cannam@124 1155 ;;
cannam@124 1156
cannam@124 1157 # Separate non-argument short options:
cannam@124 1158 -\?*|-h*|-n*|-v*)
cannam@124 1159 func_split_short_opt "$opt"
cannam@124 1160 set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"}
cannam@124 1161 shift
cannam@124 1162 ;;
cannam@124 1163
cannam@124 1164 --) break ;;
cannam@124 1165 -*) func_fatal_help "unrecognized option \`$opt'" ;;
cannam@124 1166 *) set dummy "$opt" ${1+"$@"}; shift; break ;;
cannam@124 1167 esac
cannam@124 1168 done
cannam@124 1169
cannam@124 1170 # Validate options:
cannam@124 1171
cannam@124 1172 # save first non-option argument
cannam@124 1173 if test "$#" -gt 0; then
cannam@124 1174 nonopt="$opt"
cannam@124 1175 shift
cannam@124 1176 fi
cannam@124 1177
cannam@124 1178 # preserve --debug
cannam@124 1179 test "$opt_debug" = : || func_append preserve_args " --debug"
cannam@124 1180
cannam@124 1181 case $host in
cannam@124 1182 *cygwin* | *mingw* | *pw32* | *cegcc*)
cannam@124 1183 # don't eliminate duplications in $postdeps and $predeps
cannam@124 1184 opt_duplicate_compiler_generated_deps=:
cannam@124 1185 ;;
cannam@124 1186 *)
cannam@124 1187 opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps
cannam@124 1188 ;;
cannam@124 1189 esac
cannam@124 1190
cannam@124 1191 $opt_help || {
cannam@124 1192 # Sanity checks first:
cannam@124 1193 func_check_version_match
cannam@124 1194
cannam@124 1195 if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
cannam@124 1196 func_fatal_configuration "not configured to build any kind of library"
cannam@124 1197 fi
cannam@124 1198
cannam@124 1199 # Darwin sucks
cannam@124 1200 eval std_shrext=\"$shrext_cmds\"
cannam@124 1201
cannam@124 1202 # Only execute mode is allowed to have -dlopen flags.
cannam@124 1203 if test -n "$opt_dlopen" && test "$opt_mode" != execute; then
cannam@124 1204 func_error "unrecognized option \`-dlopen'"
cannam@124 1205 $ECHO "$help" 1>&2
cannam@124 1206 exit $EXIT_FAILURE
cannam@124 1207 fi
cannam@124 1208
cannam@124 1209 # Change the help message to a mode-specific one.
cannam@124 1210 generic_help="$help"
cannam@124 1211 help="Try \`$progname --help --mode=$opt_mode' for more information."
cannam@124 1212 }
cannam@124 1213
cannam@124 1214
cannam@124 1215 # Bail if the options were screwed
cannam@124 1216 $exit_cmd $EXIT_FAILURE
cannam@124 1217 }
cannam@124 1218
cannam@124 1219
cannam@124 1220
cannam@124 1221
cannam@124 1222 ## ----------- ##
cannam@124 1223 ## Main. ##
cannam@124 1224 ## ----------- ##
cannam@124 1225
cannam@124 1226 # func_lalib_p file
cannam@124 1227 # True iff FILE is a libtool `.la' library or `.lo' object file.
cannam@124 1228 # This function is only a basic sanity check; it will hardly flush out
cannam@124 1229 # determined imposters.
cannam@124 1230 func_lalib_p ()
cannam@124 1231 {
cannam@124 1232 test -f "$1" &&
cannam@124 1233 $SED -e 4q "$1" 2>/dev/null \
cannam@124 1234 | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1
cannam@124 1235 }
cannam@124 1236
cannam@124 1237 # func_lalib_unsafe_p file
cannam@124 1238 # True iff FILE is a libtool `.la' library or `.lo' object file.
cannam@124 1239 # This function implements the same check as func_lalib_p without
cannam@124 1240 # resorting to external programs. To this end, it redirects stdin and
cannam@124 1241 # closes it afterwards, without saving the original file descriptor.
cannam@124 1242 # As a safety measure, use it only where a negative result would be
cannam@124 1243 # fatal anyway. Works if `file' does not exist.
cannam@124 1244 func_lalib_unsafe_p ()
cannam@124 1245 {
cannam@124 1246 lalib_p=no
cannam@124 1247 if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then
cannam@124 1248 for lalib_p_l in 1 2 3 4
cannam@124 1249 do
cannam@124 1250 read lalib_p_line
cannam@124 1251 case "$lalib_p_line" in
cannam@124 1252 \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;;
cannam@124 1253 esac
cannam@124 1254 done
cannam@124 1255 exec 0<&5 5<&-
cannam@124 1256 fi
cannam@124 1257 test "$lalib_p" = yes
cannam@124 1258 }
cannam@124 1259
cannam@124 1260 # func_ltwrapper_script_p file
cannam@124 1261 # True iff FILE is a libtool wrapper script
cannam@124 1262 # This function is only a basic sanity check; it will hardly flush out
cannam@124 1263 # determined imposters.
cannam@124 1264 func_ltwrapper_script_p ()
cannam@124 1265 {
cannam@124 1266 func_lalib_p "$1"
cannam@124 1267 }
cannam@124 1268
cannam@124 1269 # func_ltwrapper_executable_p file
cannam@124 1270 # True iff FILE is a libtool wrapper executable
cannam@124 1271 # This function is only a basic sanity check; it will hardly flush out
cannam@124 1272 # determined imposters.
cannam@124 1273 func_ltwrapper_executable_p ()
cannam@124 1274 {
cannam@124 1275 func_ltwrapper_exec_suffix=
cannam@124 1276 case $1 in
cannam@124 1277 *.exe) ;;
cannam@124 1278 *) func_ltwrapper_exec_suffix=.exe ;;
cannam@124 1279 esac
cannam@124 1280 $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1
cannam@124 1281 }
cannam@124 1282
cannam@124 1283 # func_ltwrapper_scriptname file
cannam@124 1284 # Assumes file is an ltwrapper_executable
cannam@124 1285 # uses $file to determine the appropriate filename for a
cannam@124 1286 # temporary ltwrapper_script.
cannam@124 1287 func_ltwrapper_scriptname ()
cannam@124 1288 {
cannam@124 1289 func_dirname_and_basename "$1" "" "."
cannam@124 1290 func_stripname '' '.exe' "$func_basename_result"
cannam@124 1291 func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper"
cannam@124 1292 }
cannam@124 1293
cannam@124 1294 # func_ltwrapper_p file
cannam@124 1295 # True iff FILE is a libtool wrapper script or wrapper executable
cannam@124 1296 # This function is only a basic sanity check; it will hardly flush out
cannam@124 1297 # determined imposters.
cannam@124 1298 func_ltwrapper_p ()
cannam@124 1299 {
cannam@124 1300 func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1"
cannam@124 1301 }
cannam@124 1302
cannam@124 1303
cannam@124 1304 # func_execute_cmds commands fail_cmd
cannam@124 1305 # Execute tilde-delimited COMMANDS.
cannam@124 1306 # If FAIL_CMD is given, eval that upon failure.
cannam@124 1307 # FAIL_CMD may read-access the current command in variable CMD!
cannam@124 1308 func_execute_cmds ()
cannam@124 1309 {
cannam@124 1310 $opt_debug
cannam@124 1311 save_ifs=$IFS; IFS='~'
cannam@124 1312 for cmd in $1; do
cannam@124 1313 IFS=$save_ifs
cannam@124 1314 eval cmd=\"$cmd\"
cannam@124 1315 func_show_eval "$cmd" "${2-:}"
cannam@124 1316 done
cannam@124 1317 IFS=$save_ifs
cannam@124 1318 }
cannam@124 1319
cannam@124 1320
cannam@124 1321 # func_source file
cannam@124 1322 # Source FILE, adding directory component if necessary.
cannam@124 1323 # Note that it is not necessary on cygwin/mingw to append a dot to
cannam@124 1324 # FILE even if both FILE and FILE.exe exist: automatic-append-.exe
cannam@124 1325 # behavior happens only for exec(3), not for open(2)! Also, sourcing
cannam@124 1326 # `FILE.' does not work on cygwin managed mounts.
cannam@124 1327 func_source ()
cannam@124 1328 {
cannam@124 1329 $opt_debug
cannam@124 1330 case $1 in
cannam@124 1331 */* | *\\*) . "$1" ;;
cannam@124 1332 *) . "./$1" ;;
cannam@124 1333 esac
cannam@124 1334 }
cannam@124 1335
cannam@124 1336
cannam@124 1337 # func_resolve_sysroot PATH
cannam@124 1338 # Replace a leading = in PATH with a sysroot. Store the result into
cannam@124 1339 # func_resolve_sysroot_result
cannam@124 1340 func_resolve_sysroot ()
cannam@124 1341 {
cannam@124 1342 func_resolve_sysroot_result=$1
cannam@124 1343 case $func_resolve_sysroot_result in
cannam@124 1344 =*)
cannam@124 1345 func_stripname '=' '' "$func_resolve_sysroot_result"
cannam@124 1346 func_resolve_sysroot_result=$lt_sysroot$func_stripname_result
cannam@124 1347 ;;
cannam@124 1348 esac
cannam@124 1349 }
cannam@124 1350
cannam@124 1351 # func_replace_sysroot PATH
cannam@124 1352 # If PATH begins with the sysroot, replace it with = and
cannam@124 1353 # store the result into func_replace_sysroot_result.
cannam@124 1354 func_replace_sysroot ()
cannam@124 1355 {
cannam@124 1356 case "$lt_sysroot:$1" in
cannam@124 1357 ?*:"$lt_sysroot"*)
cannam@124 1358 func_stripname "$lt_sysroot" '' "$1"
cannam@124 1359 func_replace_sysroot_result="=$func_stripname_result"
cannam@124 1360 ;;
cannam@124 1361 *)
cannam@124 1362 # Including no sysroot.
cannam@124 1363 func_replace_sysroot_result=$1
cannam@124 1364 ;;
cannam@124 1365 esac
cannam@124 1366 }
cannam@124 1367
cannam@124 1368 # func_infer_tag arg
cannam@124 1369 # Infer tagged configuration to use if any are available and
cannam@124 1370 # if one wasn't chosen via the "--tag" command line option.
cannam@124 1371 # Only attempt this if the compiler in the base compile
cannam@124 1372 # command doesn't match the default compiler.
cannam@124 1373 # arg is usually of the form 'gcc ...'
cannam@124 1374 func_infer_tag ()
cannam@124 1375 {
cannam@124 1376 $opt_debug
cannam@124 1377 if test -n "$available_tags" && test -z "$tagname"; then
cannam@124 1378 CC_quoted=
cannam@124 1379 for arg in $CC; do
cannam@124 1380 func_append_quoted CC_quoted "$arg"
cannam@124 1381 done
cannam@124 1382 CC_expanded=`func_echo_all $CC`
cannam@124 1383 CC_quoted_expanded=`func_echo_all $CC_quoted`
cannam@124 1384 case $@ in
cannam@124 1385 # Blanks in the command may have been stripped by the calling shell,
cannam@124 1386 # but not from the CC environment variable when configure was run.
cannam@124 1387 " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \
cannam@124 1388 " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;;
cannam@124 1389 # Blanks at the start of $base_compile will cause this to fail
cannam@124 1390 # if we don't check for them as well.
cannam@124 1391 *)
cannam@124 1392 for z in $available_tags; do
cannam@124 1393 if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then
cannam@124 1394 # Evaluate the configuration.
cannam@124 1395 eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
cannam@124 1396 CC_quoted=
cannam@124 1397 for arg in $CC; do
cannam@124 1398 # Double-quote args containing other shell metacharacters.
cannam@124 1399 func_append_quoted CC_quoted "$arg"
cannam@124 1400 done
cannam@124 1401 CC_expanded=`func_echo_all $CC`
cannam@124 1402 CC_quoted_expanded=`func_echo_all $CC_quoted`
cannam@124 1403 case "$@ " in
cannam@124 1404 " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \
cannam@124 1405 " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*)
cannam@124 1406 # The compiler in the base compile command matches
cannam@124 1407 # the one in the tagged configuration.
cannam@124 1408 # Assume this is the tagged configuration we want.
cannam@124 1409 tagname=$z
cannam@124 1410 break
cannam@124 1411 ;;
cannam@124 1412 esac
cannam@124 1413 fi
cannam@124 1414 done
cannam@124 1415 # If $tagname still isn't set, then no tagged configuration
cannam@124 1416 # was found and let the user know that the "--tag" command
cannam@124 1417 # line option must be used.
cannam@124 1418 if test -z "$tagname"; then
cannam@124 1419 func_echo "unable to infer tagged configuration"
cannam@124 1420 func_fatal_error "specify a tag with \`--tag'"
cannam@124 1421 # else
cannam@124 1422 # func_verbose "using $tagname tagged configuration"
cannam@124 1423 fi
cannam@124 1424 ;;
cannam@124 1425 esac
cannam@124 1426 fi
cannam@124 1427 }
cannam@124 1428
cannam@124 1429
cannam@124 1430
cannam@124 1431 # func_write_libtool_object output_name pic_name nonpic_name
cannam@124 1432 # Create a libtool object file (analogous to a ".la" file),
cannam@124 1433 # but don't create it if we're doing a dry run.
cannam@124 1434 func_write_libtool_object ()
cannam@124 1435 {
cannam@124 1436 write_libobj=${1}
cannam@124 1437 if test "$build_libtool_libs" = yes; then
cannam@124 1438 write_lobj=\'${2}\'
cannam@124 1439 else
cannam@124 1440 write_lobj=none
cannam@124 1441 fi
cannam@124 1442
cannam@124 1443 if test "$build_old_libs" = yes; then
cannam@124 1444 write_oldobj=\'${3}\'
cannam@124 1445 else
cannam@124 1446 write_oldobj=none
cannam@124 1447 fi
cannam@124 1448
cannam@124 1449 $opt_dry_run || {
cannam@124 1450 cat >${write_libobj}T <<EOF
cannam@124 1451 # $write_libobj - a libtool object file
cannam@124 1452 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@124 1453 #
cannam@124 1454 # Please DO NOT delete this file!
cannam@124 1455 # It is necessary for linking the library.
cannam@124 1456
cannam@124 1457 # Name of the PIC object.
cannam@124 1458 pic_object=$write_lobj
cannam@124 1459
cannam@124 1460 # Name of the non-PIC object
cannam@124 1461 non_pic_object=$write_oldobj
cannam@124 1462
cannam@124 1463 EOF
cannam@124 1464 $MV "${write_libobj}T" "${write_libobj}"
cannam@124 1465 }
cannam@124 1466 }
cannam@124 1467
cannam@124 1468
cannam@124 1469 ##################################################
cannam@124 1470 # FILE NAME AND PATH CONVERSION HELPER FUNCTIONS #
cannam@124 1471 ##################################################
cannam@124 1472
cannam@124 1473 # func_convert_core_file_wine_to_w32 ARG
cannam@124 1474 # Helper function used by file name conversion functions when $build is *nix,
cannam@124 1475 # and $host is mingw, cygwin, or some other w32 environment. Relies on a
cannam@124 1476 # correctly configured wine environment available, with the winepath program
cannam@124 1477 # in $build's $PATH.
cannam@124 1478 #
cannam@124 1479 # ARG is the $build file name to be converted to w32 format.
cannam@124 1480 # Result is available in $func_convert_core_file_wine_to_w32_result, and will
cannam@124 1481 # be empty on error (or when ARG is empty)
cannam@124 1482 func_convert_core_file_wine_to_w32 ()
cannam@124 1483 {
cannam@124 1484 $opt_debug
cannam@124 1485 func_convert_core_file_wine_to_w32_result="$1"
cannam@124 1486 if test -n "$1"; then
cannam@124 1487 # Unfortunately, winepath does not exit with a non-zero error code, so we
cannam@124 1488 # are forced to check the contents of stdout. On the other hand, if the
cannam@124 1489 # command is not found, the shell will set an exit code of 127 and print
cannam@124 1490 # *an error message* to stdout. So we must check for both error code of
cannam@124 1491 # zero AND non-empty stdout, which explains the odd construction:
cannam@124 1492 func_convert_core_file_wine_to_w32_tmp=`winepath -w "$1" 2>/dev/null`
cannam@124 1493 if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then
cannam@124 1494 func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" |
cannam@124 1495 $SED -e "$lt_sed_naive_backslashify"`
cannam@124 1496 else
cannam@124 1497 func_convert_core_file_wine_to_w32_result=
cannam@124 1498 fi
cannam@124 1499 fi
cannam@124 1500 }
cannam@124 1501 # end: func_convert_core_file_wine_to_w32
cannam@124 1502
cannam@124 1503
cannam@124 1504 # func_convert_core_path_wine_to_w32 ARG
cannam@124 1505 # Helper function used by path conversion functions when $build is *nix, and
cannam@124 1506 # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly
cannam@124 1507 # configured wine environment available, with the winepath program in $build's
cannam@124 1508 # $PATH. Assumes ARG has no leading or trailing path separator characters.
cannam@124 1509 #
cannam@124 1510 # ARG is path to be converted from $build format to win32.
cannam@124 1511 # Result is available in $func_convert_core_path_wine_to_w32_result.
cannam@124 1512 # Unconvertible file (directory) names in ARG are skipped; if no directory names
cannam@124 1513 # are convertible, then the result may be empty.
cannam@124 1514 func_convert_core_path_wine_to_w32 ()
cannam@124 1515 {
cannam@124 1516 $opt_debug
cannam@124 1517 # unfortunately, winepath doesn't convert paths, only file names
cannam@124 1518 func_convert_core_path_wine_to_w32_result=""
cannam@124 1519 if test -n "$1"; then
cannam@124 1520 oldIFS=$IFS
cannam@124 1521 IFS=:
cannam@124 1522 for func_convert_core_path_wine_to_w32_f in $1; do
cannam@124 1523 IFS=$oldIFS
cannam@124 1524 func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f"
cannam@124 1525 if test -n "$func_convert_core_file_wine_to_w32_result" ; then
cannam@124 1526 if test -z "$func_convert_core_path_wine_to_w32_result"; then
cannam@124 1527 func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result"
cannam@124 1528 else
cannam@124 1529 func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result"
cannam@124 1530 fi
cannam@124 1531 fi
cannam@124 1532 done
cannam@124 1533 IFS=$oldIFS
cannam@124 1534 fi
cannam@124 1535 }
cannam@124 1536 # end: func_convert_core_path_wine_to_w32
cannam@124 1537
cannam@124 1538
cannam@124 1539 # func_cygpath ARGS...
cannam@124 1540 # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when
cannam@124 1541 # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2)
cannam@124 1542 # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or
cannam@124 1543 # (2), returns the Cygwin file name or path in func_cygpath_result (input
cannam@124 1544 # file name or path is assumed to be in w32 format, as previously converted
cannam@124 1545 # from $build's *nix or MSYS format). In case (3), returns the w32 file name
cannam@124 1546 # or path in func_cygpath_result (input file name or path is assumed to be in
cannam@124 1547 # Cygwin format). Returns an empty string on error.
cannam@124 1548 #
cannam@124 1549 # ARGS are passed to cygpath, with the last one being the file name or path to
cannam@124 1550 # be converted.
cannam@124 1551 #
cannam@124 1552 # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH
cannam@124 1553 # environment variable; do not put it in $PATH.
cannam@124 1554 func_cygpath ()
cannam@124 1555 {
cannam@124 1556 $opt_debug
cannam@124 1557 if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then
cannam@124 1558 func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null`
cannam@124 1559 if test "$?" -ne 0; then
cannam@124 1560 # on failure, ensure result is empty
cannam@124 1561 func_cygpath_result=
cannam@124 1562 fi
cannam@124 1563 else
cannam@124 1564 func_cygpath_result=
cannam@124 1565 func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'"
cannam@124 1566 fi
cannam@124 1567 }
cannam@124 1568 #end: func_cygpath
cannam@124 1569
cannam@124 1570
cannam@124 1571 # func_convert_core_msys_to_w32 ARG
cannam@124 1572 # Convert file name or path ARG from MSYS format to w32 format. Return
cannam@124 1573 # result in func_convert_core_msys_to_w32_result.
cannam@124 1574 func_convert_core_msys_to_w32 ()
cannam@124 1575 {
cannam@124 1576 $opt_debug
cannam@124 1577 # awkward: cmd appends spaces to result
cannam@124 1578 func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null |
cannam@124 1579 $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"`
cannam@124 1580 }
cannam@124 1581 #end: func_convert_core_msys_to_w32
cannam@124 1582
cannam@124 1583
cannam@124 1584 # func_convert_file_check ARG1 ARG2
cannam@124 1585 # Verify that ARG1 (a file name in $build format) was converted to $host
cannam@124 1586 # format in ARG2. Otherwise, emit an error message, but continue (resetting
cannam@124 1587 # func_to_host_file_result to ARG1).
cannam@124 1588 func_convert_file_check ()
cannam@124 1589 {
cannam@124 1590 $opt_debug
cannam@124 1591 if test -z "$2" && test -n "$1" ; then
cannam@124 1592 func_error "Could not determine host file name corresponding to"
cannam@124 1593 func_error " \`$1'"
cannam@124 1594 func_error "Continuing, but uninstalled executables may not work."
cannam@124 1595 # Fallback:
cannam@124 1596 func_to_host_file_result="$1"
cannam@124 1597 fi
cannam@124 1598 }
cannam@124 1599 # end func_convert_file_check
cannam@124 1600
cannam@124 1601
cannam@124 1602 # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH
cannam@124 1603 # Verify that FROM_PATH (a path in $build format) was converted to $host
cannam@124 1604 # format in TO_PATH. Otherwise, emit an error message, but continue, resetting
cannam@124 1605 # func_to_host_file_result to a simplistic fallback value (see below).
cannam@124 1606 func_convert_path_check ()
cannam@124 1607 {
cannam@124 1608 $opt_debug
cannam@124 1609 if test -z "$4" && test -n "$3"; then
cannam@124 1610 func_error "Could not determine the host path corresponding to"
cannam@124 1611 func_error " \`$3'"
cannam@124 1612 func_error "Continuing, but uninstalled executables may not work."
cannam@124 1613 # Fallback. This is a deliberately simplistic "conversion" and
cannam@124 1614 # should not be "improved". See libtool.info.
cannam@124 1615 if test "x$1" != "x$2"; then
cannam@124 1616 lt_replace_pathsep_chars="s|$1|$2|g"
cannam@124 1617 func_to_host_path_result=`echo "$3" |
cannam@124 1618 $SED -e "$lt_replace_pathsep_chars"`
cannam@124 1619 else
cannam@124 1620 func_to_host_path_result="$3"
cannam@124 1621 fi
cannam@124 1622 fi
cannam@124 1623 }
cannam@124 1624 # end func_convert_path_check
cannam@124 1625
cannam@124 1626
cannam@124 1627 # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG
cannam@124 1628 # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT
cannam@124 1629 # and appending REPL if ORIG matches BACKPAT.
cannam@124 1630 func_convert_path_front_back_pathsep ()
cannam@124 1631 {
cannam@124 1632 $opt_debug
cannam@124 1633 case $4 in
cannam@124 1634 $1 ) func_to_host_path_result="$3$func_to_host_path_result"
cannam@124 1635 ;;
cannam@124 1636 esac
cannam@124 1637 case $4 in
cannam@124 1638 $2 ) func_append func_to_host_path_result "$3"
cannam@124 1639 ;;
cannam@124 1640 esac
cannam@124 1641 }
cannam@124 1642 # end func_convert_path_front_back_pathsep
cannam@124 1643
cannam@124 1644
cannam@124 1645 ##################################################
cannam@124 1646 # $build to $host FILE NAME CONVERSION FUNCTIONS #
cannam@124 1647 ##################################################
cannam@124 1648 # invoked via `$to_host_file_cmd ARG'
cannam@124 1649 #
cannam@124 1650 # In each case, ARG is the path to be converted from $build to $host format.
cannam@124 1651 # Result will be available in $func_to_host_file_result.
cannam@124 1652
cannam@124 1653
cannam@124 1654 # func_to_host_file ARG
cannam@124 1655 # Converts the file name ARG from $build format to $host format. Return result
cannam@124 1656 # in func_to_host_file_result.
cannam@124 1657 func_to_host_file ()
cannam@124 1658 {
cannam@124 1659 $opt_debug
cannam@124 1660 $to_host_file_cmd "$1"
cannam@124 1661 }
cannam@124 1662 # end func_to_host_file
cannam@124 1663
cannam@124 1664
cannam@124 1665 # func_to_tool_file ARG LAZY
cannam@124 1666 # converts the file name ARG from $build format to toolchain format. Return
cannam@124 1667 # result in func_to_tool_file_result. If the conversion in use is listed
cannam@124 1668 # in (the comma separated) LAZY, no conversion takes place.
cannam@124 1669 func_to_tool_file ()
cannam@124 1670 {
cannam@124 1671 $opt_debug
cannam@124 1672 case ,$2, in
cannam@124 1673 *,"$to_tool_file_cmd",*)
cannam@124 1674 func_to_tool_file_result=$1
cannam@124 1675 ;;
cannam@124 1676 *)
cannam@124 1677 $to_tool_file_cmd "$1"
cannam@124 1678 func_to_tool_file_result=$func_to_host_file_result
cannam@124 1679 ;;
cannam@124 1680 esac
cannam@124 1681 }
cannam@124 1682 # end func_to_tool_file
cannam@124 1683
cannam@124 1684
cannam@124 1685 # func_convert_file_noop ARG
cannam@124 1686 # Copy ARG to func_to_host_file_result.
cannam@124 1687 func_convert_file_noop ()
cannam@124 1688 {
cannam@124 1689 func_to_host_file_result="$1"
cannam@124 1690 }
cannam@124 1691 # end func_convert_file_noop
cannam@124 1692
cannam@124 1693
cannam@124 1694 # func_convert_file_msys_to_w32 ARG
cannam@124 1695 # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic
cannam@124 1696 # conversion to w32 is not available inside the cwrapper. Returns result in
cannam@124 1697 # func_to_host_file_result.
cannam@124 1698 func_convert_file_msys_to_w32 ()
cannam@124 1699 {
cannam@124 1700 $opt_debug
cannam@124 1701 func_to_host_file_result="$1"
cannam@124 1702 if test -n "$1"; then
cannam@124 1703 func_convert_core_msys_to_w32 "$1"
cannam@124 1704 func_to_host_file_result="$func_convert_core_msys_to_w32_result"
cannam@124 1705 fi
cannam@124 1706 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@124 1707 }
cannam@124 1708 # end func_convert_file_msys_to_w32
cannam@124 1709
cannam@124 1710
cannam@124 1711 # func_convert_file_cygwin_to_w32 ARG
cannam@124 1712 # Convert file name ARG from Cygwin to w32 format. Returns result in
cannam@124 1713 # func_to_host_file_result.
cannam@124 1714 func_convert_file_cygwin_to_w32 ()
cannam@124 1715 {
cannam@124 1716 $opt_debug
cannam@124 1717 func_to_host_file_result="$1"
cannam@124 1718 if test -n "$1"; then
cannam@124 1719 # because $build is cygwin, we call "the" cygpath in $PATH; no need to use
cannam@124 1720 # LT_CYGPATH in this case.
cannam@124 1721 func_to_host_file_result=`cygpath -m "$1"`
cannam@124 1722 fi
cannam@124 1723 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@124 1724 }
cannam@124 1725 # end func_convert_file_cygwin_to_w32
cannam@124 1726
cannam@124 1727
cannam@124 1728 # func_convert_file_nix_to_w32 ARG
cannam@124 1729 # Convert file name ARG from *nix to w32 format. Requires a wine environment
cannam@124 1730 # and a working winepath. Returns result in func_to_host_file_result.
cannam@124 1731 func_convert_file_nix_to_w32 ()
cannam@124 1732 {
cannam@124 1733 $opt_debug
cannam@124 1734 func_to_host_file_result="$1"
cannam@124 1735 if test -n "$1"; then
cannam@124 1736 func_convert_core_file_wine_to_w32 "$1"
cannam@124 1737 func_to_host_file_result="$func_convert_core_file_wine_to_w32_result"
cannam@124 1738 fi
cannam@124 1739 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@124 1740 }
cannam@124 1741 # end func_convert_file_nix_to_w32
cannam@124 1742
cannam@124 1743
cannam@124 1744 # func_convert_file_msys_to_cygwin ARG
cannam@124 1745 # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set.
cannam@124 1746 # Returns result in func_to_host_file_result.
cannam@124 1747 func_convert_file_msys_to_cygwin ()
cannam@124 1748 {
cannam@124 1749 $opt_debug
cannam@124 1750 func_to_host_file_result="$1"
cannam@124 1751 if test -n "$1"; then
cannam@124 1752 func_convert_core_msys_to_w32 "$1"
cannam@124 1753 func_cygpath -u "$func_convert_core_msys_to_w32_result"
cannam@124 1754 func_to_host_file_result="$func_cygpath_result"
cannam@124 1755 fi
cannam@124 1756 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@124 1757 }
cannam@124 1758 # end func_convert_file_msys_to_cygwin
cannam@124 1759
cannam@124 1760
cannam@124 1761 # func_convert_file_nix_to_cygwin ARG
cannam@124 1762 # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed
cannam@124 1763 # in a wine environment, working winepath, and LT_CYGPATH set. Returns result
cannam@124 1764 # in func_to_host_file_result.
cannam@124 1765 func_convert_file_nix_to_cygwin ()
cannam@124 1766 {
cannam@124 1767 $opt_debug
cannam@124 1768 func_to_host_file_result="$1"
cannam@124 1769 if test -n "$1"; then
cannam@124 1770 # convert from *nix to w32, then use cygpath to convert from w32 to cygwin.
cannam@124 1771 func_convert_core_file_wine_to_w32 "$1"
cannam@124 1772 func_cygpath -u "$func_convert_core_file_wine_to_w32_result"
cannam@124 1773 func_to_host_file_result="$func_cygpath_result"
cannam@124 1774 fi
cannam@124 1775 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@124 1776 }
cannam@124 1777 # end func_convert_file_nix_to_cygwin
cannam@124 1778
cannam@124 1779
cannam@124 1780 #############################################
cannam@124 1781 # $build to $host PATH CONVERSION FUNCTIONS #
cannam@124 1782 #############################################
cannam@124 1783 # invoked via `$to_host_path_cmd ARG'
cannam@124 1784 #
cannam@124 1785 # In each case, ARG is the path to be converted from $build to $host format.
cannam@124 1786 # The result will be available in $func_to_host_path_result.
cannam@124 1787 #
cannam@124 1788 # Path separators are also converted from $build format to $host format. If
cannam@124 1789 # ARG begins or ends with a path separator character, it is preserved (but
cannam@124 1790 # converted to $host format) on output.
cannam@124 1791 #
cannam@124 1792 # All path conversion functions are named using the following convention:
cannam@124 1793 # file name conversion function : func_convert_file_X_to_Y ()
cannam@124 1794 # path conversion function : func_convert_path_X_to_Y ()
cannam@124 1795 # where, for any given $build/$host combination the 'X_to_Y' value is the
cannam@124 1796 # same. If conversion functions are added for new $build/$host combinations,
cannam@124 1797 # the two new functions must follow this pattern, or func_init_to_host_path_cmd
cannam@124 1798 # will break.
cannam@124 1799
cannam@124 1800
cannam@124 1801 # func_init_to_host_path_cmd
cannam@124 1802 # Ensures that function "pointer" variable $to_host_path_cmd is set to the
cannam@124 1803 # appropriate value, based on the value of $to_host_file_cmd.
cannam@124 1804 to_host_path_cmd=
cannam@124 1805 func_init_to_host_path_cmd ()
cannam@124 1806 {
cannam@124 1807 $opt_debug
cannam@124 1808 if test -z "$to_host_path_cmd"; then
cannam@124 1809 func_stripname 'func_convert_file_' '' "$to_host_file_cmd"
cannam@124 1810 to_host_path_cmd="func_convert_path_${func_stripname_result}"
cannam@124 1811 fi
cannam@124 1812 }
cannam@124 1813
cannam@124 1814
cannam@124 1815 # func_to_host_path ARG
cannam@124 1816 # Converts the path ARG from $build format to $host format. Return result
cannam@124 1817 # in func_to_host_path_result.
cannam@124 1818 func_to_host_path ()
cannam@124 1819 {
cannam@124 1820 $opt_debug
cannam@124 1821 func_init_to_host_path_cmd
cannam@124 1822 $to_host_path_cmd "$1"
cannam@124 1823 }
cannam@124 1824 # end func_to_host_path
cannam@124 1825
cannam@124 1826
cannam@124 1827 # func_convert_path_noop ARG
cannam@124 1828 # Copy ARG to func_to_host_path_result.
cannam@124 1829 func_convert_path_noop ()
cannam@124 1830 {
cannam@124 1831 func_to_host_path_result="$1"
cannam@124 1832 }
cannam@124 1833 # end func_convert_path_noop
cannam@124 1834
cannam@124 1835
cannam@124 1836 # func_convert_path_msys_to_w32 ARG
cannam@124 1837 # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic
cannam@124 1838 # conversion to w32 is not available inside the cwrapper. Returns result in
cannam@124 1839 # func_to_host_path_result.
cannam@124 1840 func_convert_path_msys_to_w32 ()
cannam@124 1841 {
cannam@124 1842 $opt_debug
cannam@124 1843 func_to_host_path_result="$1"
cannam@124 1844 if test -n "$1"; then
cannam@124 1845 # Remove leading and trailing path separator characters from ARG. MSYS
cannam@124 1846 # behavior is inconsistent here; cygpath turns them into '.;' and ';.';
cannam@124 1847 # and winepath ignores them completely.
cannam@124 1848 func_stripname : : "$1"
cannam@124 1849 func_to_host_path_tmp1=$func_stripname_result
cannam@124 1850 func_convert_core_msys_to_w32 "$func_to_host_path_tmp1"
cannam@124 1851 func_to_host_path_result="$func_convert_core_msys_to_w32_result"
cannam@124 1852 func_convert_path_check : ";" \
cannam@124 1853 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@124 1854 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
cannam@124 1855 fi
cannam@124 1856 }
cannam@124 1857 # end func_convert_path_msys_to_w32
cannam@124 1858
cannam@124 1859
cannam@124 1860 # func_convert_path_cygwin_to_w32 ARG
cannam@124 1861 # Convert path ARG from Cygwin to w32 format. Returns result in
cannam@124 1862 # func_to_host_file_result.
cannam@124 1863 func_convert_path_cygwin_to_w32 ()
cannam@124 1864 {
cannam@124 1865 $opt_debug
cannam@124 1866 func_to_host_path_result="$1"
cannam@124 1867 if test -n "$1"; then
cannam@124 1868 # See func_convert_path_msys_to_w32:
cannam@124 1869 func_stripname : : "$1"
cannam@124 1870 func_to_host_path_tmp1=$func_stripname_result
cannam@124 1871 func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"`
cannam@124 1872 func_convert_path_check : ";" \
cannam@124 1873 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@124 1874 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
cannam@124 1875 fi
cannam@124 1876 }
cannam@124 1877 # end func_convert_path_cygwin_to_w32
cannam@124 1878
cannam@124 1879
cannam@124 1880 # func_convert_path_nix_to_w32 ARG
cannam@124 1881 # Convert path ARG from *nix to w32 format. Requires a wine environment and
cannam@124 1882 # a working winepath. Returns result in func_to_host_file_result.
cannam@124 1883 func_convert_path_nix_to_w32 ()
cannam@124 1884 {
cannam@124 1885 $opt_debug
cannam@124 1886 func_to_host_path_result="$1"
cannam@124 1887 if test -n "$1"; then
cannam@124 1888 # See func_convert_path_msys_to_w32:
cannam@124 1889 func_stripname : : "$1"
cannam@124 1890 func_to_host_path_tmp1=$func_stripname_result
cannam@124 1891 func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1"
cannam@124 1892 func_to_host_path_result="$func_convert_core_path_wine_to_w32_result"
cannam@124 1893 func_convert_path_check : ";" \
cannam@124 1894 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@124 1895 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
cannam@124 1896 fi
cannam@124 1897 }
cannam@124 1898 # end func_convert_path_nix_to_w32
cannam@124 1899
cannam@124 1900
cannam@124 1901 # func_convert_path_msys_to_cygwin ARG
cannam@124 1902 # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set.
cannam@124 1903 # Returns result in func_to_host_file_result.
cannam@124 1904 func_convert_path_msys_to_cygwin ()
cannam@124 1905 {
cannam@124 1906 $opt_debug
cannam@124 1907 func_to_host_path_result="$1"
cannam@124 1908 if test -n "$1"; then
cannam@124 1909 # See func_convert_path_msys_to_w32:
cannam@124 1910 func_stripname : : "$1"
cannam@124 1911 func_to_host_path_tmp1=$func_stripname_result
cannam@124 1912 func_convert_core_msys_to_w32 "$func_to_host_path_tmp1"
cannam@124 1913 func_cygpath -u -p "$func_convert_core_msys_to_w32_result"
cannam@124 1914 func_to_host_path_result="$func_cygpath_result"
cannam@124 1915 func_convert_path_check : : \
cannam@124 1916 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@124 1917 func_convert_path_front_back_pathsep ":*" "*:" : "$1"
cannam@124 1918 fi
cannam@124 1919 }
cannam@124 1920 # end func_convert_path_msys_to_cygwin
cannam@124 1921
cannam@124 1922
cannam@124 1923 # func_convert_path_nix_to_cygwin ARG
cannam@124 1924 # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a
cannam@124 1925 # a wine environment, working winepath, and LT_CYGPATH set. Returns result in
cannam@124 1926 # func_to_host_file_result.
cannam@124 1927 func_convert_path_nix_to_cygwin ()
cannam@124 1928 {
cannam@124 1929 $opt_debug
cannam@124 1930 func_to_host_path_result="$1"
cannam@124 1931 if test -n "$1"; then
cannam@124 1932 # Remove leading and trailing path separator characters from
cannam@124 1933 # ARG. msys behavior is inconsistent here, cygpath turns them
cannam@124 1934 # into '.;' and ';.', and winepath ignores them completely.
cannam@124 1935 func_stripname : : "$1"
cannam@124 1936 func_to_host_path_tmp1=$func_stripname_result
cannam@124 1937 func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1"
cannam@124 1938 func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result"
cannam@124 1939 func_to_host_path_result="$func_cygpath_result"
cannam@124 1940 func_convert_path_check : : \
cannam@124 1941 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@124 1942 func_convert_path_front_back_pathsep ":*" "*:" : "$1"
cannam@124 1943 fi
cannam@124 1944 }
cannam@124 1945 # end func_convert_path_nix_to_cygwin
cannam@124 1946
cannam@124 1947
cannam@124 1948 # func_mode_compile arg...
cannam@124 1949 func_mode_compile ()
cannam@124 1950 {
cannam@124 1951 $opt_debug
cannam@124 1952 # Get the compilation command and the source file.
cannam@124 1953 base_compile=
cannam@124 1954 srcfile="$nonopt" # always keep a non-empty value in "srcfile"
cannam@124 1955 suppress_opt=yes
cannam@124 1956 suppress_output=
cannam@124 1957 arg_mode=normal
cannam@124 1958 libobj=
cannam@124 1959 later=
cannam@124 1960 pie_flag=
cannam@124 1961
cannam@124 1962 for arg
cannam@124 1963 do
cannam@124 1964 case $arg_mode in
cannam@124 1965 arg )
cannam@124 1966 # do not "continue". Instead, add this to base_compile
cannam@124 1967 lastarg="$arg"
cannam@124 1968 arg_mode=normal
cannam@124 1969 ;;
cannam@124 1970
cannam@124 1971 target )
cannam@124 1972 libobj="$arg"
cannam@124 1973 arg_mode=normal
cannam@124 1974 continue
cannam@124 1975 ;;
cannam@124 1976
cannam@124 1977 normal )
cannam@124 1978 # Accept any command-line options.
cannam@124 1979 case $arg in
cannam@124 1980 -o)
cannam@124 1981 test -n "$libobj" && \
cannam@124 1982 func_fatal_error "you cannot specify \`-o' more than once"
cannam@124 1983 arg_mode=target
cannam@124 1984 continue
cannam@124 1985 ;;
cannam@124 1986
cannam@124 1987 -pie | -fpie | -fPIE)
cannam@124 1988 func_append pie_flag " $arg"
cannam@124 1989 continue
cannam@124 1990 ;;
cannam@124 1991
cannam@124 1992 -shared | -static | -prefer-pic | -prefer-non-pic)
cannam@124 1993 func_append later " $arg"
cannam@124 1994 continue
cannam@124 1995 ;;
cannam@124 1996
cannam@124 1997 -no-suppress)
cannam@124 1998 suppress_opt=no
cannam@124 1999 continue
cannam@124 2000 ;;
cannam@124 2001
cannam@124 2002 -Xcompiler)
cannam@124 2003 arg_mode=arg # the next one goes into the "base_compile" arg list
cannam@124 2004 continue # The current "srcfile" will either be retained or
cannam@124 2005 ;; # replaced later. I would guess that would be a bug.
cannam@124 2006
cannam@124 2007 -Wc,*)
cannam@124 2008 func_stripname '-Wc,' '' "$arg"
cannam@124 2009 args=$func_stripname_result
cannam@124 2010 lastarg=
cannam@124 2011 save_ifs="$IFS"; IFS=','
cannam@124 2012 for arg in $args; do
cannam@124 2013 IFS="$save_ifs"
cannam@124 2014 func_append_quoted lastarg "$arg"
cannam@124 2015 done
cannam@124 2016 IFS="$save_ifs"
cannam@124 2017 func_stripname ' ' '' "$lastarg"
cannam@124 2018 lastarg=$func_stripname_result
cannam@124 2019
cannam@124 2020 # Add the arguments to base_compile.
cannam@124 2021 func_append base_compile " $lastarg"
cannam@124 2022 continue
cannam@124 2023 ;;
cannam@124 2024
cannam@124 2025 *)
cannam@124 2026 # Accept the current argument as the source file.
cannam@124 2027 # The previous "srcfile" becomes the current argument.
cannam@124 2028 #
cannam@124 2029 lastarg="$srcfile"
cannam@124 2030 srcfile="$arg"
cannam@124 2031 ;;
cannam@124 2032 esac # case $arg
cannam@124 2033 ;;
cannam@124 2034 esac # case $arg_mode
cannam@124 2035
cannam@124 2036 # Aesthetically quote the previous argument.
cannam@124 2037 func_append_quoted base_compile "$lastarg"
cannam@124 2038 done # for arg
cannam@124 2039
cannam@124 2040 case $arg_mode in
cannam@124 2041 arg)
cannam@124 2042 func_fatal_error "you must specify an argument for -Xcompile"
cannam@124 2043 ;;
cannam@124 2044 target)
cannam@124 2045 func_fatal_error "you must specify a target with \`-o'"
cannam@124 2046 ;;
cannam@124 2047 *)
cannam@124 2048 # Get the name of the library object.
cannam@124 2049 test -z "$libobj" && {
cannam@124 2050 func_basename "$srcfile"
cannam@124 2051 libobj="$func_basename_result"
cannam@124 2052 }
cannam@124 2053 ;;
cannam@124 2054 esac
cannam@124 2055
cannam@124 2056 # Recognize several different file suffixes.
cannam@124 2057 # If the user specifies -o file.o, it is replaced with file.lo
cannam@124 2058 case $libobj in
cannam@124 2059 *.[cCFSifmso] | \
cannam@124 2060 *.ada | *.adb | *.ads | *.asm | \
cannam@124 2061 *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \
cannam@124 2062 *.[fF][09]? | *.for | *.java | *.obj | *.sx | *.cu | *.cup)
cannam@124 2063 func_xform "$libobj"
cannam@124 2064 libobj=$func_xform_result
cannam@124 2065 ;;
cannam@124 2066 esac
cannam@124 2067
cannam@124 2068 case $libobj in
cannam@124 2069 *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;;
cannam@124 2070 *)
cannam@124 2071 func_fatal_error "cannot determine name of library object from \`$libobj'"
cannam@124 2072 ;;
cannam@124 2073 esac
cannam@124 2074
cannam@124 2075 func_infer_tag $base_compile
cannam@124 2076
cannam@124 2077 for arg in $later; do
cannam@124 2078 case $arg in
cannam@124 2079 -shared)
cannam@124 2080 test "$build_libtool_libs" != yes && \
cannam@124 2081 func_fatal_configuration "can not build a shared library"
cannam@124 2082 build_old_libs=no
cannam@124 2083 continue
cannam@124 2084 ;;
cannam@124 2085
cannam@124 2086 -static)
cannam@124 2087 build_libtool_libs=no
cannam@124 2088 build_old_libs=yes
cannam@124 2089 continue
cannam@124 2090 ;;
cannam@124 2091
cannam@124 2092 -prefer-pic)
cannam@124 2093 pic_mode=yes
cannam@124 2094 continue
cannam@124 2095 ;;
cannam@124 2096
cannam@124 2097 -prefer-non-pic)
cannam@124 2098 pic_mode=no
cannam@124 2099 continue
cannam@124 2100 ;;
cannam@124 2101 esac
cannam@124 2102 done
cannam@124 2103
cannam@124 2104 func_quote_for_eval "$libobj"
cannam@124 2105 test "X$libobj" != "X$func_quote_for_eval_result" \
cannam@124 2106 && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \
cannam@124 2107 && func_warning "libobj name \`$libobj' may not contain shell special characters."
cannam@124 2108 func_dirname_and_basename "$obj" "/" ""
cannam@124 2109 objname="$func_basename_result"
cannam@124 2110 xdir="$func_dirname_result"
cannam@124 2111 lobj=${xdir}$objdir/$objname
cannam@124 2112
cannam@124 2113 test -z "$base_compile" && \
cannam@124 2114 func_fatal_help "you must specify a compilation command"
cannam@124 2115
cannam@124 2116 # Delete any leftover library objects.
cannam@124 2117 if test "$build_old_libs" = yes; then
cannam@124 2118 removelist="$obj $lobj $libobj ${libobj}T"
cannam@124 2119 else
cannam@124 2120 removelist="$lobj $libobj ${libobj}T"
cannam@124 2121 fi
cannam@124 2122
cannam@124 2123 # On Cygwin there's no "real" PIC flag so we must build both object types
cannam@124 2124 case $host_os in
cannam@124 2125 cygwin* | mingw* | pw32* | os2* | cegcc*)
cannam@124 2126 pic_mode=default
cannam@124 2127 ;;
cannam@124 2128 esac
cannam@124 2129 if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then
cannam@124 2130 # non-PIC code in shared libraries is not supported
cannam@124 2131 pic_mode=default
cannam@124 2132 fi
cannam@124 2133
cannam@124 2134 # Calculate the filename of the output object if compiler does
cannam@124 2135 # not support -o with -c
cannam@124 2136 if test "$compiler_c_o" = no; then
cannam@124 2137 output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext}
cannam@124 2138 lockfile="$output_obj.lock"
cannam@124 2139 else
cannam@124 2140 output_obj=
cannam@124 2141 need_locks=no
cannam@124 2142 lockfile=
cannam@124 2143 fi
cannam@124 2144
cannam@124 2145 # Lock this critical section if it is needed
cannam@124 2146 # We use this script file to make the link, it avoids creating a new file
cannam@124 2147 if test "$need_locks" = yes; then
cannam@124 2148 until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do
cannam@124 2149 func_echo "Waiting for $lockfile to be removed"
cannam@124 2150 sleep 2
cannam@124 2151 done
cannam@124 2152 elif test "$need_locks" = warn; then
cannam@124 2153 if test -f "$lockfile"; then
cannam@124 2154 $ECHO "\
cannam@124 2155 *** ERROR, $lockfile exists and contains:
cannam@124 2156 `cat $lockfile 2>/dev/null`
cannam@124 2157
cannam@124 2158 This indicates that another process is trying to use the same
cannam@124 2159 temporary object file, and libtool could not work around it because
cannam@124 2160 your compiler does not support \`-c' and \`-o' together. If you
cannam@124 2161 repeat this compilation, it may succeed, by chance, but you had better
cannam@124 2162 avoid parallel builds (make -j) in this platform, or get a better
cannam@124 2163 compiler."
cannam@124 2164
cannam@124 2165 $opt_dry_run || $RM $removelist
cannam@124 2166 exit $EXIT_FAILURE
cannam@124 2167 fi
cannam@124 2168 func_append removelist " $output_obj"
cannam@124 2169 $ECHO "$srcfile" > "$lockfile"
cannam@124 2170 fi
cannam@124 2171
cannam@124 2172 $opt_dry_run || $RM $removelist
cannam@124 2173 func_append removelist " $lockfile"
cannam@124 2174 trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15
cannam@124 2175
cannam@124 2176 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32
cannam@124 2177 srcfile=$func_to_tool_file_result
cannam@124 2178 func_quote_for_eval "$srcfile"
cannam@124 2179 qsrcfile=$func_quote_for_eval_result
cannam@124 2180
cannam@124 2181 # Only build a PIC object if we are building libtool libraries.
cannam@124 2182 if test "$build_libtool_libs" = yes; then
cannam@124 2183 # Without this assignment, base_compile gets emptied.
cannam@124 2184 fbsd_hideous_sh_bug=$base_compile
cannam@124 2185
cannam@124 2186 if test "$pic_mode" != no; then
cannam@124 2187 command="$base_compile $qsrcfile $pic_flag"
cannam@124 2188 else
cannam@124 2189 # Don't build PIC code
cannam@124 2190 command="$base_compile $qsrcfile"
cannam@124 2191 fi
cannam@124 2192
cannam@124 2193 func_mkdir_p "$xdir$objdir"
cannam@124 2194
cannam@124 2195 if test -z "$output_obj"; then
cannam@124 2196 # Place PIC objects in $objdir
cannam@124 2197 func_append command " -o $lobj"
cannam@124 2198 fi
cannam@124 2199
cannam@124 2200 func_show_eval_locale "$command" \
cannam@124 2201 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE'
cannam@124 2202
cannam@124 2203 if test "$need_locks" = warn &&
cannam@124 2204 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
cannam@124 2205 $ECHO "\
cannam@124 2206 *** ERROR, $lockfile contains:
cannam@124 2207 `cat $lockfile 2>/dev/null`
cannam@124 2208
cannam@124 2209 but it should contain:
cannam@124 2210 $srcfile
cannam@124 2211
cannam@124 2212 This indicates that another process is trying to use the same
cannam@124 2213 temporary object file, and libtool could not work around it because
cannam@124 2214 your compiler does not support \`-c' and \`-o' together. If you
cannam@124 2215 repeat this compilation, it may succeed, by chance, but you had better
cannam@124 2216 avoid parallel builds (make -j) in this platform, or get a better
cannam@124 2217 compiler."
cannam@124 2218
cannam@124 2219 $opt_dry_run || $RM $removelist
cannam@124 2220 exit $EXIT_FAILURE
cannam@124 2221 fi
cannam@124 2222
cannam@124 2223 # Just move the object if needed, then go on to compile the next one
cannam@124 2224 if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then
cannam@124 2225 func_show_eval '$MV "$output_obj" "$lobj"' \
cannam@124 2226 'error=$?; $opt_dry_run || $RM $removelist; exit $error'
cannam@124 2227 fi
cannam@124 2228
cannam@124 2229 # Allow error messages only from the first compilation.
cannam@124 2230 if test "$suppress_opt" = yes; then
cannam@124 2231 suppress_output=' >/dev/null 2>&1'
cannam@124 2232 fi
cannam@124 2233 fi
cannam@124 2234
cannam@124 2235 # Only build a position-dependent object if we build old libraries.
cannam@124 2236 if test "$build_old_libs" = yes; then
cannam@124 2237 if test "$pic_mode" != yes; then
cannam@124 2238 # Don't build PIC code
cannam@124 2239 command="$base_compile $qsrcfile$pie_flag"
cannam@124 2240 else
cannam@124 2241 command="$base_compile $qsrcfile $pic_flag"
cannam@124 2242 fi
cannam@124 2243 if test "$compiler_c_o" = yes; then
cannam@124 2244 func_append command " -o $obj"
cannam@124 2245 fi
cannam@124 2246
cannam@124 2247 # Suppress compiler output if we already did a PIC compilation.
cannam@124 2248 func_append command "$suppress_output"
cannam@124 2249 func_show_eval_locale "$command" \
cannam@124 2250 '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE'
cannam@124 2251
cannam@124 2252 if test "$need_locks" = warn &&
cannam@124 2253 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
cannam@124 2254 $ECHO "\
cannam@124 2255 *** ERROR, $lockfile contains:
cannam@124 2256 `cat $lockfile 2>/dev/null`
cannam@124 2257
cannam@124 2258 but it should contain:
cannam@124 2259 $srcfile
cannam@124 2260
cannam@124 2261 This indicates that another process is trying to use the same
cannam@124 2262 temporary object file, and libtool could not work around it because
cannam@124 2263 your compiler does not support \`-c' and \`-o' together. If you
cannam@124 2264 repeat this compilation, it may succeed, by chance, but you had better
cannam@124 2265 avoid parallel builds (make -j) in this platform, or get a better
cannam@124 2266 compiler."
cannam@124 2267
cannam@124 2268 $opt_dry_run || $RM $removelist
cannam@124 2269 exit $EXIT_FAILURE
cannam@124 2270 fi
cannam@124 2271
cannam@124 2272 # Just move the object if needed
cannam@124 2273 if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then
cannam@124 2274 func_show_eval '$MV "$output_obj" "$obj"' \
cannam@124 2275 'error=$?; $opt_dry_run || $RM $removelist; exit $error'
cannam@124 2276 fi
cannam@124 2277 fi
cannam@124 2278
cannam@124 2279 $opt_dry_run || {
cannam@124 2280 func_write_libtool_object "$libobj" "$objdir/$objname" "$objname"
cannam@124 2281
cannam@124 2282 # Unlock the critical section if it was locked
cannam@124 2283 if test "$need_locks" != no; then
cannam@124 2284 removelist=$lockfile
cannam@124 2285 $RM "$lockfile"
cannam@124 2286 fi
cannam@124 2287 }
cannam@124 2288
cannam@124 2289 exit $EXIT_SUCCESS
cannam@124 2290 }
cannam@124 2291
cannam@124 2292 $opt_help || {
cannam@124 2293 test "$opt_mode" = compile && func_mode_compile ${1+"$@"}
cannam@124 2294 }
cannam@124 2295
cannam@124 2296 func_mode_help ()
cannam@124 2297 {
cannam@124 2298 # We need to display help for each of the modes.
cannam@124 2299 case $opt_mode in
cannam@124 2300 "")
cannam@124 2301 # Generic help is extracted from the usage comments
cannam@124 2302 # at the start of this file.
cannam@124 2303 func_help
cannam@124 2304 ;;
cannam@124 2305
cannam@124 2306 clean)
cannam@124 2307 $ECHO \
cannam@124 2308 "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
cannam@124 2309
cannam@124 2310 Remove files from the build directory.
cannam@124 2311
cannam@124 2312 RM is the name of the program to use to delete files associated with each FILE
cannam@124 2313 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
cannam@124 2314 to RM.
cannam@124 2315
cannam@124 2316 If FILE is a libtool library, object or program, all the files associated
cannam@124 2317 with it are deleted. Otherwise, only FILE itself is deleted using RM."
cannam@124 2318 ;;
cannam@124 2319
cannam@124 2320 compile)
cannam@124 2321 $ECHO \
cannam@124 2322 "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
cannam@124 2323
cannam@124 2324 Compile a source file into a libtool library object.
cannam@124 2325
cannam@124 2326 This mode accepts the following additional options:
cannam@124 2327
cannam@124 2328 -o OUTPUT-FILE set the output file name to OUTPUT-FILE
cannam@124 2329 -no-suppress do not suppress compiler output for multiple passes
cannam@124 2330 -prefer-pic try to build PIC objects only
cannam@124 2331 -prefer-non-pic try to build non-PIC objects only
cannam@124 2332 -shared do not build a \`.o' file suitable for static linking
cannam@124 2333 -static only build a \`.o' file suitable for static linking
cannam@124 2334 -Wc,FLAG pass FLAG directly to the compiler
cannam@124 2335
cannam@124 2336 COMPILE-COMMAND is a command to be used in creating a \`standard' object file
cannam@124 2337 from the given SOURCEFILE.
cannam@124 2338
cannam@124 2339 The output file name is determined by removing the directory component from
cannam@124 2340 SOURCEFILE, then substituting the C source code suffix \`.c' with the
cannam@124 2341 library object suffix, \`.lo'."
cannam@124 2342 ;;
cannam@124 2343
cannam@124 2344 execute)
cannam@124 2345 $ECHO \
cannam@124 2346 "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]...
cannam@124 2347
cannam@124 2348 Automatically set library path, then run a program.
cannam@124 2349
cannam@124 2350 This mode accepts the following additional options:
cannam@124 2351
cannam@124 2352 -dlopen FILE add the directory containing FILE to the library path
cannam@124 2353
cannam@124 2354 This mode sets the library path environment variable according to \`-dlopen'
cannam@124 2355 flags.
cannam@124 2356
cannam@124 2357 If any of the ARGS are libtool executable wrappers, then they are translated
cannam@124 2358 into their corresponding uninstalled binary, and any of their required library
cannam@124 2359 directories are added to the library path.
cannam@124 2360
cannam@124 2361 Then, COMMAND is executed, with ARGS as arguments."
cannam@124 2362 ;;
cannam@124 2363
cannam@124 2364 finish)
cannam@124 2365 $ECHO \
cannam@124 2366 "Usage: $progname [OPTION]... --mode=finish [LIBDIR]...
cannam@124 2367
cannam@124 2368 Complete the installation of libtool libraries.
cannam@124 2369
cannam@124 2370 Each LIBDIR is a directory that contains libtool libraries.
cannam@124 2371
cannam@124 2372 The commands that this mode executes may require superuser privileges. Use
cannam@124 2373 the \`--dry-run' option if you just want to see what would be executed."
cannam@124 2374 ;;
cannam@124 2375
cannam@124 2376 install)
cannam@124 2377 $ECHO \
cannam@124 2378 "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND...
cannam@124 2379
cannam@124 2380 Install executables or libraries.
cannam@124 2381
cannam@124 2382 INSTALL-COMMAND is the installation command. The first component should be
cannam@124 2383 either the \`install' or \`cp' program.
cannam@124 2384
cannam@124 2385 The following components of INSTALL-COMMAND are treated specially:
cannam@124 2386
cannam@124 2387 -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation
cannam@124 2388
cannam@124 2389 The rest of the components are interpreted as arguments to that command (only
cannam@124 2390 BSD-compatible install options are recognized)."
cannam@124 2391 ;;
cannam@124 2392
cannam@124 2393 link)
cannam@124 2394 $ECHO \
cannam@124 2395 "Usage: $progname [OPTION]... --mode=link LINK-COMMAND...
cannam@124 2396
cannam@124 2397 Link object files or libraries together to form another library, or to
cannam@124 2398 create an executable program.
cannam@124 2399
cannam@124 2400 LINK-COMMAND is a command using the C compiler that you would use to create
cannam@124 2401 a program from several object files.
cannam@124 2402
cannam@124 2403 The following components of LINK-COMMAND are treated specially:
cannam@124 2404
cannam@124 2405 -all-static do not do any dynamic linking at all
cannam@124 2406 -avoid-version do not add a version suffix if possible
cannam@124 2407 -bindir BINDIR specify path to binaries directory (for systems where
cannam@124 2408 libraries must be found in the PATH setting at runtime)
cannam@124 2409 -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
cannam@124 2410 -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols
cannam@124 2411 -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
cannam@124 2412 -export-symbols SYMFILE
cannam@124 2413 try to export only the symbols listed in SYMFILE
cannam@124 2414 -export-symbols-regex REGEX
cannam@124 2415 try to export only the symbols matching REGEX
cannam@124 2416 -LLIBDIR search LIBDIR for required installed libraries
cannam@124 2417 -lNAME OUTPUT-FILE requires the installed library libNAME
cannam@124 2418 -module build a library that can dlopened
cannam@124 2419 -no-fast-install disable the fast-install mode
cannam@124 2420 -no-install link a not-installable executable
cannam@124 2421 -no-undefined declare that a library does not refer to external symbols
cannam@124 2422 -o OUTPUT-FILE create OUTPUT-FILE from the specified objects
cannam@124 2423 -objectlist FILE Use a list of object files found in FILE to specify objects
cannam@124 2424 -precious-files-regex REGEX
cannam@124 2425 don't remove output files matching REGEX
cannam@124 2426 -release RELEASE specify package release information
cannam@124 2427 -rpath LIBDIR the created library will eventually be installed in LIBDIR
cannam@124 2428 -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries
cannam@124 2429 -shared only do dynamic linking of libtool libraries
cannam@124 2430 -shrext SUFFIX override the standard shared library file extension
cannam@124 2431 -static do not do any dynamic linking of uninstalled libtool libraries
cannam@124 2432 -static-libtool-libs
cannam@124 2433 do not do any dynamic linking of libtool libraries
cannam@124 2434 -version-info CURRENT[:REVISION[:AGE]]
cannam@124 2435 specify library version info [each variable defaults to 0]
cannam@124 2436 -weak LIBNAME declare that the target provides the LIBNAME interface
cannam@124 2437 -Wc,FLAG
cannam@124 2438 -Xcompiler FLAG pass linker-specific FLAG directly to the compiler
cannam@124 2439 -Wl,FLAG
cannam@124 2440 -Xlinker FLAG pass linker-specific FLAG directly to the linker
cannam@124 2441 -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC)
cannam@124 2442
cannam@124 2443 All other options (arguments beginning with \`-') are ignored.
cannam@124 2444
cannam@124 2445 Every other argument is treated as a filename. Files ending in \`.la' are
cannam@124 2446 treated as uninstalled libtool libraries, other files are standard or library
cannam@124 2447 object files.
cannam@124 2448
cannam@124 2449 If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
cannam@124 2450 only library objects (\`.lo' files) may be specified, and \`-rpath' is
cannam@124 2451 required, except when creating a convenience library.
cannam@124 2452
cannam@124 2453 If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
cannam@124 2454 using \`ar' and \`ranlib', or on Windows using \`lib'.
cannam@124 2455
cannam@124 2456 If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
cannam@124 2457 is created, otherwise an executable program is created."
cannam@124 2458 ;;
cannam@124 2459
cannam@124 2460 uninstall)
cannam@124 2461 $ECHO \
cannam@124 2462 "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
cannam@124 2463
cannam@124 2464 Remove libraries from an installation directory.
cannam@124 2465
cannam@124 2466 RM is the name of the program to use to delete files associated with each FILE
cannam@124 2467 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
cannam@124 2468 to RM.
cannam@124 2469
cannam@124 2470 If FILE is a libtool library, all the files associated with it are deleted.
cannam@124 2471 Otherwise, only FILE itself is deleted using RM."
cannam@124 2472 ;;
cannam@124 2473
cannam@124 2474 *)
cannam@124 2475 func_fatal_help "invalid operation mode \`$opt_mode'"
cannam@124 2476 ;;
cannam@124 2477 esac
cannam@124 2478
cannam@124 2479 echo
cannam@124 2480 $ECHO "Try \`$progname --help' for more information about other modes."
cannam@124 2481 }
cannam@124 2482
cannam@124 2483 # Now that we've collected a possible --mode arg, show help if necessary
cannam@124 2484 if $opt_help; then
cannam@124 2485 if test "$opt_help" = :; then
cannam@124 2486 func_mode_help
cannam@124 2487 else
cannam@124 2488 {
cannam@124 2489 func_help noexit
cannam@124 2490 for opt_mode in compile link execute install finish uninstall clean; do
cannam@124 2491 func_mode_help
cannam@124 2492 done
cannam@124 2493 } | sed -n '1p; 2,$s/^Usage:/ or: /p'
cannam@124 2494 {
cannam@124 2495 func_help noexit
cannam@124 2496 for opt_mode in compile link execute install finish uninstall clean; do
cannam@124 2497 echo
cannam@124 2498 func_mode_help
cannam@124 2499 done
cannam@124 2500 } |
cannam@124 2501 sed '1d
cannam@124 2502 /^When reporting/,/^Report/{
cannam@124 2503 H
cannam@124 2504 d
cannam@124 2505 }
cannam@124 2506 $x
cannam@124 2507 /information about other modes/d
cannam@124 2508 /more detailed .*MODE/d
cannam@124 2509 s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/'
cannam@124 2510 fi
cannam@124 2511 exit $?
cannam@124 2512 fi
cannam@124 2513
cannam@124 2514
cannam@124 2515 # func_mode_execute arg...
cannam@124 2516 func_mode_execute ()
cannam@124 2517 {
cannam@124 2518 $opt_debug
cannam@124 2519 # The first argument is the command name.
cannam@124 2520 cmd="$nonopt"
cannam@124 2521 test -z "$cmd" && \
cannam@124 2522 func_fatal_help "you must specify a COMMAND"
cannam@124 2523
cannam@124 2524 # Handle -dlopen flags immediately.
cannam@124 2525 for file in $opt_dlopen; do
cannam@124 2526 test -f "$file" \
cannam@124 2527 || func_fatal_help "\`$file' is not a file"
cannam@124 2528
cannam@124 2529 dir=
cannam@124 2530 case $file in
cannam@124 2531 *.la)
cannam@124 2532 func_resolve_sysroot "$file"
cannam@124 2533 file=$func_resolve_sysroot_result
cannam@124 2534
cannam@124 2535 # Check to see that this really is a libtool archive.
cannam@124 2536 func_lalib_unsafe_p "$file" \
cannam@124 2537 || func_fatal_help "\`$lib' is not a valid libtool archive"
cannam@124 2538
cannam@124 2539 # Read the libtool library.
cannam@124 2540 dlname=
cannam@124 2541 library_names=
cannam@124 2542 func_source "$file"
cannam@124 2543
cannam@124 2544 # Skip this library if it cannot be dlopened.
cannam@124 2545 if test -z "$dlname"; then
cannam@124 2546 # Warn if it was a shared library.
cannam@124 2547 test -n "$library_names" && \
cannam@124 2548 func_warning "\`$file' was not linked with \`-export-dynamic'"
cannam@124 2549 continue
cannam@124 2550 fi
cannam@124 2551
cannam@124 2552 func_dirname "$file" "" "."
cannam@124 2553 dir="$func_dirname_result"
cannam@124 2554
cannam@124 2555 if test -f "$dir/$objdir/$dlname"; then
cannam@124 2556 func_append dir "/$objdir"
cannam@124 2557 else
cannam@124 2558 if test ! -f "$dir/$dlname"; then
cannam@124 2559 func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'"
cannam@124 2560 fi
cannam@124 2561 fi
cannam@124 2562 ;;
cannam@124 2563
cannam@124 2564 *.lo)
cannam@124 2565 # Just add the directory containing the .lo file.
cannam@124 2566 func_dirname "$file" "" "."
cannam@124 2567 dir="$func_dirname_result"
cannam@124 2568 ;;
cannam@124 2569
cannam@124 2570 *)
cannam@124 2571 func_warning "\`-dlopen' is ignored for non-libtool libraries and objects"
cannam@124 2572 continue
cannam@124 2573 ;;
cannam@124 2574 esac
cannam@124 2575
cannam@124 2576 # Get the absolute pathname.
cannam@124 2577 absdir=`cd "$dir" && pwd`
cannam@124 2578 test -n "$absdir" && dir="$absdir"
cannam@124 2579
cannam@124 2580 # Now add the directory to shlibpath_var.
cannam@124 2581 if eval "test -z \"\$$shlibpath_var\""; then
cannam@124 2582 eval "$shlibpath_var=\"\$dir\""
cannam@124 2583 else
cannam@124 2584 eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
cannam@124 2585 fi
cannam@124 2586 done
cannam@124 2587
cannam@124 2588 # This variable tells wrapper scripts just to set shlibpath_var
cannam@124 2589 # rather than running their programs.
cannam@124 2590 libtool_execute_magic="$magic"
cannam@124 2591
cannam@124 2592 # Check if any of the arguments is a wrapper script.
cannam@124 2593 args=
cannam@124 2594 for file
cannam@124 2595 do
cannam@124 2596 case $file in
cannam@124 2597 -* | *.la | *.lo ) ;;
cannam@124 2598 *)
cannam@124 2599 # Do a test to see if this is really a libtool program.
cannam@124 2600 if func_ltwrapper_script_p "$file"; then
cannam@124 2601 func_source "$file"
cannam@124 2602 # Transform arg to wrapped name.
cannam@124 2603 file="$progdir/$program"
cannam@124 2604 elif func_ltwrapper_executable_p "$file"; then
cannam@124 2605 func_ltwrapper_scriptname "$file"
cannam@124 2606 func_source "$func_ltwrapper_scriptname_result"
cannam@124 2607 # Transform arg to wrapped name.
cannam@124 2608 file="$progdir/$program"
cannam@124 2609 fi
cannam@124 2610 ;;
cannam@124 2611 esac
cannam@124 2612 # Quote arguments (to preserve shell metacharacters).
cannam@124 2613 func_append_quoted args "$file"
cannam@124 2614 done
cannam@124 2615
cannam@124 2616 if test "X$opt_dry_run" = Xfalse; then
cannam@124 2617 if test -n "$shlibpath_var"; then
cannam@124 2618 # Export the shlibpath_var.
cannam@124 2619 eval "export $shlibpath_var"
cannam@124 2620 fi
cannam@124 2621
cannam@124 2622 # Restore saved environment variables
cannam@124 2623 for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
cannam@124 2624 do
cannam@124 2625 eval "if test \"\${save_$lt_var+set}\" = set; then
cannam@124 2626 $lt_var=\$save_$lt_var; export $lt_var
cannam@124 2627 else
cannam@124 2628 $lt_unset $lt_var
cannam@124 2629 fi"
cannam@124 2630 done
cannam@124 2631
cannam@124 2632 # Now prepare to actually exec the command.
cannam@124 2633 exec_cmd="\$cmd$args"
cannam@124 2634 else
cannam@124 2635 # Display what would be done.
cannam@124 2636 if test -n "$shlibpath_var"; then
cannam@124 2637 eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\""
cannam@124 2638 echo "export $shlibpath_var"
cannam@124 2639 fi
cannam@124 2640 $ECHO "$cmd$args"
cannam@124 2641 exit $EXIT_SUCCESS
cannam@124 2642 fi
cannam@124 2643 }
cannam@124 2644
cannam@124 2645 test "$opt_mode" = execute && func_mode_execute ${1+"$@"}
cannam@124 2646
cannam@124 2647
cannam@124 2648 # func_mode_finish arg...
cannam@124 2649 func_mode_finish ()
cannam@124 2650 {
cannam@124 2651 $opt_debug
cannam@124 2652 libs=
cannam@124 2653 libdirs=
cannam@124 2654 admincmds=
cannam@124 2655
cannam@124 2656 for opt in "$nonopt" ${1+"$@"}
cannam@124 2657 do
cannam@124 2658 if test -d "$opt"; then
cannam@124 2659 func_append libdirs " $opt"
cannam@124 2660
cannam@124 2661 elif test -f "$opt"; then
cannam@124 2662 if func_lalib_unsafe_p "$opt"; then
cannam@124 2663 func_append libs " $opt"
cannam@124 2664 else
cannam@124 2665 func_warning "\`$opt' is not a valid libtool archive"
cannam@124 2666 fi
cannam@124 2667
cannam@124 2668 else
cannam@124 2669 func_fatal_error "invalid argument \`$opt'"
cannam@124 2670 fi
cannam@124 2671 done
cannam@124 2672
cannam@124 2673 if test -n "$libs"; then
cannam@124 2674 if test -n "$lt_sysroot"; then
cannam@124 2675 sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"`
cannam@124 2676 sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;"
cannam@124 2677 else
cannam@124 2678 sysroot_cmd=
cannam@124 2679 fi
cannam@124 2680
cannam@124 2681 # Remove sysroot references
cannam@124 2682 if $opt_dry_run; then
cannam@124 2683 for lib in $libs; do
cannam@124 2684 echo "removing references to $lt_sysroot and \`=' prefixes from $lib"
cannam@124 2685 done
cannam@124 2686 else
cannam@124 2687 tmpdir=`func_mktempdir`
cannam@124 2688 for lib in $libs; do
cannam@124 2689 sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \
cannam@124 2690 > $tmpdir/tmp-la
cannam@124 2691 mv -f $tmpdir/tmp-la $lib
cannam@124 2692 done
cannam@124 2693 ${RM}r "$tmpdir"
cannam@124 2694 fi
cannam@124 2695 fi
cannam@124 2696
cannam@124 2697 if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
cannam@124 2698 for libdir in $libdirs; do
cannam@124 2699 if test -n "$finish_cmds"; then
cannam@124 2700 # Do each command in the finish commands.
cannam@124 2701 func_execute_cmds "$finish_cmds" 'admincmds="$admincmds
cannam@124 2702 '"$cmd"'"'
cannam@124 2703 fi
cannam@124 2704 if test -n "$finish_eval"; then
cannam@124 2705 # Do the single finish_eval.
cannam@124 2706 eval cmds=\"$finish_eval\"
cannam@124 2707 $opt_dry_run || eval "$cmds" || func_append admincmds "
cannam@124 2708 $cmds"
cannam@124 2709 fi
cannam@124 2710 done
cannam@124 2711 fi
cannam@124 2712
cannam@124 2713 # Exit here if they wanted silent mode.
cannam@124 2714 $opt_silent && exit $EXIT_SUCCESS
cannam@124 2715
cannam@124 2716 if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
cannam@124 2717 echo "----------------------------------------------------------------------"
cannam@124 2718 echo "Libraries have been installed in:"
cannam@124 2719 for libdir in $libdirs; do
cannam@124 2720 $ECHO " $libdir"
cannam@124 2721 done
cannam@124 2722 echo
cannam@124 2723 echo "If you ever happen to want to link against installed libraries"
cannam@124 2724 echo "in a given directory, LIBDIR, you must either use libtool, and"
cannam@124 2725 echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
cannam@124 2726 echo "flag during linking and do at least one of the following:"
cannam@124 2727 if test -n "$shlibpath_var"; then
cannam@124 2728 echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
cannam@124 2729 echo " during execution"
cannam@124 2730 fi
cannam@124 2731 if test -n "$runpath_var"; then
cannam@124 2732 echo " - add LIBDIR to the \`$runpath_var' environment variable"
cannam@124 2733 echo " during linking"
cannam@124 2734 fi
cannam@124 2735 if test -n "$hardcode_libdir_flag_spec"; then
cannam@124 2736 libdir=LIBDIR
cannam@124 2737 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@124 2738
cannam@124 2739 $ECHO " - use the \`$flag' linker flag"
cannam@124 2740 fi
cannam@124 2741 if test -n "$admincmds"; then
cannam@124 2742 $ECHO " - have your system administrator run these commands:$admincmds"
cannam@124 2743 fi
cannam@124 2744 if test -f /etc/ld.so.conf; then
cannam@124 2745 echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
cannam@124 2746 fi
cannam@124 2747 echo
cannam@124 2748
cannam@124 2749 echo "See any operating system documentation about shared libraries for"
cannam@124 2750 case $host in
cannam@124 2751 solaris2.[6789]|solaris2.1[0-9])
cannam@124 2752 echo "more information, such as the ld(1), crle(1) and ld.so(8) manual"
cannam@124 2753 echo "pages."
cannam@124 2754 ;;
cannam@124 2755 *)
cannam@124 2756 echo "more information, such as the ld(1) and ld.so(8) manual pages."
cannam@124 2757 ;;
cannam@124 2758 esac
cannam@124 2759 echo "----------------------------------------------------------------------"
cannam@124 2760 fi
cannam@124 2761 exit $EXIT_SUCCESS
cannam@124 2762 }
cannam@124 2763
cannam@124 2764 test "$opt_mode" = finish && func_mode_finish ${1+"$@"}
cannam@124 2765
cannam@124 2766
cannam@124 2767 # func_mode_install arg...
cannam@124 2768 func_mode_install ()
cannam@124 2769 {
cannam@124 2770 $opt_debug
cannam@124 2771 # There may be an optional sh(1) argument at the beginning of
cannam@124 2772 # install_prog (especially on Windows NT).
cannam@124 2773 if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
cannam@124 2774 # Allow the use of GNU shtool's install command.
cannam@124 2775 case $nonopt in *shtool*) :;; *) false;; esac; then
cannam@124 2776 # Aesthetically quote it.
cannam@124 2777 func_quote_for_eval "$nonopt"
cannam@124 2778 install_prog="$func_quote_for_eval_result "
cannam@124 2779 arg=$1
cannam@124 2780 shift
cannam@124 2781 else
cannam@124 2782 install_prog=
cannam@124 2783 arg=$nonopt
cannam@124 2784 fi
cannam@124 2785
cannam@124 2786 # The real first argument should be the name of the installation program.
cannam@124 2787 # Aesthetically quote it.
cannam@124 2788 func_quote_for_eval "$arg"
cannam@124 2789 func_append install_prog "$func_quote_for_eval_result"
cannam@124 2790 install_shared_prog=$install_prog
cannam@124 2791 case " $install_prog " in
cannam@124 2792 *[\\\ /]cp\ *) install_cp=: ;;
cannam@124 2793 *) install_cp=false ;;
cannam@124 2794 esac
cannam@124 2795
cannam@124 2796 # We need to accept at least all the BSD install flags.
cannam@124 2797 dest=
cannam@124 2798 files=
cannam@124 2799 opts=
cannam@124 2800 prev=
cannam@124 2801 install_type=
cannam@124 2802 isdir=no
cannam@124 2803 stripme=
cannam@124 2804 no_mode=:
cannam@124 2805 for arg
cannam@124 2806 do
cannam@124 2807 arg2=
cannam@124 2808 if test -n "$dest"; then
cannam@124 2809 func_append files " $dest"
cannam@124 2810 dest=$arg
cannam@124 2811 continue
cannam@124 2812 fi
cannam@124 2813
cannam@124 2814 case $arg in
cannam@124 2815 -d) isdir=yes ;;
cannam@124 2816 -f)
cannam@124 2817 if $install_cp; then :; else
cannam@124 2818 prev=$arg
cannam@124 2819 fi
cannam@124 2820 ;;
cannam@124 2821 -g | -m | -o)
cannam@124 2822 prev=$arg
cannam@124 2823 ;;
cannam@124 2824 -s)
cannam@124 2825 stripme=" -s"
cannam@124 2826 continue
cannam@124 2827 ;;
cannam@124 2828 -*)
cannam@124 2829 ;;
cannam@124 2830 *)
cannam@124 2831 # If the previous option needed an argument, then skip it.
cannam@124 2832 if test -n "$prev"; then
cannam@124 2833 if test "x$prev" = x-m && test -n "$install_override_mode"; then
cannam@124 2834 arg2=$install_override_mode
cannam@124 2835 no_mode=false
cannam@124 2836 fi
cannam@124 2837 prev=
cannam@124 2838 else
cannam@124 2839 dest=$arg
cannam@124 2840 continue
cannam@124 2841 fi
cannam@124 2842 ;;
cannam@124 2843 esac
cannam@124 2844
cannam@124 2845 # Aesthetically quote the argument.
cannam@124 2846 func_quote_for_eval "$arg"
cannam@124 2847 func_append install_prog " $func_quote_for_eval_result"
cannam@124 2848 if test -n "$arg2"; then
cannam@124 2849 func_quote_for_eval "$arg2"
cannam@124 2850 fi
cannam@124 2851 func_append install_shared_prog " $func_quote_for_eval_result"
cannam@124 2852 done
cannam@124 2853
cannam@124 2854 test -z "$install_prog" && \
cannam@124 2855 func_fatal_help "you must specify an install program"
cannam@124 2856
cannam@124 2857 test -n "$prev" && \
cannam@124 2858 func_fatal_help "the \`$prev' option requires an argument"
cannam@124 2859
cannam@124 2860 if test -n "$install_override_mode" && $no_mode; then
cannam@124 2861 if $install_cp; then :; else
cannam@124 2862 func_quote_for_eval "$install_override_mode"
cannam@124 2863 func_append install_shared_prog " -m $func_quote_for_eval_result"
cannam@124 2864 fi
cannam@124 2865 fi
cannam@124 2866
cannam@124 2867 if test -z "$files"; then
cannam@124 2868 if test -z "$dest"; then
cannam@124 2869 func_fatal_help "no file or destination specified"
cannam@124 2870 else
cannam@124 2871 func_fatal_help "you must specify a destination"
cannam@124 2872 fi
cannam@124 2873 fi
cannam@124 2874
cannam@124 2875 # Strip any trailing slash from the destination.
cannam@124 2876 func_stripname '' '/' "$dest"
cannam@124 2877 dest=$func_stripname_result
cannam@124 2878
cannam@124 2879 # Check to see that the destination is a directory.
cannam@124 2880 test -d "$dest" && isdir=yes
cannam@124 2881 if test "$isdir" = yes; then
cannam@124 2882 destdir="$dest"
cannam@124 2883 destname=
cannam@124 2884 else
cannam@124 2885 func_dirname_and_basename "$dest" "" "."
cannam@124 2886 destdir="$func_dirname_result"
cannam@124 2887 destname="$func_basename_result"
cannam@124 2888
cannam@124 2889 # Not a directory, so check to see that there is only one file specified.
cannam@124 2890 set dummy $files; shift
cannam@124 2891 test "$#" -gt 1 && \
cannam@124 2892 func_fatal_help "\`$dest' is not a directory"
cannam@124 2893 fi
cannam@124 2894 case $destdir in
cannam@124 2895 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@124 2896 *)
cannam@124 2897 for file in $files; do
cannam@124 2898 case $file in
cannam@124 2899 *.lo) ;;
cannam@124 2900 *)
cannam@124 2901 func_fatal_help "\`$destdir' must be an absolute directory name"
cannam@124 2902 ;;
cannam@124 2903 esac
cannam@124 2904 done
cannam@124 2905 ;;
cannam@124 2906 esac
cannam@124 2907
cannam@124 2908 # This variable tells wrapper scripts just to set variables rather
cannam@124 2909 # than running their programs.
cannam@124 2910 libtool_install_magic="$magic"
cannam@124 2911
cannam@124 2912 staticlibs=
cannam@124 2913 future_libdirs=
cannam@124 2914 current_libdirs=
cannam@124 2915 for file in $files; do
cannam@124 2916
cannam@124 2917 # Do each installation.
cannam@124 2918 case $file in
cannam@124 2919 *.$libext)
cannam@124 2920 # Do the static libraries later.
cannam@124 2921 func_append staticlibs " $file"
cannam@124 2922 ;;
cannam@124 2923
cannam@124 2924 *.la)
cannam@124 2925 func_resolve_sysroot "$file"
cannam@124 2926 file=$func_resolve_sysroot_result
cannam@124 2927
cannam@124 2928 # Check to see that this really is a libtool archive.
cannam@124 2929 func_lalib_unsafe_p "$file" \
cannam@124 2930 || func_fatal_help "\`$file' is not a valid libtool archive"
cannam@124 2931
cannam@124 2932 library_names=
cannam@124 2933 old_library=
cannam@124 2934 relink_command=
cannam@124 2935 func_source "$file"
cannam@124 2936
cannam@124 2937 # Add the libdir to current_libdirs if it is the destination.
cannam@124 2938 if test "X$destdir" = "X$libdir"; then
cannam@124 2939 case "$current_libdirs " in
cannam@124 2940 *" $libdir "*) ;;
cannam@124 2941 *) func_append current_libdirs " $libdir" ;;
cannam@124 2942 esac
cannam@124 2943 else
cannam@124 2944 # Note the libdir as a future libdir.
cannam@124 2945 case "$future_libdirs " in
cannam@124 2946 *" $libdir "*) ;;
cannam@124 2947 *) func_append future_libdirs " $libdir" ;;
cannam@124 2948 esac
cannam@124 2949 fi
cannam@124 2950
cannam@124 2951 func_dirname "$file" "/" ""
cannam@124 2952 dir="$func_dirname_result"
cannam@124 2953 func_append dir "$objdir"
cannam@124 2954
cannam@124 2955 if test -n "$relink_command"; then
cannam@124 2956 # Determine the prefix the user has applied to our future dir.
cannam@124 2957 inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"`
cannam@124 2958
cannam@124 2959 # Don't allow the user to place us outside of our expected
cannam@124 2960 # location b/c this prevents finding dependent libraries that
cannam@124 2961 # are installed to the same prefix.
cannam@124 2962 # At present, this check doesn't affect windows .dll's that
cannam@124 2963 # are installed into $libdir/../bin (currently, that works fine)
cannam@124 2964 # but it's something to keep an eye on.
cannam@124 2965 test "$inst_prefix_dir" = "$destdir" && \
cannam@124 2966 func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir"
cannam@124 2967
cannam@124 2968 if test -n "$inst_prefix_dir"; then
cannam@124 2969 # Stick the inst_prefix_dir data into the link command.
cannam@124 2970 relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
cannam@124 2971 else
cannam@124 2972 relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
cannam@124 2973 fi
cannam@124 2974
cannam@124 2975 func_warning "relinking \`$file'"
cannam@124 2976 func_show_eval "$relink_command" \
cannam@124 2977 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"'
cannam@124 2978 fi
cannam@124 2979
cannam@124 2980 # See the names of the shared library.
cannam@124 2981 set dummy $library_names; shift
cannam@124 2982 if test -n "$1"; then
cannam@124 2983 realname="$1"
cannam@124 2984 shift
cannam@124 2985
cannam@124 2986 srcname="$realname"
cannam@124 2987 test -n "$relink_command" && srcname="$realname"T
cannam@124 2988
cannam@124 2989 # Install the shared library and build the symlinks.
cannam@124 2990 func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \
cannam@124 2991 'exit $?'
cannam@124 2992 tstripme="$stripme"
cannam@124 2993 case $host_os in
cannam@124 2994 cygwin* | mingw* | pw32* | cegcc*)
cannam@124 2995 case $realname in
cannam@124 2996 *.dll.a)
cannam@124 2997 tstripme=""
cannam@124 2998 ;;
cannam@124 2999 esac
cannam@124 3000 ;;
cannam@124 3001 esac
cannam@124 3002 if test -n "$tstripme" && test -n "$striplib"; then
cannam@124 3003 func_show_eval "$striplib $destdir/$realname" 'exit $?'
cannam@124 3004 fi
cannam@124 3005
cannam@124 3006 if test "$#" -gt 0; then
cannam@124 3007 # Delete the old symlinks, and create new ones.
cannam@124 3008 # Try `ln -sf' first, because the `ln' binary might depend on
cannam@124 3009 # the symlink we replace! Solaris /bin/ln does not understand -f,
cannam@124 3010 # so we also need to try rm && ln -s.
cannam@124 3011 for linkname
cannam@124 3012 do
cannam@124 3013 test "$linkname" != "$realname" \
cannam@124 3014 && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })"
cannam@124 3015 done
cannam@124 3016 fi
cannam@124 3017
cannam@124 3018 # Do each command in the postinstall commands.
cannam@124 3019 lib="$destdir/$realname"
cannam@124 3020 func_execute_cmds "$postinstall_cmds" 'exit $?'
cannam@124 3021 fi
cannam@124 3022
cannam@124 3023 # Install the pseudo-library for information purposes.
cannam@124 3024 func_basename "$file"
cannam@124 3025 name="$func_basename_result"
cannam@124 3026 instname="$dir/$name"i
cannam@124 3027 func_show_eval "$install_prog $instname $destdir/$name" 'exit $?'
cannam@124 3028
cannam@124 3029 # Maybe install the static library, too.
cannam@124 3030 test -n "$old_library" && func_append staticlibs " $dir/$old_library"
cannam@124 3031 ;;
cannam@124 3032
cannam@124 3033 *.lo)
cannam@124 3034 # Install (i.e. copy) a libtool object.
cannam@124 3035
cannam@124 3036 # Figure out destination file name, if it wasn't already specified.
cannam@124 3037 if test -n "$destname"; then
cannam@124 3038 destfile="$destdir/$destname"
cannam@124 3039 else
cannam@124 3040 func_basename "$file"
cannam@124 3041 destfile="$func_basename_result"
cannam@124 3042 destfile="$destdir/$destfile"
cannam@124 3043 fi
cannam@124 3044
cannam@124 3045 # Deduce the name of the destination old-style object file.
cannam@124 3046 case $destfile in
cannam@124 3047 *.lo)
cannam@124 3048 func_lo2o "$destfile"
cannam@124 3049 staticdest=$func_lo2o_result
cannam@124 3050 ;;
cannam@124 3051 *.$objext)
cannam@124 3052 staticdest="$destfile"
cannam@124 3053 destfile=
cannam@124 3054 ;;
cannam@124 3055 *)
cannam@124 3056 func_fatal_help "cannot copy a libtool object to \`$destfile'"
cannam@124 3057 ;;
cannam@124 3058 esac
cannam@124 3059
cannam@124 3060 # Install the libtool object if requested.
cannam@124 3061 test -n "$destfile" && \
cannam@124 3062 func_show_eval "$install_prog $file $destfile" 'exit $?'
cannam@124 3063
cannam@124 3064 # Install the old object if enabled.
cannam@124 3065 if test "$build_old_libs" = yes; then
cannam@124 3066 # Deduce the name of the old-style object file.
cannam@124 3067 func_lo2o "$file"
cannam@124 3068 staticobj=$func_lo2o_result
cannam@124 3069 func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?'
cannam@124 3070 fi
cannam@124 3071 exit $EXIT_SUCCESS
cannam@124 3072 ;;
cannam@124 3073
cannam@124 3074 *)
cannam@124 3075 # Figure out destination file name, if it wasn't already specified.
cannam@124 3076 if test -n "$destname"; then
cannam@124 3077 destfile="$destdir/$destname"
cannam@124 3078 else
cannam@124 3079 func_basename "$file"
cannam@124 3080 destfile="$func_basename_result"
cannam@124 3081 destfile="$destdir/$destfile"
cannam@124 3082 fi
cannam@124 3083
cannam@124 3084 # If the file is missing, and there is a .exe on the end, strip it
cannam@124 3085 # because it is most likely a libtool script we actually want to
cannam@124 3086 # install
cannam@124 3087 stripped_ext=""
cannam@124 3088 case $file in
cannam@124 3089 *.exe)
cannam@124 3090 if test ! -f "$file"; then
cannam@124 3091 func_stripname '' '.exe' "$file"
cannam@124 3092 file=$func_stripname_result
cannam@124 3093 stripped_ext=".exe"
cannam@124 3094 fi
cannam@124 3095 ;;
cannam@124 3096 esac
cannam@124 3097
cannam@124 3098 # Do a test to see if this is really a libtool program.
cannam@124 3099 case $host in
cannam@124 3100 *cygwin* | *mingw*)
cannam@124 3101 if func_ltwrapper_executable_p "$file"; then
cannam@124 3102 func_ltwrapper_scriptname "$file"
cannam@124 3103 wrapper=$func_ltwrapper_scriptname_result
cannam@124 3104 else
cannam@124 3105 func_stripname '' '.exe' "$file"
cannam@124 3106 wrapper=$func_stripname_result
cannam@124 3107 fi
cannam@124 3108 ;;
cannam@124 3109 *)
cannam@124 3110 wrapper=$file
cannam@124 3111 ;;
cannam@124 3112 esac
cannam@124 3113 if func_ltwrapper_script_p "$wrapper"; then
cannam@124 3114 notinst_deplibs=
cannam@124 3115 relink_command=
cannam@124 3116
cannam@124 3117 func_source "$wrapper"
cannam@124 3118
cannam@124 3119 # Check the variables that should have been set.
cannam@124 3120 test -z "$generated_by_libtool_version" && \
cannam@124 3121 func_fatal_error "invalid libtool wrapper script \`$wrapper'"
cannam@124 3122
cannam@124 3123 finalize=yes
cannam@124 3124 for lib in $notinst_deplibs; do
cannam@124 3125 # Check to see that each library is installed.
cannam@124 3126 libdir=
cannam@124 3127 if test -f "$lib"; then
cannam@124 3128 func_source "$lib"
cannam@124 3129 fi
cannam@124 3130 libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test
cannam@124 3131 if test -n "$libdir" && test ! -f "$libfile"; then
cannam@124 3132 func_warning "\`$lib' has not been installed in \`$libdir'"
cannam@124 3133 finalize=no
cannam@124 3134 fi
cannam@124 3135 done
cannam@124 3136
cannam@124 3137 relink_command=
cannam@124 3138 func_source "$wrapper"
cannam@124 3139
cannam@124 3140 outputname=
cannam@124 3141 if test "$fast_install" = no && test -n "$relink_command"; then
cannam@124 3142 $opt_dry_run || {
cannam@124 3143 if test "$finalize" = yes; then
cannam@124 3144 tmpdir=`func_mktempdir`
cannam@124 3145 func_basename "$file$stripped_ext"
cannam@124 3146 file="$func_basename_result"
cannam@124 3147 outputname="$tmpdir/$file"
cannam@124 3148 # Replace the output file specification.
cannam@124 3149 relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'`
cannam@124 3150
cannam@124 3151 $opt_silent || {
cannam@124 3152 func_quote_for_expand "$relink_command"
cannam@124 3153 eval "func_echo $func_quote_for_expand_result"
cannam@124 3154 }
cannam@124 3155 if eval "$relink_command"; then :
cannam@124 3156 else
cannam@124 3157 func_error "error: relink \`$file' with the above command before installing it"
cannam@124 3158 $opt_dry_run || ${RM}r "$tmpdir"
cannam@124 3159 continue
cannam@124 3160 fi
cannam@124 3161 file="$outputname"
cannam@124 3162 else
cannam@124 3163 func_warning "cannot relink \`$file'"
cannam@124 3164 fi
cannam@124 3165 }
cannam@124 3166 else
cannam@124 3167 # Install the binary that we compiled earlier.
cannam@124 3168 file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"`
cannam@124 3169 fi
cannam@124 3170 fi
cannam@124 3171
cannam@124 3172 # remove .exe since cygwin /usr/bin/install will append another
cannam@124 3173 # one anyway
cannam@124 3174 case $install_prog,$host in
cannam@124 3175 */usr/bin/install*,*cygwin*)
cannam@124 3176 case $file:$destfile in
cannam@124 3177 *.exe:*.exe)
cannam@124 3178 # this is ok
cannam@124 3179 ;;
cannam@124 3180 *.exe:*)
cannam@124 3181 destfile=$destfile.exe
cannam@124 3182 ;;
cannam@124 3183 *:*.exe)
cannam@124 3184 func_stripname '' '.exe' "$destfile"
cannam@124 3185 destfile=$func_stripname_result
cannam@124 3186 ;;
cannam@124 3187 esac
cannam@124 3188 ;;
cannam@124 3189 esac
cannam@124 3190 func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?'
cannam@124 3191 $opt_dry_run || if test -n "$outputname"; then
cannam@124 3192 ${RM}r "$tmpdir"
cannam@124 3193 fi
cannam@124 3194 ;;
cannam@124 3195 esac
cannam@124 3196 done
cannam@124 3197
cannam@124 3198 for file in $staticlibs; do
cannam@124 3199 func_basename "$file"
cannam@124 3200 name="$func_basename_result"
cannam@124 3201
cannam@124 3202 # Set up the ranlib parameters.
cannam@124 3203 oldlib="$destdir/$name"
cannam@124 3204
cannam@124 3205 func_show_eval "$install_prog \$file \$oldlib" 'exit $?'
cannam@124 3206
cannam@124 3207 if test -n "$stripme" && test -n "$old_striplib"; then
cannam@124 3208 func_show_eval "$old_striplib $oldlib" 'exit $?'
cannam@124 3209 fi
cannam@124 3210
cannam@124 3211 # Do each command in the postinstall commands.
cannam@124 3212 func_execute_cmds "$old_postinstall_cmds" 'exit $?'
cannam@124 3213 done
cannam@124 3214
cannam@124 3215 test -n "$future_libdirs" && \
cannam@124 3216 func_warning "remember to run \`$progname --finish$future_libdirs'"
cannam@124 3217
cannam@124 3218 if test -n "$current_libdirs"; then
cannam@124 3219 # Maybe just do a dry run.
cannam@124 3220 $opt_dry_run && current_libdirs=" -n$current_libdirs"
cannam@124 3221 exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs'
cannam@124 3222 else
cannam@124 3223 exit $EXIT_SUCCESS
cannam@124 3224 fi
cannam@124 3225 }
cannam@124 3226
cannam@124 3227 test "$opt_mode" = install && func_mode_install ${1+"$@"}
cannam@124 3228
cannam@124 3229
cannam@124 3230 # func_generate_dlsyms outputname originator pic_p
cannam@124 3231 # Extract symbols from dlprefiles and create ${outputname}S.o with
cannam@124 3232 # a dlpreopen symbol table.
cannam@124 3233 func_generate_dlsyms ()
cannam@124 3234 {
cannam@124 3235 $opt_debug
cannam@124 3236 my_outputname="$1"
cannam@124 3237 my_originator="$2"
cannam@124 3238 my_pic_p="${3-no}"
cannam@124 3239 my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'`
cannam@124 3240 my_dlsyms=
cannam@124 3241
cannam@124 3242 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@124 3243 if test -n "$NM" && test -n "$global_symbol_pipe"; then
cannam@124 3244 my_dlsyms="${my_outputname}S.c"
cannam@124 3245 else
cannam@124 3246 func_error "not configured to extract global symbols from dlpreopened files"
cannam@124 3247 fi
cannam@124 3248 fi
cannam@124 3249
cannam@124 3250 if test -n "$my_dlsyms"; then
cannam@124 3251 case $my_dlsyms in
cannam@124 3252 "") ;;
cannam@124 3253 *.c)
cannam@124 3254 # Discover the nlist of each of the dlfiles.
cannam@124 3255 nlist="$output_objdir/${my_outputname}.nm"
cannam@124 3256
cannam@124 3257 func_show_eval "$RM $nlist ${nlist}S ${nlist}T"
cannam@124 3258
cannam@124 3259 # Parse the name list into a source file.
cannam@124 3260 func_verbose "creating $output_objdir/$my_dlsyms"
cannam@124 3261
cannam@124 3262 $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\
cannam@124 3263 /* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */
cannam@124 3264 /* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */
cannam@124 3265
cannam@124 3266 #ifdef __cplusplus
cannam@124 3267 extern \"C\" {
cannam@124 3268 #endif
cannam@124 3269
cannam@124 3270 #if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4))
cannam@124 3271 #pragma GCC diagnostic ignored \"-Wstrict-prototypes\"
cannam@124 3272 #endif
cannam@124 3273
cannam@124 3274 /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */
cannam@124 3275 #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE)
cannam@124 3276 /* DATA imports from DLLs on WIN32 con't be const, because runtime
cannam@124 3277 relocations are performed -- see ld's documentation on pseudo-relocs. */
cannam@124 3278 # define LT_DLSYM_CONST
cannam@124 3279 #elif defined(__osf__)
cannam@124 3280 /* This system does not cope well with relocations in const data. */
cannam@124 3281 # define LT_DLSYM_CONST
cannam@124 3282 #else
cannam@124 3283 # define LT_DLSYM_CONST const
cannam@124 3284 #endif
cannam@124 3285
cannam@124 3286 /* External symbol declarations for the compiler. */\
cannam@124 3287 "
cannam@124 3288
cannam@124 3289 if test "$dlself" = yes; then
cannam@124 3290 func_verbose "generating symbol list for \`$output'"
cannam@124 3291
cannam@124 3292 $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist"
cannam@124 3293
cannam@124 3294 # Add our own program objects to the symbol list.
cannam@124 3295 progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@124 3296 for progfile in $progfiles; do
cannam@124 3297 func_to_tool_file "$progfile" func_convert_file_msys_to_w32
cannam@124 3298 func_verbose "extracting global C symbols from \`$func_to_tool_file_result'"
cannam@124 3299 $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'"
cannam@124 3300 done
cannam@124 3301
cannam@124 3302 if test -n "$exclude_expsyms"; then
cannam@124 3303 $opt_dry_run || {
cannam@124 3304 eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
cannam@124 3305 eval '$MV "$nlist"T "$nlist"'
cannam@124 3306 }
cannam@124 3307 fi
cannam@124 3308
cannam@124 3309 if test -n "$export_symbols_regex"; then
cannam@124 3310 $opt_dry_run || {
cannam@124 3311 eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T'
cannam@124 3312 eval '$MV "$nlist"T "$nlist"'
cannam@124 3313 }
cannam@124 3314 fi
cannam@124 3315
cannam@124 3316 # Prepare the list of exported symbols
cannam@124 3317 if test -z "$export_symbols"; then
cannam@124 3318 export_symbols="$output_objdir/$outputname.exp"
cannam@124 3319 $opt_dry_run || {
cannam@124 3320 $RM $export_symbols
cannam@124 3321 eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
cannam@124 3322 case $host in
cannam@124 3323 *cygwin* | *mingw* | *cegcc* )
cannam@124 3324 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
cannam@124 3325 eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"'
cannam@124 3326 ;;
cannam@124 3327 esac
cannam@124 3328 }
cannam@124 3329 else
cannam@124 3330 $opt_dry_run || {
cannam@124 3331 eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"'
cannam@124 3332 eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T'
cannam@124 3333 eval '$MV "$nlist"T "$nlist"'
cannam@124 3334 case $host in
cannam@124 3335 *cygwin* | *mingw* | *cegcc* )
cannam@124 3336 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
cannam@124 3337 eval 'cat "$nlist" >> "$output_objdir/$outputname.def"'
cannam@124 3338 ;;
cannam@124 3339 esac
cannam@124 3340 }
cannam@124 3341 fi
cannam@124 3342 fi
cannam@124 3343
cannam@124 3344 for dlprefile in $dlprefiles; do
cannam@124 3345 func_verbose "extracting global C symbols from \`$dlprefile'"
cannam@124 3346 func_basename "$dlprefile"
cannam@124 3347 name="$func_basename_result"
cannam@124 3348 case $host in
cannam@124 3349 *cygwin* | *mingw* | *cegcc* )
cannam@124 3350 # if an import library, we need to obtain dlname
cannam@124 3351 if func_win32_import_lib_p "$dlprefile"; then
cannam@124 3352 func_tr_sh "$dlprefile"
cannam@124 3353 eval "curr_lafile=\$libfile_$func_tr_sh_result"
cannam@124 3354 dlprefile_dlbasename=""
cannam@124 3355 if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then
cannam@124 3356 # Use subshell, to avoid clobbering current variable values
cannam@124 3357 dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"`
cannam@124 3358 if test -n "$dlprefile_dlname" ; then
cannam@124 3359 func_basename "$dlprefile_dlname"
cannam@124 3360 dlprefile_dlbasename="$func_basename_result"
cannam@124 3361 else
cannam@124 3362 # no lafile. user explicitly requested -dlpreopen <import library>.
cannam@124 3363 $sharedlib_from_linklib_cmd "$dlprefile"
cannam@124 3364 dlprefile_dlbasename=$sharedlib_from_linklib_result
cannam@124 3365 fi
cannam@124 3366 fi
cannam@124 3367 $opt_dry_run || {
cannam@124 3368 if test -n "$dlprefile_dlbasename" ; then
cannam@124 3369 eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"'
cannam@124 3370 else
cannam@124 3371 func_warning "Could not compute DLL name from $name"
cannam@124 3372 eval '$ECHO ": $name " >> "$nlist"'
cannam@124 3373 fi
cannam@124 3374 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
cannam@124 3375 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe |
cannam@124 3376 $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'"
cannam@124 3377 }
cannam@124 3378 else # not an import lib
cannam@124 3379 $opt_dry_run || {
cannam@124 3380 eval '$ECHO ": $name " >> "$nlist"'
cannam@124 3381 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
cannam@124 3382 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
cannam@124 3383 }
cannam@124 3384 fi
cannam@124 3385 ;;
cannam@124 3386 *)
cannam@124 3387 $opt_dry_run || {
cannam@124 3388 eval '$ECHO ": $name " >> "$nlist"'
cannam@124 3389 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
cannam@124 3390 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
cannam@124 3391 }
cannam@124 3392 ;;
cannam@124 3393 esac
cannam@124 3394 done
cannam@124 3395
cannam@124 3396 $opt_dry_run || {
cannam@124 3397 # Make sure we have at least an empty file.
cannam@124 3398 test -f "$nlist" || : > "$nlist"
cannam@124 3399
cannam@124 3400 if test -n "$exclude_expsyms"; then
cannam@124 3401 $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
cannam@124 3402 $MV "$nlist"T "$nlist"
cannam@124 3403 fi
cannam@124 3404
cannam@124 3405 # Try sorting and uniquifying the output.
cannam@124 3406 if $GREP -v "^: " < "$nlist" |
cannam@124 3407 if sort -k 3 </dev/null >/dev/null 2>&1; then
cannam@124 3408 sort -k 3
cannam@124 3409 else
cannam@124 3410 sort +2
cannam@124 3411 fi |
cannam@124 3412 uniq > "$nlist"S; then
cannam@124 3413 :
cannam@124 3414 else
cannam@124 3415 $GREP -v "^: " < "$nlist" > "$nlist"S
cannam@124 3416 fi
cannam@124 3417
cannam@124 3418 if test -f "$nlist"S; then
cannam@124 3419 eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"'
cannam@124 3420 else
cannam@124 3421 echo '/* NONE */' >> "$output_objdir/$my_dlsyms"
cannam@124 3422 fi
cannam@124 3423
cannam@124 3424 echo >> "$output_objdir/$my_dlsyms" "\
cannam@124 3425
cannam@124 3426 /* The mapping between symbol names and symbols. */
cannam@124 3427 typedef struct {
cannam@124 3428 const char *name;
cannam@124 3429 void *address;
cannam@124 3430 } lt_dlsymlist;
cannam@124 3431 extern LT_DLSYM_CONST lt_dlsymlist
cannam@124 3432 lt_${my_prefix}_LTX_preloaded_symbols[];
cannam@124 3433 LT_DLSYM_CONST lt_dlsymlist
cannam@124 3434 lt_${my_prefix}_LTX_preloaded_symbols[] =
cannam@124 3435 {\
cannam@124 3436 { \"$my_originator\", (void *) 0 },"
cannam@124 3437
cannam@124 3438 case $need_lib_prefix in
cannam@124 3439 no)
cannam@124 3440 eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms"
cannam@124 3441 ;;
cannam@124 3442 *)
cannam@124 3443 eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms"
cannam@124 3444 ;;
cannam@124 3445 esac
cannam@124 3446 echo >> "$output_objdir/$my_dlsyms" "\
cannam@124 3447 {0, (void *) 0}
cannam@124 3448 };
cannam@124 3449
cannam@124 3450 /* This works around a problem in FreeBSD linker */
cannam@124 3451 #ifdef FREEBSD_WORKAROUND
cannam@124 3452 static const void *lt_preloaded_setup() {
cannam@124 3453 return lt_${my_prefix}_LTX_preloaded_symbols;
cannam@124 3454 }
cannam@124 3455 #endif
cannam@124 3456
cannam@124 3457 #ifdef __cplusplus
cannam@124 3458 }
cannam@124 3459 #endif\
cannam@124 3460 "
cannam@124 3461 } # !$opt_dry_run
cannam@124 3462
cannam@124 3463 pic_flag_for_symtable=
cannam@124 3464 case "$compile_command " in
cannam@124 3465 *" -static "*) ;;
cannam@124 3466 *)
cannam@124 3467 case $host in
cannam@124 3468 # compiling the symbol table file with pic_flag works around
cannam@124 3469 # a FreeBSD bug that causes programs to crash when -lm is
cannam@124 3470 # linked before any other PIC object. But we must not use
cannam@124 3471 # pic_flag when linking with -static. The problem exists in
cannam@124 3472 # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
cannam@124 3473 *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
cannam@124 3474 pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;;
cannam@124 3475 *-*-hpux*)
cannam@124 3476 pic_flag_for_symtable=" $pic_flag" ;;
cannam@124 3477 *)
cannam@124 3478 if test "X$my_pic_p" != Xno; then
cannam@124 3479 pic_flag_for_symtable=" $pic_flag"
cannam@124 3480 fi
cannam@124 3481 ;;
cannam@124 3482 esac
cannam@124 3483 ;;
cannam@124 3484 esac
cannam@124 3485 symtab_cflags=
cannam@124 3486 for arg in $LTCFLAGS; do
cannam@124 3487 case $arg in
cannam@124 3488 -pie | -fpie | -fPIE) ;;
cannam@124 3489 *) func_append symtab_cflags " $arg" ;;
cannam@124 3490 esac
cannam@124 3491 done
cannam@124 3492
cannam@124 3493 # Now compile the dynamic symbol file.
cannam@124 3494 func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?'
cannam@124 3495
cannam@124 3496 # Clean up the generated files.
cannam@124 3497 func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"'
cannam@124 3498
cannam@124 3499 # Transform the symbol file into the correct name.
cannam@124 3500 symfileobj="$output_objdir/${my_outputname}S.$objext"
cannam@124 3501 case $host in
cannam@124 3502 *cygwin* | *mingw* | *cegcc* )
cannam@124 3503 if test -f "$output_objdir/$my_outputname.def"; then
cannam@124 3504 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
cannam@124 3505 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
cannam@124 3506 else
cannam@124 3507 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@124 3508 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@124 3509 fi
cannam@124 3510 ;;
cannam@124 3511 *)
cannam@124 3512 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@124 3513 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@124 3514 ;;
cannam@124 3515 esac
cannam@124 3516 ;;
cannam@124 3517 *)
cannam@124 3518 func_fatal_error "unknown suffix for \`$my_dlsyms'"
cannam@124 3519 ;;
cannam@124 3520 esac
cannam@124 3521 else
cannam@124 3522 # We keep going just in case the user didn't refer to
cannam@124 3523 # lt_preloaded_symbols. The linker will fail if global_symbol_pipe
cannam@124 3524 # really was required.
cannam@124 3525
cannam@124 3526 # Nullify the symbol file.
cannam@124 3527 compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"`
cannam@124 3528 finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"`
cannam@124 3529 fi
cannam@124 3530 }
cannam@124 3531
cannam@124 3532 # func_win32_libid arg
cannam@124 3533 # return the library type of file 'arg'
cannam@124 3534 #
cannam@124 3535 # Need a lot of goo to handle *both* DLLs and import libs
cannam@124 3536 # Has to be a shell function in order to 'eat' the argument
cannam@124 3537 # that is supplied when $file_magic_command is called.
cannam@124 3538 # Despite the name, also deal with 64 bit binaries.
cannam@124 3539 func_win32_libid ()
cannam@124 3540 {
cannam@124 3541 $opt_debug
cannam@124 3542 win32_libid_type="unknown"
cannam@124 3543 win32_fileres=`file -L $1 2>/dev/null`
cannam@124 3544 case $win32_fileres in
cannam@124 3545 *ar\ archive\ import\ library*) # definitely import
cannam@124 3546 win32_libid_type="x86 archive import"
cannam@124 3547 ;;
cannam@124 3548 *ar\ archive*) # could be an import, or static
cannam@124 3549 # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD.
cannam@124 3550 if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null |
cannam@124 3551 $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then
cannam@124 3552 func_to_tool_file "$1" func_convert_file_msys_to_w32
cannam@124 3553 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" |
cannam@124 3554 $SED -n -e '
cannam@124 3555 1,100{
cannam@124 3556 / I /{
cannam@124 3557 s,.*,import,
cannam@124 3558 p
cannam@124 3559 q
cannam@124 3560 }
cannam@124 3561 }'`
cannam@124 3562 case $win32_nmres in
cannam@124 3563 import*) win32_libid_type="x86 archive import";;
cannam@124 3564 *) win32_libid_type="x86 archive static";;
cannam@124 3565 esac
cannam@124 3566 fi
cannam@124 3567 ;;
cannam@124 3568 *DLL*)
cannam@124 3569 win32_libid_type="x86 DLL"
cannam@124 3570 ;;
cannam@124 3571 *executable*) # but shell scripts are "executable" too...
cannam@124 3572 case $win32_fileres in
cannam@124 3573 *MS\ Windows\ PE\ Intel*)
cannam@124 3574 win32_libid_type="x86 DLL"
cannam@124 3575 ;;
cannam@124 3576 esac
cannam@124 3577 ;;
cannam@124 3578 esac
cannam@124 3579 $ECHO "$win32_libid_type"
cannam@124 3580 }
cannam@124 3581
cannam@124 3582 # func_cygming_dll_for_implib ARG
cannam@124 3583 #
cannam@124 3584 # Platform-specific function to extract the
cannam@124 3585 # name of the DLL associated with the specified
cannam@124 3586 # import library ARG.
cannam@124 3587 # Invoked by eval'ing the libtool variable
cannam@124 3588 # $sharedlib_from_linklib_cmd
cannam@124 3589 # Result is available in the variable
cannam@124 3590 # $sharedlib_from_linklib_result
cannam@124 3591 func_cygming_dll_for_implib ()
cannam@124 3592 {
cannam@124 3593 $opt_debug
cannam@124 3594 sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"`
cannam@124 3595 }
cannam@124 3596
cannam@124 3597 # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs
cannam@124 3598 #
cannam@124 3599 # The is the core of a fallback implementation of a
cannam@124 3600 # platform-specific function to extract the name of the
cannam@124 3601 # DLL associated with the specified import library LIBNAME.
cannam@124 3602 #
cannam@124 3603 # SECTION_NAME is either .idata$6 or .idata$7, depending
cannam@124 3604 # on the platform and compiler that created the implib.
cannam@124 3605 #
cannam@124 3606 # Echos the name of the DLL associated with the
cannam@124 3607 # specified import library.
cannam@124 3608 func_cygming_dll_for_implib_fallback_core ()
cannam@124 3609 {
cannam@124 3610 $opt_debug
cannam@124 3611 match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"`
cannam@124 3612 $OBJDUMP -s --section "$1" "$2" 2>/dev/null |
cannam@124 3613 $SED '/^Contents of section '"$match_literal"':/{
cannam@124 3614 # Place marker at beginning of archive member dllname section
cannam@124 3615 s/.*/====MARK====/
cannam@124 3616 p
cannam@124 3617 d
cannam@124 3618 }
cannam@124 3619 # These lines can sometimes be longer than 43 characters, but
cannam@124 3620 # are always uninteresting
cannam@124 3621 /:[ ]*file format pe[i]\{,1\}-/d
cannam@124 3622 /^In archive [^:]*:/d
cannam@124 3623 # Ensure marker is printed
cannam@124 3624 /^====MARK====/p
cannam@124 3625 # Remove all lines with less than 43 characters
cannam@124 3626 /^.\{43\}/!d
cannam@124 3627 # From remaining lines, remove first 43 characters
cannam@124 3628 s/^.\{43\}//' |
cannam@124 3629 $SED -n '
cannam@124 3630 # Join marker and all lines until next marker into a single line
cannam@124 3631 /^====MARK====/ b para
cannam@124 3632 H
cannam@124 3633 $ b para
cannam@124 3634 b
cannam@124 3635 :para
cannam@124 3636 x
cannam@124 3637 s/\n//g
cannam@124 3638 # Remove the marker
cannam@124 3639 s/^====MARK====//
cannam@124 3640 # Remove trailing dots and whitespace
cannam@124 3641 s/[\. \t]*$//
cannam@124 3642 # Print
cannam@124 3643 /./p' |
cannam@124 3644 # we now have a list, one entry per line, of the stringified
cannam@124 3645 # contents of the appropriate section of all members of the
cannam@124 3646 # archive which possess that section. Heuristic: eliminate
cannam@124 3647 # all those which have a first or second character that is
cannam@124 3648 # a '.' (that is, objdump's representation of an unprintable
cannam@124 3649 # character.) This should work for all archives with less than
cannam@124 3650 # 0x302f exports -- but will fail for DLLs whose name actually
cannam@124 3651 # begins with a literal '.' or a single character followed by
cannam@124 3652 # a '.'.
cannam@124 3653 #
cannam@124 3654 # Of those that remain, print the first one.
cannam@124 3655 $SED -e '/^\./d;/^.\./d;q'
cannam@124 3656 }
cannam@124 3657
cannam@124 3658 # func_cygming_gnu_implib_p ARG
cannam@124 3659 # This predicate returns with zero status (TRUE) if
cannam@124 3660 # ARG is a GNU/binutils-style import library. Returns
cannam@124 3661 # with nonzero status (FALSE) otherwise.
cannam@124 3662 func_cygming_gnu_implib_p ()
cannam@124 3663 {
cannam@124 3664 $opt_debug
cannam@124 3665 func_to_tool_file "$1" func_convert_file_msys_to_w32
cannam@124 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@124 3667 test -n "$func_cygming_gnu_implib_tmp"
cannam@124 3668 }
cannam@124 3669
cannam@124 3670 # func_cygming_ms_implib_p ARG
cannam@124 3671 # This predicate returns with zero status (TRUE) if
cannam@124 3672 # ARG is an MS-style import library. Returns
cannam@124 3673 # with nonzero status (FALSE) otherwise.
cannam@124 3674 func_cygming_ms_implib_p ()
cannam@124 3675 {
cannam@124 3676 $opt_debug
cannam@124 3677 func_to_tool_file "$1" func_convert_file_msys_to_w32
cannam@124 3678 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'`
cannam@124 3679 test -n "$func_cygming_ms_implib_tmp"
cannam@124 3680 }
cannam@124 3681
cannam@124 3682 # func_cygming_dll_for_implib_fallback ARG
cannam@124 3683 # Platform-specific function to extract the
cannam@124 3684 # name of the DLL associated with the specified
cannam@124 3685 # import library ARG.
cannam@124 3686 #
cannam@124 3687 # This fallback implementation is for use when $DLLTOOL
cannam@124 3688 # does not support the --identify-strict option.
cannam@124 3689 # Invoked by eval'ing the libtool variable
cannam@124 3690 # $sharedlib_from_linklib_cmd
cannam@124 3691 # Result is available in the variable
cannam@124 3692 # $sharedlib_from_linklib_result
cannam@124 3693 func_cygming_dll_for_implib_fallback ()
cannam@124 3694 {
cannam@124 3695 $opt_debug
cannam@124 3696 if func_cygming_gnu_implib_p "$1" ; then
cannam@124 3697 # binutils import library
cannam@124 3698 sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"`
cannam@124 3699 elif func_cygming_ms_implib_p "$1" ; then
cannam@124 3700 # ms-generated import library
cannam@124 3701 sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"`
cannam@124 3702 else
cannam@124 3703 # unknown
cannam@124 3704 sharedlib_from_linklib_result=""
cannam@124 3705 fi
cannam@124 3706 }
cannam@124 3707
cannam@124 3708
cannam@124 3709 # func_extract_an_archive dir oldlib
cannam@124 3710 func_extract_an_archive ()
cannam@124 3711 {
cannam@124 3712 $opt_debug
cannam@124 3713 f_ex_an_ar_dir="$1"; shift
cannam@124 3714 f_ex_an_ar_oldlib="$1"
cannam@124 3715 if test "$lock_old_archive_extraction" = yes; then
cannam@124 3716 lockfile=$f_ex_an_ar_oldlib.lock
cannam@124 3717 until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do
cannam@124 3718 func_echo "Waiting for $lockfile to be removed"
cannam@124 3719 sleep 2
cannam@124 3720 done
cannam@124 3721 fi
cannam@124 3722 func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \
cannam@124 3723 'stat=$?; rm -f "$lockfile"; exit $stat'
cannam@124 3724 if test "$lock_old_archive_extraction" = yes; then
cannam@124 3725 $opt_dry_run || rm -f "$lockfile"
cannam@124 3726 fi
cannam@124 3727 if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
cannam@124 3728 :
cannam@124 3729 else
cannam@124 3730 func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib"
cannam@124 3731 fi
cannam@124 3732 }
cannam@124 3733
cannam@124 3734
cannam@124 3735 # func_extract_archives gentop oldlib ...
cannam@124 3736 func_extract_archives ()
cannam@124 3737 {
cannam@124 3738 $opt_debug
cannam@124 3739 my_gentop="$1"; shift
cannam@124 3740 my_oldlibs=${1+"$@"}
cannam@124 3741 my_oldobjs=""
cannam@124 3742 my_xlib=""
cannam@124 3743 my_xabs=""
cannam@124 3744 my_xdir=""
cannam@124 3745
cannam@124 3746 for my_xlib in $my_oldlibs; do
cannam@124 3747 # Extract the objects.
cannam@124 3748 case $my_xlib in
cannam@124 3749 [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;;
cannam@124 3750 *) my_xabs=`pwd`"/$my_xlib" ;;
cannam@124 3751 esac
cannam@124 3752 func_basename "$my_xlib"
cannam@124 3753 my_xlib="$func_basename_result"
cannam@124 3754 my_xlib_u=$my_xlib
cannam@124 3755 while :; do
cannam@124 3756 case " $extracted_archives " in
cannam@124 3757 *" $my_xlib_u "*)
cannam@124 3758 func_arith $extracted_serial + 1
cannam@124 3759 extracted_serial=$func_arith_result
cannam@124 3760 my_xlib_u=lt$extracted_serial-$my_xlib ;;
cannam@124 3761 *) break ;;
cannam@124 3762 esac
cannam@124 3763 done
cannam@124 3764 extracted_archives="$extracted_archives $my_xlib_u"
cannam@124 3765 my_xdir="$my_gentop/$my_xlib_u"
cannam@124 3766
cannam@124 3767 func_mkdir_p "$my_xdir"
cannam@124 3768
cannam@124 3769 case $host in
cannam@124 3770 *-darwin*)
cannam@124 3771 func_verbose "Extracting $my_xabs"
cannam@124 3772 # Do not bother doing anything if just a dry run
cannam@124 3773 $opt_dry_run || {
cannam@124 3774 darwin_orig_dir=`pwd`
cannam@124 3775 cd $my_xdir || exit $?
cannam@124 3776 darwin_archive=$my_xabs
cannam@124 3777 darwin_curdir=`pwd`
cannam@124 3778 darwin_base_archive=`basename "$darwin_archive"`
cannam@124 3779 darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true`
cannam@124 3780 if test -n "$darwin_arches"; then
cannam@124 3781 darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'`
cannam@124 3782 darwin_arch=
cannam@124 3783 func_verbose "$darwin_base_archive has multiple architectures $darwin_arches"
cannam@124 3784 for darwin_arch in $darwin_arches ; do
cannam@124 3785 func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}"
cannam@124 3786 $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}"
cannam@124 3787 cd "unfat-$$/${darwin_base_archive}-${darwin_arch}"
cannam@124 3788 func_extract_an_archive "`pwd`" "${darwin_base_archive}"
cannam@124 3789 cd "$darwin_curdir"
cannam@124 3790 $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}"
cannam@124 3791 done # $darwin_arches
cannam@124 3792 ## Okay now we've a bunch of thin objects, gotta fatten them up :)
cannam@124 3793 darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u`
cannam@124 3794 darwin_file=
cannam@124 3795 darwin_files=
cannam@124 3796 for darwin_file in $darwin_filelist; do
cannam@124 3797 darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP`
cannam@124 3798 $LIPO -create -output "$darwin_file" $darwin_files
cannam@124 3799 done # $darwin_filelist
cannam@124 3800 $RM -rf unfat-$$
cannam@124 3801 cd "$darwin_orig_dir"
cannam@124 3802 else
cannam@124 3803 cd $darwin_orig_dir
cannam@124 3804 func_extract_an_archive "$my_xdir" "$my_xabs"
cannam@124 3805 fi # $darwin_arches
cannam@124 3806 } # !$opt_dry_run
cannam@124 3807 ;;
cannam@124 3808 *)
cannam@124 3809 func_extract_an_archive "$my_xdir" "$my_xabs"
cannam@124 3810 ;;
cannam@124 3811 esac
cannam@124 3812 my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP`
cannam@124 3813 done
cannam@124 3814
cannam@124 3815 func_extract_archives_result="$my_oldobjs"
cannam@124 3816 }
cannam@124 3817
cannam@124 3818
cannam@124 3819 # func_emit_wrapper [arg=no]
cannam@124 3820 #
cannam@124 3821 # Emit a libtool wrapper script on stdout.
cannam@124 3822 # Don't directly open a file because we may want to
cannam@124 3823 # incorporate the script contents within a cygwin/mingw
cannam@124 3824 # wrapper executable. Must ONLY be called from within
cannam@124 3825 # func_mode_link because it depends on a number of variables
cannam@124 3826 # set therein.
cannam@124 3827 #
cannam@124 3828 # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR
cannam@124 3829 # variable will take. If 'yes', then the emitted script
cannam@124 3830 # will assume that the directory in which it is stored is
cannam@124 3831 # the $objdir directory. This is a cygwin/mingw-specific
cannam@124 3832 # behavior.
cannam@124 3833 func_emit_wrapper ()
cannam@124 3834 {
cannam@124 3835 func_emit_wrapper_arg1=${1-no}
cannam@124 3836
cannam@124 3837 $ECHO "\
cannam@124 3838 #! $SHELL
cannam@124 3839
cannam@124 3840 # $output - temporary wrapper script for $objdir/$outputname
cannam@124 3841 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@124 3842 #
cannam@124 3843 # The $output program cannot be directly executed until all the libtool
cannam@124 3844 # libraries that it depends on are installed.
cannam@124 3845 #
cannam@124 3846 # This wrapper script should never be moved out of the build directory.
cannam@124 3847 # If it is, it will not operate correctly.
cannam@124 3848
cannam@124 3849 # Sed substitution that helps us do robust quoting. It backslashifies
cannam@124 3850 # metacharacters that are still active within double-quoted strings.
cannam@124 3851 sed_quote_subst='$sed_quote_subst'
cannam@124 3852
cannam@124 3853 # Be Bourne compatible
cannam@124 3854 if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then
cannam@124 3855 emulate sh
cannam@124 3856 NULLCMD=:
cannam@124 3857 # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which
cannam@124 3858 # is contrary to our usage. Disable this feature.
cannam@124 3859 alias -g '\${1+\"\$@\"}'='\"\$@\"'
cannam@124 3860 setopt NO_GLOB_SUBST
cannam@124 3861 else
cannam@124 3862 case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac
cannam@124 3863 fi
cannam@124 3864 BIN_SH=xpg4; export BIN_SH # for Tru64
cannam@124 3865 DUALCASE=1; export DUALCASE # for MKS sh
cannam@124 3866
cannam@124 3867 # The HP-UX ksh and POSIX shell print the target directory to stdout
cannam@124 3868 # if CDPATH is set.
cannam@124 3869 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
cannam@124 3870
cannam@124 3871 relink_command=\"$relink_command\"
cannam@124 3872
cannam@124 3873 # This environment variable determines our operation mode.
cannam@124 3874 if test \"\$libtool_install_magic\" = \"$magic\"; then
cannam@124 3875 # install mode needs the following variables:
cannam@124 3876 generated_by_libtool_version='$macro_version'
cannam@124 3877 notinst_deplibs='$notinst_deplibs'
cannam@124 3878 else
cannam@124 3879 # When we are sourced in execute mode, \$file and \$ECHO are already set.
cannam@124 3880 if test \"\$libtool_execute_magic\" != \"$magic\"; then
cannam@124 3881 file=\"\$0\""
cannam@124 3882
cannam@124 3883 qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"`
cannam@124 3884 $ECHO "\
cannam@124 3885
cannam@124 3886 # A function that is used when there is no print builtin or printf.
cannam@124 3887 func_fallback_echo ()
cannam@124 3888 {
cannam@124 3889 eval 'cat <<_LTECHO_EOF
cannam@124 3890 \$1
cannam@124 3891 _LTECHO_EOF'
cannam@124 3892 }
cannam@124 3893 ECHO=\"$qECHO\"
cannam@124 3894 fi
cannam@124 3895
cannam@124 3896 # Very basic option parsing. These options are (a) specific to
cannam@124 3897 # the libtool wrapper, (b) are identical between the wrapper
cannam@124 3898 # /script/ and the wrapper /executable/ which is used only on
cannam@124 3899 # windows platforms, and (c) all begin with the string "--lt-"
cannam@124 3900 # (application programs are unlikely to have options which match
cannam@124 3901 # this pattern).
cannam@124 3902 #
cannam@124 3903 # There are only two supported options: --lt-debug and
cannam@124 3904 # --lt-dump-script. There is, deliberately, no --lt-help.
cannam@124 3905 #
cannam@124 3906 # The first argument to this parsing function should be the
cannam@124 3907 # script's $0 value, followed by "$@".
cannam@124 3908 lt_option_debug=
cannam@124 3909 func_parse_lt_options ()
cannam@124 3910 {
cannam@124 3911 lt_script_arg0=\$0
cannam@124 3912 shift
cannam@124 3913 for lt_opt
cannam@124 3914 do
cannam@124 3915 case \"\$lt_opt\" in
cannam@124 3916 --lt-debug) lt_option_debug=1 ;;
cannam@124 3917 --lt-dump-script)
cannam@124 3918 lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\`
cannam@124 3919 test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=.
cannam@124 3920 lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\`
cannam@124 3921 cat \"\$lt_dump_D/\$lt_dump_F\"
cannam@124 3922 exit 0
cannam@124 3923 ;;
cannam@124 3924 --lt-*)
cannam@124 3925 \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2
cannam@124 3926 exit 1
cannam@124 3927 ;;
cannam@124 3928 esac
cannam@124 3929 done
cannam@124 3930
cannam@124 3931 # Print the debug banner immediately:
cannam@124 3932 if test -n \"\$lt_option_debug\"; then
cannam@124 3933 echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2
cannam@124 3934 fi
cannam@124 3935 }
cannam@124 3936
cannam@124 3937 # Used when --lt-debug. Prints its arguments to stdout
cannam@124 3938 # (redirection is the responsibility of the caller)
cannam@124 3939 func_lt_dump_args ()
cannam@124 3940 {
cannam@124 3941 lt_dump_args_N=1;
cannam@124 3942 for lt_arg
cannam@124 3943 do
cannam@124 3944 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\"
cannam@124 3945 lt_dump_args_N=\`expr \$lt_dump_args_N + 1\`
cannam@124 3946 done
cannam@124 3947 }
cannam@124 3948
cannam@124 3949 # Core function for launching the target application
cannam@124 3950 func_exec_program_core ()
cannam@124 3951 {
cannam@124 3952 "
cannam@124 3953 case $host in
cannam@124 3954 # Backslashes separate directories on plain windows
cannam@124 3955 *-*-mingw | *-*-os2* | *-cegcc*)
cannam@124 3956 $ECHO "\
cannam@124 3957 if test -n \"\$lt_option_debug\"; then
cannam@124 3958 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2
cannam@124 3959 func_lt_dump_args \${1+\"\$@\"} 1>&2
cannam@124 3960 fi
cannam@124 3961 exec \"\$progdir\\\\\$program\" \${1+\"\$@\"}
cannam@124 3962 "
cannam@124 3963 ;;
cannam@124 3964
cannam@124 3965 *)
cannam@124 3966 $ECHO "\
cannam@124 3967 if test -n \"\$lt_option_debug\"; then
cannam@124 3968 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2
cannam@124 3969 func_lt_dump_args \${1+\"\$@\"} 1>&2
cannam@124 3970 fi
cannam@124 3971 exec \"\$progdir/\$program\" \${1+\"\$@\"}
cannam@124 3972 "
cannam@124 3973 ;;
cannam@124 3974 esac
cannam@124 3975 $ECHO "\
cannam@124 3976 \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2
cannam@124 3977 exit 1
cannam@124 3978 }
cannam@124 3979
cannam@124 3980 # A function to encapsulate launching the target application
cannam@124 3981 # Strips options in the --lt-* namespace from \$@ and
cannam@124 3982 # launches target application with the remaining arguments.
cannam@124 3983 func_exec_program ()
cannam@124 3984 {
cannam@124 3985 for lt_wr_arg
cannam@124 3986 do
cannam@124 3987 case \$lt_wr_arg in
cannam@124 3988 --lt-*) ;;
cannam@124 3989 *) set x \"\$@\" \"\$lt_wr_arg\"; shift;;
cannam@124 3990 esac
cannam@124 3991 shift
cannam@124 3992 done
cannam@124 3993 func_exec_program_core \${1+\"\$@\"}
cannam@124 3994 }
cannam@124 3995
cannam@124 3996 # Parse options
cannam@124 3997 func_parse_lt_options \"\$0\" \${1+\"\$@\"}
cannam@124 3998
cannam@124 3999 # Find the directory that this script lives in.
cannam@124 4000 thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\`
cannam@124 4001 test \"x\$thisdir\" = \"x\$file\" && thisdir=.
cannam@124 4002
cannam@124 4003 # Follow symbolic links until we get to the real thisdir.
cannam@124 4004 file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\`
cannam@124 4005 while test -n \"\$file\"; do
cannam@124 4006 destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\`
cannam@124 4007
cannam@124 4008 # If there was a directory component, then change thisdir.
cannam@124 4009 if test \"x\$destdir\" != \"x\$file\"; then
cannam@124 4010 case \"\$destdir\" in
cannam@124 4011 [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
cannam@124 4012 *) thisdir=\"\$thisdir/\$destdir\" ;;
cannam@124 4013 esac
cannam@124 4014 fi
cannam@124 4015
cannam@124 4016 file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\`
cannam@124 4017 file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\`
cannam@124 4018 done
cannam@124 4019
cannam@124 4020 # Usually 'no', except on cygwin/mingw when embedded into
cannam@124 4021 # the cwrapper.
cannam@124 4022 WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1
cannam@124 4023 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then
cannam@124 4024 # special case for '.'
cannam@124 4025 if test \"\$thisdir\" = \".\"; then
cannam@124 4026 thisdir=\`pwd\`
cannam@124 4027 fi
cannam@124 4028 # remove .libs from thisdir
cannam@124 4029 case \"\$thisdir\" in
cannam@124 4030 *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;;
cannam@124 4031 $objdir ) thisdir=. ;;
cannam@124 4032 esac
cannam@124 4033 fi
cannam@124 4034
cannam@124 4035 # Try to get the absolute directory name.
cannam@124 4036 absdir=\`cd \"\$thisdir\" && pwd\`
cannam@124 4037 test -n \"\$absdir\" && thisdir=\"\$absdir\"
cannam@124 4038 "
cannam@124 4039
cannam@124 4040 if test "$fast_install" = yes; then
cannam@124 4041 $ECHO "\
cannam@124 4042 program=lt-'$outputname'$exeext
cannam@124 4043 progdir=\"\$thisdir/$objdir\"
cannam@124 4044
cannam@124 4045 if test ! -f \"\$progdir/\$program\" ||
cannam@124 4046 { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\
cannam@124 4047 test \"X\$file\" != \"X\$progdir/\$program\"; }; then
cannam@124 4048
cannam@124 4049 file=\"\$\$-\$program\"
cannam@124 4050
cannam@124 4051 if test ! -d \"\$progdir\"; then
cannam@124 4052 $MKDIR \"\$progdir\"
cannam@124 4053 else
cannam@124 4054 $RM \"\$progdir/\$file\"
cannam@124 4055 fi"
cannam@124 4056
cannam@124 4057 $ECHO "\
cannam@124 4058
cannam@124 4059 # relink executable if necessary
cannam@124 4060 if test -n \"\$relink_command\"; then
cannam@124 4061 if relink_command_output=\`eval \$relink_command 2>&1\`; then :
cannam@124 4062 else
cannam@124 4063 $ECHO \"\$relink_command_output\" >&2
cannam@124 4064 $RM \"\$progdir/\$file\"
cannam@124 4065 exit 1
cannam@124 4066 fi
cannam@124 4067 fi
cannam@124 4068
cannam@124 4069 $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
cannam@124 4070 { $RM \"\$progdir/\$program\";
cannam@124 4071 $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; }
cannam@124 4072 $RM \"\$progdir/\$file\"
cannam@124 4073 fi"
cannam@124 4074 else
cannam@124 4075 $ECHO "\
cannam@124 4076 program='$outputname'
cannam@124 4077 progdir=\"\$thisdir/$objdir\"
cannam@124 4078 "
cannam@124 4079 fi
cannam@124 4080
cannam@124 4081 $ECHO "\
cannam@124 4082
cannam@124 4083 if test -f \"\$progdir/\$program\"; then"
cannam@124 4084
cannam@124 4085 # fixup the dll searchpath if we need to.
cannam@124 4086 #
cannam@124 4087 # Fix the DLL searchpath if we need to. Do this before prepending
cannam@124 4088 # to shlibpath, because on Windows, both are PATH and uninstalled
cannam@124 4089 # libraries must come first.
cannam@124 4090 if test -n "$dllsearchpath"; then
cannam@124 4091 $ECHO "\
cannam@124 4092 # Add the dll search path components to the executable PATH
cannam@124 4093 PATH=$dllsearchpath:\$PATH
cannam@124 4094 "
cannam@124 4095 fi
cannam@124 4096
cannam@124 4097 # Export our shlibpath_var if we have one.
cannam@124 4098 if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
cannam@124 4099 $ECHO "\
cannam@124 4100 # Add our own library path to $shlibpath_var
cannam@124 4101 $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
cannam@124 4102
cannam@124 4103 # Some systems cannot cope with colon-terminated $shlibpath_var
cannam@124 4104 # The second colon is a workaround for a bug in BeOS R4 sed
cannam@124 4105 $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\`
cannam@124 4106
cannam@124 4107 export $shlibpath_var
cannam@124 4108 "
cannam@124 4109 fi
cannam@124 4110
cannam@124 4111 $ECHO "\
cannam@124 4112 if test \"\$libtool_execute_magic\" != \"$magic\"; then
cannam@124 4113 # Run the actual program with our arguments.
cannam@124 4114 func_exec_program \${1+\"\$@\"}
cannam@124 4115 fi
cannam@124 4116 else
cannam@124 4117 # The program doesn't exist.
cannam@124 4118 \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2
cannam@124 4119 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2
cannam@124 4120 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2
cannam@124 4121 exit 1
cannam@124 4122 fi
cannam@124 4123 fi\
cannam@124 4124 "
cannam@124 4125 }
cannam@124 4126
cannam@124 4127
cannam@124 4128 # func_emit_cwrapperexe_src
cannam@124 4129 # emit the source code for a wrapper executable on stdout
cannam@124 4130 # Must ONLY be called from within func_mode_link because
cannam@124 4131 # it depends on a number of variable set therein.
cannam@124 4132 func_emit_cwrapperexe_src ()
cannam@124 4133 {
cannam@124 4134 cat <<EOF
cannam@124 4135
cannam@124 4136 /* $cwrappersource - temporary wrapper executable for $objdir/$outputname
cannam@124 4137 Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@124 4138
cannam@124 4139 The $output program cannot be directly executed until all the libtool
cannam@124 4140 libraries that it depends on are installed.
cannam@124 4141
cannam@124 4142 This wrapper executable should never be moved out of the build directory.
cannam@124 4143 If it is, it will not operate correctly.
cannam@124 4144 */
cannam@124 4145 EOF
cannam@124 4146 cat <<"EOF"
cannam@124 4147 #ifdef _MSC_VER
cannam@124 4148 # define _CRT_SECURE_NO_DEPRECATE 1
cannam@124 4149 #endif
cannam@124 4150 #include <stdio.h>
cannam@124 4151 #include <stdlib.h>
cannam@124 4152 #ifdef _MSC_VER
cannam@124 4153 # include <direct.h>
cannam@124 4154 # include <process.h>
cannam@124 4155 # include <io.h>
cannam@124 4156 #else
cannam@124 4157 # include <unistd.h>
cannam@124 4158 # include <stdint.h>
cannam@124 4159 # ifdef __CYGWIN__
cannam@124 4160 # include <io.h>
cannam@124 4161 # endif
cannam@124 4162 #endif
cannam@124 4163 #include <malloc.h>
cannam@124 4164 #include <stdarg.h>
cannam@124 4165 #include <assert.h>
cannam@124 4166 #include <string.h>
cannam@124 4167 #include <ctype.h>
cannam@124 4168 #include <errno.h>
cannam@124 4169 #include <fcntl.h>
cannam@124 4170 #include <sys/stat.h>
cannam@124 4171
cannam@124 4172 /* declarations of non-ANSI functions */
cannam@124 4173 #if defined(__MINGW32__)
cannam@124 4174 # ifdef __STRICT_ANSI__
cannam@124 4175 int _putenv (const char *);
cannam@124 4176 # endif
cannam@124 4177 #elif defined(__CYGWIN__)
cannam@124 4178 # ifdef __STRICT_ANSI__
cannam@124 4179 char *realpath (const char *, char *);
cannam@124 4180 int putenv (char *);
cannam@124 4181 int setenv (const char *, const char *, int);
cannam@124 4182 # endif
cannam@124 4183 /* #elif defined (other platforms) ... */
cannam@124 4184 #endif
cannam@124 4185
cannam@124 4186 /* portability defines, excluding path handling macros */
cannam@124 4187 #if defined(_MSC_VER)
cannam@124 4188 # define setmode _setmode
cannam@124 4189 # define stat _stat
cannam@124 4190 # define chmod _chmod
cannam@124 4191 # define getcwd _getcwd
cannam@124 4192 # define putenv _putenv
cannam@124 4193 # define S_IXUSR _S_IEXEC
cannam@124 4194 # ifndef _INTPTR_T_DEFINED
cannam@124 4195 # define _INTPTR_T_DEFINED
cannam@124 4196 # define intptr_t int
cannam@124 4197 # endif
cannam@124 4198 #elif defined(__MINGW32__)
cannam@124 4199 # define setmode _setmode
cannam@124 4200 # define stat _stat
cannam@124 4201 # define chmod _chmod
cannam@124 4202 # define getcwd _getcwd
cannam@124 4203 # define putenv _putenv
cannam@124 4204 #elif defined(__CYGWIN__)
cannam@124 4205 # define HAVE_SETENV
cannam@124 4206 # define FOPEN_WB "wb"
cannam@124 4207 /* #elif defined (other platforms) ... */
cannam@124 4208 #endif
cannam@124 4209
cannam@124 4210 #if defined(PATH_MAX)
cannam@124 4211 # define LT_PATHMAX PATH_MAX
cannam@124 4212 #elif defined(MAXPATHLEN)
cannam@124 4213 # define LT_PATHMAX MAXPATHLEN
cannam@124 4214 #else
cannam@124 4215 # define LT_PATHMAX 1024
cannam@124 4216 #endif
cannam@124 4217
cannam@124 4218 #ifndef S_IXOTH
cannam@124 4219 # define S_IXOTH 0
cannam@124 4220 #endif
cannam@124 4221 #ifndef S_IXGRP
cannam@124 4222 # define S_IXGRP 0
cannam@124 4223 #endif
cannam@124 4224
cannam@124 4225 /* path handling portability macros */
cannam@124 4226 #ifndef DIR_SEPARATOR
cannam@124 4227 # define DIR_SEPARATOR '/'
cannam@124 4228 # define PATH_SEPARATOR ':'
cannam@124 4229 #endif
cannam@124 4230
cannam@124 4231 #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \
cannam@124 4232 defined (__OS2__)
cannam@124 4233 # define HAVE_DOS_BASED_FILE_SYSTEM
cannam@124 4234 # define FOPEN_WB "wb"
cannam@124 4235 # ifndef DIR_SEPARATOR_2
cannam@124 4236 # define DIR_SEPARATOR_2 '\\'
cannam@124 4237 # endif
cannam@124 4238 # ifndef PATH_SEPARATOR_2
cannam@124 4239 # define PATH_SEPARATOR_2 ';'
cannam@124 4240 # endif
cannam@124 4241 #endif
cannam@124 4242
cannam@124 4243 #ifndef DIR_SEPARATOR_2
cannam@124 4244 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
cannam@124 4245 #else /* DIR_SEPARATOR_2 */
cannam@124 4246 # define IS_DIR_SEPARATOR(ch) \
cannam@124 4247 (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
cannam@124 4248 #endif /* DIR_SEPARATOR_2 */
cannam@124 4249
cannam@124 4250 #ifndef PATH_SEPARATOR_2
cannam@124 4251 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR)
cannam@124 4252 #else /* PATH_SEPARATOR_2 */
cannam@124 4253 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2)
cannam@124 4254 #endif /* PATH_SEPARATOR_2 */
cannam@124 4255
cannam@124 4256 #ifndef FOPEN_WB
cannam@124 4257 # define FOPEN_WB "w"
cannam@124 4258 #endif
cannam@124 4259 #ifndef _O_BINARY
cannam@124 4260 # define _O_BINARY 0
cannam@124 4261 #endif
cannam@124 4262
cannam@124 4263 #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type)))
cannam@124 4264 #define XFREE(stale) do { \
cannam@124 4265 if (stale) { free ((void *) stale); stale = 0; } \
cannam@124 4266 } while (0)
cannam@124 4267
cannam@124 4268 #if defined(LT_DEBUGWRAPPER)
cannam@124 4269 static int lt_debug = 1;
cannam@124 4270 #else
cannam@124 4271 static int lt_debug = 0;
cannam@124 4272 #endif
cannam@124 4273
cannam@124 4274 const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */
cannam@124 4275
cannam@124 4276 void *xmalloc (size_t num);
cannam@124 4277 char *xstrdup (const char *string);
cannam@124 4278 const char *base_name (const char *name);
cannam@124 4279 char *find_executable (const char *wrapper);
cannam@124 4280 char *chase_symlinks (const char *pathspec);
cannam@124 4281 int make_executable (const char *path);
cannam@124 4282 int check_executable (const char *path);
cannam@124 4283 char *strendzap (char *str, const char *pat);
cannam@124 4284 void lt_debugprintf (const char *file, int line, const char *fmt, ...);
cannam@124 4285 void lt_fatal (const char *file, int line, const char *message, ...);
cannam@124 4286 static const char *nonnull (const char *s);
cannam@124 4287 static const char *nonempty (const char *s);
cannam@124 4288 void lt_setenv (const char *name, const char *value);
cannam@124 4289 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
cannam@124 4290 void lt_update_exe_path (const char *name, const char *value);
cannam@124 4291 void lt_update_lib_path (const char *name, const char *value);
cannam@124 4292 char **prepare_spawn (char **argv);
cannam@124 4293 void lt_dump_script (FILE *f);
cannam@124 4294 EOF
cannam@124 4295
cannam@124 4296 cat <<EOF
cannam@124 4297 volatile const char * MAGIC_EXE = "$magic_exe";
cannam@124 4298 const char * LIB_PATH_VARNAME = "$shlibpath_var";
cannam@124 4299 EOF
cannam@124 4300
cannam@124 4301 if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
cannam@124 4302 func_to_host_path "$temp_rpath"
cannam@124 4303 cat <<EOF
cannam@124 4304 const char * LIB_PATH_VALUE = "$func_to_host_path_result";
cannam@124 4305 EOF
cannam@124 4306 else
cannam@124 4307 cat <<"EOF"
cannam@124 4308 const char * LIB_PATH_VALUE = "";
cannam@124 4309 EOF
cannam@124 4310 fi
cannam@124 4311
cannam@124 4312 if test -n "$dllsearchpath"; then
cannam@124 4313 func_to_host_path "$dllsearchpath:"
cannam@124 4314 cat <<EOF
cannam@124 4315 const char * EXE_PATH_VARNAME = "PATH";
cannam@124 4316 const char * EXE_PATH_VALUE = "$func_to_host_path_result";
cannam@124 4317 EOF
cannam@124 4318 else
cannam@124 4319 cat <<"EOF"
cannam@124 4320 const char * EXE_PATH_VARNAME = "";
cannam@124 4321 const char * EXE_PATH_VALUE = "";
cannam@124 4322 EOF
cannam@124 4323 fi
cannam@124 4324
cannam@124 4325 if test "$fast_install" = yes; then
cannam@124 4326 cat <<EOF
cannam@124 4327 const char * TARGET_PROGRAM_NAME = "lt-$outputname"; /* hopefully, no .exe */
cannam@124 4328 EOF
cannam@124 4329 else
cannam@124 4330 cat <<EOF
cannam@124 4331 const char * TARGET_PROGRAM_NAME = "$outputname"; /* hopefully, no .exe */
cannam@124 4332 EOF
cannam@124 4333 fi
cannam@124 4334
cannam@124 4335
cannam@124 4336 cat <<"EOF"
cannam@124 4337
cannam@124 4338 #define LTWRAPPER_OPTION_PREFIX "--lt-"
cannam@124 4339
cannam@124 4340 static const char *ltwrapper_option_prefix = LTWRAPPER_OPTION_PREFIX;
cannam@124 4341 static const char *dumpscript_opt = LTWRAPPER_OPTION_PREFIX "dump-script";
cannam@124 4342 static const char *debug_opt = LTWRAPPER_OPTION_PREFIX "debug";
cannam@124 4343
cannam@124 4344 int
cannam@124 4345 main (int argc, char *argv[])
cannam@124 4346 {
cannam@124 4347 char **newargz;
cannam@124 4348 int newargc;
cannam@124 4349 char *tmp_pathspec;
cannam@124 4350 char *actual_cwrapper_path;
cannam@124 4351 char *actual_cwrapper_name;
cannam@124 4352 char *target_name;
cannam@124 4353 char *lt_argv_zero;
cannam@124 4354 intptr_t rval = 127;
cannam@124 4355
cannam@124 4356 int i;
cannam@124 4357
cannam@124 4358 program_name = (char *) xstrdup (base_name (argv[0]));
cannam@124 4359 newargz = XMALLOC (char *, argc + 1);
cannam@124 4360
cannam@124 4361 /* very simple arg parsing; don't want to rely on getopt
cannam@124 4362 * also, copy all non cwrapper options to newargz, except
cannam@124 4363 * argz[0], which is handled differently
cannam@124 4364 */
cannam@124 4365 newargc=0;
cannam@124 4366 for (i = 1; i < argc; i++)
cannam@124 4367 {
cannam@124 4368 if (strcmp (argv[i], dumpscript_opt) == 0)
cannam@124 4369 {
cannam@124 4370 EOF
cannam@124 4371 case "$host" in
cannam@124 4372 *mingw* | *cygwin* )
cannam@124 4373 # make stdout use "unix" line endings
cannam@124 4374 echo " setmode(1,_O_BINARY);"
cannam@124 4375 ;;
cannam@124 4376 esac
cannam@124 4377
cannam@124 4378 cat <<"EOF"
cannam@124 4379 lt_dump_script (stdout);
cannam@124 4380 return 0;
cannam@124 4381 }
cannam@124 4382 if (strcmp (argv[i], debug_opt) == 0)
cannam@124 4383 {
cannam@124 4384 lt_debug = 1;
cannam@124 4385 continue;
cannam@124 4386 }
cannam@124 4387 if (strcmp (argv[i], ltwrapper_option_prefix) == 0)
cannam@124 4388 {
cannam@124 4389 /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX
cannam@124 4390 namespace, but it is not one of the ones we know about and
cannam@124 4391 have already dealt with, above (inluding dump-script), then
cannam@124 4392 report an error. Otherwise, targets might begin to believe
cannam@124 4393 they are allowed to use options in the LTWRAPPER_OPTION_PREFIX
cannam@124 4394 namespace. The first time any user complains about this, we'll
cannam@124 4395 need to make LTWRAPPER_OPTION_PREFIX a configure-time option
cannam@124 4396 or a configure.ac-settable value.
cannam@124 4397 */
cannam@124 4398 lt_fatal (__FILE__, __LINE__,
cannam@124 4399 "unrecognized %s option: '%s'",
cannam@124 4400 ltwrapper_option_prefix, argv[i]);
cannam@124 4401 }
cannam@124 4402 /* otherwise ... */
cannam@124 4403 newargz[++newargc] = xstrdup (argv[i]);
cannam@124 4404 }
cannam@124 4405 newargz[++newargc] = NULL;
cannam@124 4406
cannam@124 4407 EOF
cannam@124 4408 cat <<EOF
cannam@124 4409 /* The GNU banner must be the first non-error debug message */
cannam@124 4410 lt_debugprintf (__FILE__, __LINE__, "libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\n");
cannam@124 4411 EOF
cannam@124 4412 cat <<"EOF"
cannam@124 4413 lt_debugprintf (__FILE__, __LINE__, "(main) argv[0]: %s\n", argv[0]);
cannam@124 4414 lt_debugprintf (__FILE__, __LINE__, "(main) program_name: %s\n", program_name);
cannam@124 4415
cannam@124 4416 tmp_pathspec = find_executable (argv[0]);
cannam@124 4417 if (tmp_pathspec == NULL)
cannam@124 4418 lt_fatal (__FILE__, __LINE__, "couldn't find %s", argv[0]);
cannam@124 4419 lt_debugprintf (__FILE__, __LINE__,
cannam@124 4420 "(main) found exe (before symlink chase) at: %s\n",
cannam@124 4421 tmp_pathspec);
cannam@124 4422
cannam@124 4423 actual_cwrapper_path = chase_symlinks (tmp_pathspec);
cannam@124 4424 lt_debugprintf (__FILE__, __LINE__,
cannam@124 4425 "(main) found exe (after symlink chase) at: %s\n",
cannam@124 4426 actual_cwrapper_path);
cannam@124 4427 XFREE (tmp_pathspec);
cannam@124 4428
cannam@124 4429 actual_cwrapper_name = xstrdup (base_name (actual_cwrapper_path));
cannam@124 4430 strendzap (actual_cwrapper_path, actual_cwrapper_name);
cannam@124 4431
cannam@124 4432 /* wrapper name transforms */
cannam@124 4433 strendzap (actual_cwrapper_name, ".exe");
cannam@124 4434 tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
cannam@124 4435 XFREE (actual_cwrapper_name);
cannam@124 4436 actual_cwrapper_name = tmp_pathspec;
cannam@124 4437 tmp_pathspec = 0;
cannam@124 4438
cannam@124 4439 /* target_name transforms -- use actual target program name; might have lt- prefix */
cannam@124 4440 target_name = xstrdup (base_name (TARGET_PROGRAM_NAME));
cannam@124 4441 strendzap (target_name, ".exe");
cannam@124 4442 tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
cannam@124 4443 XFREE (target_name);
cannam@124 4444 target_name = tmp_pathspec;
cannam@124 4445 tmp_pathspec = 0;
cannam@124 4446
cannam@124 4447 lt_debugprintf (__FILE__, __LINE__,
cannam@124 4448 "(main) libtool target name: %s\n",
cannam@124 4449 target_name);
cannam@124 4450 EOF
cannam@124 4451
cannam@124 4452 cat <<EOF
cannam@124 4453 newargz[0] =
cannam@124 4454 XMALLOC (char, (strlen (actual_cwrapper_path) +
cannam@124 4455 strlen ("$objdir") + 1 + strlen (actual_cwrapper_name) + 1));
cannam@124 4456 strcpy (newargz[0], actual_cwrapper_path);
cannam@124 4457 strcat (newargz[0], "$objdir");
cannam@124 4458 strcat (newargz[0], "/");
cannam@124 4459 EOF
cannam@124 4460
cannam@124 4461 cat <<"EOF"
cannam@124 4462 /* stop here, and copy so we don't have to do this twice */
cannam@124 4463 tmp_pathspec = xstrdup (newargz[0]);
cannam@124 4464
cannam@124 4465 /* do NOT want the lt- prefix here, so use actual_cwrapper_name */
cannam@124 4466 strcat (newargz[0], actual_cwrapper_name);
cannam@124 4467
cannam@124 4468 /* DO want the lt- prefix here if it exists, so use target_name */
cannam@124 4469 lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
cannam@124 4470 XFREE (tmp_pathspec);
cannam@124 4471 tmp_pathspec = NULL;
cannam@124 4472 EOF
cannam@124 4473
cannam@124 4474 case $host_os in
cannam@124 4475 mingw*)
cannam@124 4476 cat <<"EOF"
cannam@124 4477 {
cannam@124 4478 char* p;
cannam@124 4479 while ((p = strchr (newargz[0], '\\')) != NULL)
cannam@124 4480 {
cannam@124 4481 *p = '/';
cannam@124 4482 }
cannam@124 4483 while ((p = strchr (lt_argv_zero, '\\')) != NULL)
cannam@124 4484 {
cannam@124 4485 *p = '/';
cannam@124 4486 }
cannam@124 4487 }
cannam@124 4488 EOF
cannam@124 4489 ;;
cannam@124 4490 esac
cannam@124 4491
cannam@124 4492 cat <<"EOF"
cannam@124 4493 XFREE (target_name);
cannam@124 4494 XFREE (actual_cwrapper_path);
cannam@124 4495 XFREE (actual_cwrapper_name);
cannam@124 4496
cannam@124 4497 lt_setenv ("BIN_SH", "xpg4"); /* for Tru64 */
cannam@124 4498 lt_setenv ("DUALCASE", "1"); /* for MSK sh */
cannam@124 4499 /* Update the DLL searchpath. EXE_PATH_VALUE ($dllsearchpath) must
cannam@124 4500 be prepended before (that is, appear after) LIB_PATH_VALUE ($temp_rpath)
cannam@124 4501 because on Windows, both *_VARNAMEs are PATH but uninstalled
cannam@124 4502 libraries must come first. */
cannam@124 4503 lt_update_exe_path (EXE_PATH_VARNAME, EXE_PATH_VALUE);
cannam@124 4504 lt_update_lib_path (LIB_PATH_VARNAME, LIB_PATH_VALUE);
cannam@124 4505
cannam@124 4506 lt_debugprintf (__FILE__, __LINE__, "(main) lt_argv_zero: %s\n",
cannam@124 4507 nonnull (lt_argv_zero));
cannam@124 4508 for (i = 0; i < newargc; i++)
cannam@124 4509 {
cannam@124 4510 lt_debugprintf (__FILE__, __LINE__, "(main) newargz[%d]: %s\n",
cannam@124 4511 i, nonnull (newargz[i]));
cannam@124 4512 }
cannam@124 4513
cannam@124 4514 EOF
cannam@124 4515
cannam@124 4516 case $host_os in
cannam@124 4517 mingw*)
cannam@124 4518 cat <<"EOF"
cannam@124 4519 /* execv doesn't actually work on mingw as expected on unix */
cannam@124 4520 newargz = prepare_spawn (newargz);
cannam@124 4521 rval = _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz);
cannam@124 4522 if (rval == -1)
cannam@124 4523 {
cannam@124 4524 /* failed to start process */
cannam@124 4525 lt_debugprintf (__FILE__, __LINE__,
cannam@124 4526 "(main) failed to launch target \"%s\": %s\n",
cannam@124 4527 lt_argv_zero, nonnull (strerror (errno)));
cannam@124 4528 return 127;
cannam@124 4529 }
cannam@124 4530 return rval;
cannam@124 4531 EOF
cannam@124 4532 ;;
cannam@124 4533 *)
cannam@124 4534 cat <<"EOF"
cannam@124 4535 execv (lt_argv_zero, newargz);
cannam@124 4536 return rval; /* =127, but avoids unused variable warning */
cannam@124 4537 EOF
cannam@124 4538 ;;
cannam@124 4539 esac
cannam@124 4540
cannam@124 4541 cat <<"EOF"
cannam@124 4542 }
cannam@124 4543
cannam@124 4544 void *
cannam@124 4545 xmalloc (size_t num)
cannam@124 4546 {
cannam@124 4547 void *p = (void *) malloc (num);
cannam@124 4548 if (!p)
cannam@124 4549 lt_fatal (__FILE__, __LINE__, "memory exhausted");
cannam@124 4550
cannam@124 4551 return p;
cannam@124 4552 }
cannam@124 4553
cannam@124 4554 char *
cannam@124 4555 xstrdup (const char *string)
cannam@124 4556 {
cannam@124 4557 return string ? strcpy ((char *) xmalloc (strlen (string) + 1),
cannam@124 4558 string) : NULL;
cannam@124 4559 }
cannam@124 4560
cannam@124 4561 const char *
cannam@124 4562 base_name (const char *name)
cannam@124 4563 {
cannam@124 4564 const char *base;
cannam@124 4565
cannam@124 4566 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
cannam@124 4567 /* Skip over the disk name in MSDOS pathnames. */
cannam@124 4568 if (isalpha ((unsigned char) name[0]) && name[1] == ':')
cannam@124 4569 name += 2;
cannam@124 4570 #endif
cannam@124 4571
cannam@124 4572 for (base = name; *name; name++)
cannam@124 4573 if (IS_DIR_SEPARATOR (*name))
cannam@124 4574 base = name + 1;
cannam@124 4575 return base;
cannam@124 4576 }
cannam@124 4577
cannam@124 4578 int
cannam@124 4579 check_executable (const char *path)
cannam@124 4580 {
cannam@124 4581 struct stat st;
cannam@124 4582
cannam@124 4583 lt_debugprintf (__FILE__, __LINE__, "(check_executable): %s\n",
cannam@124 4584 nonempty (path));
cannam@124 4585 if ((!path) || (!*path))
cannam@124 4586 return 0;
cannam@124 4587
cannam@124 4588 if ((stat (path, &st) >= 0)
cannam@124 4589 && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
cannam@124 4590 return 1;
cannam@124 4591 else
cannam@124 4592 return 0;
cannam@124 4593 }
cannam@124 4594
cannam@124 4595 int
cannam@124 4596 make_executable (const char *path)
cannam@124 4597 {
cannam@124 4598 int rval = 0;
cannam@124 4599 struct stat st;
cannam@124 4600
cannam@124 4601 lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n",
cannam@124 4602 nonempty (path));
cannam@124 4603 if ((!path) || (!*path))
cannam@124 4604 return 0;
cannam@124 4605
cannam@124 4606 if (stat (path, &st) >= 0)
cannam@124 4607 {
cannam@124 4608 rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR);
cannam@124 4609 }
cannam@124 4610 return rval;
cannam@124 4611 }
cannam@124 4612
cannam@124 4613 /* Searches for the full path of the wrapper. Returns
cannam@124 4614 newly allocated full path name if found, NULL otherwise
cannam@124 4615 Does not chase symlinks, even on platforms that support them.
cannam@124 4616 */
cannam@124 4617 char *
cannam@124 4618 find_executable (const char *wrapper)
cannam@124 4619 {
cannam@124 4620 int has_slash = 0;
cannam@124 4621 const char *p;
cannam@124 4622 const char *p_next;
cannam@124 4623 /* static buffer for getcwd */
cannam@124 4624 char tmp[LT_PATHMAX + 1];
cannam@124 4625 int tmp_len;
cannam@124 4626 char *concat_name;
cannam@124 4627
cannam@124 4628 lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n",
cannam@124 4629 nonempty (wrapper));
cannam@124 4630
cannam@124 4631 if ((wrapper == NULL) || (*wrapper == '\0'))
cannam@124 4632 return NULL;
cannam@124 4633
cannam@124 4634 /* Absolute path? */
cannam@124 4635 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
cannam@124 4636 if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':')
cannam@124 4637 {
cannam@124 4638 concat_name = xstrdup (wrapper);
cannam@124 4639 if (check_executable (concat_name))
cannam@124 4640 return concat_name;
cannam@124 4641 XFREE (concat_name);
cannam@124 4642 }
cannam@124 4643 else
cannam@124 4644 {
cannam@124 4645 #endif
cannam@124 4646 if (IS_DIR_SEPARATOR (wrapper[0]))
cannam@124 4647 {
cannam@124 4648 concat_name = xstrdup (wrapper);
cannam@124 4649 if (check_executable (concat_name))
cannam@124 4650 return concat_name;
cannam@124 4651 XFREE (concat_name);
cannam@124 4652 }
cannam@124 4653 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
cannam@124 4654 }
cannam@124 4655 #endif
cannam@124 4656
cannam@124 4657 for (p = wrapper; *p; p++)
cannam@124 4658 if (*p == '/')
cannam@124 4659 {
cannam@124 4660 has_slash = 1;
cannam@124 4661 break;
cannam@124 4662 }
cannam@124 4663 if (!has_slash)
cannam@124 4664 {
cannam@124 4665 /* no slashes; search PATH */
cannam@124 4666 const char *path = getenv ("PATH");
cannam@124 4667 if (path != NULL)
cannam@124 4668 {
cannam@124 4669 for (p = path; *p; p = p_next)
cannam@124 4670 {
cannam@124 4671 const char *q;
cannam@124 4672 size_t p_len;
cannam@124 4673 for (q = p; *q; q++)
cannam@124 4674 if (IS_PATH_SEPARATOR (*q))
cannam@124 4675 break;
cannam@124 4676 p_len = q - p;
cannam@124 4677 p_next = (*q == '\0' ? q : q + 1);
cannam@124 4678 if (p_len == 0)
cannam@124 4679 {
cannam@124 4680 /* empty path: current directory */
cannam@124 4681 if (getcwd (tmp, LT_PATHMAX) == NULL)
cannam@124 4682 lt_fatal (__FILE__, __LINE__, "getcwd failed: %s",
cannam@124 4683 nonnull (strerror (errno)));
cannam@124 4684 tmp_len = strlen (tmp);
cannam@124 4685 concat_name =
cannam@124 4686 XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
cannam@124 4687 memcpy (concat_name, tmp, tmp_len);
cannam@124 4688 concat_name[tmp_len] = '/';
cannam@124 4689 strcpy (concat_name + tmp_len + 1, wrapper);
cannam@124 4690 }
cannam@124 4691 else
cannam@124 4692 {
cannam@124 4693 concat_name =
cannam@124 4694 XMALLOC (char, p_len + 1 + strlen (wrapper) + 1);
cannam@124 4695 memcpy (concat_name, p, p_len);
cannam@124 4696 concat_name[p_len] = '/';
cannam@124 4697 strcpy (concat_name + p_len + 1, wrapper);
cannam@124 4698 }
cannam@124 4699 if (check_executable (concat_name))
cannam@124 4700 return concat_name;
cannam@124 4701 XFREE (concat_name);
cannam@124 4702 }
cannam@124 4703 }
cannam@124 4704 /* not found in PATH; assume curdir */
cannam@124 4705 }
cannam@124 4706 /* Relative path | not found in path: prepend cwd */
cannam@124 4707 if (getcwd (tmp, LT_PATHMAX) == NULL)
cannam@124 4708 lt_fatal (__FILE__, __LINE__, "getcwd failed: %s",
cannam@124 4709 nonnull (strerror (errno)));
cannam@124 4710 tmp_len = strlen (tmp);
cannam@124 4711 concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
cannam@124 4712 memcpy (concat_name, tmp, tmp_len);
cannam@124 4713 concat_name[tmp_len] = '/';
cannam@124 4714 strcpy (concat_name + tmp_len + 1, wrapper);
cannam@124 4715
cannam@124 4716 if (check_executable (concat_name))
cannam@124 4717 return concat_name;
cannam@124 4718 XFREE (concat_name);
cannam@124 4719 return NULL;
cannam@124 4720 }
cannam@124 4721
cannam@124 4722 char *
cannam@124 4723 chase_symlinks (const char *pathspec)
cannam@124 4724 {
cannam@124 4725 #ifndef S_ISLNK
cannam@124 4726 return xstrdup (pathspec);
cannam@124 4727 #else
cannam@124 4728 char buf[LT_PATHMAX];
cannam@124 4729 struct stat s;
cannam@124 4730 char *tmp_pathspec = xstrdup (pathspec);
cannam@124 4731 char *p;
cannam@124 4732 int has_symlinks = 0;
cannam@124 4733 while (strlen (tmp_pathspec) && !has_symlinks)
cannam@124 4734 {
cannam@124 4735 lt_debugprintf (__FILE__, __LINE__,
cannam@124 4736 "checking path component for symlinks: %s\n",
cannam@124 4737 tmp_pathspec);
cannam@124 4738 if (lstat (tmp_pathspec, &s) == 0)
cannam@124 4739 {
cannam@124 4740 if (S_ISLNK (s.st_mode) != 0)
cannam@124 4741 {
cannam@124 4742 has_symlinks = 1;
cannam@124 4743 break;
cannam@124 4744 }
cannam@124 4745
cannam@124 4746 /* search backwards for last DIR_SEPARATOR */
cannam@124 4747 p = tmp_pathspec + strlen (tmp_pathspec) - 1;
cannam@124 4748 while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
cannam@124 4749 p--;
cannam@124 4750 if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
cannam@124 4751 {
cannam@124 4752 /* no more DIR_SEPARATORS left */
cannam@124 4753 break;
cannam@124 4754 }
cannam@124 4755 *p = '\0';
cannam@124 4756 }
cannam@124 4757 else
cannam@124 4758 {
cannam@124 4759 lt_fatal (__FILE__, __LINE__,
cannam@124 4760 "error accessing file \"%s\": %s",
cannam@124 4761 tmp_pathspec, nonnull (strerror (errno)));
cannam@124 4762 }
cannam@124 4763 }
cannam@124 4764 XFREE (tmp_pathspec);
cannam@124 4765
cannam@124 4766 if (!has_symlinks)
cannam@124 4767 {
cannam@124 4768 return xstrdup (pathspec);
cannam@124 4769 }
cannam@124 4770
cannam@124 4771 tmp_pathspec = realpath (pathspec, buf);
cannam@124 4772 if (tmp_pathspec == 0)
cannam@124 4773 {
cannam@124 4774 lt_fatal (__FILE__, __LINE__,
cannam@124 4775 "could not follow symlinks for %s", pathspec);
cannam@124 4776 }
cannam@124 4777 return xstrdup (tmp_pathspec);
cannam@124 4778 #endif
cannam@124 4779 }
cannam@124 4780
cannam@124 4781 char *
cannam@124 4782 strendzap (char *str, const char *pat)
cannam@124 4783 {
cannam@124 4784 size_t len, patlen;
cannam@124 4785
cannam@124 4786 assert (str != NULL);
cannam@124 4787 assert (pat != NULL);
cannam@124 4788
cannam@124 4789 len = strlen (str);
cannam@124 4790 patlen = strlen (pat);
cannam@124 4791
cannam@124 4792 if (patlen <= len)
cannam@124 4793 {
cannam@124 4794 str += len - patlen;
cannam@124 4795 if (strcmp (str, pat) == 0)
cannam@124 4796 *str = '\0';
cannam@124 4797 }
cannam@124 4798 return str;
cannam@124 4799 }
cannam@124 4800
cannam@124 4801 void
cannam@124 4802 lt_debugprintf (const char *file, int line, const char *fmt, ...)
cannam@124 4803 {
cannam@124 4804 va_list args;
cannam@124 4805 if (lt_debug)
cannam@124 4806 {
cannam@124 4807 (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line);
cannam@124 4808 va_start (args, fmt);
cannam@124 4809 (void) vfprintf (stderr, fmt, args);
cannam@124 4810 va_end (args);
cannam@124 4811 }
cannam@124 4812 }
cannam@124 4813
cannam@124 4814 static void
cannam@124 4815 lt_error_core (int exit_status, const char *file,
cannam@124 4816 int line, const char *mode,
cannam@124 4817 const char *message, va_list ap)
cannam@124 4818 {
cannam@124 4819 fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode);
cannam@124 4820 vfprintf (stderr, message, ap);
cannam@124 4821 fprintf (stderr, ".\n");
cannam@124 4822
cannam@124 4823 if (exit_status >= 0)
cannam@124 4824 exit (exit_status);
cannam@124 4825 }
cannam@124 4826
cannam@124 4827 void
cannam@124 4828 lt_fatal (const char *file, int line, const char *message, ...)
cannam@124 4829 {
cannam@124 4830 va_list ap;
cannam@124 4831 va_start (ap, message);
cannam@124 4832 lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap);
cannam@124 4833 va_end (ap);
cannam@124 4834 }
cannam@124 4835
cannam@124 4836 static const char *
cannam@124 4837 nonnull (const char *s)
cannam@124 4838 {
cannam@124 4839 return s ? s : "(null)";
cannam@124 4840 }
cannam@124 4841
cannam@124 4842 static const char *
cannam@124 4843 nonempty (const char *s)
cannam@124 4844 {
cannam@124 4845 return (s && !*s) ? "(empty)" : nonnull (s);
cannam@124 4846 }
cannam@124 4847
cannam@124 4848 void
cannam@124 4849 lt_setenv (const char *name, const char *value)
cannam@124 4850 {
cannam@124 4851 lt_debugprintf (__FILE__, __LINE__,
cannam@124 4852 "(lt_setenv) setting '%s' to '%s'\n",
cannam@124 4853 nonnull (name), nonnull (value));
cannam@124 4854 {
cannam@124 4855 #ifdef HAVE_SETENV
cannam@124 4856 /* always make a copy, for consistency with !HAVE_SETENV */
cannam@124 4857 char *str = xstrdup (value);
cannam@124 4858 setenv (name, str, 1);
cannam@124 4859 #else
cannam@124 4860 int len = strlen (name) + 1 + strlen (value) + 1;
cannam@124 4861 char *str = XMALLOC (char, len);
cannam@124 4862 sprintf (str, "%s=%s", name, value);
cannam@124 4863 if (putenv (str) != EXIT_SUCCESS)
cannam@124 4864 {
cannam@124 4865 XFREE (str);
cannam@124 4866 }
cannam@124 4867 #endif
cannam@124 4868 }
cannam@124 4869 }
cannam@124 4870
cannam@124 4871 char *
cannam@124 4872 lt_extend_str (const char *orig_value, const char *add, int to_end)
cannam@124 4873 {
cannam@124 4874 char *new_value;
cannam@124 4875 if (orig_value && *orig_value)
cannam@124 4876 {
cannam@124 4877 int orig_value_len = strlen (orig_value);
cannam@124 4878 int add_len = strlen (add);
cannam@124 4879 new_value = XMALLOC (char, add_len + orig_value_len + 1);
cannam@124 4880 if (to_end)
cannam@124 4881 {
cannam@124 4882 strcpy (new_value, orig_value);
cannam@124 4883 strcpy (new_value + orig_value_len, add);
cannam@124 4884 }
cannam@124 4885 else
cannam@124 4886 {
cannam@124 4887 strcpy (new_value, add);
cannam@124 4888 strcpy (new_value + add_len, orig_value);
cannam@124 4889 }
cannam@124 4890 }
cannam@124 4891 else
cannam@124 4892 {
cannam@124 4893 new_value = xstrdup (add);
cannam@124 4894 }
cannam@124 4895 return new_value;
cannam@124 4896 }
cannam@124 4897
cannam@124 4898 void
cannam@124 4899 lt_update_exe_path (const char *name, const char *value)
cannam@124 4900 {
cannam@124 4901 lt_debugprintf (__FILE__, __LINE__,
cannam@124 4902 "(lt_update_exe_path) modifying '%s' by prepending '%s'\n",
cannam@124 4903 nonnull (name), nonnull (value));
cannam@124 4904
cannam@124 4905 if (name && *name && value && *value)
cannam@124 4906 {
cannam@124 4907 char *new_value = lt_extend_str (getenv (name), value, 0);
cannam@124 4908 /* some systems can't cope with a ':'-terminated path #' */
cannam@124 4909 int len = strlen (new_value);
cannam@124 4910 while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1]))
cannam@124 4911 {
cannam@124 4912 new_value[len-1] = '\0';
cannam@124 4913 }
cannam@124 4914 lt_setenv (name, new_value);
cannam@124 4915 XFREE (new_value);
cannam@124 4916 }
cannam@124 4917 }
cannam@124 4918
cannam@124 4919 void
cannam@124 4920 lt_update_lib_path (const char *name, const char *value)
cannam@124 4921 {
cannam@124 4922 lt_debugprintf (__FILE__, __LINE__,
cannam@124 4923 "(lt_update_lib_path) modifying '%s' by prepending '%s'\n",
cannam@124 4924 nonnull (name), nonnull (value));
cannam@124 4925
cannam@124 4926 if (name && *name && value && *value)
cannam@124 4927 {
cannam@124 4928 char *new_value = lt_extend_str (getenv (name), value, 0);
cannam@124 4929 lt_setenv (name, new_value);
cannam@124 4930 XFREE (new_value);
cannam@124 4931 }
cannam@124 4932 }
cannam@124 4933
cannam@124 4934 EOF
cannam@124 4935 case $host_os in
cannam@124 4936 mingw*)
cannam@124 4937 cat <<"EOF"
cannam@124 4938
cannam@124 4939 /* Prepares an argument vector before calling spawn().
cannam@124 4940 Note that spawn() does not by itself call the command interpreter
cannam@124 4941 (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") :
cannam@124 4942 ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
cannam@124 4943 GetVersionEx(&v);
cannam@124 4944 v.dwPlatformId == VER_PLATFORM_WIN32_NT;
cannam@124 4945 }) ? "cmd.exe" : "command.com").
cannam@124 4946 Instead it simply concatenates the arguments, separated by ' ', and calls
cannam@124 4947 CreateProcess(). We must quote the arguments since Win32 CreateProcess()
cannam@124 4948 interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a
cannam@124 4949 special way:
cannam@124 4950 - Space and tab are interpreted as delimiters. They are not treated as
cannam@124 4951 delimiters if they are surrounded by double quotes: "...".
cannam@124 4952 - Unescaped double quotes are removed from the input. Their only effect is
cannam@124 4953 that within double quotes, space and tab are treated like normal
cannam@124 4954 characters.
cannam@124 4955 - Backslashes not followed by double quotes are not special.
cannam@124 4956 - But 2*n+1 backslashes followed by a double quote become
cannam@124 4957 n backslashes followed by a double quote (n >= 0):
cannam@124 4958 \" -> "
cannam@124 4959 \\\" -> \"
cannam@124 4960 \\\\\" -> \\"
cannam@124 4961 */
cannam@124 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@124 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@124 4964 char **
cannam@124 4965 prepare_spawn (char **argv)
cannam@124 4966 {
cannam@124 4967 size_t argc;
cannam@124 4968 char **new_argv;
cannam@124 4969 size_t i;
cannam@124 4970
cannam@124 4971 /* Count number of arguments. */
cannam@124 4972 for (argc = 0; argv[argc] != NULL; argc++)
cannam@124 4973 ;
cannam@124 4974
cannam@124 4975 /* Allocate new argument vector. */
cannam@124 4976 new_argv = XMALLOC (char *, argc + 1);
cannam@124 4977
cannam@124 4978 /* Put quoted arguments into the new argument vector. */
cannam@124 4979 for (i = 0; i < argc; i++)
cannam@124 4980 {
cannam@124 4981 const char *string = argv[i];
cannam@124 4982
cannam@124 4983 if (string[0] == '\0')
cannam@124 4984 new_argv[i] = xstrdup ("\"\"");
cannam@124 4985 else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL)
cannam@124 4986 {
cannam@124 4987 int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL);
cannam@124 4988 size_t length;
cannam@124 4989 unsigned int backslashes;
cannam@124 4990 const char *s;
cannam@124 4991 char *quoted_string;
cannam@124 4992 char *p;
cannam@124 4993
cannam@124 4994 length = 0;
cannam@124 4995 backslashes = 0;
cannam@124 4996 if (quote_around)
cannam@124 4997 length++;
cannam@124 4998 for (s = string; *s != '\0'; s++)
cannam@124 4999 {
cannam@124 5000 char c = *s;
cannam@124 5001 if (c == '"')
cannam@124 5002 length += backslashes + 1;
cannam@124 5003 length++;
cannam@124 5004 if (c == '\\')
cannam@124 5005 backslashes++;
cannam@124 5006 else
cannam@124 5007 backslashes = 0;
cannam@124 5008 }
cannam@124 5009 if (quote_around)
cannam@124 5010 length += backslashes + 1;
cannam@124 5011
cannam@124 5012 quoted_string = XMALLOC (char, length + 1);
cannam@124 5013
cannam@124 5014 p = quoted_string;
cannam@124 5015 backslashes = 0;
cannam@124 5016 if (quote_around)
cannam@124 5017 *p++ = '"';
cannam@124 5018 for (s = string; *s != '\0'; s++)
cannam@124 5019 {
cannam@124 5020 char c = *s;
cannam@124 5021 if (c == '"')
cannam@124 5022 {
cannam@124 5023 unsigned int j;
cannam@124 5024 for (j = backslashes + 1; j > 0; j--)
cannam@124 5025 *p++ = '\\';
cannam@124 5026 }
cannam@124 5027 *p++ = c;
cannam@124 5028 if (c == '\\')
cannam@124 5029 backslashes++;
cannam@124 5030 else
cannam@124 5031 backslashes = 0;
cannam@124 5032 }
cannam@124 5033 if (quote_around)
cannam@124 5034 {
cannam@124 5035 unsigned int j;
cannam@124 5036 for (j = backslashes; j > 0; j--)
cannam@124 5037 *p++ = '\\';
cannam@124 5038 *p++ = '"';
cannam@124 5039 }
cannam@124 5040 *p = '\0';
cannam@124 5041
cannam@124 5042 new_argv[i] = quoted_string;
cannam@124 5043 }
cannam@124 5044 else
cannam@124 5045 new_argv[i] = (char *) string;
cannam@124 5046 }
cannam@124 5047 new_argv[argc] = NULL;
cannam@124 5048
cannam@124 5049 return new_argv;
cannam@124 5050 }
cannam@124 5051 EOF
cannam@124 5052 ;;
cannam@124 5053 esac
cannam@124 5054
cannam@124 5055 cat <<"EOF"
cannam@124 5056 void lt_dump_script (FILE* f)
cannam@124 5057 {
cannam@124 5058 EOF
cannam@124 5059 func_emit_wrapper yes |
cannam@124 5060 $SED -e 's/\([\\"]\)/\\\1/g' \
cannam@124 5061 -e 's/^/ fputs ("/' -e 's/$/\\n", f);/'
cannam@124 5062
cannam@124 5063 cat <<"EOF"
cannam@124 5064 }
cannam@124 5065 EOF
cannam@124 5066 }
cannam@124 5067 # end: func_emit_cwrapperexe_src
cannam@124 5068
cannam@124 5069 # func_win32_import_lib_p ARG
cannam@124 5070 # True if ARG is an import lib, as indicated by $file_magic_cmd
cannam@124 5071 func_win32_import_lib_p ()
cannam@124 5072 {
cannam@124 5073 $opt_debug
cannam@124 5074 case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in
cannam@124 5075 *import*) : ;;
cannam@124 5076 *) false ;;
cannam@124 5077 esac
cannam@124 5078 }
cannam@124 5079
cannam@124 5080 # func_mode_link arg...
cannam@124 5081 func_mode_link ()
cannam@124 5082 {
cannam@124 5083 $opt_debug
cannam@124 5084 case $host in
cannam@124 5085 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
cannam@124 5086 # It is impossible to link a dll without this setting, and
cannam@124 5087 # we shouldn't force the makefile maintainer to figure out
cannam@124 5088 # which system we are compiling for in order to pass an extra
cannam@124 5089 # flag for every libtool invocation.
cannam@124 5090 # allow_undefined=no
cannam@124 5091
cannam@124 5092 # FIXME: Unfortunately, there are problems with the above when trying
cannam@124 5093 # to make a dll which has undefined symbols, in which case not
cannam@124 5094 # even a static library is built. For now, we need to specify
cannam@124 5095 # -no-undefined on the libtool link line when we can be certain
cannam@124 5096 # that all symbols are satisfied, otherwise we get a static library.
cannam@124 5097 allow_undefined=yes
cannam@124 5098 ;;
cannam@124 5099 *)
cannam@124 5100 allow_undefined=yes
cannam@124 5101 ;;
cannam@124 5102 esac
cannam@124 5103 libtool_args=$nonopt
cannam@124 5104 base_compile="$nonopt $@"
cannam@124 5105 compile_command=$nonopt
cannam@124 5106 finalize_command=$nonopt
cannam@124 5107
cannam@124 5108 compile_rpath=
cannam@124 5109 finalize_rpath=
cannam@124 5110 compile_shlibpath=
cannam@124 5111 finalize_shlibpath=
cannam@124 5112 convenience=
cannam@124 5113 old_convenience=
cannam@124 5114 deplibs=
cannam@124 5115 old_deplibs=
cannam@124 5116 compiler_flags=
cannam@124 5117 linker_flags=
cannam@124 5118 dllsearchpath=
cannam@124 5119 lib_search_path=`pwd`
cannam@124 5120 inst_prefix_dir=
cannam@124 5121 new_inherited_linker_flags=
cannam@124 5122
cannam@124 5123 avoid_version=no
cannam@124 5124 bindir=
cannam@124 5125 dlfiles=
cannam@124 5126 dlprefiles=
cannam@124 5127 dlself=no
cannam@124 5128 export_dynamic=no
cannam@124 5129 export_symbols=
cannam@124 5130 export_symbols_regex=
cannam@124 5131 generated=
cannam@124 5132 libobjs=
cannam@124 5133 ltlibs=
cannam@124 5134 module=no
cannam@124 5135 no_install=no
cannam@124 5136 objs=
cannam@124 5137 non_pic_objects=
cannam@124 5138 precious_files_regex=
cannam@124 5139 prefer_static_libs=no
cannam@124 5140 preload=no
cannam@124 5141 prev=
cannam@124 5142 prevarg=
cannam@124 5143 release=
cannam@124 5144 rpath=
cannam@124 5145 xrpath=
cannam@124 5146 perm_rpath=
cannam@124 5147 temp_rpath=
cannam@124 5148 thread_safe=no
cannam@124 5149 vinfo=
cannam@124 5150 vinfo_number=no
cannam@124 5151 weak_libs=
cannam@124 5152 single_module="${wl}-single_module"
cannam@124 5153 func_infer_tag $base_compile
cannam@124 5154
cannam@124 5155 # We need to know -static, to get the right output filenames.
cannam@124 5156 for arg
cannam@124 5157 do
cannam@124 5158 case $arg in
cannam@124 5159 -shared)
cannam@124 5160 test "$build_libtool_libs" != yes && \
cannam@124 5161 func_fatal_configuration "can not build a shared library"
cannam@124 5162 build_old_libs=no
cannam@124 5163 break
cannam@124 5164 ;;
cannam@124 5165 -all-static | -static | -static-libtool-libs)
cannam@124 5166 case $arg in
cannam@124 5167 -all-static)
cannam@124 5168 if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
cannam@124 5169 func_warning "complete static linking is impossible in this configuration"
cannam@124 5170 fi
cannam@124 5171 if test -n "$link_static_flag"; then
cannam@124 5172 dlopen_self=$dlopen_self_static
cannam@124 5173 fi
cannam@124 5174 prefer_static_libs=yes
cannam@124 5175 ;;
cannam@124 5176 -static)
cannam@124 5177 if test -z "$pic_flag" && test -n "$link_static_flag"; then
cannam@124 5178 dlopen_self=$dlopen_self_static
cannam@124 5179 fi
cannam@124 5180 prefer_static_libs=built
cannam@124 5181 ;;
cannam@124 5182 -static-libtool-libs)
cannam@124 5183 if test -z "$pic_flag" && test -n "$link_static_flag"; then
cannam@124 5184 dlopen_self=$dlopen_self_static
cannam@124 5185 fi
cannam@124 5186 prefer_static_libs=yes
cannam@124 5187 ;;
cannam@124 5188 esac
cannam@124 5189 build_libtool_libs=no
cannam@124 5190 build_old_libs=yes
cannam@124 5191 break
cannam@124 5192 ;;
cannam@124 5193 esac
cannam@124 5194 done
cannam@124 5195
cannam@124 5196 # See if our shared archives depend on static archives.
cannam@124 5197 test -n "$old_archive_from_new_cmds" && build_old_libs=yes
cannam@124 5198
cannam@124 5199 # Go through the arguments, transforming them on the way.
cannam@124 5200 while test "$#" -gt 0; do
cannam@124 5201 arg="$1"
cannam@124 5202 shift
cannam@124 5203 func_quote_for_eval "$arg"
cannam@124 5204 qarg=$func_quote_for_eval_unquoted_result
cannam@124 5205 func_append libtool_args " $func_quote_for_eval_result"
cannam@124 5206
cannam@124 5207 # If the previous option needs an argument, assign it.
cannam@124 5208 if test -n "$prev"; then
cannam@124 5209 case $prev in
cannam@124 5210 output)
cannam@124 5211 func_append compile_command " @OUTPUT@"
cannam@124 5212 func_append finalize_command " @OUTPUT@"
cannam@124 5213 ;;
cannam@124 5214 esac
cannam@124 5215
cannam@124 5216 case $prev in
cannam@124 5217 bindir)
cannam@124 5218 bindir="$arg"
cannam@124 5219 prev=
cannam@124 5220 continue
cannam@124 5221 ;;
cannam@124 5222 dlfiles|dlprefiles)
cannam@124 5223 if test "$preload" = no; then
cannam@124 5224 # Add the symbol object into the linking commands.
cannam@124 5225 func_append compile_command " @SYMFILE@"
cannam@124 5226 func_append finalize_command " @SYMFILE@"
cannam@124 5227 preload=yes
cannam@124 5228 fi
cannam@124 5229 case $arg in
cannam@124 5230 *.la | *.lo) ;; # We handle these cases below.
cannam@124 5231 force)
cannam@124 5232 if test "$dlself" = no; then
cannam@124 5233 dlself=needless
cannam@124 5234 export_dynamic=yes
cannam@124 5235 fi
cannam@124 5236 prev=
cannam@124 5237 continue
cannam@124 5238 ;;
cannam@124 5239 self)
cannam@124 5240 if test "$prev" = dlprefiles; then
cannam@124 5241 dlself=yes
cannam@124 5242 elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
cannam@124 5243 dlself=yes
cannam@124 5244 else
cannam@124 5245 dlself=needless
cannam@124 5246 export_dynamic=yes
cannam@124 5247 fi
cannam@124 5248 prev=
cannam@124 5249 continue
cannam@124 5250 ;;
cannam@124 5251 *)
cannam@124 5252 if test "$prev" = dlfiles; then
cannam@124 5253 func_append dlfiles " $arg"
cannam@124 5254 else
cannam@124 5255 func_append dlprefiles " $arg"
cannam@124 5256 fi
cannam@124 5257 prev=
cannam@124 5258 continue
cannam@124 5259 ;;
cannam@124 5260 esac
cannam@124 5261 ;;
cannam@124 5262 expsyms)
cannam@124 5263 export_symbols="$arg"
cannam@124 5264 test -f "$arg" \
cannam@124 5265 || func_fatal_error "symbol file \`$arg' does not exist"
cannam@124 5266 prev=
cannam@124 5267 continue
cannam@124 5268 ;;
cannam@124 5269 expsyms_regex)
cannam@124 5270 export_symbols_regex="$arg"
cannam@124 5271 prev=
cannam@124 5272 continue
cannam@124 5273 ;;
cannam@124 5274 framework)
cannam@124 5275 case $host in
cannam@124 5276 *-*-darwin*)
cannam@124 5277 case "$deplibs " in
cannam@124 5278 *" $qarg.ltframework "*) ;;
cannam@124 5279 *) func_append deplibs " $qarg.ltframework" # this is fixed later
cannam@124 5280 ;;
cannam@124 5281 esac
cannam@124 5282 ;;
cannam@124 5283 esac
cannam@124 5284 prev=
cannam@124 5285 continue
cannam@124 5286 ;;
cannam@124 5287 inst_prefix)
cannam@124 5288 inst_prefix_dir="$arg"
cannam@124 5289 prev=
cannam@124 5290 continue
cannam@124 5291 ;;
cannam@124 5292 objectlist)
cannam@124 5293 if test -f "$arg"; then
cannam@124 5294 save_arg=$arg
cannam@124 5295 moreargs=
cannam@124 5296 for fil in `cat "$save_arg"`
cannam@124 5297 do
cannam@124 5298 # func_append moreargs " $fil"
cannam@124 5299 arg=$fil
cannam@124 5300 # A libtool-controlled object.
cannam@124 5301
cannam@124 5302 # Check to see that this really is a libtool object.
cannam@124 5303 if func_lalib_unsafe_p "$arg"; then
cannam@124 5304 pic_object=
cannam@124 5305 non_pic_object=
cannam@124 5306
cannam@124 5307 # Read the .lo file
cannam@124 5308 func_source "$arg"
cannam@124 5309
cannam@124 5310 if test -z "$pic_object" ||
cannam@124 5311 test -z "$non_pic_object" ||
cannam@124 5312 test "$pic_object" = none &&
cannam@124 5313 test "$non_pic_object" = none; then
cannam@124 5314 func_fatal_error "cannot find name of object for \`$arg'"
cannam@124 5315 fi
cannam@124 5316
cannam@124 5317 # Extract subdirectory from the argument.
cannam@124 5318 func_dirname "$arg" "/" ""
cannam@124 5319 xdir="$func_dirname_result"
cannam@124 5320
cannam@124 5321 if test "$pic_object" != none; then
cannam@124 5322 # Prepend the subdirectory the object is found in.
cannam@124 5323 pic_object="$xdir$pic_object"
cannam@124 5324
cannam@124 5325 if test "$prev" = dlfiles; then
cannam@124 5326 if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
cannam@124 5327 func_append dlfiles " $pic_object"
cannam@124 5328 prev=
cannam@124 5329 continue
cannam@124 5330 else
cannam@124 5331 # If libtool objects are unsupported, then we need to preload.
cannam@124 5332 prev=dlprefiles
cannam@124 5333 fi
cannam@124 5334 fi
cannam@124 5335
cannam@124 5336 # CHECK ME: I think I busted this. -Ossama
cannam@124 5337 if test "$prev" = dlprefiles; then
cannam@124 5338 # Preload the old-style object.
cannam@124 5339 func_append dlprefiles " $pic_object"
cannam@124 5340 prev=
cannam@124 5341 fi
cannam@124 5342
cannam@124 5343 # A PIC object.
cannam@124 5344 func_append libobjs " $pic_object"
cannam@124 5345 arg="$pic_object"
cannam@124 5346 fi
cannam@124 5347
cannam@124 5348 # Non-PIC object.
cannam@124 5349 if test "$non_pic_object" != none; then
cannam@124 5350 # Prepend the subdirectory the object is found in.
cannam@124 5351 non_pic_object="$xdir$non_pic_object"
cannam@124 5352
cannam@124 5353 # A standard non-PIC object
cannam@124 5354 func_append non_pic_objects " $non_pic_object"
cannam@124 5355 if test -z "$pic_object" || test "$pic_object" = none ; then
cannam@124 5356 arg="$non_pic_object"
cannam@124 5357 fi
cannam@124 5358 else
cannam@124 5359 # If the PIC object exists, use it instead.
cannam@124 5360 # $xdir was prepended to $pic_object above.
cannam@124 5361 non_pic_object="$pic_object"
cannam@124 5362 func_append non_pic_objects " $non_pic_object"
cannam@124 5363 fi
cannam@124 5364 else
cannam@124 5365 # Only an error if not doing a dry-run.
cannam@124 5366 if $opt_dry_run; then
cannam@124 5367 # Extract subdirectory from the argument.
cannam@124 5368 func_dirname "$arg" "/" ""
cannam@124 5369 xdir="$func_dirname_result"
cannam@124 5370
cannam@124 5371 func_lo2o "$arg"
cannam@124 5372 pic_object=$xdir$objdir/$func_lo2o_result
cannam@124 5373 non_pic_object=$xdir$func_lo2o_result
cannam@124 5374 func_append libobjs " $pic_object"
cannam@124 5375 func_append non_pic_objects " $non_pic_object"
cannam@124 5376 else
cannam@124 5377 func_fatal_error "\`$arg' is not a valid libtool object"
cannam@124 5378 fi
cannam@124 5379 fi
cannam@124 5380 done
cannam@124 5381 else
cannam@124 5382 func_fatal_error "link input file \`$arg' does not exist"
cannam@124 5383 fi
cannam@124 5384 arg=$save_arg
cannam@124 5385 prev=
cannam@124 5386 continue
cannam@124 5387 ;;
cannam@124 5388 precious_regex)
cannam@124 5389 precious_files_regex="$arg"
cannam@124 5390 prev=
cannam@124 5391 continue
cannam@124 5392 ;;
cannam@124 5393 release)
cannam@124 5394 release="-$arg"
cannam@124 5395 prev=
cannam@124 5396 continue
cannam@124 5397 ;;
cannam@124 5398 rpath | xrpath)
cannam@124 5399 # We need an absolute path.
cannam@124 5400 case $arg in
cannam@124 5401 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@124 5402 *)
cannam@124 5403 func_fatal_error "only absolute run-paths are allowed"
cannam@124 5404 ;;
cannam@124 5405 esac
cannam@124 5406 if test "$prev" = rpath; then
cannam@124 5407 case "$rpath " in
cannam@124 5408 *" $arg "*) ;;
cannam@124 5409 *) func_append rpath " $arg" ;;
cannam@124 5410 esac
cannam@124 5411 else
cannam@124 5412 case "$xrpath " in
cannam@124 5413 *" $arg "*) ;;
cannam@124 5414 *) func_append xrpath " $arg" ;;
cannam@124 5415 esac
cannam@124 5416 fi
cannam@124 5417 prev=
cannam@124 5418 continue
cannam@124 5419 ;;
cannam@124 5420 shrext)
cannam@124 5421 shrext_cmds="$arg"
cannam@124 5422 prev=
cannam@124 5423 continue
cannam@124 5424 ;;
cannam@124 5425 weak)
cannam@124 5426 func_append weak_libs " $arg"
cannam@124 5427 prev=
cannam@124 5428 continue
cannam@124 5429 ;;
cannam@124 5430 xcclinker)
cannam@124 5431 func_append linker_flags " $qarg"
cannam@124 5432 func_append compiler_flags " $qarg"
cannam@124 5433 prev=
cannam@124 5434 func_append compile_command " $qarg"
cannam@124 5435 func_append finalize_command " $qarg"
cannam@124 5436 continue
cannam@124 5437 ;;
cannam@124 5438 xcompiler)
cannam@124 5439 func_append compiler_flags " $qarg"
cannam@124 5440 prev=
cannam@124 5441 func_append compile_command " $qarg"
cannam@124 5442 func_append finalize_command " $qarg"
cannam@124 5443 continue
cannam@124 5444 ;;
cannam@124 5445 xlinker)
cannam@124 5446 func_append linker_flags " $qarg"
cannam@124 5447 func_append compiler_flags " $wl$qarg"
cannam@124 5448 prev=
cannam@124 5449 func_append compile_command " $wl$qarg"
cannam@124 5450 func_append finalize_command " $wl$qarg"
cannam@124 5451 continue
cannam@124 5452 ;;
cannam@124 5453 *)
cannam@124 5454 eval "$prev=\"\$arg\""
cannam@124 5455 prev=
cannam@124 5456 continue
cannam@124 5457 ;;
cannam@124 5458 esac
cannam@124 5459 fi # test -n "$prev"
cannam@124 5460
cannam@124 5461 prevarg="$arg"
cannam@124 5462
cannam@124 5463 case $arg in
cannam@124 5464 -all-static)
cannam@124 5465 if test -n "$link_static_flag"; then
cannam@124 5466 # See comment for -static flag below, for more details.
cannam@124 5467 func_append compile_command " $link_static_flag"
cannam@124 5468 func_append finalize_command " $link_static_flag"
cannam@124 5469 fi
cannam@124 5470 continue
cannam@124 5471 ;;
cannam@124 5472
cannam@124 5473 -allow-undefined)
cannam@124 5474 # FIXME: remove this flag sometime in the future.
cannam@124 5475 func_fatal_error "\`-allow-undefined' must not be used because it is the default"
cannam@124 5476 ;;
cannam@124 5477
cannam@124 5478 -avoid-version)
cannam@124 5479 avoid_version=yes
cannam@124 5480 continue
cannam@124 5481 ;;
cannam@124 5482
cannam@124 5483 -bindir)
cannam@124 5484 prev=bindir
cannam@124 5485 continue
cannam@124 5486 ;;
cannam@124 5487
cannam@124 5488 -dlopen)
cannam@124 5489 prev=dlfiles
cannam@124 5490 continue
cannam@124 5491 ;;
cannam@124 5492
cannam@124 5493 -dlpreopen)
cannam@124 5494 prev=dlprefiles
cannam@124 5495 continue
cannam@124 5496 ;;
cannam@124 5497
cannam@124 5498 -export-dynamic)
cannam@124 5499 export_dynamic=yes
cannam@124 5500 continue
cannam@124 5501 ;;
cannam@124 5502
cannam@124 5503 -export-symbols | -export-symbols-regex)
cannam@124 5504 if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
cannam@124 5505 func_fatal_error "more than one -exported-symbols argument is not allowed"
cannam@124 5506 fi
cannam@124 5507 if test "X$arg" = "X-export-symbols"; then
cannam@124 5508 prev=expsyms
cannam@124 5509 else
cannam@124 5510 prev=expsyms_regex
cannam@124 5511 fi
cannam@124 5512 continue
cannam@124 5513 ;;
cannam@124 5514
cannam@124 5515 -framework)
cannam@124 5516 prev=framework
cannam@124 5517 continue
cannam@124 5518 ;;
cannam@124 5519
cannam@124 5520 -inst-prefix-dir)
cannam@124 5521 prev=inst_prefix
cannam@124 5522 continue
cannam@124 5523 ;;
cannam@124 5524
cannam@124 5525 # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
cannam@124 5526 # so, if we see these flags be careful not to treat them like -L
cannam@124 5527 -L[A-Z][A-Z]*:*)
cannam@124 5528 case $with_gcc/$host in
cannam@124 5529 no/*-*-irix* | /*-*-irix*)
cannam@124 5530 func_append compile_command " $arg"
cannam@124 5531 func_append finalize_command " $arg"
cannam@124 5532 ;;
cannam@124 5533 esac
cannam@124 5534 continue
cannam@124 5535 ;;
cannam@124 5536
cannam@124 5537 -L*)
cannam@124 5538 func_stripname "-L" '' "$arg"
cannam@124 5539 if test -z "$func_stripname_result"; then
cannam@124 5540 if test "$#" -gt 0; then
cannam@124 5541 func_fatal_error "require no space between \`-L' and \`$1'"
cannam@124 5542 else
cannam@124 5543 func_fatal_error "need path for \`-L' option"
cannam@124 5544 fi
cannam@124 5545 fi
cannam@124 5546 func_resolve_sysroot "$func_stripname_result"
cannam@124 5547 dir=$func_resolve_sysroot_result
cannam@124 5548 # We need an absolute path.
cannam@124 5549 case $dir in
cannam@124 5550 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@124 5551 *)
cannam@124 5552 absdir=`cd "$dir" && pwd`
cannam@124 5553 test -z "$absdir" && \
cannam@124 5554 func_fatal_error "cannot determine absolute directory name of \`$dir'"
cannam@124 5555 dir="$absdir"
cannam@124 5556 ;;
cannam@124 5557 esac
cannam@124 5558 case "$deplibs " in
cannam@124 5559 *" -L$dir "* | *" $arg "*)
cannam@124 5560 # Will only happen for absolute or sysroot arguments
cannam@124 5561 ;;
cannam@124 5562 *)
cannam@124 5563 # Preserve sysroot, but never include relative directories
cannam@124 5564 case $dir in
cannam@124 5565 [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;;
cannam@124 5566 *) func_append deplibs " -L$dir" ;;
cannam@124 5567 esac
cannam@124 5568 func_append lib_search_path " $dir"
cannam@124 5569 ;;
cannam@124 5570 esac
cannam@124 5571 case $host in
cannam@124 5572 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
cannam@124 5573 testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'`
cannam@124 5574 case :$dllsearchpath: in
cannam@124 5575 *":$dir:"*) ;;
cannam@124 5576 ::) dllsearchpath=$dir;;
cannam@124 5577 *) func_append dllsearchpath ":$dir";;
cannam@124 5578 esac
cannam@124 5579 case :$dllsearchpath: in
cannam@124 5580 *":$testbindir:"*) ;;
cannam@124 5581 ::) dllsearchpath=$testbindir;;
cannam@124 5582 *) func_append dllsearchpath ":$testbindir";;
cannam@124 5583 esac
cannam@124 5584 ;;
cannam@124 5585 esac
cannam@124 5586 continue
cannam@124 5587 ;;
cannam@124 5588
cannam@124 5589 -l*)
cannam@124 5590 if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
cannam@124 5591 case $host in
cannam@124 5592 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*)
cannam@124 5593 # These systems don't actually have a C or math library (as such)
cannam@124 5594 continue
cannam@124 5595 ;;
cannam@124 5596 *-*-os2*)
cannam@124 5597 # These systems don't actually have a C library (as such)
cannam@124 5598 test "X$arg" = "X-lc" && continue
cannam@124 5599 ;;
cannam@124 5600 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@124 5601 # Do not include libc due to us having libc/libc_r.
cannam@124 5602 test "X$arg" = "X-lc" && continue
cannam@124 5603 ;;
cannam@124 5604 *-*-rhapsody* | *-*-darwin1.[012])
cannam@124 5605 # Rhapsody C and math libraries are in the System framework
cannam@124 5606 func_append deplibs " System.ltframework"
cannam@124 5607 continue
cannam@124 5608 ;;
cannam@124 5609 *-*-sco3.2v5* | *-*-sco5v6*)
cannam@124 5610 # Causes problems with __ctype
cannam@124 5611 test "X$arg" = "X-lc" && continue
cannam@124 5612 ;;
cannam@124 5613 *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
cannam@124 5614 # Compiler inserts libc in the correct place for threads to work
cannam@124 5615 test "X$arg" = "X-lc" && continue
cannam@124 5616 ;;
cannam@124 5617 esac
cannam@124 5618 elif test "X$arg" = "X-lc_r"; then
cannam@124 5619 case $host in
cannam@124 5620 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@124 5621 # Do not include libc_r directly, use -pthread flag.
cannam@124 5622 continue
cannam@124 5623 ;;
cannam@124 5624 esac
cannam@124 5625 fi
cannam@124 5626 func_append deplibs " $arg"
cannam@124 5627 continue
cannam@124 5628 ;;
cannam@124 5629
cannam@124 5630 -module)
cannam@124 5631 module=yes
cannam@124 5632 continue
cannam@124 5633 ;;
cannam@124 5634
cannam@124 5635 # Tru64 UNIX uses -model [arg] to determine the layout of C++
cannam@124 5636 # classes, name mangling, and exception handling.
cannam@124 5637 # Darwin uses the -arch flag to determine output architecture.
cannam@124 5638 -model|-arch|-isysroot|--sysroot)
cannam@124 5639 func_append compiler_flags " $arg"
cannam@124 5640 func_append compile_command " $arg"
cannam@124 5641 func_append finalize_command " $arg"
cannam@124 5642 prev=xcompiler
cannam@124 5643 continue
cannam@124 5644 ;;
cannam@124 5645
cannam@124 5646 -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
cannam@124 5647 func_append compiler_flags " $arg"
cannam@124 5648 func_append compile_command " $arg"
cannam@124 5649 func_append finalize_command " $arg"
cannam@124 5650 case "$new_inherited_linker_flags " in
cannam@124 5651 *" $arg "*) ;;
cannam@124 5652 * ) func_append new_inherited_linker_flags " $arg" ;;
cannam@124 5653 esac
cannam@124 5654 continue
cannam@124 5655 ;;
cannam@124 5656
cannam@124 5657 -multi_module)
cannam@124 5658 single_module="${wl}-multi_module"
cannam@124 5659 continue
cannam@124 5660 ;;
cannam@124 5661
cannam@124 5662 -no-fast-install)
cannam@124 5663 fast_install=no
cannam@124 5664 continue
cannam@124 5665 ;;
cannam@124 5666
cannam@124 5667 -no-install)
cannam@124 5668 case $host in
cannam@124 5669 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*)
cannam@124 5670 # The PATH hackery in wrapper scripts is required on Windows
cannam@124 5671 # and Darwin in order for the loader to find any dlls it needs.
cannam@124 5672 func_warning "\`-no-install' is ignored for $host"
cannam@124 5673 func_warning "assuming \`-no-fast-install' instead"
cannam@124 5674 fast_install=no
cannam@124 5675 ;;
cannam@124 5676 *) no_install=yes ;;
cannam@124 5677 esac
cannam@124 5678 continue
cannam@124 5679 ;;
cannam@124 5680
cannam@124 5681 -no-undefined)
cannam@124 5682 allow_undefined=no
cannam@124 5683 continue
cannam@124 5684 ;;
cannam@124 5685
cannam@124 5686 -objectlist)
cannam@124 5687 prev=objectlist
cannam@124 5688 continue
cannam@124 5689 ;;
cannam@124 5690
cannam@124 5691 -o) prev=output ;;
cannam@124 5692
cannam@124 5693 -precious-files-regex)
cannam@124 5694 prev=precious_regex
cannam@124 5695 continue
cannam@124 5696 ;;
cannam@124 5697
cannam@124 5698 -release)
cannam@124 5699 prev=release
cannam@124 5700 continue
cannam@124 5701 ;;
cannam@124 5702
cannam@124 5703 -rpath)
cannam@124 5704 prev=rpath
cannam@124 5705 continue
cannam@124 5706 ;;
cannam@124 5707
cannam@124 5708 -R)
cannam@124 5709 prev=xrpath
cannam@124 5710 continue
cannam@124 5711 ;;
cannam@124 5712
cannam@124 5713 -R*)
cannam@124 5714 func_stripname '-R' '' "$arg"
cannam@124 5715 dir=$func_stripname_result
cannam@124 5716 # We need an absolute path.
cannam@124 5717 case $dir in
cannam@124 5718 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@124 5719 =*)
cannam@124 5720 func_stripname '=' '' "$dir"
cannam@124 5721 dir=$lt_sysroot$func_stripname_result
cannam@124 5722 ;;
cannam@124 5723 *)
cannam@124 5724 func_fatal_error "only absolute run-paths are allowed"
cannam@124 5725 ;;
cannam@124 5726 esac
cannam@124 5727 case "$xrpath " in
cannam@124 5728 *" $dir "*) ;;
cannam@124 5729 *) func_append xrpath " $dir" ;;
cannam@124 5730 esac
cannam@124 5731 continue
cannam@124 5732 ;;
cannam@124 5733
cannam@124 5734 -shared)
cannam@124 5735 # The effects of -shared are defined in a previous loop.
cannam@124 5736 continue
cannam@124 5737 ;;
cannam@124 5738
cannam@124 5739 -shrext)
cannam@124 5740 prev=shrext
cannam@124 5741 continue
cannam@124 5742 ;;
cannam@124 5743
cannam@124 5744 -static | -static-libtool-libs)
cannam@124 5745 # The effects of -static are defined in a previous loop.
cannam@124 5746 # We used to do the same as -all-static on platforms that
cannam@124 5747 # didn't have a PIC flag, but the assumption that the effects
cannam@124 5748 # would be equivalent was wrong. It would break on at least
cannam@124 5749 # Digital Unix and AIX.
cannam@124 5750 continue
cannam@124 5751 ;;
cannam@124 5752
cannam@124 5753 -thread-safe)
cannam@124 5754 thread_safe=yes
cannam@124 5755 continue
cannam@124 5756 ;;
cannam@124 5757
cannam@124 5758 -version-info)
cannam@124 5759 prev=vinfo
cannam@124 5760 continue
cannam@124 5761 ;;
cannam@124 5762
cannam@124 5763 -version-number)
cannam@124 5764 prev=vinfo
cannam@124 5765 vinfo_number=yes
cannam@124 5766 continue
cannam@124 5767 ;;
cannam@124 5768
cannam@124 5769 -weak)
cannam@124 5770 prev=weak
cannam@124 5771 continue
cannam@124 5772 ;;
cannam@124 5773
cannam@124 5774 -Wc,*)
cannam@124 5775 func_stripname '-Wc,' '' "$arg"
cannam@124 5776 args=$func_stripname_result
cannam@124 5777 arg=
cannam@124 5778 save_ifs="$IFS"; IFS=','
cannam@124 5779 for flag in $args; do
cannam@124 5780 IFS="$save_ifs"
cannam@124 5781 func_quote_for_eval "$flag"
cannam@124 5782 func_append arg " $func_quote_for_eval_result"
cannam@124 5783 func_append compiler_flags " $func_quote_for_eval_result"
cannam@124 5784 done
cannam@124 5785 IFS="$save_ifs"
cannam@124 5786 func_stripname ' ' '' "$arg"
cannam@124 5787 arg=$func_stripname_result
cannam@124 5788 ;;
cannam@124 5789
cannam@124 5790 -Wl,*)
cannam@124 5791 func_stripname '-Wl,' '' "$arg"
cannam@124 5792 args=$func_stripname_result
cannam@124 5793 arg=
cannam@124 5794 save_ifs="$IFS"; IFS=','
cannam@124 5795 for flag in $args; do
cannam@124 5796 IFS="$save_ifs"
cannam@124 5797 func_quote_for_eval "$flag"
cannam@124 5798 func_append arg " $wl$func_quote_for_eval_result"
cannam@124 5799 func_append compiler_flags " $wl$func_quote_for_eval_result"
cannam@124 5800 func_append linker_flags " $func_quote_for_eval_result"
cannam@124 5801 done
cannam@124 5802 IFS="$save_ifs"
cannam@124 5803 func_stripname ' ' '' "$arg"
cannam@124 5804 arg=$func_stripname_result
cannam@124 5805 ;;
cannam@124 5806
cannam@124 5807 -Xcompiler)
cannam@124 5808 prev=xcompiler
cannam@124 5809 continue
cannam@124 5810 ;;
cannam@124 5811
cannam@124 5812 -Xlinker)
cannam@124 5813 prev=xlinker
cannam@124 5814 continue
cannam@124 5815 ;;
cannam@124 5816
cannam@124 5817 -XCClinker)
cannam@124 5818 prev=xcclinker
cannam@124 5819 continue
cannam@124 5820 ;;
cannam@124 5821
cannam@124 5822 # -msg_* for osf cc
cannam@124 5823 -msg_*)
cannam@124 5824 func_quote_for_eval "$arg"
cannam@124 5825 arg="$func_quote_for_eval_result"
cannam@124 5826 ;;
cannam@124 5827
cannam@124 5828 # Flags to be passed through unchanged, with rationale:
cannam@124 5829 # -64, -mips[0-9] enable 64-bit mode for the SGI compiler
cannam@124 5830 # -r[0-9][0-9]* specify processor for the SGI compiler
cannam@124 5831 # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler
cannam@124 5832 # +DA*, +DD* enable 64-bit mode for the HP compiler
cannam@124 5833 # -q* compiler args for the IBM compiler
cannam@124 5834 # -m*, -t[45]*, -txscale* architecture-specific flags for GCC
cannam@124 5835 # -F/path path to uninstalled frameworks, gcc on darwin
cannam@124 5836 # -p, -pg, --coverage, -fprofile-* profiling flags for GCC
cannam@124 5837 # @file GCC response files
cannam@124 5838 # -tp=* Portland pgcc target processor selection
cannam@124 5839 # --sysroot=* for sysroot support
cannam@124 5840 # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization
cannam@124 5841 -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
cannam@124 5842 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
cannam@124 5843 -O*|-flto*|-fwhopr*|-fuse-linker-plugin)
cannam@124 5844 func_quote_for_eval "$arg"
cannam@124 5845 arg="$func_quote_for_eval_result"
cannam@124 5846 func_append compile_command " $arg"
cannam@124 5847 func_append finalize_command " $arg"
cannam@124 5848 func_append compiler_flags " $arg"
cannam@124 5849 continue
cannam@124 5850 ;;
cannam@124 5851
cannam@124 5852 # Some other compiler flag.
cannam@124 5853 -* | +*)
cannam@124 5854 func_quote_for_eval "$arg"
cannam@124 5855 arg="$func_quote_for_eval_result"
cannam@124 5856 ;;
cannam@124 5857
cannam@124 5858 *.$objext)
cannam@124 5859 # A standard object.
cannam@124 5860 func_append objs " $arg"
cannam@124 5861 ;;
cannam@124 5862
cannam@124 5863 *.lo)
cannam@124 5864 # A libtool-controlled object.
cannam@124 5865
cannam@124 5866 # Check to see that this really is a libtool object.
cannam@124 5867 if func_lalib_unsafe_p "$arg"; then
cannam@124 5868 pic_object=
cannam@124 5869 non_pic_object=
cannam@124 5870
cannam@124 5871 # Read the .lo file
cannam@124 5872 func_source "$arg"
cannam@124 5873
cannam@124 5874 if test -z "$pic_object" ||
cannam@124 5875 test -z "$non_pic_object" ||
cannam@124 5876 test "$pic_object" = none &&
cannam@124 5877 test "$non_pic_object" = none; then
cannam@124 5878 func_fatal_error "cannot find name of object for \`$arg'"
cannam@124 5879 fi
cannam@124 5880
cannam@124 5881 # Extract subdirectory from the argument.
cannam@124 5882 func_dirname "$arg" "/" ""
cannam@124 5883 xdir="$func_dirname_result"
cannam@124 5884
cannam@124 5885 if test "$pic_object" != none; then
cannam@124 5886 # Prepend the subdirectory the object is found in.
cannam@124 5887 pic_object="$xdir$pic_object"
cannam@124 5888
cannam@124 5889 if test "$prev" = dlfiles; then
cannam@124 5890 if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
cannam@124 5891 func_append dlfiles " $pic_object"
cannam@124 5892 prev=
cannam@124 5893 continue
cannam@124 5894 else
cannam@124 5895 # If libtool objects are unsupported, then we need to preload.
cannam@124 5896 prev=dlprefiles
cannam@124 5897 fi
cannam@124 5898 fi
cannam@124 5899
cannam@124 5900 # CHECK ME: I think I busted this. -Ossama
cannam@124 5901 if test "$prev" = dlprefiles; then
cannam@124 5902 # Preload the old-style object.
cannam@124 5903 func_append dlprefiles " $pic_object"
cannam@124 5904 prev=
cannam@124 5905 fi
cannam@124 5906
cannam@124 5907 # A PIC object.
cannam@124 5908 func_append libobjs " $pic_object"
cannam@124 5909 arg="$pic_object"
cannam@124 5910 fi
cannam@124 5911
cannam@124 5912 # Non-PIC object.
cannam@124 5913 if test "$non_pic_object" != none; then
cannam@124 5914 # Prepend the subdirectory the object is found in.
cannam@124 5915 non_pic_object="$xdir$non_pic_object"
cannam@124 5916
cannam@124 5917 # A standard non-PIC object
cannam@124 5918 func_append non_pic_objects " $non_pic_object"
cannam@124 5919 if test -z "$pic_object" || test "$pic_object" = none ; then
cannam@124 5920 arg="$non_pic_object"
cannam@124 5921 fi
cannam@124 5922 else
cannam@124 5923 # If the PIC object exists, use it instead.
cannam@124 5924 # $xdir was prepended to $pic_object above.
cannam@124 5925 non_pic_object="$pic_object"
cannam@124 5926 func_append non_pic_objects " $non_pic_object"
cannam@124 5927 fi
cannam@124 5928 else
cannam@124 5929 # Only an error if not doing a dry-run.
cannam@124 5930 if $opt_dry_run; then
cannam@124 5931 # Extract subdirectory from the argument.
cannam@124 5932 func_dirname "$arg" "/" ""
cannam@124 5933 xdir="$func_dirname_result"
cannam@124 5934
cannam@124 5935 func_lo2o "$arg"
cannam@124 5936 pic_object=$xdir$objdir/$func_lo2o_result
cannam@124 5937 non_pic_object=$xdir$func_lo2o_result
cannam@124 5938 func_append libobjs " $pic_object"
cannam@124 5939 func_append non_pic_objects " $non_pic_object"
cannam@124 5940 else
cannam@124 5941 func_fatal_error "\`$arg' is not a valid libtool object"
cannam@124 5942 fi
cannam@124 5943 fi
cannam@124 5944 ;;
cannam@124 5945
cannam@124 5946 *.$libext)
cannam@124 5947 # An archive.
cannam@124 5948 func_append deplibs " $arg"
cannam@124 5949 func_append old_deplibs " $arg"
cannam@124 5950 continue
cannam@124 5951 ;;
cannam@124 5952
cannam@124 5953 *.la)
cannam@124 5954 # A libtool-controlled library.
cannam@124 5955
cannam@124 5956 func_resolve_sysroot "$arg"
cannam@124 5957 if test "$prev" = dlfiles; then
cannam@124 5958 # This library was specified with -dlopen.
cannam@124 5959 func_append dlfiles " $func_resolve_sysroot_result"
cannam@124 5960 prev=
cannam@124 5961 elif test "$prev" = dlprefiles; then
cannam@124 5962 # The library was specified with -dlpreopen.
cannam@124 5963 func_append dlprefiles " $func_resolve_sysroot_result"
cannam@124 5964 prev=
cannam@124 5965 else
cannam@124 5966 func_append deplibs " $func_resolve_sysroot_result"
cannam@124 5967 fi
cannam@124 5968 continue
cannam@124 5969 ;;
cannam@124 5970
cannam@124 5971 # Some other compiler argument.
cannam@124 5972 *)
cannam@124 5973 # Unknown arguments in both finalize_command and compile_command need
cannam@124 5974 # to be aesthetically quoted because they are evaled later.
cannam@124 5975 func_quote_for_eval "$arg"
cannam@124 5976 arg="$func_quote_for_eval_result"
cannam@124 5977 ;;
cannam@124 5978 esac # arg
cannam@124 5979
cannam@124 5980 # Now actually substitute the argument into the commands.
cannam@124 5981 if test -n "$arg"; then
cannam@124 5982 func_append compile_command " $arg"
cannam@124 5983 func_append finalize_command " $arg"
cannam@124 5984 fi
cannam@124 5985 done # argument parsing loop
cannam@124 5986
cannam@124 5987 test -n "$prev" && \
cannam@124 5988 func_fatal_help "the \`$prevarg' option requires an argument"
cannam@124 5989
cannam@124 5990 if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
cannam@124 5991 eval arg=\"$export_dynamic_flag_spec\"
cannam@124 5992 func_append compile_command " $arg"
cannam@124 5993 func_append finalize_command " $arg"
cannam@124 5994 fi
cannam@124 5995
cannam@124 5996 oldlibs=
cannam@124 5997 # calculate the name of the file, without its directory
cannam@124 5998 func_basename "$output"
cannam@124 5999 outputname="$func_basename_result"
cannam@124 6000 libobjs_save="$libobjs"
cannam@124 6001
cannam@124 6002 if test -n "$shlibpath_var"; then
cannam@124 6003 # get the directories listed in $shlibpath_var
cannam@124 6004 eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\`
cannam@124 6005 else
cannam@124 6006 shlib_search_path=
cannam@124 6007 fi
cannam@124 6008 eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
cannam@124 6009 eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"
cannam@124 6010
cannam@124 6011 func_dirname "$output" "/" ""
cannam@124 6012 output_objdir="$func_dirname_result$objdir"
cannam@124 6013 func_to_tool_file "$output_objdir/"
cannam@124 6014 tool_output_objdir=$func_to_tool_file_result
cannam@124 6015 # Create the object directory.
cannam@124 6016 func_mkdir_p "$output_objdir"
cannam@124 6017
cannam@124 6018 # Determine the type of output
cannam@124 6019 case $output in
cannam@124 6020 "")
cannam@124 6021 func_fatal_help "you must specify an output file"
cannam@124 6022 ;;
cannam@124 6023 *.$libext) linkmode=oldlib ;;
cannam@124 6024 *.lo | *.$objext) linkmode=obj ;;
cannam@124 6025 *.la) linkmode=lib ;;
cannam@124 6026 *) linkmode=prog ;; # Anything else should be a program.
cannam@124 6027 esac
cannam@124 6028
cannam@124 6029 specialdeplibs=
cannam@124 6030
cannam@124 6031 libs=
cannam@124 6032 # Find all interdependent deplibs by searching for libraries
cannam@124 6033 # that are linked more than once (e.g. -la -lb -la)
cannam@124 6034 for deplib in $deplibs; do
cannam@124 6035 if $opt_preserve_dup_deps ; then
cannam@124 6036 case "$libs " in
cannam@124 6037 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
cannam@124 6038 esac
cannam@124 6039 fi
cannam@124 6040 func_append libs " $deplib"
cannam@124 6041 done
cannam@124 6042
cannam@124 6043 if test "$linkmode" = lib; then
cannam@124 6044 libs="$predeps $libs $compiler_lib_search_path $postdeps"
cannam@124 6045
cannam@124 6046 # Compute libraries that are listed more than once in $predeps
cannam@124 6047 # $postdeps and mark them as special (i.e., whose duplicates are
cannam@124 6048 # not to be eliminated).
cannam@124 6049 pre_post_deps=
cannam@124 6050 if $opt_duplicate_compiler_generated_deps; then
cannam@124 6051 for pre_post_dep in $predeps $postdeps; do
cannam@124 6052 case "$pre_post_deps " in
cannam@124 6053 *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;;
cannam@124 6054 esac
cannam@124 6055 func_append pre_post_deps " $pre_post_dep"
cannam@124 6056 done
cannam@124 6057 fi
cannam@124 6058 pre_post_deps=
cannam@124 6059 fi
cannam@124 6060
cannam@124 6061 deplibs=
cannam@124 6062 newdependency_libs=
cannam@124 6063 newlib_search_path=
cannam@124 6064 need_relink=no # whether we're linking any uninstalled libtool libraries
cannam@124 6065 notinst_deplibs= # not-installed libtool libraries
cannam@124 6066 notinst_path= # paths that contain not-installed libtool libraries
cannam@124 6067
cannam@124 6068 case $linkmode in
cannam@124 6069 lib)
cannam@124 6070 passes="conv dlpreopen link"
cannam@124 6071 for file in $dlfiles $dlprefiles; do
cannam@124 6072 case $file in
cannam@124 6073 *.la) ;;
cannam@124 6074 *)
cannam@124 6075 func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file"
cannam@124 6076 ;;
cannam@124 6077 esac
cannam@124 6078 done
cannam@124 6079 ;;
cannam@124 6080 prog)
cannam@124 6081 compile_deplibs=
cannam@124 6082 finalize_deplibs=
cannam@124 6083 alldeplibs=no
cannam@124 6084 newdlfiles=
cannam@124 6085 newdlprefiles=
cannam@124 6086 passes="conv scan dlopen dlpreopen link"
cannam@124 6087 ;;
cannam@124 6088 *) passes="conv"
cannam@124 6089 ;;
cannam@124 6090 esac
cannam@124 6091
cannam@124 6092 for pass in $passes; do
cannam@124 6093 # The preopen pass in lib mode reverses $deplibs; put it back here
cannam@124 6094 # so that -L comes before libs that need it for instance...
cannam@124 6095 if test "$linkmode,$pass" = "lib,link"; then
cannam@124 6096 ## FIXME: Find the place where the list is rebuilt in the wrong
cannam@124 6097 ## order, and fix it there properly
cannam@124 6098 tmp_deplibs=
cannam@124 6099 for deplib in $deplibs; do
cannam@124 6100 tmp_deplibs="$deplib $tmp_deplibs"
cannam@124 6101 done
cannam@124 6102 deplibs="$tmp_deplibs"
cannam@124 6103 fi
cannam@124 6104
cannam@124 6105 if test "$linkmode,$pass" = "lib,link" ||
cannam@124 6106 test "$linkmode,$pass" = "prog,scan"; then
cannam@124 6107 libs="$deplibs"
cannam@124 6108 deplibs=
cannam@124 6109 fi
cannam@124 6110 if test "$linkmode" = prog; then
cannam@124 6111 case $pass in
cannam@124 6112 dlopen) libs="$dlfiles" ;;
cannam@124 6113 dlpreopen) libs="$dlprefiles" ;;
cannam@124 6114 link)
cannam@124 6115 libs="$deplibs %DEPLIBS%"
cannam@124 6116 test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
cannam@124 6117 ;;
cannam@124 6118 esac
cannam@124 6119 fi
cannam@124 6120 if test "$linkmode,$pass" = "lib,dlpreopen"; then
cannam@124 6121 # Collect and forward deplibs of preopened libtool libs
cannam@124 6122 for lib in $dlprefiles; do
cannam@124 6123 # Ignore non-libtool-libs
cannam@124 6124 dependency_libs=
cannam@124 6125 func_resolve_sysroot "$lib"
cannam@124 6126 case $lib in
cannam@124 6127 *.la) func_source "$func_resolve_sysroot_result" ;;
cannam@124 6128 esac
cannam@124 6129
cannam@124 6130 # Collect preopened libtool deplibs, except any this library
cannam@124 6131 # has declared as weak libs
cannam@124 6132 for deplib in $dependency_libs; do
cannam@124 6133 func_basename "$deplib"
cannam@124 6134 deplib_base=$func_basename_result
cannam@124 6135 case " $weak_libs " in
cannam@124 6136 *" $deplib_base "*) ;;
cannam@124 6137 *) func_append deplibs " $deplib" ;;
cannam@124 6138 esac
cannam@124 6139 done
cannam@124 6140 done
cannam@124 6141 libs="$dlprefiles"
cannam@124 6142 fi
cannam@124 6143 if test "$pass" = dlopen; then
cannam@124 6144 # Collect dlpreopened libraries
cannam@124 6145 save_deplibs="$deplibs"
cannam@124 6146 deplibs=
cannam@124 6147 fi
cannam@124 6148
cannam@124 6149 for deplib in $libs; do
cannam@124 6150 lib=
cannam@124 6151 found=no
cannam@124 6152 case $deplib in
cannam@124 6153 -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
cannam@124 6154 if test "$linkmode,$pass" = "prog,link"; then
cannam@124 6155 compile_deplibs="$deplib $compile_deplibs"
cannam@124 6156 finalize_deplibs="$deplib $finalize_deplibs"
cannam@124 6157 else
cannam@124 6158 func_append compiler_flags " $deplib"
cannam@124 6159 if test "$linkmode" = lib ; then
cannam@124 6160 case "$new_inherited_linker_flags " in
cannam@124 6161 *" $deplib "*) ;;
cannam@124 6162 * ) func_append new_inherited_linker_flags " $deplib" ;;
cannam@124 6163 esac
cannam@124 6164 fi
cannam@124 6165 fi
cannam@124 6166 continue
cannam@124 6167 ;;
cannam@124 6168 -l*)
cannam@124 6169 if test "$linkmode" != lib && test "$linkmode" != prog; then
cannam@124 6170 func_warning "\`-l' is ignored for archives/objects"
cannam@124 6171 continue
cannam@124 6172 fi
cannam@124 6173 func_stripname '-l' '' "$deplib"
cannam@124 6174 name=$func_stripname_result
cannam@124 6175 if test "$linkmode" = lib; then
cannam@124 6176 searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path"
cannam@124 6177 else
cannam@124 6178 searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path"
cannam@124 6179 fi
cannam@124 6180 for searchdir in $searchdirs; do
cannam@124 6181 for search_ext in .la $std_shrext .so .a; do
cannam@124 6182 # Search the libtool library
cannam@124 6183 lib="$searchdir/lib${name}${search_ext}"
cannam@124 6184 if test -f "$lib"; then
cannam@124 6185 if test "$search_ext" = ".la"; then
cannam@124 6186 found=yes
cannam@124 6187 else
cannam@124 6188 found=no
cannam@124 6189 fi
cannam@124 6190 break 2
cannam@124 6191 fi
cannam@124 6192 done
cannam@124 6193 done
cannam@124 6194 if test "$found" != yes; then
cannam@124 6195 # deplib doesn't seem to be a libtool library
cannam@124 6196 if test "$linkmode,$pass" = "prog,link"; then
cannam@124 6197 compile_deplibs="$deplib $compile_deplibs"
cannam@124 6198 finalize_deplibs="$deplib $finalize_deplibs"
cannam@124 6199 else
cannam@124 6200 deplibs="$deplib $deplibs"
cannam@124 6201 test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
cannam@124 6202 fi
cannam@124 6203 continue
cannam@124 6204 else # deplib is a libtool library
cannam@124 6205 # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,
cannam@124 6206 # We need to do some special things here, and not later.
cannam@124 6207 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@124 6208 case " $predeps $postdeps " in
cannam@124 6209 *" $deplib "*)
cannam@124 6210 if func_lalib_p "$lib"; then
cannam@124 6211 library_names=
cannam@124 6212 old_library=
cannam@124 6213 func_source "$lib"
cannam@124 6214 for l in $old_library $library_names; do
cannam@124 6215 ll="$l"
cannam@124 6216 done
cannam@124 6217 if test "X$ll" = "X$old_library" ; then # only static version available
cannam@124 6218 found=no
cannam@124 6219 func_dirname "$lib" "" "."
cannam@124 6220 ladir="$func_dirname_result"
cannam@124 6221 lib=$ladir/$old_library
cannam@124 6222 if test "$linkmode,$pass" = "prog,link"; then
cannam@124 6223 compile_deplibs="$deplib $compile_deplibs"
cannam@124 6224 finalize_deplibs="$deplib $finalize_deplibs"
cannam@124 6225 else
cannam@124 6226 deplibs="$deplib $deplibs"
cannam@124 6227 test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
cannam@124 6228 fi
cannam@124 6229 continue
cannam@124 6230 fi
cannam@124 6231 fi
cannam@124 6232 ;;
cannam@124 6233 *) ;;
cannam@124 6234 esac
cannam@124 6235 fi
cannam@124 6236 fi
cannam@124 6237 ;; # -l
cannam@124 6238 *.ltframework)
cannam@124 6239 if test "$linkmode,$pass" = "prog,link"; then
cannam@124 6240 compile_deplibs="$deplib $compile_deplibs"
cannam@124 6241 finalize_deplibs="$deplib $finalize_deplibs"
cannam@124 6242 else
cannam@124 6243 deplibs="$deplib $deplibs"
cannam@124 6244 if test "$linkmode" = lib ; then
cannam@124 6245 case "$new_inherited_linker_flags " in
cannam@124 6246 *" $deplib "*) ;;
cannam@124 6247 * ) func_append new_inherited_linker_flags " $deplib" ;;
cannam@124 6248 esac
cannam@124 6249 fi
cannam@124 6250 fi
cannam@124 6251 continue
cannam@124 6252 ;;
cannam@124 6253 -L*)
cannam@124 6254 case $linkmode in
cannam@124 6255 lib)
cannam@124 6256 deplibs="$deplib $deplibs"
cannam@124 6257 test "$pass" = conv && continue
cannam@124 6258 newdependency_libs="$deplib $newdependency_libs"
cannam@124 6259 func_stripname '-L' '' "$deplib"
cannam@124 6260 func_resolve_sysroot "$func_stripname_result"
cannam@124 6261 func_append newlib_search_path " $func_resolve_sysroot_result"
cannam@124 6262 ;;
cannam@124 6263 prog)
cannam@124 6264 if test "$pass" = conv; then
cannam@124 6265 deplibs="$deplib $deplibs"
cannam@124 6266 continue
cannam@124 6267 fi
cannam@124 6268 if test "$pass" = scan; then
cannam@124 6269 deplibs="$deplib $deplibs"
cannam@124 6270 else
cannam@124 6271 compile_deplibs="$deplib $compile_deplibs"
cannam@124 6272 finalize_deplibs="$deplib $finalize_deplibs"
cannam@124 6273 fi
cannam@124 6274 func_stripname '-L' '' "$deplib"
cannam@124 6275 func_resolve_sysroot "$func_stripname_result"
cannam@124 6276 func_append newlib_search_path " $func_resolve_sysroot_result"
cannam@124 6277 ;;
cannam@124 6278 *)
cannam@124 6279 func_warning "\`-L' is ignored for archives/objects"
cannam@124 6280 ;;
cannam@124 6281 esac # linkmode
cannam@124 6282 continue
cannam@124 6283 ;; # -L
cannam@124 6284 -R*)
cannam@124 6285 if test "$pass" = link; then
cannam@124 6286 func_stripname '-R' '' "$deplib"
cannam@124 6287 func_resolve_sysroot "$func_stripname_result"
cannam@124 6288 dir=$func_resolve_sysroot_result
cannam@124 6289 # Make sure the xrpath contains only unique directories.
cannam@124 6290 case "$xrpath " in
cannam@124 6291 *" $dir "*) ;;
cannam@124 6292 *) func_append xrpath " $dir" ;;
cannam@124 6293 esac
cannam@124 6294 fi
cannam@124 6295 deplibs="$deplib $deplibs"
cannam@124 6296 continue
cannam@124 6297 ;;
cannam@124 6298 *.la)
cannam@124 6299 func_resolve_sysroot "$deplib"
cannam@124 6300 lib=$func_resolve_sysroot_result
cannam@124 6301 ;;
cannam@124 6302 *.$libext)
cannam@124 6303 if test "$pass" = conv; then
cannam@124 6304 deplibs="$deplib $deplibs"
cannam@124 6305 continue
cannam@124 6306 fi
cannam@124 6307 case $linkmode in
cannam@124 6308 lib)
cannam@124 6309 # Linking convenience modules into shared libraries is allowed,
cannam@124 6310 # but linking other static libraries is non-portable.
cannam@124 6311 case " $dlpreconveniencelibs " in
cannam@124 6312 *" $deplib "*) ;;
cannam@124 6313 *)
cannam@124 6314 valid_a_lib=no
cannam@124 6315 case $deplibs_check_method in
cannam@124 6316 match_pattern*)
cannam@124 6317 set dummy $deplibs_check_method; shift
cannam@124 6318 match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
cannam@124 6319 if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \
cannam@124 6320 | $EGREP "$match_pattern_regex" > /dev/null; then
cannam@124 6321 valid_a_lib=yes
cannam@124 6322 fi
cannam@124 6323 ;;
cannam@124 6324 pass_all)
cannam@124 6325 valid_a_lib=yes
cannam@124 6326 ;;
cannam@124 6327 esac
cannam@124 6328 if test "$valid_a_lib" != yes; then
cannam@124 6329 echo
cannam@124 6330 $ECHO "*** Warning: Trying to link with static lib archive $deplib."
cannam@124 6331 echo "*** I have the capability to make that library automatically link in when"
cannam@124 6332 echo "*** you link to this library. But I can only do this if you have a"
cannam@124 6333 echo "*** shared version of the library, which you do not appear to have"
cannam@124 6334 echo "*** because the file extensions .$libext of this argument makes me believe"
cannam@124 6335 echo "*** that it is just a static archive that I should not use here."
cannam@124 6336 else
cannam@124 6337 echo
cannam@124 6338 $ECHO "*** Warning: Linking the shared library $output against the"
cannam@124 6339 $ECHO "*** static library $deplib is not portable!"
cannam@124 6340 deplibs="$deplib $deplibs"
cannam@124 6341 fi
cannam@124 6342 ;;
cannam@124 6343 esac
cannam@124 6344 continue
cannam@124 6345 ;;
cannam@124 6346 prog)
cannam@124 6347 if test "$pass" != link; then
cannam@124 6348 deplibs="$deplib $deplibs"
cannam@124 6349 else
cannam@124 6350 compile_deplibs="$deplib $compile_deplibs"
cannam@124 6351 finalize_deplibs="$deplib $finalize_deplibs"
cannam@124 6352 fi
cannam@124 6353 continue
cannam@124 6354 ;;
cannam@124 6355 esac # linkmode
cannam@124 6356 ;; # *.$libext
cannam@124 6357 *.lo | *.$objext)
cannam@124 6358 if test "$pass" = conv; then
cannam@124 6359 deplibs="$deplib $deplibs"
cannam@124 6360 elif test "$linkmode" = prog; then
cannam@124 6361 if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
cannam@124 6362 # If there is no dlopen support or we're linking statically,
cannam@124 6363 # we need to preload.
cannam@124 6364 func_append newdlprefiles " $deplib"
cannam@124 6365 compile_deplibs="$deplib $compile_deplibs"
cannam@124 6366 finalize_deplibs="$deplib $finalize_deplibs"
cannam@124 6367 else
cannam@124 6368 func_append newdlfiles " $deplib"
cannam@124 6369 fi
cannam@124 6370 fi
cannam@124 6371 continue
cannam@124 6372 ;;
cannam@124 6373 %DEPLIBS%)
cannam@124 6374 alldeplibs=yes
cannam@124 6375 continue
cannam@124 6376 ;;
cannam@124 6377 esac # case $deplib
cannam@124 6378
cannam@124 6379 if test "$found" = yes || test -f "$lib"; then :
cannam@124 6380 else
cannam@124 6381 func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'"
cannam@124 6382 fi
cannam@124 6383
cannam@124 6384 # Check to see that this really is a libtool archive.
cannam@124 6385 func_lalib_unsafe_p "$lib" \
cannam@124 6386 || func_fatal_error "\`$lib' is not a valid libtool archive"
cannam@124 6387
cannam@124 6388 func_dirname "$lib" "" "."
cannam@124 6389 ladir="$func_dirname_result"
cannam@124 6390
cannam@124 6391 dlname=
cannam@124 6392 dlopen=
cannam@124 6393 dlpreopen=
cannam@124 6394 libdir=
cannam@124 6395 library_names=
cannam@124 6396 old_library=
cannam@124 6397 inherited_linker_flags=
cannam@124 6398 # If the library was installed with an old release of libtool,
cannam@124 6399 # it will not redefine variables installed, or shouldnotlink
cannam@124 6400 installed=yes
cannam@124 6401 shouldnotlink=no
cannam@124 6402 avoidtemprpath=
cannam@124 6403
cannam@124 6404
cannam@124 6405 # Read the .la file
cannam@124 6406 func_source "$lib"
cannam@124 6407
cannam@124 6408 # Convert "-framework foo" to "foo.ltframework"
cannam@124 6409 if test -n "$inherited_linker_flags"; then
cannam@124 6410 tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'`
cannam@124 6411 for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do
cannam@124 6412 case " $new_inherited_linker_flags " in
cannam@124 6413 *" $tmp_inherited_linker_flag "*) ;;
cannam@124 6414 *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";;
cannam@124 6415 esac
cannam@124 6416 done
cannam@124 6417 fi
cannam@124 6418 dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@124 6419 if test "$linkmode,$pass" = "lib,link" ||
cannam@124 6420 test "$linkmode,$pass" = "prog,scan" ||
cannam@124 6421 { test "$linkmode" != prog && test "$linkmode" != lib; }; then
cannam@124 6422 test -n "$dlopen" && func_append dlfiles " $dlopen"
cannam@124 6423 test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen"
cannam@124 6424 fi
cannam@124 6425
cannam@124 6426 if test "$pass" = conv; then
cannam@124 6427 # Only check for convenience libraries
cannam@124 6428 deplibs="$lib $deplibs"
cannam@124 6429 if test -z "$libdir"; then
cannam@124 6430 if test -z "$old_library"; then
cannam@124 6431 func_fatal_error "cannot find name of link library for \`$lib'"
cannam@124 6432 fi
cannam@124 6433 # It is a libtool convenience library, so add in its objects.
cannam@124 6434 func_append convenience " $ladir/$objdir/$old_library"
cannam@124 6435 func_append old_convenience " $ladir/$objdir/$old_library"
cannam@124 6436 tmp_libs=
cannam@124 6437 for deplib in $dependency_libs; do
cannam@124 6438 deplibs="$deplib $deplibs"
cannam@124 6439 if $opt_preserve_dup_deps ; then
cannam@124 6440 case "$tmp_libs " in
cannam@124 6441 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
cannam@124 6442 esac
cannam@124 6443 fi
cannam@124 6444 func_append tmp_libs " $deplib"
cannam@124 6445 done
cannam@124 6446 elif test "$linkmode" != prog && test "$linkmode" != lib; then
cannam@124 6447 func_fatal_error "\`$lib' is not a convenience library"
cannam@124 6448 fi
cannam@124 6449 continue
cannam@124 6450 fi # $pass = conv
cannam@124 6451
cannam@124 6452
cannam@124 6453 # Get the name of the library we link against.
cannam@124 6454 linklib=
cannam@124 6455 if test -n "$old_library" &&
cannam@124 6456 { test "$prefer_static_libs" = yes ||
cannam@124 6457 test "$prefer_static_libs,$installed" = "built,no"; }; then
cannam@124 6458 linklib=$old_library
cannam@124 6459 else
cannam@124 6460 for l in $old_library $library_names; do
cannam@124 6461 linklib="$l"
cannam@124 6462 done
cannam@124 6463 fi
cannam@124 6464 if test -z "$linklib"; then
cannam@124 6465 func_fatal_error "cannot find name of link library for \`$lib'"
cannam@124 6466 fi
cannam@124 6467
cannam@124 6468 # This library was specified with -dlopen.
cannam@124 6469 if test "$pass" = dlopen; then
cannam@124 6470 if test -z "$libdir"; then
cannam@124 6471 func_fatal_error "cannot -dlopen a convenience library: \`$lib'"
cannam@124 6472 fi
cannam@124 6473 if test -z "$dlname" ||
cannam@124 6474 test "$dlopen_support" != yes ||
cannam@124 6475 test "$build_libtool_libs" = no; then
cannam@124 6476 # If there is no dlname, no dlopen support or we're linking
cannam@124 6477 # statically, we need to preload. We also need to preload any
cannam@124 6478 # dependent libraries so libltdl's deplib preloader doesn't
cannam@124 6479 # bomb out in the load deplibs phase.
cannam@124 6480 func_append dlprefiles " $lib $dependency_libs"
cannam@124 6481 else
cannam@124 6482 func_append newdlfiles " $lib"
cannam@124 6483 fi
cannam@124 6484 continue
cannam@124 6485 fi # $pass = dlopen
cannam@124 6486
cannam@124 6487 # We need an absolute path.
cannam@124 6488 case $ladir in
cannam@124 6489 [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;
cannam@124 6490 *)
cannam@124 6491 abs_ladir=`cd "$ladir" && pwd`
cannam@124 6492 if test -z "$abs_ladir"; then
cannam@124 6493 func_warning "cannot determine absolute directory name of \`$ladir'"
cannam@124 6494 func_warning "passing it literally to the linker, although it might fail"
cannam@124 6495 abs_ladir="$ladir"
cannam@124 6496 fi
cannam@124 6497 ;;
cannam@124 6498 esac
cannam@124 6499 func_basename "$lib"
cannam@124 6500 laname="$func_basename_result"
cannam@124 6501
cannam@124 6502 # Find the relevant object directory and library name.
cannam@124 6503 if test "X$installed" = Xyes; then
cannam@124 6504 if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
cannam@124 6505 func_warning "library \`$lib' was moved."
cannam@124 6506 dir="$ladir"
cannam@124 6507 absdir="$abs_ladir"
cannam@124 6508 libdir="$abs_ladir"
cannam@124 6509 else
cannam@124 6510 dir="$lt_sysroot$libdir"
cannam@124 6511 absdir="$lt_sysroot$libdir"
cannam@124 6512 fi
cannam@124 6513 test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes
cannam@124 6514 else
cannam@124 6515 if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then
cannam@124 6516 dir="$ladir"
cannam@124 6517 absdir="$abs_ladir"
cannam@124 6518 # Remove this search path later
cannam@124 6519 func_append notinst_path " $abs_ladir"
cannam@124 6520 else
cannam@124 6521 dir="$ladir/$objdir"
cannam@124 6522 absdir="$abs_ladir/$objdir"
cannam@124 6523 # Remove this search path later
cannam@124 6524 func_append notinst_path " $abs_ladir"
cannam@124 6525 fi
cannam@124 6526 fi # $installed = yes
cannam@124 6527 func_stripname 'lib' '.la' "$laname"
cannam@124 6528 name=$func_stripname_result
cannam@124 6529
cannam@124 6530 # This library was specified with -dlpreopen.
cannam@124 6531 if test "$pass" = dlpreopen; then
cannam@124 6532 if test -z "$libdir" && test "$linkmode" = prog; then
cannam@124 6533 func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'"
cannam@124 6534 fi
cannam@124 6535 case "$host" in
cannam@124 6536 # special handling for platforms with PE-DLLs.
cannam@124 6537 *cygwin* | *mingw* | *cegcc* )
cannam@124 6538 # Linker will automatically link against shared library if both
cannam@124 6539 # static and shared are present. Therefore, ensure we extract
cannam@124 6540 # symbols from the import library if a shared library is present
cannam@124 6541 # (otherwise, the dlopen module name will be incorrect). We do
cannam@124 6542 # this by putting the import library name into $newdlprefiles.
cannam@124 6543 # We recover the dlopen module name by 'saving' the la file
cannam@124 6544 # name in a special purpose variable, and (later) extracting the
cannam@124 6545 # dlname from the la file.
cannam@124 6546 if test -n "$dlname"; then
cannam@124 6547 func_tr_sh "$dir/$linklib"
cannam@124 6548 eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname"
cannam@124 6549 func_append newdlprefiles " $dir/$linklib"
cannam@124 6550 else
cannam@124 6551 func_append newdlprefiles " $dir/$old_library"
cannam@124 6552 # Keep a list of preopened convenience libraries to check
cannam@124 6553 # that they are being used correctly in the link pass.
cannam@124 6554 test -z "$libdir" && \
cannam@124 6555 func_append dlpreconveniencelibs " $dir/$old_library"
cannam@124 6556 fi
cannam@124 6557 ;;
cannam@124 6558 * )
cannam@124 6559 # Prefer using a static library (so that no silly _DYNAMIC symbols
cannam@124 6560 # are required to link).
cannam@124 6561 if test -n "$old_library"; then
cannam@124 6562 func_append newdlprefiles " $dir/$old_library"
cannam@124 6563 # Keep a list of preopened convenience libraries to check
cannam@124 6564 # that they are being used correctly in the link pass.
cannam@124 6565 test -z "$libdir" && \
cannam@124 6566 func_append dlpreconveniencelibs " $dir/$old_library"
cannam@124 6567 # Otherwise, use the dlname, so that lt_dlopen finds it.
cannam@124 6568 elif test -n "$dlname"; then
cannam@124 6569 func_append newdlprefiles " $dir/$dlname"
cannam@124 6570 else
cannam@124 6571 func_append newdlprefiles " $dir/$linklib"
cannam@124 6572 fi
cannam@124 6573 ;;
cannam@124 6574 esac
cannam@124 6575 fi # $pass = dlpreopen
cannam@124 6576
cannam@124 6577 if test -z "$libdir"; then
cannam@124 6578 # Link the convenience library
cannam@124 6579 if test "$linkmode" = lib; then
cannam@124 6580 deplibs="$dir/$old_library $deplibs"
cannam@124 6581 elif test "$linkmode,$pass" = "prog,link"; then
cannam@124 6582 compile_deplibs="$dir/$old_library $compile_deplibs"
cannam@124 6583 finalize_deplibs="$dir/$old_library $finalize_deplibs"
cannam@124 6584 else
cannam@124 6585 deplibs="$lib $deplibs" # used for prog,scan pass
cannam@124 6586 fi
cannam@124 6587 continue
cannam@124 6588 fi
cannam@124 6589
cannam@124 6590
cannam@124 6591 if test "$linkmode" = prog && test "$pass" != link; then
cannam@124 6592 func_append newlib_search_path " $ladir"
cannam@124 6593 deplibs="$lib $deplibs"
cannam@124 6594
cannam@124 6595 linkalldeplibs=no
cannam@124 6596 if test "$link_all_deplibs" != no || test -z "$library_names" ||
cannam@124 6597 test "$build_libtool_libs" = no; then
cannam@124 6598 linkalldeplibs=yes
cannam@124 6599 fi
cannam@124 6600
cannam@124 6601 tmp_libs=
cannam@124 6602 for deplib in $dependency_libs; do
cannam@124 6603 case $deplib in
cannam@124 6604 -L*) func_stripname '-L' '' "$deplib"
cannam@124 6605 func_resolve_sysroot "$func_stripname_result"
cannam@124 6606 func_append newlib_search_path " $func_resolve_sysroot_result"
cannam@124 6607 ;;
cannam@124 6608 esac
cannam@124 6609 # Need to link against all dependency_libs?
cannam@124 6610 if test "$linkalldeplibs" = yes; then
cannam@124 6611 deplibs="$deplib $deplibs"
cannam@124 6612 else
cannam@124 6613 # Need to hardcode shared library paths
cannam@124 6614 # or/and link against static libraries
cannam@124 6615 newdependency_libs="$deplib $newdependency_libs"
cannam@124 6616 fi
cannam@124 6617 if $opt_preserve_dup_deps ; then
cannam@124 6618 case "$tmp_libs " in
cannam@124 6619 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
cannam@124 6620 esac
cannam@124 6621 fi
cannam@124 6622 func_append tmp_libs " $deplib"
cannam@124 6623 done # for deplib
cannam@124 6624 continue
cannam@124 6625 fi # $linkmode = prog...
cannam@124 6626
cannam@124 6627 if test "$linkmode,$pass" = "prog,link"; then
cannam@124 6628 if test -n "$library_names" &&
cannam@124 6629 { { test "$prefer_static_libs" = no ||
cannam@124 6630 test "$prefer_static_libs,$installed" = "built,yes"; } ||
cannam@124 6631 test -z "$old_library"; }; then
cannam@124 6632 # We need to hardcode the library path
cannam@124 6633 if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then
cannam@124 6634 # Make sure the rpath contains only unique directories.
cannam@124 6635 case "$temp_rpath:" in
cannam@124 6636 *"$absdir:"*) ;;
cannam@124 6637 *) func_append temp_rpath "$absdir:" ;;
cannam@124 6638 esac
cannam@124 6639 fi
cannam@124 6640
cannam@124 6641 # Hardcode the library path.
cannam@124 6642 # Skip directories that are in the system default run-time
cannam@124 6643 # search path.
cannam@124 6644 case " $sys_lib_dlsearch_path " in
cannam@124 6645 *" $absdir "*) ;;
cannam@124 6646 *)
cannam@124 6647 case "$compile_rpath " in
cannam@124 6648 *" $absdir "*) ;;
cannam@124 6649 *) func_append compile_rpath " $absdir" ;;
cannam@124 6650 esac
cannam@124 6651 ;;
cannam@124 6652 esac
cannam@124 6653 case " $sys_lib_dlsearch_path " in
cannam@124 6654 *" $libdir "*) ;;
cannam@124 6655 *)
cannam@124 6656 case "$finalize_rpath " in
cannam@124 6657 *" $libdir "*) ;;
cannam@124 6658 *) func_append finalize_rpath " $libdir" ;;
cannam@124 6659 esac
cannam@124 6660 ;;
cannam@124 6661 esac
cannam@124 6662 fi # $linkmode,$pass = prog,link...
cannam@124 6663
cannam@124 6664 if test "$alldeplibs" = yes &&
cannam@124 6665 { test "$deplibs_check_method" = pass_all ||
cannam@124 6666 { test "$build_libtool_libs" = yes &&
cannam@124 6667 test -n "$library_names"; }; }; then
cannam@124 6668 # We only need to search for static libraries
cannam@124 6669 continue
cannam@124 6670 fi
cannam@124 6671 fi
cannam@124 6672
cannam@124 6673 link_static=no # Whether the deplib will be linked statically
cannam@124 6674 use_static_libs=$prefer_static_libs
cannam@124 6675 if test "$use_static_libs" = built && test "$installed" = yes; then
cannam@124 6676 use_static_libs=no
cannam@124 6677 fi
cannam@124 6678 if test -n "$library_names" &&
cannam@124 6679 { test "$use_static_libs" = no || test -z "$old_library"; }; then
cannam@124 6680 case $host in
cannam@124 6681 *cygwin* | *mingw* | *cegcc*)
cannam@124 6682 # No point in relinking DLLs because paths are not encoded
cannam@124 6683 func_append notinst_deplibs " $lib"
cannam@124 6684 need_relink=no
cannam@124 6685 ;;
cannam@124 6686 *)
cannam@124 6687 if test "$installed" = no; then
cannam@124 6688 func_append notinst_deplibs " $lib"
cannam@124 6689 need_relink=yes
cannam@124 6690 fi
cannam@124 6691 ;;
cannam@124 6692 esac
cannam@124 6693 # This is a shared library
cannam@124 6694
cannam@124 6695 # Warn about portability, can't link against -module's on some
cannam@124 6696 # systems (darwin). Don't bleat about dlopened modules though!
cannam@124 6697 dlopenmodule=""
cannam@124 6698 for dlpremoduletest in $dlprefiles; do
cannam@124 6699 if test "X$dlpremoduletest" = "X$lib"; then
cannam@124 6700 dlopenmodule="$dlpremoduletest"
cannam@124 6701 break
cannam@124 6702 fi
cannam@124 6703 done
cannam@124 6704 if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then
cannam@124 6705 echo
cannam@124 6706 if test "$linkmode" = prog; then
cannam@124 6707 $ECHO "*** Warning: Linking the executable $output against the loadable module"
cannam@124 6708 else
cannam@124 6709 $ECHO "*** Warning: Linking the shared library $output against the loadable module"
cannam@124 6710 fi
cannam@124 6711 $ECHO "*** $linklib is not portable!"
cannam@124 6712 fi
cannam@124 6713 if test "$linkmode" = lib &&
cannam@124 6714 test "$hardcode_into_libs" = yes; then
cannam@124 6715 # Hardcode the library path.
cannam@124 6716 # Skip directories that are in the system default run-time
cannam@124 6717 # search path.
cannam@124 6718 case " $sys_lib_dlsearch_path " in
cannam@124 6719 *" $absdir "*) ;;
cannam@124 6720 *)
cannam@124 6721 case "$compile_rpath " in
cannam@124 6722 *" $absdir "*) ;;
cannam@124 6723 *) func_append compile_rpath " $absdir" ;;
cannam@124 6724 esac
cannam@124 6725 ;;
cannam@124 6726 esac
cannam@124 6727 case " $sys_lib_dlsearch_path " in
cannam@124 6728 *" $libdir "*) ;;
cannam@124 6729 *)
cannam@124 6730 case "$finalize_rpath " in
cannam@124 6731 *" $libdir "*) ;;
cannam@124 6732 *) func_append finalize_rpath " $libdir" ;;
cannam@124 6733 esac
cannam@124 6734 ;;
cannam@124 6735 esac
cannam@124 6736 fi
cannam@124 6737
cannam@124 6738 if test -n "$old_archive_from_expsyms_cmds"; then
cannam@124 6739 # figure out the soname
cannam@124 6740 set dummy $library_names
cannam@124 6741 shift
cannam@124 6742 realname="$1"
cannam@124 6743 shift
cannam@124 6744 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@124 6745 # use dlname if we got it. it's perfectly good, no?
cannam@124 6746 if test -n "$dlname"; then
cannam@124 6747 soname="$dlname"
cannam@124 6748 elif test -n "$soname_spec"; then
cannam@124 6749 # bleh windows
cannam@124 6750 case $host in
cannam@124 6751 *cygwin* | mingw* | *cegcc*)
cannam@124 6752 func_arith $current - $age
cannam@124 6753 major=$func_arith_result
cannam@124 6754 versuffix="-$major"
cannam@124 6755 ;;
cannam@124 6756 esac
cannam@124 6757 eval soname=\"$soname_spec\"
cannam@124 6758 else
cannam@124 6759 soname="$realname"
cannam@124 6760 fi
cannam@124 6761
cannam@124 6762 # Make a new name for the extract_expsyms_cmds to use
cannam@124 6763 soroot="$soname"
cannam@124 6764 func_basename "$soroot"
cannam@124 6765 soname="$func_basename_result"
cannam@124 6766 func_stripname 'lib' '.dll' "$soname"
cannam@124 6767 newlib=libimp-$func_stripname_result.a
cannam@124 6768
cannam@124 6769 # If the library has no export list, then create one now
cannam@124 6770 if test -f "$output_objdir/$soname-def"; then :
cannam@124 6771 else
cannam@124 6772 func_verbose "extracting exported symbol list from \`$soname'"
cannam@124 6773 func_execute_cmds "$extract_expsyms_cmds" 'exit $?'
cannam@124 6774 fi
cannam@124 6775
cannam@124 6776 # Create $newlib
cannam@124 6777 if test -f "$output_objdir/$newlib"; then :; else
cannam@124 6778 func_verbose "generating import library for \`$soname'"
cannam@124 6779 func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?'
cannam@124 6780 fi
cannam@124 6781 # make sure the library variables are pointing to the new library
cannam@124 6782 dir=$output_objdir
cannam@124 6783 linklib=$newlib
cannam@124 6784 fi # test -n "$old_archive_from_expsyms_cmds"
cannam@124 6785
cannam@124 6786 if test "$linkmode" = prog || test "$opt_mode" != relink; then
cannam@124 6787 add_shlibpath=
cannam@124 6788 add_dir=
cannam@124 6789 add=
cannam@124 6790 lib_linked=yes
cannam@124 6791 case $hardcode_action in
cannam@124 6792 immediate | unsupported)
cannam@124 6793 if test "$hardcode_direct" = no; then
cannam@124 6794 add="$dir/$linklib"
cannam@124 6795 case $host in
cannam@124 6796 *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;;
cannam@124 6797 *-*-sysv4*uw2*) add_dir="-L$dir" ;;
cannam@124 6798 *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \
cannam@124 6799 *-*-unixware7*) add_dir="-L$dir" ;;
cannam@124 6800 *-*-darwin* )
cannam@124 6801 # if the lib is a (non-dlopened) module then we can not
cannam@124 6802 # link against it, someone is ignoring the earlier warnings
cannam@124 6803 if /usr/bin/file -L $add 2> /dev/null |
cannam@124 6804 $GREP ": [^:]* bundle" >/dev/null ; then
cannam@124 6805 if test "X$dlopenmodule" != "X$lib"; then
cannam@124 6806 $ECHO "*** Warning: lib $linklib is a module, not a shared library"
cannam@124 6807 if test -z "$old_library" ; then
cannam@124 6808 echo
cannam@124 6809 echo "*** And there doesn't seem to be a static archive available"
cannam@124 6810 echo "*** The link will probably fail, sorry"
cannam@124 6811 else
cannam@124 6812 add="$dir/$old_library"
cannam@124 6813 fi
cannam@124 6814 elif test -n "$old_library"; then
cannam@124 6815 add="$dir/$old_library"
cannam@124 6816 fi
cannam@124 6817 fi
cannam@124 6818 esac
cannam@124 6819 elif test "$hardcode_minus_L" = no; then
cannam@124 6820 case $host in
cannam@124 6821 *-*-sunos*) add_shlibpath="$dir" ;;
cannam@124 6822 esac
cannam@124 6823 add_dir="-L$dir"
cannam@124 6824 add="-l$name"
cannam@124 6825 elif test "$hardcode_shlibpath_var" = no; then
cannam@124 6826 add_shlibpath="$dir"
cannam@124 6827 add="-l$name"
cannam@124 6828 else
cannam@124 6829 lib_linked=no
cannam@124 6830 fi
cannam@124 6831 ;;
cannam@124 6832 relink)
cannam@124 6833 if test "$hardcode_direct" = yes &&
cannam@124 6834 test "$hardcode_direct_absolute" = no; then
cannam@124 6835 add="$dir/$linklib"
cannam@124 6836 elif test "$hardcode_minus_L" = yes; then
cannam@124 6837 add_dir="-L$dir"
cannam@124 6838 # Try looking first in the location we're being installed to.
cannam@124 6839 if test -n "$inst_prefix_dir"; then
cannam@124 6840 case $libdir in
cannam@124 6841 [\\/]*)
cannam@124 6842 func_append add_dir " -L$inst_prefix_dir$libdir"
cannam@124 6843 ;;
cannam@124 6844 esac
cannam@124 6845 fi
cannam@124 6846 add="-l$name"
cannam@124 6847 elif test "$hardcode_shlibpath_var" = yes; then
cannam@124 6848 add_shlibpath="$dir"
cannam@124 6849 add="-l$name"
cannam@124 6850 else
cannam@124 6851 lib_linked=no
cannam@124 6852 fi
cannam@124 6853 ;;
cannam@124 6854 *) lib_linked=no ;;
cannam@124 6855 esac
cannam@124 6856
cannam@124 6857 if test "$lib_linked" != yes; then
cannam@124 6858 func_fatal_configuration "unsupported hardcode properties"
cannam@124 6859 fi
cannam@124 6860
cannam@124 6861 if test -n "$add_shlibpath"; then
cannam@124 6862 case :$compile_shlibpath: in
cannam@124 6863 *":$add_shlibpath:"*) ;;
cannam@124 6864 *) func_append compile_shlibpath "$add_shlibpath:" ;;
cannam@124 6865 esac
cannam@124 6866 fi
cannam@124 6867 if test "$linkmode" = prog; then
cannam@124 6868 test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
cannam@124 6869 test -n "$add" && compile_deplibs="$add $compile_deplibs"
cannam@124 6870 else
cannam@124 6871 test -n "$add_dir" && deplibs="$add_dir $deplibs"
cannam@124 6872 test -n "$add" && deplibs="$add $deplibs"
cannam@124 6873 if test "$hardcode_direct" != yes &&
cannam@124 6874 test "$hardcode_minus_L" != yes &&
cannam@124 6875 test "$hardcode_shlibpath_var" = yes; then
cannam@124 6876 case :$finalize_shlibpath: in
cannam@124 6877 *":$libdir:"*) ;;
cannam@124 6878 *) func_append finalize_shlibpath "$libdir:" ;;
cannam@124 6879 esac
cannam@124 6880 fi
cannam@124 6881 fi
cannam@124 6882 fi
cannam@124 6883
cannam@124 6884 if test "$linkmode" = prog || test "$opt_mode" = relink; then
cannam@124 6885 add_shlibpath=
cannam@124 6886 add_dir=
cannam@124 6887 add=
cannam@124 6888 # Finalize command for both is simple: just hardcode it.
cannam@124 6889 if test "$hardcode_direct" = yes &&
cannam@124 6890 test "$hardcode_direct_absolute" = no; then
cannam@124 6891 add="$libdir/$linklib"
cannam@124 6892 elif test "$hardcode_minus_L" = yes; then
cannam@124 6893 add_dir="-L$libdir"
cannam@124 6894 add="-l$name"
cannam@124 6895 elif test "$hardcode_shlibpath_var" = yes; then
cannam@124 6896 case :$finalize_shlibpath: in
cannam@124 6897 *":$libdir:"*) ;;
cannam@124 6898 *) func_append finalize_shlibpath "$libdir:" ;;
cannam@124 6899 esac
cannam@124 6900 add="-l$name"
cannam@124 6901 elif test "$hardcode_automatic" = yes; then
cannam@124 6902 if test -n "$inst_prefix_dir" &&
cannam@124 6903 test -f "$inst_prefix_dir$libdir/$linklib" ; then
cannam@124 6904 add="$inst_prefix_dir$libdir/$linklib"
cannam@124 6905 else
cannam@124 6906 add="$libdir/$linklib"
cannam@124 6907 fi
cannam@124 6908 else
cannam@124 6909 # We cannot seem to hardcode it, guess we'll fake it.
cannam@124 6910 add_dir="-L$libdir"
cannam@124 6911 # Try looking first in the location we're being installed to.
cannam@124 6912 if test -n "$inst_prefix_dir"; then
cannam@124 6913 case $libdir in
cannam@124 6914 [\\/]*)
cannam@124 6915 func_append add_dir " -L$inst_prefix_dir$libdir"
cannam@124 6916 ;;
cannam@124 6917 esac
cannam@124 6918 fi
cannam@124 6919 add="-l$name"
cannam@124 6920 fi
cannam@124 6921
cannam@124 6922 if test "$linkmode" = prog; then
cannam@124 6923 test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
cannam@124 6924 test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
cannam@124 6925 else
cannam@124 6926 test -n "$add_dir" && deplibs="$add_dir $deplibs"
cannam@124 6927 test -n "$add" && deplibs="$add $deplibs"
cannam@124 6928 fi
cannam@124 6929 fi
cannam@124 6930 elif test "$linkmode" = prog; then
cannam@124 6931 # Here we assume that one of hardcode_direct or hardcode_minus_L
cannam@124 6932 # is not unsupported. This is valid on all known static and
cannam@124 6933 # shared platforms.
cannam@124 6934 if test "$hardcode_direct" != unsupported; then
cannam@124 6935 test -n "$old_library" && linklib="$old_library"
cannam@124 6936 compile_deplibs="$dir/$linklib $compile_deplibs"
cannam@124 6937 finalize_deplibs="$dir/$linklib $finalize_deplibs"
cannam@124 6938 else
cannam@124 6939 compile_deplibs="-l$name -L$dir $compile_deplibs"
cannam@124 6940 finalize_deplibs="-l$name -L$dir $finalize_deplibs"
cannam@124 6941 fi
cannam@124 6942 elif test "$build_libtool_libs" = yes; then
cannam@124 6943 # Not a shared library
cannam@124 6944 if test "$deplibs_check_method" != pass_all; then
cannam@124 6945 # We're trying link a shared library against a static one
cannam@124 6946 # but the system doesn't support it.
cannam@124 6947
cannam@124 6948 # Just print a warning and add the library to dependency_libs so
cannam@124 6949 # that the program can be linked against the static library.
cannam@124 6950 echo
cannam@124 6951 $ECHO "*** Warning: This system can not link to static lib archive $lib."
cannam@124 6952 echo "*** I have the capability to make that library automatically link in when"
cannam@124 6953 echo "*** you link to this library. But I can only do this if you have a"
cannam@124 6954 echo "*** shared version of the library, which you do not appear to have."
cannam@124 6955 if test "$module" = yes; then
cannam@124 6956 echo "*** But as you try to build a module library, libtool will still create "
cannam@124 6957 echo "*** a static module, that should work as long as the dlopening application"
cannam@124 6958 echo "*** is linked with the -dlopen flag to resolve symbols at runtime."
cannam@124 6959 if test -z "$global_symbol_pipe"; then
cannam@124 6960 echo
cannam@124 6961 echo "*** However, this would only work if libtool was able to extract symbol"
cannam@124 6962 echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
cannam@124 6963 echo "*** not find such a program. So, this module is probably useless."
cannam@124 6964 echo "*** \`nm' from GNU binutils and a full rebuild may help."
cannam@124 6965 fi
cannam@124 6966 if test "$build_old_libs" = no; then
cannam@124 6967 build_libtool_libs=module
cannam@124 6968 build_old_libs=yes
cannam@124 6969 else
cannam@124 6970 build_libtool_libs=no
cannam@124 6971 fi
cannam@124 6972 fi
cannam@124 6973 else
cannam@124 6974 deplibs="$dir/$old_library $deplibs"
cannam@124 6975 link_static=yes
cannam@124 6976 fi
cannam@124 6977 fi # link shared/static library?
cannam@124 6978
cannam@124 6979 if test "$linkmode" = lib; then
cannam@124 6980 if test -n "$dependency_libs" &&
cannam@124 6981 { test "$hardcode_into_libs" != yes ||
cannam@124 6982 test "$build_old_libs" = yes ||
cannam@124 6983 test "$link_static" = yes; }; then
cannam@124 6984 # Extract -R from dependency_libs
cannam@124 6985 temp_deplibs=
cannam@124 6986 for libdir in $dependency_libs; do
cannam@124 6987 case $libdir in
cannam@124 6988 -R*) func_stripname '-R' '' "$libdir"
cannam@124 6989 temp_xrpath=$func_stripname_result
cannam@124 6990 case " $xrpath " in
cannam@124 6991 *" $temp_xrpath "*) ;;
cannam@124 6992 *) func_append xrpath " $temp_xrpath";;
cannam@124 6993 esac;;
cannam@124 6994 *) func_append temp_deplibs " $libdir";;
cannam@124 6995 esac
cannam@124 6996 done
cannam@124 6997 dependency_libs="$temp_deplibs"
cannam@124 6998 fi
cannam@124 6999
cannam@124 7000 func_append newlib_search_path " $absdir"
cannam@124 7001 # Link against this library
cannam@124 7002 test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
cannam@124 7003 # ... and its dependency_libs
cannam@124 7004 tmp_libs=
cannam@124 7005 for deplib in $dependency_libs; do
cannam@124 7006 newdependency_libs="$deplib $newdependency_libs"
cannam@124 7007 case $deplib in
cannam@124 7008 -L*) func_stripname '-L' '' "$deplib"
cannam@124 7009 func_resolve_sysroot "$func_stripname_result";;
cannam@124 7010 *) func_resolve_sysroot "$deplib" ;;
cannam@124 7011 esac
cannam@124 7012 if $opt_preserve_dup_deps ; then
cannam@124 7013 case "$tmp_libs " in
cannam@124 7014 *" $func_resolve_sysroot_result "*)
cannam@124 7015 func_append specialdeplibs " $func_resolve_sysroot_result" ;;
cannam@124 7016 esac
cannam@124 7017 fi
cannam@124 7018 func_append tmp_libs " $func_resolve_sysroot_result"
cannam@124 7019 done
cannam@124 7020
cannam@124 7021 if test "$link_all_deplibs" != no; then
cannam@124 7022 # Add the search paths of all dependency libraries
cannam@124 7023 for deplib in $dependency_libs; do
cannam@124 7024 path=
cannam@124 7025 case $deplib in
cannam@124 7026 -L*) path="$deplib" ;;
cannam@124 7027 *.la)
cannam@124 7028 func_resolve_sysroot "$deplib"
cannam@124 7029 deplib=$func_resolve_sysroot_result
cannam@124 7030 func_dirname "$deplib" "" "."
cannam@124 7031 dir=$func_dirname_result
cannam@124 7032 # We need an absolute path.
cannam@124 7033 case $dir in
cannam@124 7034 [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;
cannam@124 7035 *)
cannam@124 7036 absdir=`cd "$dir" && pwd`
cannam@124 7037 if test -z "$absdir"; then
cannam@124 7038 func_warning "cannot determine absolute directory name of \`$dir'"
cannam@124 7039 absdir="$dir"
cannam@124 7040 fi
cannam@124 7041 ;;
cannam@124 7042 esac
cannam@124 7043 if $GREP "^installed=no" $deplib > /dev/null; then
cannam@124 7044 case $host in
cannam@124 7045 *-*-darwin*)
cannam@124 7046 depdepl=
cannam@124 7047 eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib`
cannam@124 7048 if test -n "$deplibrary_names" ; then
cannam@124 7049 for tmp in $deplibrary_names ; do
cannam@124 7050 depdepl=$tmp
cannam@124 7051 done
cannam@124 7052 if test -f "$absdir/$objdir/$depdepl" ; then
cannam@124 7053 depdepl="$absdir/$objdir/$depdepl"
cannam@124 7054 darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
cannam@124 7055 if test -z "$darwin_install_name"; then
cannam@124 7056 darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
cannam@124 7057 fi
cannam@124 7058 func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}"
cannam@124 7059 func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}"
cannam@124 7060 path=
cannam@124 7061 fi
cannam@124 7062 fi
cannam@124 7063 ;;
cannam@124 7064 *)
cannam@124 7065 path="-L$absdir/$objdir"
cannam@124 7066 ;;
cannam@124 7067 esac
cannam@124 7068 else
cannam@124 7069 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
cannam@124 7070 test -z "$libdir" && \
cannam@124 7071 func_fatal_error "\`$deplib' is not a valid libtool archive"
cannam@124 7072 test "$absdir" != "$libdir" && \
cannam@124 7073 func_warning "\`$deplib' seems to be moved"
cannam@124 7074
cannam@124 7075 path="-L$absdir"
cannam@124 7076 fi
cannam@124 7077 ;;
cannam@124 7078 esac
cannam@124 7079 case " $deplibs " in
cannam@124 7080 *" $path "*) ;;
cannam@124 7081 *) deplibs="$path $deplibs" ;;
cannam@124 7082 esac
cannam@124 7083 done
cannam@124 7084 fi # link_all_deplibs != no
cannam@124 7085 fi # linkmode = lib
cannam@124 7086 done # for deplib in $libs
cannam@124 7087 if test "$pass" = link; then
cannam@124 7088 if test "$linkmode" = "prog"; then
cannam@124 7089 compile_deplibs="$new_inherited_linker_flags $compile_deplibs"
cannam@124 7090 finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs"
cannam@124 7091 else
cannam@124 7092 compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@124 7093 fi
cannam@124 7094 fi
cannam@124 7095 dependency_libs="$newdependency_libs"
cannam@124 7096 if test "$pass" = dlpreopen; then
cannam@124 7097 # Link the dlpreopened libraries before other libraries
cannam@124 7098 for deplib in $save_deplibs; do
cannam@124 7099 deplibs="$deplib $deplibs"
cannam@124 7100 done
cannam@124 7101 fi
cannam@124 7102 if test "$pass" != dlopen; then
cannam@124 7103 if test "$pass" != conv; then
cannam@124 7104 # Make sure lib_search_path contains only unique directories.
cannam@124 7105 lib_search_path=
cannam@124 7106 for dir in $newlib_search_path; do
cannam@124 7107 case "$lib_search_path " in
cannam@124 7108 *" $dir "*) ;;
cannam@124 7109 *) func_append lib_search_path " $dir" ;;
cannam@124 7110 esac
cannam@124 7111 done
cannam@124 7112 newlib_search_path=
cannam@124 7113 fi
cannam@124 7114
cannam@124 7115 if test "$linkmode,$pass" != "prog,link"; then
cannam@124 7116 vars="deplibs"
cannam@124 7117 else
cannam@124 7118 vars="compile_deplibs finalize_deplibs"
cannam@124 7119 fi
cannam@124 7120 for var in $vars dependency_libs; do
cannam@124 7121 # Add libraries to $var in reverse order
cannam@124 7122 eval tmp_libs=\"\$$var\"
cannam@124 7123 new_libs=
cannam@124 7124 for deplib in $tmp_libs; do
cannam@124 7125 # FIXME: Pedantically, this is the right thing to do, so
cannam@124 7126 # that some nasty dependency loop isn't accidentally
cannam@124 7127 # broken:
cannam@124 7128 #new_libs="$deplib $new_libs"
cannam@124 7129 # Pragmatically, this seems to cause very few problems in
cannam@124 7130 # practice:
cannam@124 7131 case $deplib in
cannam@124 7132 -L*) new_libs="$deplib $new_libs" ;;
cannam@124 7133 -R*) ;;
cannam@124 7134 *)
cannam@124 7135 # And here is the reason: when a library appears more
cannam@124 7136 # than once as an explicit dependence of a library, or
cannam@124 7137 # is implicitly linked in more than once by the
cannam@124 7138 # compiler, it is considered special, and multiple
cannam@124 7139 # occurrences thereof are not removed. Compare this
cannam@124 7140 # with having the same library being listed as a
cannam@124 7141 # dependency of multiple other libraries: in this case,
cannam@124 7142 # we know (pedantically, we assume) the library does not
cannam@124 7143 # need to be listed more than once, so we keep only the
cannam@124 7144 # last copy. This is not always right, but it is rare
cannam@124 7145 # enough that we require users that really mean to play
cannam@124 7146 # such unportable linking tricks to link the library
cannam@124 7147 # using -Wl,-lname, so that libtool does not consider it
cannam@124 7148 # for duplicate removal.
cannam@124 7149 case " $specialdeplibs " in
cannam@124 7150 *" $deplib "*) new_libs="$deplib $new_libs" ;;
cannam@124 7151 *)
cannam@124 7152 case " $new_libs " in
cannam@124 7153 *" $deplib "*) ;;
cannam@124 7154 *) new_libs="$deplib $new_libs" ;;
cannam@124 7155 esac
cannam@124 7156 ;;
cannam@124 7157 esac
cannam@124 7158 ;;
cannam@124 7159 esac
cannam@124 7160 done
cannam@124 7161 tmp_libs=
cannam@124 7162 for deplib in $new_libs; do
cannam@124 7163 case $deplib in
cannam@124 7164 -L*)
cannam@124 7165 case " $tmp_libs " in
cannam@124 7166 *" $deplib "*) ;;
cannam@124 7167 *) func_append tmp_libs " $deplib" ;;
cannam@124 7168 esac
cannam@124 7169 ;;
cannam@124 7170 *) func_append tmp_libs " $deplib" ;;
cannam@124 7171 esac
cannam@124 7172 done
cannam@124 7173 eval $var=\"$tmp_libs\"
cannam@124 7174 done # for var
cannam@124 7175 fi
cannam@124 7176 # Last step: remove runtime libs from dependency_libs
cannam@124 7177 # (they stay in deplibs)
cannam@124 7178 tmp_libs=
cannam@124 7179 for i in $dependency_libs ; do
cannam@124 7180 case " $predeps $postdeps $compiler_lib_search_path " in
cannam@124 7181 *" $i "*)
cannam@124 7182 i=""
cannam@124 7183 ;;
cannam@124 7184 esac
cannam@124 7185 if test -n "$i" ; then
cannam@124 7186 func_append tmp_libs " $i"
cannam@124 7187 fi
cannam@124 7188 done
cannam@124 7189 dependency_libs=$tmp_libs
cannam@124 7190 done # for pass
cannam@124 7191 if test "$linkmode" = prog; then
cannam@124 7192 dlfiles="$newdlfiles"
cannam@124 7193 fi
cannam@124 7194 if test "$linkmode" = prog || test "$linkmode" = lib; then
cannam@124 7195 dlprefiles="$newdlprefiles"
cannam@124 7196 fi
cannam@124 7197
cannam@124 7198 case $linkmode in
cannam@124 7199 oldlib)
cannam@124 7200 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@124 7201 func_warning "\`-dlopen' is ignored for archives"
cannam@124 7202 fi
cannam@124 7203
cannam@124 7204 case " $deplibs" in
cannam@124 7205 *\ -l* | *\ -L*)
cannam@124 7206 func_warning "\`-l' and \`-L' are ignored for archives" ;;
cannam@124 7207 esac
cannam@124 7208
cannam@124 7209 test -n "$rpath" && \
cannam@124 7210 func_warning "\`-rpath' is ignored for archives"
cannam@124 7211
cannam@124 7212 test -n "$xrpath" && \
cannam@124 7213 func_warning "\`-R' is ignored for archives"
cannam@124 7214
cannam@124 7215 test -n "$vinfo" && \
cannam@124 7216 func_warning "\`-version-info/-version-number' is ignored for archives"
cannam@124 7217
cannam@124 7218 test -n "$release" && \
cannam@124 7219 func_warning "\`-release' is ignored for archives"
cannam@124 7220
cannam@124 7221 test -n "$export_symbols$export_symbols_regex" && \
cannam@124 7222 func_warning "\`-export-symbols' is ignored for archives"
cannam@124 7223
cannam@124 7224 # Now set the variables for building old libraries.
cannam@124 7225 build_libtool_libs=no
cannam@124 7226 oldlibs="$output"
cannam@124 7227 func_append objs "$old_deplibs"
cannam@124 7228 ;;
cannam@124 7229
cannam@124 7230 lib)
cannam@124 7231 # Make sure we only generate libraries of the form `libNAME.la'.
cannam@124 7232 case $outputname in
cannam@124 7233 lib*)
cannam@124 7234 func_stripname 'lib' '.la' "$outputname"
cannam@124 7235 name=$func_stripname_result
cannam@124 7236 eval shared_ext=\"$shrext_cmds\"
cannam@124 7237 eval libname=\"$libname_spec\"
cannam@124 7238 ;;
cannam@124 7239 *)
cannam@124 7240 test "$module" = no && \
cannam@124 7241 func_fatal_help "libtool library \`$output' must begin with \`lib'"
cannam@124 7242
cannam@124 7243 if test "$need_lib_prefix" != no; then
cannam@124 7244 # Add the "lib" prefix for modules if required
cannam@124 7245 func_stripname '' '.la' "$outputname"
cannam@124 7246 name=$func_stripname_result
cannam@124 7247 eval shared_ext=\"$shrext_cmds\"
cannam@124 7248 eval libname=\"$libname_spec\"
cannam@124 7249 else
cannam@124 7250 func_stripname '' '.la' "$outputname"
cannam@124 7251 libname=$func_stripname_result
cannam@124 7252 fi
cannam@124 7253 ;;
cannam@124 7254 esac
cannam@124 7255
cannam@124 7256 if test -n "$objs"; then
cannam@124 7257 if test "$deplibs_check_method" != pass_all; then
cannam@124 7258 func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs"
cannam@124 7259 else
cannam@124 7260 echo
cannam@124 7261 $ECHO "*** Warning: Linking the shared library $output against the non-libtool"
cannam@124 7262 $ECHO "*** objects $objs is not portable!"
cannam@124 7263 func_append libobjs " $objs"
cannam@124 7264 fi
cannam@124 7265 fi
cannam@124 7266
cannam@124 7267 test "$dlself" != no && \
cannam@124 7268 func_warning "\`-dlopen self' is ignored for libtool libraries"
cannam@124 7269
cannam@124 7270 set dummy $rpath
cannam@124 7271 shift
cannam@124 7272 test "$#" -gt 1 && \
cannam@124 7273 func_warning "ignoring multiple \`-rpath's for a libtool library"
cannam@124 7274
cannam@124 7275 install_libdir="$1"
cannam@124 7276
cannam@124 7277 oldlibs=
cannam@124 7278 if test -z "$rpath"; then
cannam@124 7279 if test "$build_libtool_libs" = yes; then
cannam@124 7280 # Building a libtool convenience library.
cannam@124 7281 # Some compilers have problems with a `.al' extension so
cannam@124 7282 # convenience libraries should have the same extension an
cannam@124 7283 # archive normally would.
cannam@124 7284 oldlibs="$output_objdir/$libname.$libext $oldlibs"
cannam@124 7285 build_libtool_libs=convenience
cannam@124 7286 build_old_libs=yes
cannam@124 7287 fi
cannam@124 7288
cannam@124 7289 test -n "$vinfo" && \
cannam@124 7290 func_warning "\`-version-info/-version-number' is ignored for convenience libraries"
cannam@124 7291
cannam@124 7292 test -n "$release" && \
cannam@124 7293 func_warning "\`-release' is ignored for convenience libraries"
cannam@124 7294 else
cannam@124 7295
cannam@124 7296 # Parse the version information argument.
cannam@124 7297 save_ifs="$IFS"; IFS=':'
cannam@124 7298 set dummy $vinfo 0 0 0
cannam@124 7299 shift
cannam@124 7300 IFS="$save_ifs"
cannam@124 7301
cannam@124 7302 test -n "$7" && \
cannam@124 7303 func_fatal_help "too many parameters to \`-version-info'"
cannam@124 7304
cannam@124 7305 # convert absolute version numbers to libtool ages
cannam@124 7306 # this retains compatibility with .la files and attempts
cannam@124 7307 # to make the code below a bit more comprehensible
cannam@124 7308
cannam@124 7309 case $vinfo_number in
cannam@124 7310 yes)
cannam@124 7311 number_major="$1"
cannam@124 7312 number_minor="$2"
cannam@124 7313 number_revision="$3"
cannam@124 7314 #
cannam@124 7315 # There are really only two kinds -- those that
cannam@124 7316 # use the current revision as the major version
cannam@124 7317 # and those that subtract age and use age as
cannam@124 7318 # a minor version. But, then there is irix
cannam@124 7319 # which has an extra 1 added just for fun
cannam@124 7320 #
cannam@124 7321 case $version_type in
cannam@124 7322 darwin|linux|osf|windows|none)
cannam@124 7323 func_arith $number_major + $number_minor
cannam@124 7324 current=$func_arith_result
cannam@124 7325 age="$number_minor"
cannam@124 7326 revision="$number_revision"
cannam@124 7327 ;;
cannam@124 7328 freebsd-aout|freebsd-elf|qnx|sunos)
cannam@124 7329 current="$number_major"
cannam@124 7330 revision="$number_minor"
cannam@124 7331 age="0"
cannam@124 7332 ;;
cannam@124 7333 irix|nonstopux)
cannam@124 7334 func_arith $number_major + $number_minor
cannam@124 7335 current=$func_arith_result
cannam@124 7336 age="$number_minor"
cannam@124 7337 revision="$number_minor"
cannam@124 7338 lt_irix_increment=no
cannam@124 7339 ;;
cannam@124 7340 *)
cannam@124 7341 func_fatal_configuration "$modename: unknown library version type \`$version_type'"
cannam@124 7342 ;;
cannam@124 7343 esac
cannam@124 7344 ;;
cannam@124 7345 no)
cannam@124 7346 current="$1"
cannam@124 7347 revision="$2"
cannam@124 7348 age="$3"
cannam@124 7349 ;;
cannam@124 7350 esac
cannam@124 7351
cannam@124 7352 # Check that each of the things are valid numbers.
cannam@124 7353 case $current in
cannam@124 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@124 7355 *)
cannam@124 7356 func_error "CURRENT \`$current' must be a nonnegative integer"
cannam@124 7357 func_fatal_error "\`$vinfo' is not valid version information"
cannam@124 7358 ;;
cannam@124 7359 esac
cannam@124 7360
cannam@124 7361 case $revision in
cannam@124 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@124 7363 *)
cannam@124 7364 func_error "REVISION \`$revision' must be a nonnegative integer"
cannam@124 7365 func_fatal_error "\`$vinfo' is not valid version information"
cannam@124 7366 ;;
cannam@124 7367 esac
cannam@124 7368
cannam@124 7369 case $age in
cannam@124 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@124 7371 *)
cannam@124 7372 func_error "AGE \`$age' must be a nonnegative integer"
cannam@124 7373 func_fatal_error "\`$vinfo' is not valid version information"
cannam@124 7374 ;;
cannam@124 7375 esac
cannam@124 7376
cannam@124 7377 if test "$age" -gt "$current"; then
cannam@124 7378 func_error "AGE \`$age' is greater than the current interface number \`$current'"
cannam@124 7379 func_fatal_error "\`$vinfo' is not valid version information"
cannam@124 7380 fi
cannam@124 7381
cannam@124 7382 # Calculate the version variables.
cannam@124 7383 major=
cannam@124 7384 versuffix=
cannam@124 7385 verstring=
cannam@124 7386 case $version_type in
cannam@124 7387 none) ;;
cannam@124 7388
cannam@124 7389 darwin)
cannam@124 7390 # Like Linux, but with the current version available in
cannam@124 7391 # verstring for coding it into the library header
cannam@124 7392 func_arith $current - $age
cannam@124 7393 major=.$func_arith_result
cannam@124 7394 versuffix="$major.$age.$revision"
cannam@124 7395 # Darwin ld doesn't like 0 for these options...
cannam@124 7396 func_arith $current + 1
cannam@124 7397 minor_current=$func_arith_result
cannam@124 7398 xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
cannam@124 7399 verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
cannam@124 7400 ;;
cannam@124 7401
cannam@124 7402 freebsd-aout)
cannam@124 7403 major=".$current"
cannam@124 7404 versuffix=".$current.$revision";
cannam@124 7405 ;;
cannam@124 7406
cannam@124 7407 freebsd-elf)
cannam@124 7408 major=".$current"
cannam@124 7409 versuffix=".$current"
cannam@124 7410 ;;
cannam@124 7411
cannam@124 7412 irix | nonstopux)
cannam@124 7413 if test "X$lt_irix_increment" = "Xno"; then
cannam@124 7414 func_arith $current - $age
cannam@124 7415 else
cannam@124 7416 func_arith $current - $age + 1
cannam@124 7417 fi
cannam@124 7418 major=$func_arith_result
cannam@124 7419
cannam@124 7420 case $version_type in
cannam@124 7421 nonstopux) verstring_prefix=nonstopux ;;
cannam@124 7422 *) verstring_prefix=sgi ;;
cannam@124 7423 esac
cannam@124 7424 verstring="$verstring_prefix$major.$revision"
cannam@124 7425
cannam@124 7426 # Add in all the interfaces that we are compatible with.
cannam@124 7427 loop=$revision
cannam@124 7428 while test "$loop" -ne 0; do
cannam@124 7429 func_arith $revision - $loop
cannam@124 7430 iface=$func_arith_result
cannam@124 7431 func_arith $loop - 1
cannam@124 7432 loop=$func_arith_result
cannam@124 7433 verstring="$verstring_prefix$major.$iface:$verstring"
cannam@124 7434 done
cannam@124 7435
cannam@124 7436 # Before this point, $major must not contain `.'.
cannam@124 7437 major=.$major
cannam@124 7438 versuffix="$major.$revision"
cannam@124 7439 ;;
cannam@124 7440
cannam@124 7441 linux)
cannam@124 7442 func_arith $current - $age
cannam@124 7443 major=.$func_arith_result
cannam@124 7444 versuffix="$major.$age.$revision"
cannam@124 7445 ;;
cannam@124 7446
cannam@124 7447 osf)
cannam@124 7448 func_arith $current - $age
cannam@124 7449 major=.$func_arith_result
cannam@124 7450 versuffix=".$current.$age.$revision"
cannam@124 7451 verstring="$current.$age.$revision"
cannam@124 7452
cannam@124 7453 # Add in all the interfaces that we are compatible with.
cannam@124 7454 loop=$age
cannam@124 7455 while test "$loop" -ne 0; do
cannam@124 7456 func_arith $current - $loop
cannam@124 7457 iface=$func_arith_result
cannam@124 7458 func_arith $loop - 1
cannam@124 7459 loop=$func_arith_result
cannam@124 7460 verstring="$verstring:${iface}.0"
cannam@124 7461 done
cannam@124 7462
cannam@124 7463 # Make executables depend on our current version.
cannam@124 7464 func_append verstring ":${current}.0"
cannam@124 7465 ;;
cannam@124 7466
cannam@124 7467 qnx)
cannam@124 7468 major=".$current"
cannam@124 7469 versuffix=".$current"
cannam@124 7470 ;;
cannam@124 7471
cannam@124 7472 sunos)
cannam@124 7473 major=".$current"
cannam@124 7474 versuffix=".$current.$revision"
cannam@124 7475 ;;
cannam@124 7476
cannam@124 7477 windows)
cannam@124 7478 # Use '-' rather than '.', since we only want one
cannam@124 7479 # extension on DOS 8.3 filesystems.
cannam@124 7480 func_arith $current - $age
cannam@124 7481 major=$func_arith_result
cannam@124 7482 versuffix="-$major"
cannam@124 7483 ;;
cannam@124 7484
cannam@124 7485 *)
cannam@124 7486 func_fatal_configuration "unknown library version type \`$version_type'"
cannam@124 7487 ;;
cannam@124 7488 esac
cannam@124 7489
cannam@124 7490 # Clear the version info if we defaulted, and they specified a release.
cannam@124 7491 if test -z "$vinfo" && test -n "$release"; then
cannam@124 7492 major=
cannam@124 7493 case $version_type in
cannam@124 7494 darwin)
cannam@124 7495 # we can't check for "0.0" in archive_cmds due to quoting
cannam@124 7496 # problems, so we reset it completely
cannam@124 7497 verstring=
cannam@124 7498 ;;
cannam@124 7499 *)
cannam@124 7500 verstring="0.0"
cannam@124 7501 ;;
cannam@124 7502 esac
cannam@124 7503 if test "$need_version" = no; then
cannam@124 7504 versuffix=
cannam@124 7505 else
cannam@124 7506 versuffix=".0.0"
cannam@124 7507 fi
cannam@124 7508 fi
cannam@124 7509
cannam@124 7510 # Remove version info from name if versioning should be avoided
cannam@124 7511 if test "$avoid_version" = yes && test "$need_version" = no; then
cannam@124 7512 major=
cannam@124 7513 versuffix=
cannam@124 7514 verstring=""
cannam@124 7515 fi
cannam@124 7516
cannam@124 7517 # Check to see if the archive will have undefined symbols.
cannam@124 7518 if test "$allow_undefined" = yes; then
cannam@124 7519 if test "$allow_undefined_flag" = unsupported; then
cannam@124 7520 func_warning "undefined symbols not allowed in $host shared libraries"
cannam@124 7521 build_libtool_libs=no
cannam@124 7522 build_old_libs=yes
cannam@124 7523 fi
cannam@124 7524 else
cannam@124 7525 # Don't allow undefined symbols.
cannam@124 7526 allow_undefined_flag="$no_undefined_flag"
cannam@124 7527 fi
cannam@124 7528
cannam@124 7529 fi
cannam@124 7530
cannam@124 7531 func_generate_dlsyms "$libname" "$libname" "yes"
cannam@124 7532 func_append libobjs " $symfileobj"
cannam@124 7533 test "X$libobjs" = "X " && libobjs=
cannam@124 7534
cannam@124 7535 if test "$opt_mode" != relink; then
cannam@124 7536 # Remove our outputs, but don't remove object files since they
cannam@124 7537 # may have been created when compiling PIC objects.
cannam@124 7538 removelist=
cannam@124 7539 tempremovelist=`$ECHO "$output_objdir/*"`
cannam@124 7540 for p in $tempremovelist; do
cannam@124 7541 case $p in
cannam@124 7542 *.$objext | *.gcno)
cannam@124 7543 ;;
cannam@124 7544 $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
cannam@124 7545 if test "X$precious_files_regex" != "X"; then
cannam@124 7546 if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
cannam@124 7547 then
cannam@124 7548 continue
cannam@124 7549 fi
cannam@124 7550 fi
cannam@124 7551 func_append removelist " $p"
cannam@124 7552 ;;
cannam@124 7553 *) ;;
cannam@124 7554 esac
cannam@124 7555 done
cannam@124 7556 test -n "$removelist" && \
cannam@124 7557 func_show_eval "${RM}r \$removelist"
cannam@124 7558 fi
cannam@124 7559
cannam@124 7560 # Now set the variables for building old libraries.
cannam@124 7561 if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
cannam@124 7562 func_append oldlibs " $output_objdir/$libname.$libext"
cannam@124 7563
cannam@124 7564 # Transform .lo files to .o files.
cannam@124 7565 oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP`
cannam@124 7566 fi
cannam@124 7567
cannam@124 7568 # Eliminate all temporary directories.
cannam@124 7569 #for path in $notinst_path; do
cannam@124 7570 # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"`
cannam@124 7571 # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"`
cannam@124 7572 # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"`
cannam@124 7573 #done
cannam@124 7574
cannam@124 7575 if test -n "$xrpath"; then
cannam@124 7576 # If the user specified any rpath flags, then add them.
cannam@124 7577 temp_xrpath=
cannam@124 7578 for libdir in $xrpath; do
cannam@124 7579 func_replace_sysroot "$libdir"
cannam@124 7580 func_append temp_xrpath " -R$func_replace_sysroot_result"
cannam@124 7581 case "$finalize_rpath " in
cannam@124 7582 *" $libdir "*) ;;
cannam@124 7583 *) func_append finalize_rpath " $libdir" ;;
cannam@124 7584 esac
cannam@124 7585 done
cannam@124 7586 if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then
cannam@124 7587 dependency_libs="$temp_xrpath $dependency_libs"
cannam@124 7588 fi
cannam@124 7589 fi
cannam@124 7590
cannam@124 7591 # Make sure dlfiles contains only unique files that won't be dlpreopened
cannam@124 7592 old_dlfiles="$dlfiles"
cannam@124 7593 dlfiles=
cannam@124 7594 for lib in $old_dlfiles; do
cannam@124 7595 case " $dlprefiles $dlfiles " in
cannam@124 7596 *" $lib "*) ;;
cannam@124 7597 *) func_append dlfiles " $lib" ;;
cannam@124 7598 esac
cannam@124 7599 done
cannam@124 7600
cannam@124 7601 # Make sure dlprefiles contains only unique files
cannam@124 7602 old_dlprefiles="$dlprefiles"
cannam@124 7603 dlprefiles=
cannam@124 7604 for lib in $old_dlprefiles; do
cannam@124 7605 case "$dlprefiles " in
cannam@124 7606 *" $lib "*) ;;
cannam@124 7607 *) func_append dlprefiles " $lib" ;;
cannam@124 7608 esac
cannam@124 7609 done
cannam@124 7610
cannam@124 7611 if test "$build_libtool_libs" = yes; then
cannam@124 7612 if test -n "$rpath"; then
cannam@124 7613 case $host in
cannam@124 7614 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*)
cannam@124 7615 # these systems don't actually have a c library (as such)!
cannam@124 7616 ;;
cannam@124 7617 *-*-rhapsody* | *-*-darwin1.[012])
cannam@124 7618 # Rhapsody C library is in the System framework
cannam@124 7619 func_append deplibs " System.ltframework"
cannam@124 7620 ;;
cannam@124 7621 *-*-netbsd*)
cannam@124 7622 # Don't link with libc until the a.out ld.so is fixed.
cannam@124 7623 ;;
cannam@124 7624 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@124 7625 # Do not include libc due to us having libc/libc_r.
cannam@124 7626 ;;
cannam@124 7627 *-*-sco3.2v5* | *-*-sco5v6*)
cannam@124 7628 # Causes problems with __ctype
cannam@124 7629 ;;
cannam@124 7630 *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
cannam@124 7631 # Compiler inserts libc in the correct place for threads to work
cannam@124 7632 ;;
cannam@124 7633 *)
cannam@124 7634 # Add libc to deplibs on all other systems if necessary.
cannam@124 7635 if test "$build_libtool_need_lc" = "yes"; then
cannam@124 7636 func_append deplibs " -lc"
cannam@124 7637 fi
cannam@124 7638 ;;
cannam@124 7639 esac
cannam@124 7640 fi
cannam@124 7641
cannam@124 7642 # Transform deplibs into only deplibs that can be linked in shared.
cannam@124 7643 name_save=$name
cannam@124 7644 libname_save=$libname
cannam@124 7645 release_save=$release
cannam@124 7646 versuffix_save=$versuffix
cannam@124 7647 major_save=$major
cannam@124 7648 # I'm not sure if I'm treating the release correctly. I think
cannam@124 7649 # release should show up in the -l (ie -lgmp5) so we don't want to
cannam@124 7650 # add it in twice. Is that correct?
cannam@124 7651 release=""
cannam@124 7652 versuffix=""
cannam@124 7653 major=""
cannam@124 7654 newdeplibs=
cannam@124 7655 droppeddeps=no
cannam@124 7656 case $deplibs_check_method in
cannam@124 7657 pass_all)
cannam@124 7658 # Don't check for shared/static. Everything works.
cannam@124 7659 # This might be a little naive. We might want to check
cannam@124 7660 # whether the library exists or not. But this is on
cannam@124 7661 # osf3 & osf4 and I'm not really sure... Just
cannam@124 7662 # implementing what was already the behavior.
cannam@124 7663 newdeplibs=$deplibs
cannam@124 7664 ;;
cannam@124 7665 test_compile)
cannam@124 7666 # This code stresses the "libraries are programs" paradigm to its
cannam@124 7667 # limits. Maybe even breaks it. We compile a program, linking it
cannam@124 7668 # against the deplibs as a proxy for the library. Then we can check
cannam@124 7669 # whether they linked in statically or dynamically with ldd.
cannam@124 7670 $opt_dry_run || $RM conftest.c
cannam@124 7671 cat > conftest.c <<EOF
cannam@124 7672 int main() { return 0; }
cannam@124 7673 EOF
cannam@124 7674 $opt_dry_run || $RM conftest
cannam@124 7675 if $LTCC $LTCFLAGS -o conftest conftest.c $deplibs; then
cannam@124 7676 ldd_output=`ldd conftest`
cannam@124 7677 for i in $deplibs; do
cannam@124 7678 case $i in
cannam@124 7679 -l*)
cannam@124 7680 func_stripname -l '' "$i"
cannam@124 7681 name=$func_stripname_result
cannam@124 7682 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@124 7683 case " $predeps $postdeps " in
cannam@124 7684 *" $i "*)
cannam@124 7685 func_append newdeplibs " $i"
cannam@124 7686 i=""
cannam@124 7687 ;;
cannam@124 7688 esac
cannam@124 7689 fi
cannam@124 7690 if test -n "$i" ; then
cannam@124 7691 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@124 7692 deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
cannam@124 7693 set dummy $deplib_matches; shift
cannam@124 7694 deplib_match=$1
cannam@124 7695 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
cannam@124 7696 func_append newdeplibs " $i"
cannam@124 7697 else
cannam@124 7698 droppeddeps=yes
cannam@124 7699 echo
cannam@124 7700 $ECHO "*** Warning: dynamic linker does not accept needed library $i."
cannam@124 7701 echo "*** I have the capability to make that library automatically link in when"
cannam@124 7702 echo "*** you link to this library. But I can only do this if you have a"
cannam@124 7703 echo "*** shared version of the library, which I believe you do not have"
cannam@124 7704 echo "*** because a test_compile did reveal that the linker did not use it for"
cannam@124 7705 echo "*** its dynamic dependency list that programs get resolved with at runtime."
cannam@124 7706 fi
cannam@124 7707 fi
cannam@124 7708 ;;
cannam@124 7709 *)
cannam@124 7710 func_append newdeplibs " $i"
cannam@124 7711 ;;
cannam@124 7712 esac
cannam@124 7713 done
cannam@124 7714 else
cannam@124 7715 # Error occurred in the first compile. Let's try to salvage
cannam@124 7716 # the situation: Compile a separate program for each library.
cannam@124 7717 for i in $deplibs; do
cannam@124 7718 case $i in
cannam@124 7719 -l*)
cannam@124 7720 func_stripname -l '' "$i"
cannam@124 7721 name=$func_stripname_result
cannam@124 7722 $opt_dry_run || $RM conftest
cannam@124 7723 if $LTCC $LTCFLAGS -o conftest conftest.c $i; then
cannam@124 7724 ldd_output=`ldd conftest`
cannam@124 7725 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@124 7726 case " $predeps $postdeps " in
cannam@124 7727 *" $i "*)
cannam@124 7728 func_append newdeplibs " $i"
cannam@124 7729 i=""
cannam@124 7730 ;;
cannam@124 7731 esac
cannam@124 7732 fi
cannam@124 7733 if test -n "$i" ; then
cannam@124 7734 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@124 7735 deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
cannam@124 7736 set dummy $deplib_matches; shift
cannam@124 7737 deplib_match=$1
cannam@124 7738 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
cannam@124 7739 func_append newdeplibs " $i"
cannam@124 7740 else
cannam@124 7741 droppeddeps=yes
cannam@124 7742 echo
cannam@124 7743 $ECHO "*** Warning: dynamic linker does not accept needed library $i."
cannam@124 7744 echo "*** I have the capability to make that library automatically link in when"
cannam@124 7745 echo "*** you link to this library. But I can only do this if you have a"
cannam@124 7746 echo "*** shared version of the library, which you do not appear to have"
cannam@124 7747 echo "*** because a test_compile did reveal that the linker did not use this one"
cannam@124 7748 echo "*** as a dynamic dependency that programs can get resolved with at runtime."
cannam@124 7749 fi
cannam@124 7750 fi
cannam@124 7751 else
cannam@124 7752 droppeddeps=yes
cannam@124 7753 echo
cannam@124 7754 $ECHO "*** Warning! Library $i is needed by this library but I was not able to"
cannam@124 7755 echo "*** make it link in! You will probably need to install it or some"
cannam@124 7756 echo "*** library that it depends on before this library will be fully"
cannam@124 7757 echo "*** functional. Installing it before continuing would be even better."
cannam@124 7758 fi
cannam@124 7759 ;;
cannam@124 7760 *)
cannam@124 7761 func_append newdeplibs " $i"
cannam@124 7762 ;;
cannam@124 7763 esac
cannam@124 7764 done
cannam@124 7765 fi
cannam@124 7766 ;;
cannam@124 7767 file_magic*)
cannam@124 7768 set dummy $deplibs_check_method; shift
cannam@124 7769 file_magic_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
cannam@124 7770 for a_deplib in $deplibs; do
cannam@124 7771 case $a_deplib in
cannam@124 7772 -l*)
cannam@124 7773 func_stripname -l '' "$a_deplib"
cannam@124 7774 name=$func_stripname_result
cannam@124 7775 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@124 7776 case " $predeps $postdeps " in
cannam@124 7777 *" $a_deplib "*)
cannam@124 7778 func_append newdeplibs " $a_deplib"
cannam@124 7779 a_deplib=""
cannam@124 7780 ;;
cannam@124 7781 esac
cannam@124 7782 fi
cannam@124 7783 if test -n "$a_deplib" ; then
cannam@124 7784 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@124 7785 if test -n "$file_magic_glob"; then
cannam@124 7786 libnameglob=`func_echo_all "$libname" | $SED -e $file_magic_glob`
cannam@124 7787 else
cannam@124 7788 libnameglob=$libname
cannam@124 7789 fi
cannam@124 7790 test "$want_nocaseglob" = yes && nocaseglob=`shopt -p nocaseglob`
cannam@124 7791 for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
cannam@124 7792 if test "$want_nocaseglob" = yes; then
cannam@124 7793 shopt -s nocaseglob
cannam@124 7794 potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`
cannam@124 7795 $nocaseglob
cannam@124 7796 else
cannam@124 7797 potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`
cannam@124 7798 fi
cannam@124 7799 for potent_lib in $potential_libs; do
cannam@124 7800 # Follow soft links.
cannam@124 7801 if ls -lLd "$potent_lib" 2>/dev/null |
cannam@124 7802 $GREP " -> " >/dev/null; then
cannam@124 7803 continue
cannam@124 7804 fi
cannam@124 7805 # The statement above tries to avoid entering an
cannam@124 7806 # endless loop below, in case of cyclic links.
cannam@124 7807 # We might still enter an endless loop, since a link
cannam@124 7808 # loop can be closed while we follow links,
cannam@124 7809 # but so what?
cannam@124 7810 potlib="$potent_lib"
cannam@124 7811 while test -h "$potlib" 2>/dev/null; do
cannam@124 7812 potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'`
cannam@124 7813 case $potliblink in
cannam@124 7814 [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
cannam@124 7815 *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";;
cannam@124 7816 esac
cannam@124 7817 done
cannam@124 7818 if eval $file_magic_cmd \"\$potlib\" 2>/dev/null |
cannam@124 7819 $SED -e 10q |
cannam@124 7820 $EGREP "$file_magic_regex" > /dev/null; then
cannam@124 7821 func_append newdeplibs " $a_deplib"
cannam@124 7822 a_deplib=""
cannam@124 7823 break 2
cannam@124 7824 fi
cannam@124 7825 done
cannam@124 7826 done
cannam@124 7827 fi
cannam@124 7828 if test -n "$a_deplib" ; then
cannam@124 7829 droppeddeps=yes
cannam@124 7830 echo
cannam@124 7831 $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
cannam@124 7832 echo "*** I have the capability to make that library automatically link in when"
cannam@124 7833 echo "*** you link to this library. But I can only do this if you have a"
cannam@124 7834 echo "*** shared version of the library, which you do not appear to have"
cannam@124 7835 echo "*** because I did check the linker path looking for a file starting"
cannam@124 7836 if test -z "$potlib" ; then
cannam@124 7837 $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
cannam@124 7838 else
cannam@124 7839 $ECHO "*** with $libname and none of the candidates passed a file format test"
cannam@124 7840 $ECHO "*** using a file magic. Last file checked: $potlib"
cannam@124 7841 fi
cannam@124 7842 fi
cannam@124 7843 ;;
cannam@124 7844 *)
cannam@124 7845 # Add a -L argument.
cannam@124 7846 func_append newdeplibs " $a_deplib"
cannam@124 7847 ;;
cannam@124 7848 esac
cannam@124 7849 done # Gone through all deplibs.
cannam@124 7850 ;;
cannam@124 7851 match_pattern*)
cannam@124 7852 set dummy $deplibs_check_method; shift
cannam@124 7853 match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
cannam@124 7854 for a_deplib in $deplibs; do
cannam@124 7855 case $a_deplib in
cannam@124 7856 -l*)
cannam@124 7857 func_stripname -l '' "$a_deplib"
cannam@124 7858 name=$func_stripname_result
cannam@124 7859 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@124 7860 case " $predeps $postdeps " in
cannam@124 7861 *" $a_deplib "*)
cannam@124 7862 func_append newdeplibs " $a_deplib"
cannam@124 7863 a_deplib=""
cannam@124 7864 ;;
cannam@124 7865 esac
cannam@124 7866 fi
cannam@124 7867 if test -n "$a_deplib" ; then
cannam@124 7868 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@124 7869 for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
cannam@124 7870 potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
cannam@124 7871 for potent_lib in $potential_libs; do
cannam@124 7872 potlib="$potent_lib" # see symlink-check above in file_magic test
cannam@124 7873 if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \
cannam@124 7874 $EGREP "$match_pattern_regex" > /dev/null; then
cannam@124 7875 func_append newdeplibs " $a_deplib"
cannam@124 7876 a_deplib=""
cannam@124 7877 break 2
cannam@124 7878 fi
cannam@124 7879 done
cannam@124 7880 done
cannam@124 7881 fi
cannam@124 7882 if test -n "$a_deplib" ; then
cannam@124 7883 droppeddeps=yes
cannam@124 7884 echo
cannam@124 7885 $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
cannam@124 7886 echo "*** I have the capability to make that library automatically link in when"
cannam@124 7887 echo "*** you link to this library. But I can only do this if you have a"
cannam@124 7888 echo "*** shared version of the library, which you do not appear to have"
cannam@124 7889 echo "*** because I did check the linker path looking for a file starting"
cannam@124 7890 if test -z "$potlib" ; then
cannam@124 7891 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
cannam@124 7892 else
cannam@124 7893 $ECHO "*** with $libname and none of the candidates passed a file format test"
cannam@124 7894 $ECHO "*** using a regex pattern. Last file checked: $potlib"
cannam@124 7895 fi
cannam@124 7896 fi
cannam@124 7897 ;;
cannam@124 7898 *)
cannam@124 7899 # Add a -L argument.
cannam@124 7900 func_append newdeplibs " $a_deplib"
cannam@124 7901 ;;
cannam@124 7902 esac
cannam@124 7903 done # Gone through all deplibs.
cannam@124 7904 ;;
cannam@124 7905 none | unknown | *)
cannam@124 7906 newdeplibs=""
cannam@124 7907 tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'`
cannam@124 7908 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@124 7909 for i in $predeps $postdeps ; do
cannam@124 7910 # can't use Xsed below, because $i might contain '/'
cannam@124 7911 tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"`
cannam@124 7912 done
cannam@124 7913 fi
cannam@124 7914 case $tmp_deplibs in
cannam@124 7915 *[!\ \ ]*)
cannam@124 7916 echo
cannam@124 7917 if test "X$deplibs_check_method" = "Xnone"; then
cannam@124 7918 echo "*** Warning: inter-library dependencies are not supported in this platform."
cannam@124 7919 else
cannam@124 7920 echo "*** Warning: inter-library dependencies are not known to be supported."
cannam@124 7921 fi
cannam@124 7922 echo "*** All declared inter-library dependencies are being dropped."
cannam@124 7923 droppeddeps=yes
cannam@124 7924 ;;
cannam@124 7925 esac
cannam@124 7926 ;;
cannam@124 7927 esac
cannam@124 7928 versuffix=$versuffix_save
cannam@124 7929 major=$major_save
cannam@124 7930 release=$release_save
cannam@124 7931 libname=$libname_save
cannam@124 7932 name=$name_save
cannam@124 7933
cannam@124 7934 case $host in
cannam@124 7935 *-*-rhapsody* | *-*-darwin1.[012])
cannam@124 7936 # On Rhapsody replace the C library with the System framework
cannam@124 7937 newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'`
cannam@124 7938 ;;
cannam@124 7939 esac
cannam@124 7940
cannam@124 7941 if test "$droppeddeps" = yes; then
cannam@124 7942 if test "$module" = yes; then
cannam@124 7943 echo
cannam@124 7944 echo "*** Warning: libtool could not satisfy all declared inter-library"
cannam@124 7945 $ECHO "*** dependencies of module $libname. Therefore, libtool will create"
cannam@124 7946 echo "*** a static module, that should work as long as the dlopening"
cannam@124 7947 echo "*** application is linked with the -dlopen flag."
cannam@124 7948 if test -z "$global_symbol_pipe"; then
cannam@124 7949 echo
cannam@124 7950 echo "*** However, this would only work if libtool was able to extract symbol"
cannam@124 7951 echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
cannam@124 7952 echo "*** not find such a program. So, this module is probably useless."
cannam@124 7953 echo "*** \`nm' from GNU binutils and a full rebuild may help."
cannam@124 7954 fi
cannam@124 7955 if test "$build_old_libs" = no; then
cannam@124 7956 oldlibs="$output_objdir/$libname.$libext"
cannam@124 7957 build_libtool_libs=module
cannam@124 7958 build_old_libs=yes
cannam@124 7959 else
cannam@124 7960 build_libtool_libs=no
cannam@124 7961 fi
cannam@124 7962 else
cannam@124 7963 echo "*** The inter-library dependencies that have been dropped here will be"
cannam@124 7964 echo "*** automatically added whenever a program is linked with this library"
cannam@124 7965 echo "*** or is declared to -dlopen it."
cannam@124 7966
cannam@124 7967 if test "$allow_undefined" = no; then
cannam@124 7968 echo
cannam@124 7969 echo "*** Since this library must not contain undefined symbols,"
cannam@124 7970 echo "*** because either the platform does not support them or"
cannam@124 7971 echo "*** it was explicitly requested with -no-undefined,"
cannam@124 7972 echo "*** libtool will only create a static version of it."
cannam@124 7973 if test "$build_old_libs" = no; then
cannam@124 7974 oldlibs="$output_objdir/$libname.$libext"
cannam@124 7975 build_libtool_libs=module
cannam@124 7976 build_old_libs=yes
cannam@124 7977 else
cannam@124 7978 build_libtool_libs=no
cannam@124 7979 fi
cannam@124 7980 fi
cannam@124 7981 fi
cannam@124 7982 fi
cannam@124 7983 # Done checking deplibs!
cannam@124 7984 deplibs=$newdeplibs
cannam@124 7985 fi
cannam@124 7986 # Time to change all our "foo.ltframework" stuff back to "-framework foo"
cannam@124 7987 case $host in
cannam@124 7988 *-*-darwin*)
cannam@124 7989 newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@124 7990 new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@124 7991 deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@124 7992 ;;
cannam@124 7993 esac
cannam@124 7994
cannam@124 7995 # move library search paths that coincide with paths to not yet
cannam@124 7996 # installed libraries to the beginning of the library search list
cannam@124 7997 new_libs=
cannam@124 7998 for path in $notinst_path; do
cannam@124 7999 case " $new_libs " in
cannam@124 8000 *" -L$path/$objdir "*) ;;
cannam@124 8001 *)
cannam@124 8002 case " $deplibs " in
cannam@124 8003 *" -L$path/$objdir "*)
cannam@124 8004 func_append new_libs " -L$path/$objdir" ;;
cannam@124 8005 esac
cannam@124 8006 ;;
cannam@124 8007 esac
cannam@124 8008 done
cannam@124 8009 for deplib in $deplibs; do
cannam@124 8010 case $deplib in
cannam@124 8011 -L*)
cannam@124 8012 case " $new_libs " in
cannam@124 8013 *" $deplib "*) ;;
cannam@124 8014 *) func_append new_libs " $deplib" ;;
cannam@124 8015 esac
cannam@124 8016 ;;
cannam@124 8017 *) func_append new_libs " $deplib" ;;
cannam@124 8018 esac
cannam@124 8019 done
cannam@124 8020 deplibs="$new_libs"
cannam@124 8021
cannam@124 8022 # All the library-specific variables (install_libdir is set above).
cannam@124 8023 library_names=
cannam@124 8024 old_library=
cannam@124 8025 dlname=
cannam@124 8026
cannam@124 8027 # Test again, we may have decided not to build it any more
cannam@124 8028 if test "$build_libtool_libs" = yes; then
cannam@124 8029 if test "$hardcode_into_libs" = yes; then
cannam@124 8030 # Hardcode the library paths
cannam@124 8031 hardcode_libdirs=
cannam@124 8032 dep_rpath=
cannam@124 8033 rpath="$finalize_rpath"
cannam@124 8034 test "$opt_mode" != relink && rpath="$compile_rpath$rpath"
cannam@124 8035 for libdir in $rpath; do
cannam@124 8036 if test -n "$hardcode_libdir_flag_spec"; then
cannam@124 8037 if test -n "$hardcode_libdir_separator"; then
cannam@124 8038 func_replace_sysroot "$libdir"
cannam@124 8039 libdir=$func_replace_sysroot_result
cannam@124 8040 if test -z "$hardcode_libdirs"; then
cannam@124 8041 hardcode_libdirs="$libdir"
cannam@124 8042 else
cannam@124 8043 # Just accumulate the unique libdirs.
cannam@124 8044 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@124 8045 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@124 8046 ;;
cannam@124 8047 *)
cannam@124 8048 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
cannam@124 8049 ;;
cannam@124 8050 esac
cannam@124 8051 fi
cannam@124 8052 else
cannam@124 8053 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@124 8054 func_append dep_rpath " $flag"
cannam@124 8055 fi
cannam@124 8056 elif test -n "$runpath_var"; then
cannam@124 8057 case "$perm_rpath " in
cannam@124 8058 *" $libdir "*) ;;
cannam@124 8059 *) func_apped perm_rpath " $libdir" ;;
cannam@124 8060 esac
cannam@124 8061 fi
cannam@124 8062 done
cannam@124 8063 # Substitute the hardcoded libdirs into the rpath.
cannam@124 8064 if test -n "$hardcode_libdir_separator" &&
cannam@124 8065 test -n "$hardcode_libdirs"; then
cannam@124 8066 libdir="$hardcode_libdirs"
cannam@124 8067 if test -n "$hardcode_libdir_flag_spec_ld"; then
cannam@124 8068 eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\"
cannam@124 8069 else
cannam@124 8070 eval dep_rpath=\"$hardcode_libdir_flag_spec\"
cannam@124 8071 fi
cannam@124 8072 fi
cannam@124 8073 if test -n "$runpath_var" && test -n "$perm_rpath"; then
cannam@124 8074 # We should set the runpath_var.
cannam@124 8075 rpath=
cannam@124 8076 for dir in $perm_rpath; do
cannam@124 8077 func_append rpath "$dir:"
cannam@124 8078 done
cannam@124 8079 eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var"
cannam@124 8080 fi
cannam@124 8081 test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs"
cannam@124 8082 fi
cannam@124 8083
cannam@124 8084 shlibpath="$finalize_shlibpath"
cannam@124 8085 test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath"
cannam@124 8086 if test -n "$shlibpath"; then
cannam@124 8087 eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var"
cannam@124 8088 fi
cannam@124 8089
cannam@124 8090 # Get the real and link names of the library.
cannam@124 8091 eval shared_ext=\"$shrext_cmds\"
cannam@124 8092 eval library_names=\"$library_names_spec\"
cannam@124 8093 set dummy $library_names
cannam@124 8094 shift
cannam@124 8095 realname="$1"
cannam@124 8096 shift
cannam@124 8097
cannam@124 8098 if test -n "$soname_spec"; then
cannam@124 8099 eval soname=\"$soname_spec\"
cannam@124 8100 else
cannam@124 8101 soname="$realname"
cannam@124 8102 fi
cannam@124 8103 if test -z "$dlname"; then
cannam@124 8104 dlname=$soname
cannam@124 8105 fi
cannam@124 8106
cannam@124 8107 lib="$output_objdir/$realname"
cannam@124 8108 linknames=
cannam@124 8109 for link
cannam@124 8110 do
cannam@124 8111 func_append linknames " $link"
cannam@124 8112 done
cannam@124 8113
cannam@124 8114 # Use standard objects if they are pic
cannam@124 8115 test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@124 8116 test "X$libobjs" = "X " && libobjs=
cannam@124 8117
cannam@124 8118 delfiles=
cannam@124 8119 if test -n "$export_symbols" && test -n "$include_expsyms"; then
cannam@124 8120 $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp"
cannam@124 8121 export_symbols="$output_objdir/$libname.uexp"
cannam@124 8122 func_append delfiles " $export_symbols"
cannam@124 8123 fi
cannam@124 8124
cannam@124 8125 orig_export_symbols=
cannam@124 8126 case $host_os in
cannam@124 8127 cygwin* | mingw* | cegcc*)
cannam@124 8128 if test -n "$export_symbols" && test -z "$export_symbols_regex"; then
cannam@124 8129 # exporting using user supplied symfile
cannam@124 8130 if test "x`$SED 1q $export_symbols`" != xEXPORTS; then
cannam@124 8131 # and it's NOT already a .def file. Must figure out
cannam@124 8132 # which of the given symbols are data symbols and tag
cannam@124 8133 # them as such. So, trigger use of export_symbols_cmds.
cannam@124 8134 # export_symbols gets reassigned inside the "prepare
cannam@124 8135 # the list of exported symbols" if statement, so the
cannam@124 8136 # include_expsyms logic still works.
cannam@124 8137 orig_export_symbols="$export_symbols"
cannam@124 8138 export_symbols=
cannam@124 8139 always_export_symbols=yes
cannam@124 8140 fi
cannam@124 8141 fi
cannam@124 8142 ;;
cannam@124 8143 esac
cannam@124 8144
cannam@124 8145 # Prepare the list of exported symbols
cannam@124 8146 if test -z "$export_symbols"; then
cannam@124 8147 if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
cannam@124 8148 func_verbose "generating symbol list for \`$libname.la'"
cannam@124 8149 export_symbols="$output_objdir/$libname.exp"
cannam@124 8150 $opt_dry_run || $RM $export_symbols
cannam@124 8151 cmds=$export_symbols_cmds
cannam@124 8152 save_ifs="$IFS"; IFS='~'
cannam@124 8153 for cmd1 in $cmds; do
cannam@124 8154 IFS="$save_ifs"
cannam@124 8155 # Take the normal branch if the nm_file_list_spec branch
cannam@124 8156 # doesn't work or if tool conversion is not needed.
cannam@124 8157 case $nm_file_list_spec~$to_tool_file_cmd in
cannam@124 8158 *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*)
cannam@124 8159 try_normal_branch=yes
cannam@124 8160 eval cmd=\"$cmd1\"
cannam@124 8161 func_len " $cmd"
cannam@124 8162 len=$func_len_result
cannam@124 8163 ;;
cannam@124 8164 *)
cannam@124 8165 try_normal_branch=no
cannam@124 8166 ;;
cannam@124 8167 esac
cannam@124 8168 if test "$try_normal_branch" = yes \
cannam@124 8169 && { test "$len" -lt "$max_cmd_len" \
cannam@124 8170 || test "$max_cmd_len" -le -1; }
cannam@124 8171 then
cannam@124 8172 func_show_eval "$cmd" 'exit $?'
cannam@124 8173 skipped_export=false
cannam@124 8174 elif test -n "$nm_file_list_spec"; then
cannam@124 8175 func_basename "$output"
cannam@124 8176 output_la=$func_basename_result
cannam@124 8177 save_libobjs=$libobjs
cannam@124 8178 save_output=$output
cannam@124 8179 output=${output_objdir}/${output_la}.nm
cannam@124 8180 func_to_tool_file "$output"
cannam@124 8181 libobjs=$nm_file_list_spec$func_to_tool_file_result
cannam@124 8182 func_append delfiles " $output"
cannam@124 8183 func_verbose "creating $NM input file list: $output"
cannam@124 8184 for obj in $save_libobjs; do
cannam@124 8185 func_to_tool_file "$obj"
cannam@124 8186 $ECHO "$func_to_tool_file_result"
cannam@124 8187 done > "$output"
cannam@124 8188 eval cmd=\"$cmd1\"
cannam@124 8189 func_show_eval "$cmd" 'exit $?'
cannam@124 8190 output=$save_output
cannam@124 8191 libobjs=$save_libobjs
cannam@124 8192 skipped_export=false
cannam@124 8193 else
cannam@124 8194 # The command line is too long to execute in one step.
cannam@124 8195 func_verbose "using reloadable object file for export list..."
cannam@124 8196 skipped_export=:
cannam@124 8197 # Break out early, otherwise skipped_export may be
cannam@124 8198 # set to false by a later but shorter cmd.
cannam@124 8199 break
cannam@124 8200 fi
cannam@124 8201 done
cannam@124 8202 IFS="$save_ifs"
cannam@124 8203 if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then
cannam@124 8204 func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
cannam@124 8205 func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
cannam@124 8206 fi
cannam@124 8207 fi
cannam@124 8208 fi
cannam@124 8209
cannam@124 8210 if test -n "$export_symbols" && test -n "$include_expsyms"; then
cannam@124 8211 tmp_export_symbols="$export_symbols"
cannam@124 8212 test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
cannam@124 8213 $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"'
cannam@124 8214 fi
cannam@124 8215
cannam@124 8216 if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then
cannam@124 8217 # The given exports_symbols file has to be filtered, so filter it.
cannam@124 8218 func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
cannam@124 8219 # FIXME: $output_objdir/$libname.filter potentially contains lots of
cannam@124 8220 # 's' commands which not all seds can handle. GNU sed should be fine
cannam@124 8221 # though. Also, the filter scales superlinearly with the number of
cannam@124 8222 # global variables. join(1) would be nice here, but unfortunately
cannam@124 8223 # isn't a blessed tool.
cannam@124 8224 $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter
cannam@124 8225 func_append delfiles " $export_symbols $output_objdir/$libname.filter"
cannam@124 8226 export_symbols=$output_objdir/$libname.def
cannam@124 8227 $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
cannam@124 8228 fi
cannam@124 8229
cannam@124 8230 tmp_deplibs=
cannam@124 8231 for test_deplib in $deplibs; do
cannam@124 8232 case " $convenience " in
cannam@124 8233 *" $test_deplib "*) ;;
cannam@124 8234 *)
cannam@124 8235 func_append tmp_deplibs " $test_deplib"
cannam@124 8236 ;;
cannam@124 8237 esac
cannam@124 8238 done
cannam@124 8239 deplibs="$tmp_deplibs"
cannam@124 8240
cannam@124 8241 if test -n "$convenience"; then
cannam@124 8242 if test -n "$whole_archive_flag_spec" &&
cannam@124 8243 test "$compiler_needs_object" = yes &&
cannam@124 8244 test -z "$libobjs"; then
cannam@124 8245 # extract the archives, so we have objects to list.
cannam@124 8246 # TODO: could optimize this to just extract one archive.
cannam@124 8247 whole_archive_flag_spec=
cannam@124 8248 fi
cannam@124 8249 if test -n "$whole_archive_flag_spec"; then
cannam@124 8250 save_libobjs=$libobjs
cannam@124 8251 eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
cannam@124 8252 test "X$libobjs" = "X " && libobjs=
cannam@124 8253 else
cannam@124 8254 gentop="$output_objdir/${outputname}x"
cannam@124 8255 func_append generated " $gentop"
cannam@124 8256
cannam@124 8257 func_extract_archives $gentop $convenience
cannam@124 8258 func_append libobjs " $func_extract_archives_result"
cannam@124 8259 test "X$libobjs" = "X " && libobjs=
cannam@124 8260 fi
cannam@124 8261 fi
cannam@124 8262
cannam@124 8263 if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
cannam@124 8264 eval flag=\"$thread_safe_flag_spec\"
cannam@124 8265 func_append linker_flags " $flag"
cannam@124 8266 fi
cannam@124 8267
cannam@124 8268 # Make a backup of the uninstalled library when relinking
cannam@124 8269 if test "$opt_mode" = relink; then
cannam@124 8270 $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?
cannam@124 8271 fi
cannam@124 8272
cannam@124 8273 # Do each of the archive commands.
cannam@124 8274 if test "$module" = yes && test -n "$module_cmds" ; then
cannam@124 8275 if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
cannam@124 8276 eval test_cmds=\"$module_expsym_cmds\"
cannam@124 8277 cmds=$module_expsym_cmds
cannam@124 8278 else
cannam@124 8279 eval test_cmds=\"$module_cmds\"
cannam@124 8280 cmds=$module_cmds
cannam@124 8281 fi
cannam@124 8282 else
cannam@124 8283 if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
cannam@124 8284 eval test_cmds=\"$archive_expsym_cmds\"
cannam@124 8285 cmds=$archive_expsym_cmds
cannam@124 8286 else
cannam@124 8287 eval test_cmds=\"$archive_cmds\"
cannam@124 8288 cmds=$archive_cmds
cannam@124 8289 fi
cannam@124 8290 fi
cannam@124 8291
cannam@124 8292 if test "X$skipped_export" != "X:" &&
cannam@124 8293 func_len " $test_cmds" &&
cannam@124 8294 len=$func_len_result &&
cannam@124 8295 test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
cannam@124 8296 :
cannam@124 8297 else
cannam@124 8298 # The command line is too long to link in one step, link piecewise
cannam@124 8299 # or, if using GNU ld and skipped_export is not :, use a linker
cannam@124 8300 # script.
cannam@124 8301
cannam@124 8302 # Save the value of $output and $libobjs because we want to
cannam@124 8303 # use them later. If we have whole_archive_flag_spec, we
cannam@124 8304 # want to use save_libobjs as it was before
cannam@124 8305 # whole_archive_flag_spec was expanded, because we can't
cannam@124 8306 # assume the linker understands whole_archive_flag_spec.
cannam@124 8307 # This may have to be revisited, in case too many
cannam@124 8308 # convenience libraries get linked in and end up exceeding
cannam@124 8309 # the spec.
cannam@124 8310 if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then
cannam@124 8311 save_libobjs=$libobjs
cannam@124 8312 fi
cannam@124 8313 save_output=$output
cannam@124 8314 func_basename "$output"
cannam@124 8315 output_la=$func_basename_result
cannam@124 8316
cannam@124 8317 # Clear the reloadable object creation command queue and
cannam@124 8318 # initialize k to one.
cannam@124 8319 test_cmds=
cannam@124 8320 concat_cmds=
cannam@124 8321 objlist=
cannam@124 8322 last_robj=
cannam@124 8323 k=1
cannam@124 8324
cannam@124 8325 if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then
cannam@124 8326 output=${output_objdir}/${output_la}.lnkscript
cannam@124 8327 func_verbose "creating GNU ld script: $output"
cannam@124 8328 echo 'INPUT (' > $output
cannam@124 8329 for obj in $save_libobjs
cannam@124 8330 do
cannam@124 8331 func_to_tool_file "$obj"
cannam@124 8332 $ECHO "$func_to_tool_file_result" >> $output
cannam@124 8333 done
cannam@124 8334 echo ')' >> $output
cannam@124 8335 func_append delfiles " $output"
cannam@124 8336 func_to_tool_file "$output"
cannam@124 8337 output=$func_to_tool_file_result
cannam@124 8338 elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then
cannam@124 8339 output=${output_objdir}/${output_la}.lnk
cannam@124 8340 func_verbose "creating linker input file list: $output"
cannam@124 8341 : > $output
cannam@124 8342 set x $save_libobjs
cannam@124 8343 shift
cannam@124 8344 firstobj=
cannam@124 8345 if test "$compiler_needs_object" = yes; then
cannam@124 8346 firstobj="$1 "
cannam@124 8347 shift
cannam@124 8348 fi
cannam@124 8349 for obj
cannam@124 8350 do
cannam@124 8351 func_to_tool_file "$obj"
cannam@124 8352 $ECHO "$func_to_tool_file_result" >> $output
cannam@124 8353 done
cannam@124 8354 func_append delfiles " $output"
cannam@124 8355 func_to_tool_file "$output"
cannam@124 8356 output=$firstobj\"$file_list_spec$func_to_tool_file_result\"
cannam@124 8357 else
cannam@124 8358 if test -n "$save_libobjs"; then
cannam@124 8359 func_verbose "creating reloadable object files..."
cannam@124 8360 output=$output_objdir/$output_la-${k}.$objext
cannam@124 8361 eval test_cmds=\"$reload_cmds\"
cannam@124 8362 func_len " $test_cmds"
cannam@124 8363 len0=$func_len_result
cannam@124 8364 len=$len0
cannam@124 8365
cannam@124 8366 # Loop over the list of objects to be linked.
cannam@124 8367 for obj in $save_libobjs
cannam@124 8368 do
cannam@124 8369 func_len " $obj"
cannam@124 8370 func_arith $len + $func_len_result
cannam@124 8371 len=$func_arith_result
cannam@124 8372 if test "X$objlist" = X ||
cannam@124 8373 test "$len" -lt "$max_cmd_len"; then
cannam@124 8374 func_append objlist " $obj"
cannam@124 8375 else
cannam@124 8376 # The command $test_cmds is almost too long, add a
cannam@124 8377 # command to the queue.
cannam@124 8378 if test "$k" -eq 1 ; then
cannam@124 8379 # The first file doesn't have a previous command to add.
cannam@124 8380 reload_objs=$objlist
cannam@124 8381 eval concat_cmds=\"$reload_cmds\"
cannam@124 8382 else
cannam@124 8383 # All subsequent reloadable object files will link in
cannam@124 8384 # the last one created.
cannam@124 8385 reload_objs="$objlist $last_robj"
cannam@124 8386 eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\"
cannam@124 8387 fi
cannam@124 8388 last_robj=$output_objdir/$output_la-${k}.$objext
cannam@124 8389 func_arith $k + 1
cannam@124 8390 k=$func_arith_result
cannam@124 8391 output=$output_objdir/$output_la-${k}.$objext
cannam@124 8392 objlist=" $obj"
cannam@124 8393 func_len " $last_robj"
cannam@124 8394 func_arith $len0 + $func_len_result
cannam@124 8395 len=$func_arith_result
cannam@124 8396 fi
cannam@124 8397 done
cannam@124 8398 # Handle the remaining objects by creating one last
cannam@124 8399 # reloadable object file. All subsequent reloadable object
cannam@124 8400 # files will link in the last one created.
cannam@124 8401 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
cannam@124 8402 reload_objs="$objlist $last_robj"
cannam@124 8403 eval concat_cmds=\"\${concat_cmds}$reload_cmds\"
cannam@124 8404 if test -n "$last_robj"; then
cannam@124 8405 eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\"
cannam@124 8406 fi
cannam@124 8407 func_append delfiles " $output"
cannam@124 8408
cannam@124 8409 else
cannam@124 8410 output=
cannam@124 8411 fi
cannam@124 8412
cannam@124 8413 if ${skipped_export-false}; then
cannam@124 8414 func_verbose "generating symbol list for \`$libname.la'"
cannam@124 8415 export_symbols="$output_objdir/$libname.exp"
cannam@124 8416 $opt_dry_run || $RM $export_symbols
cannam@124 8417 libobjs=$output
cannam@124 8418 # Append the command to create the export file.
cannam@124 8419 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
cannam@124 8420 eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\"
cannam@124 8421 if test -n "$last_robj"; then
cannam@124 8422 eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\"
cannam@124 8423 fi
cannam@124 8424 fi
cannam@124 8425
cannam@124 8426 test -n "$save_libobjs" &&
cannam@124 8427 func_verbose "creating a temporary reloadable object file: $output"
cannam@124 8428
cannam@124 8429 # Loop through the commands generated above and execute them.
cannam@124 8430 save_ifs="$IFS"; IFS='~'
cannam@124 8431 for cmd in $concat_cmds; do
cannam@124 8432 IFS="$save_ifs"
cannam@124 8433 $opt_silent || {
cannam@124 8434 func_quote_for_expand "$cmd"
cannam@124 8435 eval "func_echo $func_quote_for_expand_result"
cannam@124 8436 }
cannam@124 8437 $opt_dry_run || eval "$cmd" || {
cannam@124 8438 lt_exit=$?
cannam@124 8439
cannam@124 8440 # Restore the uninstalled library and exit
cannam@124 8441 if test "$opt_mode" = relink; then
cannam@124 8442 ( cd "$output_objdir" && \
cannam@124 8443 $RM "${realname}T" && \
cannam@124 8444 $MV "${realname}U" "$realname" )
cannam@124 8445 fi
cannam@124 8446
cannam@124 8447 exit $lt_exit
cannam@124 8448 }
cannam@124 8449 done
cannam@124 8450 IFS="$save_ifs"
cannam@124 8451
cannam@124 8452 if test -n "$export_symbols_regex" && ${skipped_export-false}; then
cannam@124 8453 func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
cannam@124 8454 func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
cannam@124 8455 fi
cannam@124 8456 fi
cannam@124 8457
cannam@124 8458 if ${skipped_export-false}; then
cannam@124 8459 if test -n "$export_symbols" && test -n "$include_expsyms"; then
cannam@124 8460 tmp_export_symbols="$export_symbols"
cannam@124 8461 test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
cannam@124 8462 $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"'
cannam@124 8463 fi
cannam@124 8464
cannam@124 8465 if test -n "$orig_export_symbols"; then
cannam@124 8466 # The given exports_symbols file has to be filtered, so filter it.
cannam@124 8467 func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
cannam@124 8468 # FIXME: $output_objdir/$libname.filter potentially contains lots of
cannam@124 8469 # 's' commands which not all seds can handle. GNU sed should be fine
cannam@124 8470 # though. Also, the filter scales superlinearly with the number of
cannam@124 8471 # global variables. join(1) would be nice here, but unfortunately
cannam@124 8472 # isn't a blessed tool.
cannam@124 8473 $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter
cannam@124 8474 func_append delfiles " $export_symbols $output_objdir/$libname.filter"
cannam@124 8475 export_symbols=$output_objdir/$libname.def
cannam@124 8476 $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
cannam@124 8477 fi
cannam@124 8478 fi
cannam@124 8479
cannam@124 8480 libobjs=$output
cannam@124 8481 # Restore the value of output.
cannam@124 8482 output=$save_output
cannam@124 8483
cannam@124 8484 if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then
cannam@124 8485 eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
cannam@124 8486 test "X$libobjs" = "X " && libobjs=
cannam@124 8487 fi
cannam@124 8488 # Expand the library linking commands again to reset the
cannam@124 8489 # value of $libobjs for piecewise linking.
cannam@124 8490
cannam@124 8491 # Do each of the archive commands.
cannam@124 8492 if test "$module" = yes && test -n "$module_cmds" ; then
cannam@124 8493 if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
cannam@124 8494 cmds=$module_expsym_cmds
cannam@124 8495 else
cannam@124 8496 cmds=$module_cmds
cannam@124 8497 fi
cannam@124 8498 else
cannam@124 8499 if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
cannam@124 8500 cmds=$archive_expsym_cmds
cannam@124 8501 else
cannam@124 8502 cmds=$archive_cmds
cannam@124 8503 fi
cannam@124 8504 fi
cannam@124 8505 fi
cannam@124 8506
cannam@124 8507 if test -n "$delfiles"; then
cannam@124 8508 # Append the command to remove temporary files to $cmds.
cannam@124 8509 eval cmds=\"\$cmds~\$RM $delfiles\"
cannam@124 8510 fi
cannam@124 8511
cannam@124 8512 # Add any objects from preloaded convenience libraries
cannam@124 8513 if test -n "$dlprefiles"; then
cannam@124 8514 gentop="$output_objdir/${outputname}x"
cannam@124 8515 func_append generated " $gentop"
cannam@124 8516
cannam@124 8517 func_extract_archives $gentop $dlprefiles
cannam@124 8518 func_append libobjs " $func_extract_archives_result"
cannam@124 8519 test "X$libobjs" = "X " && libobjs=
cannam@124 8520 fi
cannam@124 8521
cannam@124 8522 save_ifs="$IFS"; IFS='~'
cannam@124 8523 for cmd in $cmds; do
cannam@124 8524 IFS="$save_ifs"
cannam@124 8525 eval cmd=\"$cmd\"
cannam@124 8526 $opt_silent || {
cannam@124 8527 func_quote_for_expand "$cmd"
cannam@124 8528 eval "func_echo $func_quote_for_expand_result"
cannam@124 8529 }
cannam@124 8530 $opt_dry_run || eval "$cmd" || {
cannam@124 8531 lt_exit=$?
cannam@124 8532
cannam@124 8533 # Restore the uninstalled library and exit
cannam@124 8534 if test "$opt_mode" = relink; then
cannam@124 8535 ( cd "$output_objdir" && \
cannam@124 8536 $RM "${realname}T" && \
cannam@124 8537 $MV "${realname}U" "$realname" )
cannam@124 8538 fi
cannam@124 8539
cannam@124 8540 exit $lt_exit
cannam@124 8541 }
cannam@124 8542 done
cannam@124 8543 IFS="$save_ifs"
cannam@124 8544
cannam@124 8545 # Restore the uninstalled library and exit
cannam@124 8546 if test "$opt_mode" = relink; then
cannam@124 8547 $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $?
cannam@124 8548
cannam@124 8549 if test -n "$convenience"; then
cannam@124 8550 if test -z "$whole_archive_flag_spec"; then
cannam@124 8551 func_show_eval '${RM}r "$gentop"'
cannam@124 8552 fi
cannam@124 8553 fi
cannam@124 8554
cannam@124 8555 exit $EXIT_SUCCESS
cannam@124 8556 fi
cannam@124 8557
cannam@124 8558 # Create links to the real library.
cannam@124 8559 for linkname in $linknames; do
cannam@124 8560 if test "$realname" != "$linkname"; then
cannam@124 8561 func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?'
cannam@124 8562 fi
cannam@124 8563 done
cannam@124 8564
cannam@124 8565 # If -module or -export-dynamic was specified, set the dlname.
cannam@124 8566 if test "$module" = yes || test "$export_dynamic" = yes; then
cannam@124 8567 # On all known operating systems, these are identical.
cannam@124 8568 dlname="$soname"
cannam@124 8569 fi
cannam@124 8570 fi
cannam@124 8571 ;;
cannam@124 8572
cannam@124 8573 obj)
cannam@124 8574 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@124 8575 func_warning "\`-dlopen' is ignored for objects"
cannam@124 8576 fi
cannam@124 8577
cannam@124 8578 case " $deplibs" in
cannam@124 8579 *\ -l* | *\ -L*)
cannam@124 8580 func_warning "\`-l' and \`-L' are ignored for objects" ;;
cannam@124 8581 esac
cannam@124 8582
cannam@124 8583 test -n "$rpath" && \
cannam@124 8584 func_warning "\`-rpath' is ignored for objects"
cannam@124 8585
cannam@124 8586 test -n "$xrpath" && \
cannam@124 8587 func_warning "\`-R' is ignored for objects"
cannam@124 8588
cannam@124 8589 test -n "$vinfo" && \
cannam@124 8590 func_warning "\`-version-info' is ignored for objects"
cannam@124 8591
cannam@124 8592 test -n "$release" && \
cannam@124 8593 func_warning "\`-release' is ignored for objects"
cannam@124 8594
cannam@124 8595 case $output in
cannam@124 8596 *.lo)
cannam@124 8597 test -n "$objs$old_deplibs" && \
cannam@124 8598 func_fatal_error "cannot build library object \`$output' from non-libtool objects"
cannam@124 8599
cannam@124 8600 libobj=$output
cannam@124 8601 func_lo2o "$libobj"
cannam@124 8602 obj=$func_lo2o_result
cannam@124 8603 ;;
cannam@124 8604 *)
cannam@124 8605 libobj=
cannam@124 8606 obj="$output"
cannam@124 8607 ;;
cannam@124 8608 esac
cannam@124 8609
cannam@124 8610 # Delete the old objects.
cannam@124 8611 $opt_dry_run || $RM $obj $libobj
cannam@124 8612
cannam@124 8613 # Objects from convenience libraries. This assumes
cannam@124 8614 # single-version convenience libraries. Whenever we create
cannam@124 8615 # different ones for PIC/non-PIC, this we'll have to duplicate
cannam@124 8616 # the extraction.
cannam@124 8617 reload_conv_objs=
cannam@124 8618 gentop=
cannam@124 8619 # reload_cmds runs $LD directly, so let us get rid of
cannam@124 8620 # -Wl from whole_archive_flag_spec and hope we can get by with
cannam@124 8621 # turning comma into space..
cannam@124 8622 wl=
cannam@124 8623
cannam@124 8624 if test -n "$convenience"; then
cannam@124 8625 if test -n "$whole_archive_flag_spec"; then
cannam@124 8626 eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\"
cannam@124 8627 reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'`
cannam@124 8628 else
cannam@124 8629 gentop="$output_objdir/${obj}x"
cannam@124 8630 func_append generated " $gentop"
cannam@124 8631
cannam@124 8632 func_extract_archives $gentop $convenience
cannam@124 8633 reload_conv_objs="$reload_objs $func_extract_archives_result"
cannam@124 8634 fi
cannam@124 8635 fi
cannam@124 8636
cannam@124 8637 # If we're not building shared, we need to use non_pic_objs
cannam@124 8638 test "$build_libtool_libs" != yes && libobjs="$non_pic_objects"
cannam@124 8639
cannam@124 8640 # Create the old-style object.
cannam@124 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@124 8642
cannam@124 8643 output="$obj"
cannam@124 8644 func_execute_cmds "$reload_cmds" 'exit $?'
cannam@124 8645
cannam@124 8646 # Exit if we aren't doing a library object file.
cannam@124 8647 if test -z "$libobj"; then
cannam@124 8648 if test -n "$gentop"; then
cannam@124 8649 func_show_eval '${RM}r "$gentop"'
cannam@124 8650 fi
cannam@124 8651
cannam@124 8652 exit $EXIT_SUCCESS
cannam@124 8653 fi
cannam@124 8654
cannam@124 8655 if test "$build_libtool_libs" != yes; then
cannam@124 8656 if test -n "$gentop"; then
cannam@124 8657 func_show_eval '${RM}r "$gentop"'
cannam@124 8658 fi
cannam@124 8659
cannam@124 8660 # Create an invalid libtool object if no PIC, so that we don't
cannam@124 8661 # accidentally link it into a program.
cannam@124 8662 # $show "echo timestamp > $libobj"
cannam@124 8663 # $opt_dry_run || eval "echo timestamp > $libobj" || exit $?
cannam@124 8664 exit $EXIT_SUCCESS
cannam@124 8665 fi
cannam@124 8666
cannam@124 8667 if test -n "$pic_flag" || test "$pic_mode" != default; then
cannam@124 8668 # Only do commands if we really have different PIC objects.
cannam@124 8669 reload_objs="$libobjs $reload_conv_objs"
cannam@124 8670 output="$libobj"
cannam@124 8671 func_execute_cmds "$reload_cmds" 'exit $?'
cannam@124 8672 fi
cannam@124 8673
cannam@124 8674 if test -n "$gentop"; then
cannam@124 8675 func_show_eval '${RM}r "$gentop"'
cannam@124 8676 fi
cannam@124 8677
cannam@124 8678 exit $EXIT_SUCCESS
cannam@124 8679 ;;
cannam@124 8680
cannam@124 8681 prog)
cannam@124 8682 case $host in
cannam@124 8683 *cygwin*) func_stripname '' '.exe' "$output"
cannam@124 8684 output=$func_stripname_result.exe;;
cannam@124 8685 esac
cannam@124 8686 test -n "$vinfo" && \
cannam@124 8687 func_warning "\`-version-info' is ignored for programs"
cannam@124 8688
cannam@124 8689 test -n "$release" && \
cannam@124 8690 func_warning "\`-release' is ignored for programs"
cannam@124 8691
cannam@124 8692 test "$preload" = yes \
cannam@124 8693 && test "$dlopen_support" = unknown \
cannam@124 8694 && test "$dlopen_self" = unknown \
cannam@124 8695 && test "$dlopen_self_static" = unknown && \
cannam@124 8696 func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support."
cannam@124 8697
cannam@124 8698 case $host in
cannam@124 8699 *-*-rhapsody* | *-*-darwin1.[012])
cannam@124 8700 # On Rhapsody replace the C library is the System framework
cannam@124 8701 compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'`
cannam@124 8702 finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'`
cannam@124 8703 ;;
cannam@124 8704 esac
cannam@124 8705
cannam@124 8706 case $host in
cannam@124 8707 *-*-darwin*)
cannam@124 8708 # Don't allow lazy linking, it breaks C++ global constructors
cannam@124 8709 # But is supposedly fixed on 10.4 or later (yay!).
cannam@124 8710 if test "$tagname" = CXX ; then
cannam@124 8711 case ${MACOSX_DEPLOYMENT_TARGET-10.0} in
cannam@124 8712 10.[0123])
cannam@124 8713 func_append compile_command " ${wl}-bind_at_load"
cannam@124 8714 func_append finalize_command " ${wl}-bind_at_load"
cannam@124 8715 ;;
cannam@124 8716 esac
cannam@124 8717 fi
cannam@124 8718 # Time to change all our "foo.ltframework" stuff back to "-framework foo"
cannam@124 8719 compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@124 8720 finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@124 8721 ;;
cannam@124 8722 esac
cannam@124 8723
cannam@124 8724
cannam@124 8725 # move library search paths that coincide with paths to not yet
cannam@124 8726 # installed libraries to the beginning of the library search list
cannam@124 8727 new_libs=
cannam@124 8728 for path in $notinst_path; do
cannam@124 8729 case " $new_libs " in
cannam@124 8730 *" -L$path/$objdir "*) ;;
cannam@124 8731 *)
cannam@124 8732 case " $compile_deplibs " in
cannam@124 8733 *" -L$path/$objdir "*)
cannam@124 8734 func_append new_libs " -L$path/$objdir" ;;
cannam@124 8735 esac
cannam@124 8736 ;;
cannam@124 8737 esac
cannam@124 8738 done
cannam@124 8739 for deplib in $compile_deplibs; do
cannam@124 8740 case $deplib in
cannam@124 8741 -L*)
cannam@124 8742 case " $new_libs " in
cannam@124 8743 *" $deplib "*) ;;
cannam@124 8744 *) func_append new_libs " $deplib" ;;
cannam@124 8745 esac
cannam@124 8746 ;;
cannam@124 8747 *) func_append new_libs " $deplib" ;;
cannam@124 8748 esac
cannam@124 8749 done
cannam@124 8750 compile_deplibs="$new_libs"
cannam@124 8751
cannam@124 8752
cannam@124 8753 func_append compile_command " $compile_deplibs"
cannam@124 8754 func_append finalize_command " $finalize_deplibs"
cannam@124 8755
cannam@124 8756 if test -n "$rpath$xrpath"; then
cannam@124 8757 # If the user specified any rpath flags, then add them.
cannam@124 8758 for libdir in $rpath $xrpath; do
cannam@124 8759 # This is the magic to use -rpath.
cannam@124 8760 case "$finalize_rpath " in
cannam@124 8761 *" $libdir "*) ;;
cannam@124 8762 *) func_append finalize_rpath " $libdir" ;;
cannam@124 8763 esac
cannam@124 8764 done
cannam@124 8765 fi
cannam@124 8766
cannam@124 8767 # Now hardcode the library paths
cannam@124 8768 rpath=
cannam@124 8769 hardcode_libdirs=
cannam@124 8770 for libdir in $compile_rpath $finalize_rpath; do
cannam@124 8771 if test -n "$hardcode_libdir_flag_spec"; then
cannam@124 8772 if test -n "$hardcode_libdir_separator"; then
cannam@124 8773 if test -z "$hardcode_libdirs"; then
cannam@124 8774 hardcode_libdirs="$libdir"
cannam@124 8775 else
cannam@124 8776 # Just accumulate the unique libdirs.
cannam@124 8777 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@124 8778 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@124 8779 ;;
cannam@124 8780 *)
cannam@124 8781 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
cannam@124 8782 ;;
cannam@124 8783 esac
cannam@124 8784 fi
cannam@124 8785 else
cannam@124 8786 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@124 8787 func_append rpath " $flag"
cannam@124 8788 fi
cannam@124 8789 elif test -n "$runpath_var"; then
cannam@124 8790 case "$perm_rpath " in
cannam@124 8791 *" $libdir "*) ;;
cannam@124 8792 *) func_append perm_rpath " $libdir" ;;
cannam@124 8793 esac
cannam@124 8794 fi
cannam@124 8795 case $host in
cannam@124 8796 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
cannam@124 8797 testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'`
cannam@124 8798 case :$dllsearchpath: in
cannam@124 8799 *":$libdir:"*) ;;
cannam@124 8800 ::) dllsearchpath=$libdir;;
cannam@124 8801 *) func_append dllsearchpath ":$libdir";;
cannam@124 8802 esac
cannam@124 8803 case :$dllsearchpath: in
cannam@124 8804 *":$testbindir:"*) ;;
cannam@124 8805 ::) dllsearchpath=$testbindir;;
cannam@124 8806 *) func_append dllsearchpath ":$testbindir";;
cannam@124 8807 esac
cannam@124 8808 ;;
cannam@124 8809 esac
cannam@124 8810 done
cannam@124 8811 # Substitute the hardcoded libdirs into the rpath.
cannam@124 8812 if test -n "$hardcode_libdir_separator" &&
cannam@124 8813 test -n "$hardcode_libdirs"; then
cannam@124 8814 libdir="$hardcode_libdirs"
cannam@124 8815 eval rpath=\" $hardcode_libdir_flag_spec\"
cannam@124 8816 fi
cannam@124 8817 compile_rpath="$rpath"
cannam@124 8818
cannam@124 8819 rpath=
cannam@124 8820 hardcode_libdirs=
cannam@124 8821 for libdir in $finalize_rpath; do
cannam@124 8822 if test -n "$hardcode_libdir_flag_spec"; then
cannam@124 8823 if test -n "$hardcode_libdir_separator"; then
cannam@124 8824 if test -z "$hardcode_libdirs"; then
cannam@124 8825 hardcode_libdirs="$libdir"
cannam@124 8826 else
cannam@124 8827 # Just accumulate the unique libdirs.
cannam@124 8828 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@124 8829 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@124 8830 ;;
cannam@124 8831 *)
cannam@124 8832 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
cannam@124 8833 ;;
cannam@124 8834 esac
cannam@124 8835 fi
cannam@124 8836 else
cannam@124 8837 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@124 8838 func_append rpath " $flag"
cannam@124 8839 fi
cannam@124 8840 elif test -n "$runpath_var"; then
cannam@124 8841 case "$finalize_perm_rpath " in
cannam@124 8842 *" $libdir "*) ;;
cannam@124 8843 *) func_append finalize_perm_rpath " $libdir" ;;
cannam@124 8844 esac
cannam@124 8845 fi
cannam@124 8846 done
cannam@124 8847 # Substitute the hardcoded libdirs into the rpath.
cannam@124 8848 if test -n "$hardcode_libdir_separator" &&
cannam@124 8849 test -n "$hardcode_libdirs"; then
cannam@124 8850 libdir="$hardcode_libdirs"
cannam@124 8851 eval rpath=\" $hardcode_libdir_flag_spec\"
cannam@124 8852 fi
cannam@124 8853 finalize_rpath="$rpath"
cannam@124 8854
cannam@124 8855 if test -n "$libobjs" && test "$build_old_libs" = yes; then
cannam@124 8856 # Transform all the library objects into standard objects.
cannam@124 8857 compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@124 8858 finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@124 8859 fi
cannam@124 8860
cannam@124 8861 func_generate_dlsyms "$outputname" "@PROGRAM@" "no"
cannam@124 8862
cannam@124 8863 # template prelinking step
cannam@124 8864 if test -n "$prelink_cmds"; then
cannam@124 8865 func_execute_cmds "$prelink_cmds" 'exit $?'
cannam@124 8866 fi
cannam@124 8867
cannam@124 8868 wrappers_required=yes
cannam@124 8869 case $host in
cannam@124 8870 *cegcc* | *mingw32ce*)
cannam@124 8871 # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway.
cannam@124 8872 wrappers_required=no
cannam@124 8873 ;;
cannam@124 8874 *cygwin* | *mingw* )
cannam@124 8875 if test "$build_libtool_libs" != yes; then
cannam@124 8876 wrappers_required=no
cannam@124 8877 fi
cannam@124 8878 ;;
cannam@124 8879 *)
cannam@124 8880 if test "$need_relink" = no || test "$build_libtool_libs" != yes; then
cannam@124 8881 wrappers_required=no
cannam@124 8882 fi
cannam@124 8883 ;;
cannam@124 8884 esac
cannam@124 8885 if test "$wrappers_required" = no; then
cannam@124 8886 # Replace the output file specification.
cannam@124 8887 compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'`
cannam@124 8888 link_command="$compile_command$compile_rpath"
cannam@124 8889
cannam@124 8890 # We have no uninstalled library dependencies, so finalize right now.
cannam@124 8891 exit_status=0
cannam@124 8892 func_show_eval "$link_command" 'exit_status=$?'
cannam@124 8893
cannam@124 8894 if test -n "$postlink_cmds"; then
cannam@124 8895 func_to_tool_file "$output"
cannam@124 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@124 8897 func_execute_cmds "$postlink_cmds" 'exit $?'
cannam@124 8898 fi
cannam@124 8899
cannam@124 8900 # Delete the generated files.
cannam@124 8901 if test -f "$output_objdir/${outputname}S.${objext}"; then
cannam@124 8902 func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"'
cannam@124 8903 fi
cannam@124 8904
cannam@124 8905 exit $exit_status
cannam@124 8906 fi
cannam@124 8907
cannam@124 8908 if test -n "$compile_shlibpath$finalize_shlibpath"; then
cannam@124 8909 compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command"
cannam@124 8910 fi
cannam@124 8911 if test -n "$finalize_shlibpath"; then
cannam@124 8912 finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
cannam@124 8913 fi
cannam@124 8914
cannam@124 8915 compile_var=
cannam@124 8916 finalize_var=
cannam@124 8917 if test -n "$runpath_var"; then
cannam@124 8918 if test -n "$perm_rpath"; then
cannam@124 8919 # We should set the runpath_var.
cannam@124 8920 rpath=
cannam@124 8921 for dir in $perm_rpath; do
cannam@124 8922 func_append rpath "$dir:"
cannam@124 8923 done
cannam@124 8924 compile_var="$runpath_var=\"$rpath\$$runpath_var\" "
cannam@124 8925 fi
cannam@124 8926 if test -n "$finalize_perm_rpath"; then
cannam@124 8927 # We should set the runpath_var.
cannam@124 8928 rpath=
cannam@124 8929 for dir in $finalize_perm_rpath; do
cannam@124 8930 func_append rpath "$dir:"
cannam@124 8931 done
cannam@124 8932 finalize_var="$runpath_var=\"$rpath\$$runpath_var\" "
cannam@124 8933 fi
cannam@124 8934 fi
cannam@124 8935
cannam@124 8936 if test "$no_install" = yes; then
cannam@124 8937 # We don't need to create a wrapper script.
cannam@124 8938 link_command="$compile_var$compile_command$compile_rpath"
cannam@124 8939 # Replace the output file specification.
cannam@124 8940 link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'`
cannam@124 8941 # Delete the old output file.
cannam@124 8942 $opt_dry_run || $RM $output
cannam@124 8943 # Link the executable and exit
cannam@124 8944 func_show_eval "$link_command" 'exit $?'
cannam@124 8945
cannam@124 8946 if test -n "$postlink_cmds"; then
cannam@124 8947 func_to_tool_file "$output"
cannam@124 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@124 8949 func_execute_cmds "$postlink_cmds" 'exit $?'
cannam@124 8950 fi
cannam@124 8951
cannam@124 8952 exit $EXIT_SUCCESS
cannam@124 8953 fi
cannam@124 8954
cannam@124 8955 if test "$hardcode_action" = relink; then
cannam@124 8956 # Fast installation is not supported
cannam@124 8957 link_command="$compile_var$compile_command$compile_rpath"
cannam@124 8958 relink_command="$finalize_var$finalize_command$finalize_rpath"
cannam@124 8959
cannam@124 8960 func_warning "this platform does not like uninstalled shared libraries"
cannam@124 8961 func_warning "\`$output' will be relinked during installation"
cannam@124 8962 else
cannam@124 8963 if test "$fast_install" != no; then
cannam@124 8964 link_command="$finalize_var$compile_command$finalize_rpath"
cannam@124 8965 if test "$fast_install" = yes; then
cannam@124 8966 relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'`
cannam@124 8967 else
cannam@124 8968 # fast_install is set to needless
cannam@124 8969 relink_command=
cannam@124 8970 fi
cannam@124 8971 else
cannam@124 8972 link_command="$compile_var$compile_command$compile_rpath"
cannam@124 8973 relink_command="$finalize_var$finalize_command$finalize_rpath"
cannam@124 8974 fi
cannam@124 8975 fi
cannam@124 8976
cannam@124 8977 # Replace the output file specification.
cannam@124 8978 link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
cannam@124 8979
cannam@124 8980 # Delete the old output files.
cannam@124 8981 $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname
cannam@124 8982
cannam@124 8983 func_show_eval "$link_command" 'exit $?'
cannam@124 8984
cannam@124 8985 if test -n "$postlink_cmds"; then
cannam@124 8986 func_to_tool_file "$output_objdir/$outputname"
cannam@124 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@124 8988 func_execute_cmds "$postlink_cmds" 'exit $?'
cannam@124 8989 fi
cannam@124 8990
cannam@124 8991 # Now create the wrapper script.
cannam@124 8992 func_verbose "creating $output"
cannam@124 8993
cannam@124 8994 # Quote the relink command for shipping.
cannam@124 8995 if test -n "$relink_command"; then
cannam@124 8996 # Preserve any variables that may affect compiler behavior
cannam@124 8997 for var in $variables_saved_for_relink; do
cannam@124 8998 if eval test -z \"\${$var+set}\"; then
cannam@124 8999 relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
cannam@124 9000 elif eval var_value=\$$var; test -z "$var_value"; then
cannam@124 9001 relink_command="$var=; export $var; $relink_command"
cannam@124 9002 else
cannam@124 9003 func_quote_for_eval "$var_value"
cannam@124 9004 relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
cannam@124 9005 fi
cannam@124 9006 done
cannam@124 9007 relink_command="(cd `pwd`; $relink_command)"
cannam@124 9008 relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"`
cannam@124 9009 fi
cannam@124 9010
cannam@124 9011 # Only actually do things if not in dry run mode.
cannam@124 9012 $opt_dry_run || {
cannam@124 9013 # win32 will think the script is a binary if it has
cannam@124 9014 # a .exe suffix, so we strip it off here.
cannam@124 9015 case $output in
cannam@124 9016 *.exe) func_stripname '' '.exe' "$output"
cannam@124 9017 output=$func_stripname_result ;;
cannam@124 9018 esac
cannam@124 9019 # test for cygwin because mv fails w/o .exe extensions
cannam@124 9020 case $host in
cannam@124 9021 *cygwin*)
cannam@124 9022 exeext=.exe
cannam@124 9023 func_stripname '' '.exe' "$outputname"
cannam@124 9024 outputname=$func_stripname_result ;;
cannam@124 9025 *) exeext= ;;
cannam@124 9026 esac
cannam@124 9027 case $host in
cannam@124 9028 *cygwin* | *mingw* )
cannam@124 9029 func_dirname_and_basename "$output" "" "."
cannam@124 9030 output_name=$func_basename_result
cannam@124 9031 output_path=$func_dirname_result
cannam@124 9032 cwrappersource="$output_path/$objdir/lt-$output_name.c"
cannam@124 9033 cwrapper="$output_path/$output_name.exe"
cannam@124 9034 $RM $cwrappersource $cwrapper
cannam@124 9035 trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
cannam@124 9036
cannam@124 9037 func_emit_cwrapperexe_src > $cwrappersource
cannam@124 9038
cannam@124 9039 # The wrapper executable is built using the $host compiler,
cannam@124 9040 # because it contains $host paths and files. If cross-
cannam@124 9041 # compiling, it, like the target executable, must be
cannam@124 9042 # executed on the $host or under an emulation environment.
cannam@124 9043 $opt_dry_run || {
cannam@124 9044 $LTCC $LTCFLAGS -o $cwrapper $cwrappersource
cannam@124 9045 $STRIP $cwrapper
cannam@124 9046 }
cannam@124 9047
cannam@124 9048 # Now, create the wrapper script for func_source use:
cannam@124 9049 func_ltwrapper_scriptname $cwrapper
cannam@124 9050 $RM $func_ltwrapper_scriptname_result
cannam@124 9051 trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15
cannam@124 9052 $opt_dry_run || {
cannam@124 9053 # note: this script will not be executed, so do not chmod.
cannam@124 9054 if test "x$build" = "x$host" ; then
cannam@124 9055 $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result
cannam@124 9056 else
cannam@124 9057 func_emit_wrapper no > $func_ltwrapper_scriptname_result
cannam@124 9058 fi
cannam@124 9059 }
cannam@124 9060 ;;
cannam@124 9061 * )
cannam@124 9062 $RM $output
cannam@124 9063 trap "$RM $output; exit $EXIT_FAILURE" 1 2 15
cannam@124 9064
cannam@124 9065 func_emit_wrapper no > $output
cannam@124 9066 chmod +x $output
cannam@124 9067 ;;
cannam@124 9068 esac
cannam@124 9069 }
cannam@124 9070 exit $EXIT_SUCCESS
cannam@124 9071 ;;
cannam@124 9072 esac
cannam@124 9073
cannam@124 9074 # See if we need to build an old-fashioned archive.
cannam@124 9075 for oldlib in $oldlibs; do
cannam@124 9076
cannam@124 9077 if test "$build_libtool_libs" = convenience; then
cannam@124 9078 oldobjs="$libobjs_save $symfileobj"
cannam@124 9079 addlibs="$convenience"
cannam@124 9080 build_libtool_libs=no
cannam@124 9081 else
cannam@124 9082 if test "$build_libtool_libs" = module; then
cannam@124 9083 oldobjs="$libobjs_save"
cannam@124 9084 build_libtool_libs=no
cannam@124 9085 else
cannam@124 9086 oldobjs="$old_deplibs $non_pic_objects"
cannam@124 9087 if test "$preload" = yes && test -f "$symfileobj"; then
cannam@124 9088 func_append oldobjs " $symfileobj"
cannam@124 9089 fi
cannam@124 9090 fi
cannam@124 9091 addlibs="$old_convenience"
cannam@124 9092 fi
cannam@124 9093
cannam@124 9094 if test -n "$addlibs"; then
cannam@124 9095 gentop="$output_objdir/${outputname}x"
cannam@124 9096 func_append generated " $gentop"
cannam@124 9097
cannam@124 9098 func_extract_archives $gentop $addlibs
cannam@124 9099 func_append oldobjs " $func_extract_archives_result"
cannam@124 9100 fi
cannam@124 9101
cannam@124 9102 # Do each command in the archive commands.
cannam@124 9103 if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
cannam@124 9104 cmds=$old_archive_from_new_cmds
cannam@124 9105 else
cannam@124 9106
cannam@124 9107 # Add any objects from preloaded convenience libraries
cannam@124 9108 if test -n "$dlprefiles"; then
cannam@124 9109 gentop="$output_objdir/${outputname}x"
cannam@124 9110 func_append generated " $gentop"
cannam@124 9111
cannam@124 9112 func_extract_archives $gentop $dlprefiles
cannam@124 9113 func_append oldobjs " $func_extract_archives_result"
cannam@124 9114 fi
cannam@124 9115
cannam@124 9116 # POSIX demands no paths to be encoded in archives. We have
cannam@124 9117 # to avoid creating archives with duplicate basenames if we
cannam@124 9118 # might have to extract them afterwards, e.g., when creating a
cannam@124 9119 # static archive out of a convenience library, or when linking
cannam@124 9120 # the entirety of a libtool archive into another (currently
cannam@124 9121 # not supported by libtool).
cannam@124 9122 if (for obj in $oldobjs
cannam@124 9123 do
cannam@124 9124 func_basename "$obj"
cannam@124 9125 $ECHO "$func_basename_result"
cannam@124 9126 done | sort | sort -uc >/dev/null 2>&1); then
cannam@124 9127 :
cannam@124 9128 else
cannam@124 9129 echo "copying selected object files to avoid basename conflicts..."
cannam@124 9130 gentop="$output_objdir/${outputname}x"
cannam@124 9131 func_append generated " $gentop"
cannam@124 9132 func_mkdir_p "$gentop"
cannam@124 9133 save_oldobjs=$oldobjs
cannam@124 9134 oldobjs=
cannam@124 9135 counter=1
cannam@124 9136 for obj in $save_oldobjs
cannam@124 9137 do
cannam@124 9138 func_basename "$obj"
cannam@124 9139 objbase="$func_basename_result"
cannam@124 9140 case " $oldobjs " in
cannam@124 9141 " ") oldobjs=$obj ;;
cannam@124 9142 *[\ /]"$objbase "*)
cannam@124 9143 while :; do
cannam@124 9144 # Make sure we don't pick an alternate name that also
cannam@124 9145 # overlaps.
cannam@124 9146 newobj=lt$counter-$objbase
cannam@124 9147 func_arith $counter + 1
cannam@124 9148 counter=$func_arith_result
cannam@124 9149 case " $oldobjs " in
cannam@124 9150 *[\ /]"$newobj "*) ;;
cannam@124 9151 *) if test ! -f "$gentop/$newobj"; then break; fi ;;
cannam@124 9152 esac
cannam@124 9153 done
cannam@124 9154 func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj"
cannam@124 9155 func_append oldobjs " $gentop/$newobj"
cannam@124 9156 ;;
cannam@124 9157 *) func_append oldobjs " $obj" ;;
cannam@124 9158 esac
cannam@124 9159 done
cannam@124 9160 fi
cannam@124 9161 eval cmds=\"$old_archive_cmds\"
cannam@124 9162
cannam@124 9163 func_len " $cmds"
cannam@124 9164 len=$func_len_result
cannam@124 9165 if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
cannam@124 9166 cmds=$old_archive_cmds
cannam@124 9167 elif test -n "$archiver_list_spec"; then
cannam@124 9168 func_verbose "using command file archive linking..."
cannam@124 9169 for obj in $oldobjs
cannam@124 9170 do
cannam@124 9171 func_to_tool_file "$obj"
cannam@124 9172 $ECHO "$func_to_tool_file_result"
cannam@124 9173 done > $output_objdir/$libname.libcmd
cannam@124 9174 func_to_tool_file "$output_objdir/$libname.libcmd"
cannam@124 9175 oldobjs=" $archiver_list_spec$func_to_tool_file_result"
cannam@124 9176 cmds=$old_archive_cmds
cannam@124 9177 else
cannam@124 9178 # the command line is too long to link in one step, link in parts
cannam@124 9179 func_verbose "using piecewise archive linking..."
cannam@124 9180 save_RANLIB=$RANLIB
cannam@124 9181 RANLIB=:
cannam@124 9182 objlist=
cannam@124 9183 concat_cmds=
cannam@124 9184 save_oldobjs=$oldobjs
cannam@124 9185 oldobjs=
cannam@124 9186 # Is there a better way of finding the last object in the list?
cannam@124 9187 for obj in $save_oldobjs
cannam@124 9188 do
cannam@124 9189 last_oldobj=$obj
cannam@124 9190 done
cannam@124 9191 eval test_cmds=\"$old_archive_cmds\"
cannam@124 9192 func_len " $test_cmds"
cannam@124 9193 len0=$func_len_result
cannam@124 9194 len=$len0
cannam@124 9195 for obj in $save_oldobjs
cannam@124 9196 do
cannam@124 9197 func_len " $obj"
cannam@124 9198 func_arith $len + $func_len_result
cannam@124 9199 len=$func_arith_result
cannam@124 9200 func_append objlist " $obj"
cannam@124 9201 if test "$len" -lt "$max_cmd_len"; then
cannam@124 9202 :
cannam@124 9203 else
cannam@124 9204 # the above command should be used before it gets too long
cannam@124 9205 oldobjs=$objlist
cannam@124 9206 if test "$obj" = "$last_oldobj" ; then
cannam@124 9207 RANLIB=$save_RANLIB
cannam@124 9208 fi
cannam@124 9209 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
cannam@124 9210 eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\"
cannam@124 9211 objlist=
cannam@124 9212 len=$len0
cannam@124 9213 fi
cannam@124 9214 done
cannam@124 9215 RANLIB=$save_RANLIB
cannam@124 9216 oldobjs=$objlist
cannam@124 9217 if test "X$oldobjs" = "X" ; then
cannam@124 9218 eval cmds=\"\$concat_cmds\"
cannam@124 9219 else
cannam@124 9220 eval cmds=\"\$concat_cmds~\$old_archive_cmds\"
cannam@124 9221 fi
cannam@124 9222 fi
cannam@124 9223 fi
cannam@124 9224 func_execute_cmds "$cmds" 'exit $?'
cannam@124 9225 done
cannam@124 9226
cannam@124 9227 test -n "$generated" && \
cannam@124 9228 func_show_eval "${RM}r$generated"
cannam@124 9229
cannam@124 9230 # Now create the libtool archive.
cannam@124 9231 case $output in
cannam@124 9232 *.la)
cannam@124 9233 old_library=
cannam@124 9234 test "$build_old_libs" = yes && old_library="$libname.$libext"
cannam@124 9235 func_verbose "creating $output"
cannam@124 9236
cannam@124 9237 # Preserve any variables that may affect compiler behavior
cannam@124 9238 for var in $variables_saved_for_relink; do
cannam@124 9239 if eval test -z \"\${$var+set}\"; then
cannam@124 9240 relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
cannam@124 9241 elif eval var_value=\$$var; test -z "$var_value"; then
cannam@124 9242 relink_command="$var=; export $var; $relink_command"
cannam@124 9243 else
cannam@124 9244 func_quote_for_eval "$var_value"
cannam@124 9245 relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
cannam@124 9246 fi
cannam@124 9247 done
cannam@124 9248 # Quote the link command for shipping.
cannam@124 9249 relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
cannam@124 9250 relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"`
cannam@124 9251 if test "$hardcode_automatic" = yes ; then
cannam@124 9252 relink_command=
cannam@124 9253 fi
cannam@124 9254
cannam@124 9255 # Only create the output if not a dry run.
cannam@124 9256 $opt_dry_run || {
cannam@124 9257 for installed in no yes; do
cannam@124 9258 if test "$installed" = yes; then
cannam@124 9259 if test -z "$install_libdir"; then
cannam@124 9260 break
cannam@124 9261 fi
cannam@124 9262 output="$output_objdir/$outputname"i
cannam@124 9263 # Replace all uninstalled libtool libraries with the installed ones
cannam@124 9264 newdependency_libs=
cannam@124 9265 for deplib in $dependency_libs; do
cannam@124 9266 case $deplib in
cannam@124 9267 *.la)
cannam@124 9268 func_basename "$deplib"
cannam@124 9269 name="$func_basename_result"
cannam@124 9270 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
cannam@124 9271 test -z "$libdir" && \
cannam@124 9272 func_fatal_error "\`$deplib' is not a valid libtool archive"
cannam@124 9273 func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name"
cannam@124 9274 ;;
cannam@124 9275 -L*)
cannam@124 9276 func_stripname -L '' "$deplib"
cannam@124 9277 func_replace_sysroot "$func_stripname_result"
cannam@124 9278 func_append newdependency_libs " -L$func_replace_sysroot_result"
cannam@124 9279 ;;
cannam@124 9280 -R*)
cannam@124 9281 func_stripname -R '' "$deplib"
cannam@124 9282 func_replace_sysroot "$func_stripname_result"
cannam@124 9283 func_append newdependency_libs " -R$func_replace_sysroot_result"
cannam@124 9284 ;;
cannam@124 9285 *) func_append newdependency_libs " $deplib" ;;
cannam@124 9286 esac
cannam@124 9287 done
cannam@124 9288 dependency_libs="$newdependency_libs"
cannam@124 9289 newdlfiles=
cannam@124 9290
cannam@124 9291 for lib in $dlfiles; do
cannam@124 9292 case $lib in
cannam@124 9293 *.la)
cannam@124 9294 func_basename "$lib"
cannam@124 9295 name="$func_basename_result"
cannam@124 9296 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
cannam@124 9297 test -z "$libdir" && \
cannam@124 9298 func_fatal_error "\`$lib' is not a valid libtool archive"
cannam@124 9299 func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name"
cannam@124 9300 ;;
cannam@124 9301 *) func_append newdlfiles " $lib" ;;
cannam@124 9302 esac
cannam@124 9303 done
cannam@124 9304 dlfiles="$newdlfiles"
cannam@124 9305 newdlprefiles=
cannam@124 9306 for lib in $dlprefiles; do
cannam@124 9307 case $lib in
cannam@124 9308 *.la)
cannam@124 9309 # Only pass preopened files to the pseudo-archive (for
cannam@124 9310 # eventual linking with the app. that links it) if we
cannam@124 9311 # didn't already link the preopened objects directly into
cannam@124 9312 # the library:
cannam@124 9313 func_basename "$lib"
cannam@124 9314 name="$func_basename_result"
cannam@124 9315 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
cannam@124 9316 test -z "$libdir" && \
cannam@124 9317 func_fatal_error "\`$lib' is not a valid libtool archive"
cannam@124 9318 func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name"
cannam@124 9319 ;;
cannam@124 9320 esac
cannam@124 9321 done
cannam@124 9322 dlprefiles="$newdlprefiles"
cannam@124 9323 else
cannam@124 9324 newdlfiles=
cannam@124 9325 for lib in $dlfiles; do
cannam@124 9326 case $lib in
cannam@124 9327 [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
cannam@124 9328 *) abs=`pwd`"/$lib" ;;
cannam@124 9329 esac
cannam@124 9330 func_append newdlfiles " $abs"
cannam@124 9331 done
cannam@124 9332 dlfiles="$newdlfiles"
cannam@124 9333 newdlprefiles=
cannam@124 9334 for lib in $dlprefiles; do
cannam@124 9335 case $lib in
cannam@124 9336 [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
cannam@124 9337 *) abs=`pwd`"/$lib" ;;
cannam@124 9338 esac
cannam@124 9339 func_append newdlprefiles " $abs"
cannam@124 9340 done
cannam@124 9341 dlprefiles="$newdlprefiles"
cannam@124 9342 fi
cannam@124 9343 $RM $output
cannam@124 9344 # place dlname in correct position for cygwin
cannam@124 9345 # In fact, it would be nice if we could use this code for all target
cannam@124 9346 # systems that can't hard-code library paths into their executables
cannam@124 9347 # and that have no shared library path variable independent of PATH,
cannam@124 9348 # but it turns out we can't easily determine that from inspecting
cannam@124 9349 # libtool variables, so we have to hard-code the OSs to which it
cannam@124 9350 # applies here; at the moment, that means platforms that use the PE
cannam@124 9351 # object format with DLL files. See the long comment at the top of
cannam@124 9352 # tests/bindir.at for full details.
cannam@124 9353 tdlname=$dlname
cannam@124 9354 case $host,$output,$installed,$module,$dlname in
cannam@124 9355 *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll)
cannam@124 9356 # If a -bindir argument was supplied, place the dll there.
cannam@124 9357 if test "x$bindir" != x ;
cannam@124 9358 then
cannam@124 9359 func_relative_path "$install_libdir" "$bindir"
cannam@124 9360 tdlname=$func_relative_path_result$dlname
cannam@124 9361 else
cannam@124 9362 # Otherwise fall back on heuristic.
cannam@124 9363 tdlname=../bin/$dlname
cannam@124 9364 fi
cannam@124 9365 ;;
cannam@124 9366 esac
cannam@124 9367 $ECHO > $output "\
cannam@124 9368 # $outputname - a libtool library file
cannam@124 9369 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@124 9370 #
cannam@124 9371 # Please DO NOT delete this file!
cannam@124 9372 # It is necessary for linking the library.
cannam@124 9373
cannam@124 9374 # The name that we can dlopen(3).
cannam@124 9375 dlname='$tdlname'
cannam@124 9376
cannam@124 9377 # Names of this library.
cannam@124 9378 library_names='$library_names'
cannam@124 9379
cannam@124 9380 # The name of the static archive.
cannam@124 9381 old_library='$old_library'
cannam@124 9382
cannam@124 9383 # Linker flags that can not go in dependency_libs.
cannam@124 9384 inherited_linker_flags='$new_inherited_linker_flags'
cannam@124 9385
cannam@124 9386 # Libraries that this one depends upon.
cannam@124 9387 dependency_libs='$dependency_libs'
cannam@124 9388
cannam@124 9389 # Names of additional weak libraries provided by this library
cannam@124 9390 weak_library_names='$weak_libs'
cannam@124 9391
cannam@124 9392 # Version information for $libname.
cannam@124 9393 current=$current
cannam@124 9394 age=$age
cannam@124 9395 revision=$revision
cannam@124 9396
cannam@124 9397 # Is this an already installed library?
cannam@124 9398 installed=$installed
cannam@124 9399
cannam@124 9400 # Should we warn about portability when linking against -modules?
cannam@124 9401 shouldnotlink=$module
cannam@124 9402
cannam@124 9403 # Files to dlopen/dlpreopen
cannam@124 9404 dlopen='$dlfiles'
cannam@124 9405 dlpreopen='$dlprefiles'
cannam@124 9406
cannam@124 9407 # Directory that this library needs to be installed in:
cannam@124 9408 libdir='$install_libdir'"
cannam@124 9409 if test "$installed" = no && test "$need_relink" = yes; then
cannam@124 9410 $ECHO >> $output "\
cannam@124 9411 relink_command=\"$relink_command\""
cannam@124 9412 fi
cannam@124 9413 done
cannam@124 9414 }
cannam@124 9415
cannam@124 9416 # Do a symbolic link so that the libtool archive can be found in
cannam@124 9417 # LD_LIBRARY_PATH before the program is installed.
cannam@124 9418 func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?'
cannam@124 9419 ;;
cannam@124 9420 esac
cannam@124 9421 exit $EXIT_SUCCESS
cannam@124 9422 }
cannam@124 9423
cannam@124 9424 { test "$opt_mode" = link || test "$opt_mode" = relink; } &&
cannam@124 9425 func_mode_link ${1+"$@"}
cannam@124 9426
cannam@124 9427
cannam@124 9428 # func_mode_uninstall arg...
cannam@124 9429 func_mode_uninstall ()
cannam@124 9430 {
cannam@124 9431 $opt_debug
cannam@124 9432 RM="$nonopt"
cannam@124 9433 files=
cannam@124 9434 rmforce=
cannam@124 9435 exit_status=0
cannam@124 9436
cannam@124 9437 # This variable tells wrapper scripts just to set variables rather
cannam@124 9438 # than running their programs.
cannam@124 9439 libtool_install_magic="$magic"
cannam@124 9440
cannam@124 9441 for arg
cannam@124 9442 do
cannam@124 9443 case $arg in
cannam@124 9444 -f) func_append RM " $arg"; rmforce=yes ;;
cannam@124 9445 -*) func_append RM " $arg" ;;
cannam@124 9446 *) func_append files " $arg" ;;
cannam@124 9447 esac
cannam@124 9448 done
cannam@124 9449
cannam@124 9450 test -z "$RM" && \
cannam@124 9451 func_fatal_help "you must specify an RM program"
cannam@124 9452
cannam@124 9453 rmdirs=
cannam@124 9454
cannam@124 9455 for file in $files; do
cannam@124 9456 func_dirname "$file" "" "."
cannam@124 9457 dir="$func_dirname_result"
cannam@124 9458 if test "X$dir" = X.; then
cannam@124 9459 odir="$objdir"
cannam@124 9460 else
cannam@124 9461 odir="$dir/$objdir"
cannam@124 9462 fi
cannam@124 9463 func_basename "$file"
cannam@124 9464 name="$func_basename_result"
cannam@124 9465 test "$opt_mode" = uninstall && odir="$dir"
cannam@124 9466
cannam@124 9467 # Remember odir for removal later, being careful to avoid duplicates
cannam@124 9468 if test "$opt_mode" = clean; then
cannam@124 9469 case " $rmdirs " in
cannam@124 9470 *" $odir "*) ;;
cannam@124 9471 *) func_append rmdirs " $odir" ;;
cannam@124 9472 esac
cannam@124 9473 fi
cannam@124 9474
cannam@124 9475 # Don't error if the file doesn't exist and rm -f was used.
cannam@124 9476 if { test -L "$file"; } >/dev/null 2>&1 ||
cannam@124 9477 { test -h "$file"; } >/dev/null 2>&1 ||
cannam@124 9478 test -f "$file"; then
cannam@124 9479 :
cannam@124 9480 elif test -d "$file"; then
cannam@124 9481 exit_status=1
cannam@124 9482 continue
cannam@124 9483 elif test "$rmforce" = yes; then
cannam@124 9484 continue
cannam@124 9485 fi
cannam@124 9486
cannam@124 9487 rmfiles="$file"
cannam@124 9488
cannam@124 9489 case $name in
cannam@124 9490 *.la)
cannam@124 9491 # Possibly a libtool archive, so verify it.
cannam@124 9492 if func_lalib_p "$file"; then
cannam@124 9493 func_source $dir/$name
cannam@124 9494
cannam@124 9495 # Delete the libtool libraries and symlinks.
cannam@124 9496 for n in $library_names; do
cannam@124 9497 func_append rmfiles " $odir/$n"
cannam@124 9498 done
cannam@124 9499 test -n "$old_library" && func_append rmfiles " $odir/$old_library"
cannam@124 9500
cannam@124 9501 case "$opt_mode" in
cannam@124 9502 clean)
cannam@124 9503 case " $library_names " in
cannam@124 9504 *" $dlname "*) ;;
cannam@124 9505 *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;;
cannam@124 9506 esac
cannam@124 9507 test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i"
cannam@124 9508 ;;
cannam@124 9509 uninstall)
cannam@124 9510 if test -n "$library_names"; then
cannam@124 9511 # Do each command in the postuninstall commands.
cannam@124 9512 func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
cannam@124 9513 fi
cannam@124 9514
cannam@124 9515 if test -n "$old_library"; then
cannam@124 9516 # Do each command in the old_postuninstall commands.
cannam@124 9517 func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
cannam@124 9518 fi
cannam@124 9519 # FIXME: should reinstall the best remaining shared library.
cannam@124 9520 ;;
cannam@124 9521 esac
cannam@124 9522 fi
cannam@124 9523 ;;
cannam@124 9524
cannam@124 9525 *.lo)
cannam@124 9526 # Possibly a libtool object, so verify it.
cannam@124 9527 if func_lalib_p "$file"; then
cannam@124 9528
cannam@124 9529 # Read the .lo file
cannam@124 9530 func_source $dir/$name
cannam@124 9531
cannam@124 9532 # Add PIC object to the list of files to remove.
cannam@124 9533 if test -n "$pic_object" &&
cannam@124 9534 test "$pic_object" != none; then
cannam@124 9535 func_append rmfiles " $dir/$pic_object"
cannam@124 9536 fi
cannam@124 9537
cannam@124 9538 # Add non-PIC object to the list of files to remove.
cannam@124 9539 if test -n "$non_pic_object" &&
cannam@124 9540 test "$non_pic_object" != none; then
cannam@124 9541 func_append rmfiles " $dir/$non_pic_object"
cannam@124 9542 fi
cannam@124 9543 fi
cannam@124 9544 ;;
cannam@124 9545
cannam@124 9546 *)
cannam@124 9547 if test "$opt_mode" = clean ; then
cannam@124 9548 noexename=$name
cannam@124 9549 case $file in
cannam@124 9550 *.exe)
cannam@124 9551 func_stripname '' '.exe' "$file"
cannam@124 9552 file=$func_stripname_result
cannam@124 9553 func_stripname '' '.exe' "$name"
cannam@124 9554 noexename=$func_stripname_result
cannam@124 9555 # $file with .exe has already been added to rmfiles,
cannam@124 9556 # add $file without .exe
cannam@124 9557 func_append rmfiles " $file"
cannam@124 9558 ;;
cannam@124 9559 esac
cannam@124 9560 # Do a test to see if this is a libtool program.
cannam@124 9561 if func_ltwrapper_p "$file"; then
cannam@124 9562 if func_ltwrapper_executable_p "$file"; then
cannam@124 9563 func_ltwrapper_scriptname "$file"
cannam@124 9564 relink_command=
cannam@124 9565 func_source $func_ltwrapper_scriptname_result
cannam@124 9566 func_append rmfiles " $func_ltwrapper_scriptname_result"
cannam@124 9567 else
cannam@124 9568 relink_command=
cannam@124 9569 func_source $dir/$noexename
cannam@124 9570 fi
cannam@124 9571
cannam@124 9572 # note $name still contains .exe if it was in $file originally
cannam@124 9573 # as does the version of $file that was added into $rmfiles
cannam@124 9574 func_append rmfiles " $odir/$name $odir/${name}S.${objext}"
cannam@124 9575 if test "$fast_install" = yes && test -n "$relink_command"; then
cannam@124 9576 func_append rmfiles " $odir/lt-$name"
cannam@124 9577 fi
cannam@124 9578 if test "X$noexename" != "X$name" ; then
cannam@124 9579 func_append rmfiles " $odir/lt-${noexename}.c"
cannam@124 9580 fi
cannam@124 9581 fi
cannam@124 9582 fi
cannam@124 9583 ;;
cannam@124 9584 esac
cannam@124 9585 func_show_eval "$RM $rmfiles" 'exit_status=1'
cannam@124 9586 done
cannam@124 9587
cannam@124 9588 # Try to remove the ${objdir}s in the directories where we deleted files
cannam@124 9589 for dir in $rmdirs; do
cannam@124 9590 if test -d "$dir"; then
cannam@124 9591 func_show_eval "rmdir $dir >/dev/null 2>&1"
cannam@124 9592 fi
cannam@124 9593 done
cannam@124 9594
cannam@124 9595 exit $exit_status
cannam@124 9596 }
cannam@124 9597
cannam@124 9598 { test "$opt_mode" = uninstall || test "$opt_mode" = clean; } &&
cannam@124 9599 func_mode_uninstall ${1+"$@"}
cannam@124 9600
cannam@124 9601 test -z "$opt_mode" && {
cannam@124 9602 help="$generic_help"
cannam@124 9603 func_fatal_help "you must specify a MODE"
cannam@124 9604 }
cannam@124 9605
cannam@124 9606 test -z "$exec_cmd" && \
cannam@124 9607 func_fatal_help "invalid operation mode \`$opt_mode'"
cannam@124 9608
cannam@124 9609 if test -n "$exec_cmd"; then
cannam@124 9610 eval exec "$exec_cmd"
cannam@124 9611 exit $EXIT_FAILURE
cannam@124 9612 fi
cannam@124 9613
cannam@124 9614 exit $exit_status
cannam@124 9615
cannam@124 9616
cannam@124 9617 # The TAGs below are defined such that we never get into a situation
cannam@124 9618 # in which we disable both kinds of libraries. Given conflicting
cannam@124 9619 # choices, we go for a static library, that is the most portable,
cannam@124 9620 # since we can't tell whether shared libraries were disabled because
cannam@124 9621 # the user asked for that or because the platform doesn't support
cannam@124 9622 # them. This is particularly important on AIX, because we don't
cannam@124 9623 # support having both static and shared libraries enabled at the same
cannam@124 9624 # time on that platform, so we default to a shared-only configuration.
cannam@124 9625 # If a disable-shared tag is given, we'll fallback to a static-only
cannam@124 9626 # configuration. But we'll never go from static-only to shared-only.
cannam@124 9627
cannam@124 9628 # ### BEGIN LIBTOOL TAG CONFIG: disable-shared
cannam@124 9629 build_libtool_libs=no
cannam@124 9630 build_old_libs=yes
cannam@124 9631 # ### END LIBTOOL TAG CONFIG: disable-shared
cannam@124 9632
cannam@124 9633 # ### BEGIN LIBTOOL TAG CONFIG: disable-static
cannam@124 9634 build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`
cannam@124 9635 # ### END LIBTOOL TAG CONFIG: disable-static
cannam@124 9636
cannam@124 9637 # Local Variables:
cannam@124 9638 # mode:shell-script
cannam@124 9639 # sh-indentation:2
cannam@124 9640 # End:
cannam@124 9641 # vi:sw=2
cannam@124 9642