annotate src/fftw-3.3.5/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 7867fa7e1b6b
children
rev   line source
cannam@127 1
cannam@127 2 # libtool (GNU libtool) 2.4.2
cannam@127 3 # Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
cannam@127 4
cannam@127 5 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006,
cannam@127 6 # 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
cannam@127 7 # This is free software; see the source for copying conditions. There is NO
cannam@127 8 # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
cannam@127 9
cannam@127 10 # GNU Libtool is free software; you can redistribute it and/or modify
cannam@127 11 # it under the terms of the GNU General Public License as published by
cannam@127 12 # the Free Software Foundation; either version 2 of the License, or
cannam@127 13 # (at your option) any later version.
cannam@127 14 #
cannam@127 15 # As a special exception to the GNU General Public License,
cannam@127 16 # if you distribute this file as part of a program or library that
cannam@127 17 # is built using GNU Libtool, you may include this file under the
cannam@127 18 # same distribution terms that you use for the rest of that program.
cannam@127 19 #
cannam@127 20 # GNU Libtool is distributed in the hope that it will be useful, but
cannam@127 21 # WITHOUT ANY WARRANTY; without even the implied warranty of
cannam@127 22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
cannam@127 23 # General Public License for more details.
cannam@127 24 #
cannam@127 25 # You should have received a copy of the GNU General Public License
cannam@127 26 # along with GNU Libtool; see the file COPYING. If not, a copy
cannam@127 27 # can be downloaded from http://www.gnu.org/licenses/gpl.html,
cannam@127 28 # or obtained by writing to the Free Software Foundation, Inc.,
cannam@127 29 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
cannam@127 30
cannam@127 31 # Usage: $progname [OPTION]... [MODE-ARG]...
cannam@127 32 #
cannam@127 33 # Provide generalized library-building support services.
cannam@127 34 #
cannam@127 35 # --config show all configuration variables
cannam@127 36 # --debug enable verbose shell tracing
cannam@127 37 # -n, --dry-run display commands without modifying any files
cannam@127 38 # --features display basic configuration information and exit
cannam@127 39 # --mode=MODE use operation mode MODE
cannam@127 40 # --preserve-dup-deps don't remove duplicate dependency libraries
cannam@127 41 # --quiet, --silent don't print informational messages
cannam@127 42 # --no-quiet, --no-silent
cannam@127 43 # print informational messages (default)
cannam@127 44 # --no-warn don't display warning messages
cannam@127 45 # --tag=TAG use configuration variables from tag TAG
cannam@127 46 # -v, --verbose print more informational messages than default
cannam@127 47 # --no-verbose don't print the extra informational messages
cannam@127 48 # --version print version information
cannam@127 49 # -h, --help, --help-all print short, long, or detailed help message
cannam@127 50 #
cannam@127 51 # MODE must be one of the following:
cannam@127 52 #
cannam@127 53 # clean remove files from the build directory
cannam@127 54 # compile compile a source file into a libtool object
cannam@127 55 # execute automatically set library path, then run a program
cannam@127 56 # finish complete the installation of libtool libraries
cannam@127 57 # install install libraries or executables
cannam@127 58 # link create a library or an executable
cannam@127 59 # uninstall remove libraries from an installed directory
cannam@127 60 #
cannam@127 61 # MODE-ARGS vary depending on the MODE. When passed as first option,
cannam@127 62 # `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that.
cannam@127 63 # Try `$progname --help --mode=MODE' for a more detailed description of MODE.
cannam@127 64 #
cannam@127 65 # When reporting a bug, please describe a test case to reproduce it and
cannam@127 66 # include the following information:
cannam@127 67 #
cannam@127 68 # host-triplet: $host
cannam@127 69 # shell: $SHELL
cannam@127 70 # compiler: $LTCC
cannam@127 71 # compiler flags: $LTCFLAGS
cannam@127 72 # linker: $LD (gnu? $with_gnu_ld)
cannam@127 73 # $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.11
cannam@127 74 # automake: $automake_version
cannam@127 75 # autoconf: $autoconf_version
cannam@127 76 #
cannam@127 77 # Report bugs to <bug-libtool@gnu.org>.
cannam@127 78 # GNU libtool home page: <http://www.gnu.org/software/libtool/>.
cannam@127 79 # General help using GNU software: <http://www.gnu.org/gethelp/>.
cannam@127 80
cannam@127 81 PROGRAM=libtool
cannam@127 82 PACKAGE=libtool
cannam@127 83 VERSION="2.4.2 Debian-2.4.2-1.11"
cannam@127 84 TIMESTAMP=""
cannam@127 85 package_revision=1.3337
cannam@127 86
cannam@127 87 # Be Bourne compatible
cannam@127 88 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
cannam@127 89 emulate sh
cannam@127 90 NULLCMD=:
cannam@127 91 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
cannam@127 92 # is contrary to our usage. Disable this feature.
cannam@127 93 alias -g '${1+"$@"}'='"$@"'
cannam@127 94 setopt NO_GLOB_SUBST
cannam@127 95 else
cannam@127 96 case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
cannam@127 97 fi
cannam@127 98 BIN_SH=xpg4; export BIN_SH # for Tru64
cannam@127 99 DUALCASE=1; export DUALCASE # for MKS sh
cannam@127 100
cannam@127 101 # A function that is used when there is no print builtin or printf.
cannam@127 102 func_fallback_echo ()
cannam@127 103 {
cannam@127 104 eval 'cat <<_LTECHO_EOF
cannam@127 105 $1
cannam@127 106 _LTECHO_EOF'
cannam@127 107 }
cannam@127 108
cannam@127 109 # NLS nuisances: We save the old values to restore during execute mode.
cannam@127 110 lt_user_locale=
cannam@127 111 lt_safe_locale=
cannam@127 112 for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
cannam@127 113 do
cannam@127 114 eval "if test \"\${$lt_var+set}\" = set; then
cannam@127 115 save_$lt_var=\$$lt_var
cannam@127 116 $lt_var=C
cannam@127 117 export $lt_var
cannam@127 118 lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\"
cannam@127 119 lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\"
cannam@127 120 fi"
cannam@127 121 done
cannam@127 122 LC_ALL=C
cannam@127 123 LANGUAGE=C
cannam@127 124 export LANGUAGE LC_ALL
cannam@127 125
cannam@127 126 $lt_unset CDPATH
cannam@127 127
cannam@127 128
cannam@127 129 # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
cannam@127 130 # is ksh but when the shell is invoked as "sh" and the current value of
cannam@127 131 # the _XPG environment variable is not equal to 1 (one), the special
cannam@127 132 # positional parameter $0, within a function call, is the name of the
cannam@127 133 # function.
cannam@127 134 progpath="$0"
cannam@127 135
cannam@127 136
cannam@127 137
cannam@127 138 : ${CP="cp -f"}
cannam@127 139 test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'}
cannam@127 140 : ${MAKE="make"}
cannam@127 141 : ${MKDIR="mkdir"}
cannam@127 142 : ${MV="mv -f"}
cannam@127 143 : ${RM="rm -f"}
cannam@127 144 : ${SHELL="${CONFIG_SHELL-/bin/sh}"}
cannam@127 145 : ${Xsed="$SED -e 1s/^X//"}
cannam@127 146
cannam@127 147 # Global variables:
cannam@127 148 EXIT_SUCCESS=0
cannam@127 149 EXIT_FAILURE=1
cannam@127 150 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing.
cannam@127 151 EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake.
cannam@127 152
cannam@127 153 exit_status=$EXIT_SUCCESS
cannam@127 154
cannam@127 155 # Make sure IFS has a sensible default
cannam@127 156 lt_nl='
cannam@127 157 '
cannam@127 158 IFS=" $lt_nl"
cannam@127 159
cannam@127 160 dirname="s,/[^/]*$,,"
cannam@127 161 basename="s,^.*/,,"
cannam@127 162
cannam@127 163 # func_dirname file append nondir_replacement
cannam@127 164 # Compute the dirname of FILE. If nonempty, add APPEND to the result,
cannam@127 165 # otherwise set result to NONDIR_REPLACEMENT.
cannam@127 166 func_dirname ()
cannam@127 167 {
cannam@127 168 func_dirname_result=`$ECHO "${1}" | $SED "$dirname"`
cannam@127 169 if test "X$func_dirname_result" = "X${1}"; then
cannam@127 170 func_dirname_result="${3}"
cannam@127 171 else
cannam@127 172 func_dirname_result="$func_dirname_result${2}"
cannam@127 173 fi
cannam@127 174 } # func_dirname may be replaced by extended shell implementation
cannam@127 175
cannam@127 176
cannam@127 177 # func_basename file
cannam@127 178 func_basename ()
cannam@127 179 {
cannam@127 180 func_basename_result=`$ECHO "${1}" | $SED "$basename"`
cannam@127 181 } # func_basename may be replaced by extended shell implementation
cannam@127 182
cannam@127 183
cannam@127 184 # func_dirname_and_basename file append nondir_replacement
cannam@127 185 # perform func_basename and func_dirname in a single function
cannam@127 186 # call:
cannam@127 187 # dirname: Compute the dirname of FILE. If nonempty,
cannam@127 188 # add APPEND to the result, otherwise set result
cannam@127 189 # to NONDIR_REPLACEMENT.
cannam@127 190 # value returned in "$func_dirname_result"
cannam@127 191 # basename: Compute filename of FILE.
cannam@127 192 # value retuned in "$func_basename_result"
cannam@127 193 # Implementation must be kept synchronized with func_dirname
cannam@127 194 # and func_basename. For efficiency, we do not delegate to
cannam@127 195 # those functions but instead duplicate the functionality here.
cannam@127 196 func_dirname_and_basename ()
cannam@127 197 {
cannam@127 198 # Extract subdirectory from the argument.
cannam@127 199 func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"`
cannam@127 200 if test "X$func_dirname_result" = "X${1}"; then
cannam@127 201 func_dirname_result="${3}"
cannam@127 202 else
cannam@127 203 func_dirname_result="$func_dirname_result${2}"
cannam@127 204 fi
cannam@127 205 func_basename_result=`$ECHO "${1}" | $SED -e "$basename"`
cannam@127 206 } # func_dirname_and_basename may be replaced by extended shell implementation
cannam@127 207
cannam@127 208
cannam@127 209 # func_stripname prefix suffix name
cannam@127 210 # strip PREFIX and SUFFIX off of NAME.
cannam@127 211 # PREFIX and SUFFIX must not contain globbing or regex special
cannam@127 212 # characters, hashes, percent signs, but SUFFIX may contain a leading
cannam@127 213 # dot (in which case that matches only a dot).
cannam@127 214 # func_strip_suffix prefix name
cannam@127 215 func_stripname ()
cannam@127 216 {
cannam@127 217 case ${2} in
cannam@127 218 .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;;
cannam@127 219 *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;;
cannam@127 220 esac
cannam@127 221 } # func_stripname may be replaced by extended shell implementation
cannam@127 222
cannam@127 223
cannam@127 224 # These SED scripts presuppose an absolute path with a trailing slash.
cannam@127 225 pathcar='s,^/\([^/]*\).*$,\1,'
cannam@127 226 pathcdr='s,^/[^/]*,,'
cannam@127 227 removedotparts=':dotsl
cannam@127 228 s@/\./@/@g
cannam@127 229 t dotsl
cannam@127 230 s,/\.$,/,'
cannam@127 231 collapseslashes='s@/\{1,\}@/@g'
cannam@127 232 finalslash='s,/*$,/,'
cannam@127 233
cannam@127 234 # func_normal_abspath PATH
cannam@127 235 # Remove doubled-up and trailing slashes, "." path components,
cannam@127 236 # and cancel out any ".." path components in PATH after making
cannam@127 237 # it an absolute path.
cannam@127 238 # value returned in "$func_normal_abspath_result"
cannam@127 239 func_normal_abspath ()
cannam@127 240 {
cannam@127 241 # Start from root dir and reassemble the path.
cannam@127 242 func_normal_abspath_result=
cannam@127 243 func_normal_abspath_tpath=$1
cannam@127 244 func_normal_abspath_altnamespace=
cannam@127 245 case $func_normal_abspath_tpath in
cannam@127 246 "")
cannam@127 247 # Empty path, that just means $cwd.
cannam@127 248 func_stripname '' '/' "`pwd`"
cannam@127 249 func_normal_abspath_result=$func_stripname_result
cannam@127 250 return
cannam@127 251 ;;
cannam@127 252 # The next three entries are used to spot a run of precisely
cannam@127 253 # two leading slashes without using negated character classes;
cannam@127 254 # we take advantage of case's first-match behaviour.
cannam@127 255 ///*)
cannam@127 256 # Unusual form of absolute path, do nothing.
cannam@127 257 ;;
cannam@127 258 //*)
cannam@127 259 # Not necessarily an ordinary path; POSIX reserves leading '//'
cannam@127 260 # and for example Cygwin uses it to access remote file shares
cannam@127 261 # over CIFS/SMB, so we conserve a leading double slash if found.
cannam@127 262 func_normal_abspath_altnamespace=/
cannam@127 263 ;;
cannam@127 264 /*)
cannam@127 265 # Absolute path, do nothing.
cannam@127 266 ;;
cannam@127 267 *)
cannam@127 268 # Relative path, prepend $cwd.
cannam@127 269 func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath
cannam@127 270 ;;
cannam@127 271 esac
cannam@127 272 # Cancel out all the simple stuff to save iterations. We also want
cannam@127 273 # the path to end with a slash for ease of parsing, so make sure
cannam@127 274 # there is one (and only one) here.
cannam@127 275 func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
cannam@127 276 -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"`
cannam@127 277 while :; do
cannam@127 278 # Processed it all yet?
cannam@127 279 if test "$func_normal_abspath_tpath" = / ; then
cannam@127 280 # If we ascended to the root using ".." the result may be empty now.
cannam@127 281 if test -z "$func_normal_abspath_result" ; then
cannam@127 282 func_normal_abspath_result=/
cannam@127 283 fi
cannam@127 284 break
cannam@127 285 fi
cannam@127 286 func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \
cannam@127 287 -e "$pathcar"`
cannam@127 288 func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
cannam@127 289 -e "$pathcdr"`
cannam@127 290 # Figure out what to do with it
cannam@127 291 case $func_normal_abspath_tcomponent in
cannam@127 292 "")
cannam@127 293 # Trailing empty path component, ignore it.
cannam@127 294 ;;
cannam@127 295 ..)
cannam@127 296 # Parent dir; strip last assembled component from result.
cannam@127 297 func_dirname "$func_normal_abspath_result"
cannam@127 298 func_normal_abspath_result=$func_dirname_result
cannam@127 299 ;;
cannam@127 300 *)
cannam@127 301 # Actual path component, append it.
cannam@127 302 func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent
cannam@127 303 ;;
cannam@127 304 esac
cannam@127 305 done
cannam@127 306 # Restore leading double-slash if one was found on entry.
cannam@127 307 func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result
cannam@127 308 }
cannam@127 309
cannam@127 310 # func_relative_path SRCDIR DSTDIR
cannam@127 311 # generates a relative path from SRCDIR to DSTDIR, with a trailing
cannam@127 312 # slash if non-empty, suitable for immediately appending a filename
cannam@127 313 # without needing to append a separator.
cannam@127 314 # value returned in "$func_relative_path_result"
cannam@127 315 func_relative_path ()
cannam@127 316 {
cannam@127 317 func_relative_path_result=
cannam@127 318 func_normal_abspath "$1"
cannam@127 319 func_relative_path_tlibdir=$func_normal_abspath_result
cannam@127 320 func_normal_abspath "$2"
cannam@127 321 func_relative_path_tbindir=$func_normal_abspath_result
cannam@127 322
cannam@127 323 # Ascend the tree starting from libdir
cannam@127 324 while :; do
cannam@127 325 # check if we have found a prefix of bindir
cannam@127 326 case $func_relative_path_tbindir in
cannam@127 327 $func_relative_path_tlibdir)
cannam@127 328 # found an exact match
cannam@127 329 func_relative_path_tcancelled=
cannam@127 330 break
cannam@127 331 ;;
cannam@127 332 $func_relative_path_tlibdir*)
cannam@127 333 # found a matching prefix
cannam@127 334 func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir"
cannam@127 335 func_relative_path_tcancelled=$func_stripname_result
cannam@127 336 if test -z "$func_relative_path_result"; then
cannam@127 337 func_relative_path_result=.
cannam@127 338 fi
cannam@127 339 break
cannam@127 340 ;;
cannam@127 341 *)
cannam@127 342 func_dirname $func_relative_path_tlibdir
cannam@127 343 func_relative_path_tlibdir=${func_dirname_result}
cannam@127 344 if test "x$func_relative_path_tlibdir" = x ; then
cannam@127 345 # Have to descend all the way to the root!
cannam@127 346 func_relative_path_result=../$func_relative_path_result
cannam@127 347 func_relative_path_tcancelled=$func_relative_path_tbindir
cannam@127 348 break
cannam@127 349 fi
cannam@127 350 func_relative_path_result=../$func_relative_path_result
cannam@127 351 ;;
cannam@127 352 esac
cannam@127 353 done
cannam@127 354
cannam@127 355 # Now calculate path; take care to avoid doubling-up slashes.
cannam@127 356 func_stripname '' '/' "$func_relative_path_result"
cannam@127 357 func_relative_path_result=$func_stripname_result
cannam@127 358 func_stripname '/' '/' "$func_relative_path_tcancelled"
cannam@127 359 if test "x$func_stripname_result" != x ; then
cannam@127 360 func_relative_path_result=${func_relative_path_result}/${func_stripname_result}
cannam@127 361 fi
cannam@127 362
cannam@127 363 # Normalisation. If bindir is libdir, return empty string,
cannam@127 364 # else relative path ending with a slash; either way, target
cannam@127 365 # file name can be directly appended.
cannam@127 366 if test ! -z "$func_relative_path_result"; then
cannam@127 367 func_stripname './' '' "$func_relative_path_result/"
cannam@127 368 func_relative_path_result=$func_stripname_result
cannam@127 369 fi
cannam@127 370 }
cannam@127 371
cannam@127 372 # The name of this program:
cannam@127 373 func_dirname_and_basename "$progpath"
cannam@127 374 progname=$func_basename_result
cannam@127 375
cannam@127 376 # Make sure we have an absolute path for reexecution:
cannam@127 377 case $progpath in
cannam@127 378 [\\/]*|[A-Za-z]:\\*) ;;
cannam@127 379 *[\\/]*)
cannam@127 380 progdir=$func_dirname_result
cannam@127 381 progdir=`cd "$progdir" && pwd`
cannam@127 382 progpath="$progdir/$progname"
cannam@127 383 ;;
cannam@127 384 *)
cannam@127 385 save_IFS="$IFS"
cannam@127 386 IFS=${PATH_SEPARATOR-:}
cannam@127 387 for progdir in $PATH; do
cannam@127 388 IFS="$save_IFS"
cannam@127 389 test -x "$progdir/$progname" && break
cannam@127 390 done
cannam@127 391 IFS="$save_IFS"
cannam@127 392 test -n "$progdir" || progdir=`pwd`
cannam@127 393 progpath="$progdir/$progname"
cannam@127 394 ;;
cannam@127 395 esac
cannam@127 396
cannam@127 397 # Sed substitution that helps us do robust quoting. It backslashifies
cannam@127 398 # metacharacters that are still active within double-quoted strings.
cannam@127 399 Xsed="${SED}"' -e 1s/^X//'
cannam@127 400 sed_quote_subst='s/\([`"$\\]\)/\\\1/g'
cannam@127 401
cannam@127 402 # Same as above, but do not quote variable references.
cannam@127 403 double_quote_subst='s/\(["`\\]\)/\\\1/g'
cannam@127 404
cannam@127 405 # Sed substitution that turns a string into a regex matching for the
cannam@127 406 # string literally.
cannam@127 407 sed_make_literal_regex='s,[].[^$\\*\/],\\&,g'
cannam@127 408
cannam@127 409 # Sed substitution that converts a w32 file name or path
cannam@127 410 # which contains forward slashes, into one that contains
cannam@127 411 # (escaped) backslashes. A very naive implementation.
cannam@127 412 lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g'
cannam@127 413
cannam@127 414 # Re-`\' parameter expansions in output of double_quote_subst that were
cannam@127 415 # `\'-ed in input to the same. If an odd number of `\' preceded a '$'
cannam@127 416 # in input to double_quote_subst, that '$' was protected from expansion.
cannam@127 417 # Since each input `\' is now two `\'s, look for any number of runs of
cannam@127 418 # four `\'s followed by two `\'s and then a '$'. `\' that '$'.
cannam@127 419 bs='\\'
cannam@127 420 bs2='\\\\'
cannam@127 421 bs4='\\\\\\\\'
cannam@127 422 dollar='\$'
cannam@127 423 sed_double_backslash="\
cannam@127 424 s/$bs4/&\\
cannam@127 425 /g
cannam@127 426 s/^$bs2$dollar/$bs&/
cannam@127 427 s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g
cannam@127 428 s/\n//g"
cannam@127 429
cannam@127 430 # Standard options:
cannam@127 431 opt_dry_run=false
cannam@127 432 opt_help=false
cannam@127 433 opt_quiet=false
cannam@127 434 opt_verbose=false
cannam@127 435 opt_warning=:
cannam@127 436
cannam@127 437 # func_echo arg...
cannam@127 438 # Echo program name prefixed message, along with the current mode
cannam@127 439 # name if it has been set yet.
cannam@127 440 func_echo ()
cannam@127 441 {
cannam@127 442 $ECHO "$progname: ${opt_mode+$opt_mode: }$*"
cannam@127 443 }
cannam@127 444
cannam@127 445 # func_verbose arg...
cannam@127 446 # Echo program name prefixed message in verbose mode only.
cannam@127 447 func_verbose ()
cannam@127 448 {
cannam@127 449 $opt_verbose && func_echo ${1+"$@"}
cannam@127 450
cannam@127 451 # A bug in bash halts the script if the last line of a function
cannam@127 452 # fails when set -e is in force, so we need another command to
cannam@127 453 # work around that:
cannam@127 454 :
cannam@127 455 }
cannam@127 456
cannam@127 457 # func_echo_all arg...
cannam@127 458 # Invoke $ECHO with all args, space-separated.
cannam@127 459 func_echo_all ()
cannam@127 460 {
cannam@127 461 $ECHO "$*"
cannam@127 462 }
cannam@127 463
cannam@127 464 # func_error arg...
cannam@127 465 # Echo program name prefixed message to standard error.
cannam@127 466 func_error ()
cannam@127 467 {
cannam@127 468 $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2
cannam@127 469 }
cannam@127 470
cannam@127 471 # func_warning arg...
cannam@127 472 # Echo program name prefixed warning message to standard error.
cannam@127 473 func_warning ()
cannam@127 474 {
cannam@127 475 $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2
cannam@127 476
cannam@127 477 # bash bug again:
cannam@127 478 :
cannam@127 479 }
cannam@127 480
cannam@127 481 # func_fatal_error arg...
cannam@127 482 # Echo program name prefixed message to standard error, and exit.
cannam@127 483 func_fatal_error ()
cannam@127 484 {
cannam@127 485 func_error ${1+"$@"}
cannam@127 486 exit $EXIT_FAILURE
cannam@127 487 }
cannam@127 488
cannam@127 489 # func_fatal_help arg...
cannam@127 490 # Echo program name prefixed message to standard error, followed by
cannam@127 491 # a help hint, and exit.
cannam@127 492 func_fatal_help ()
cannam@127 493 {
cannam@127 494 func_error ${1+"$@"}
cannam@127 495 func_fatal_error "$help"
cannam@127 496 }
cannam@127 497 help="Try \`$progname --help' for more information." ## default
cannam@127 498
cannam@127 499
cannam@127 500 # func_grep expression filename
cannam@127 501 # Check whether EXPRESSION matches any line of FILENAME, without output.
cannam@127 502 func_grep ()
cannam@127 503 {
cannam@127 504 $GREP "$1" "$2" >/dev/null 2>&1
cannam@127 505 }
cannam@127 506
cannam@127 507
cannam@127 508 # func_mkdir_p directory-path
cannam@127 509 # Make sure the entire path to DIRECTORY-PATH is available.
cannam@127 510 func_mkdir_p ()
cannam@127 511 {
cannam@127 512 my_directory_path="$1"
cannam@127 513 my_dir_list=
cannam@127 514
cannam@127 515 if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then
cannam@127 516
cannam@127 517 # Protect directory names starting with `-'
cannam@127 518 case $my_directory_path in
cannam@127 519 -*) my_directory_path="./$my_directory_path" ;;
cannam@127 520 esac
cannam@127 521
cannam@127 522 # While some portion of DIR does not yet exist...
cannam@127 523 while test ! -d "$my_directory_path"; do
cannam@127 524 # ...make a list in topmost first order. Use a colon delimited
cannam@127 525 # list incase some portion of path contains whitespace.
cannam@127 526 my_dir_list="$my_directory_path:$my_dir_list"
cannam@127 527
cannam@127 528 # If the last portion added has no slash in it, the list is done
cannam@127 529 case $my_directory_path in */*) ;; *) break ;; esac
cannam@127 530
cannam@127 531 # ...otherwise throw away the child directory and loop
cannam@127 532 my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"`
cannam@127 533 done
cannam@127 534 my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'`
cannam@127 535
cannam@127 536 save_mkdir_p_IFS="$IFS"; IFS=':'
cannam@127 537 for my_dir in $my_dir_list; do
cannam@127 538 IFS="$save_mkdir_p_IFS"
cannam@127 539 # mkdir can fail with a `File exist' error if two processes
cannam@127 540 # try to create one of the directories concurrently. Don't
cannam@127 541 # stop in that case!
cannam@127 542 $MKDIR "$my_dir" 2>/dev/null || :
cannam@127 543 done
cannam@127 544 IFS="$save_mkdir_p_IFS"
cannam@127 545
cannam@127 546 # Bail out if we (or some other process) failed to create a directory.
cannam@127 547 test -d "$my_directory_path" || \
cannam@127 548 func_fatal_error "Failed to create \`$1'"
cannam@127 549 fi
cannam@127 550 }
cannam@127 551
cannam@127 552
cannam@127 553 # func_mktempdir [string]
cannam@127 554 # Make a temporary directory that won't clash with other running
cannam@127 555 # libtool processes, and avoids race conditions if possible. If
cannam@127 556 # given, STRING is the basename for that directory.
cannam@127 557 func_mktempdir ()
cannam@127 558 {
cannam@127 559 my_template="${TMPDIR-/tmp}/${1-$progname}"
cannam@127 560
cannam@127 561 if test "$opt_dry_run" = ":"; then
cannam@127 562 # Return a directory name, but don't create it in dry-run mode
cannam@127 563 my_tmpdir="${my_template}-$$"
cannam@127 564 else
cannam@127 565
cannam@127 566 # If mktemp works, use that first and foremost
cannam@127 567 my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null`
cannam@127 568
cannam@127 569 if test ! -d "$my_tmpdir"; then
cannam@127 570 # Failing that, at least try and use $RANDOM to avoid a race
cannam@127 571 my_tmpdir="${my_template}-${RANDOM-0}$$"
cannam@127 572
cannam@127 573 save_mktempdir_umask=`umask`
cannam@127 574 umask 0077
cannam@127 575 $MKDIR "$my_tmpdir"
cannam@127 576 umask $save_mktempdir_umask
cannam@127 577 fi
cannam@127 578
cannam@127 579 # If we're not in dry-run mode, bomb out on failure
cannam@127 580 test -d "$my_tmpdir" || \
cannam@127 581 func_fatal_error "cannot create temporary directory \`$my_tmpdir'"
cannam@127 582 fi
cannam@127 583
cannam@127 584 $ECHO "$my_tmpdir"
cannam@127 585 }
cannam@127 586
cannam@127 587
cannam@127 588 # func_quote_for_eval arg
cannam@127 589 # Aesthetically quote ARG to be evaled later.
cannam@127 590 # This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT
cannam@127 591 # is double-quoted, suitable for a subsequent eval, whereas
cannam@127 592 # FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters
cannam@127 593 # which are still active within double quotes backslashified.
cannam@127 594 func_quote_for_eval ()
cannam@127 595 {
cannam@127 596 case $1 in
cannam@127 597 *[\\\`\"\$]*)
cannam@127 598 func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;;
cannam@127 599 *)
cannam@127 600 func_quote_for_eval_unquoted_result="$1" ;;
cannam@127 601 esac
cannam@127 602
cannam@127 603 case $func_quote_for_eval_unquoted_result in
cannam@127 604 # Double-quote args containing shell metacharacters to delay
cannam@127 605 # word splitting, command substitution and and variable
cannam@127 606 # expansion for a subsequent eval.
cannam@127 607 # Many Bourne shells cannot handle close brackets correctly
cannam@127 608 # in scan sets, so we specify it separately.
cannam@127 609 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
cannam@127 610 func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\""
cannam@127 611 ;;
cannam@127 612 *)
cannam@127 613 func_quote_for_eval_result="$func_quote_for_eval_unquoted_result"
cannam@127 614 esac
cannam@127 615 }
cannam@127 616
cannam@127 617
cannam@127 618 # func_quote_for_expand arg
cannam@127 619 # Aesthetically quote ARG to be evaled later; same as above,
cannam@127 620 # but do not quote variable references.
cannam@127 621 func_quote_for_expand ()
cannam@127 622 {
cannam@127 623 case $1 in
cannam@127 624 *[\\\`\"]*)
cannam@127 625 my_arg=`$ECHO "$1" | $SED \
cannam@127 626 -e "$double_quote_subst" -e "$sed_double_backslash"` ;;
cannam@127 627 *)
cannam@127 628 my_arg="$1" ;;
cannam@127 629 esac
cannam@127 630
cannam@127 631 case $my_arg in
cannam@127 632 # Double-quote args containing shell metacharacters to delay
cannam@127 633 # word splitting and command substitution for a subsequent eval.
cannam@127 634 # Many Bourne shells cannot handle close brackets correctly
cannam@127 635 # in scan sets, so we specify it separately.
cannam@127 636 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
cannam@127 637 my_arg="\"$my_arg\""
cannam@127 638 ;;
cannam@127 639 esac
cannam@127 640
cannam@127 641 func_quote_for_expand_result="$my_arg"
cannam@127 642 }
cannam@127 643
cannam@127 644
cannam@127 645 # func_show_eval cmd [fail_exp]
cannam@127 646 # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is
cannam@127 647 # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP
cannam@127 648 # is given, then evaluate it.
cannam@127 649 func_show_eval ()
cannam@127 650 {
cannam@127 651 my_cmd="$1"
cannam@127 652 my_fail_exp="${2-:}"
cannam@127 653
cannam@127 654 ${opt_silent-false} || {
cannam@127 655 func_quote_for_expand "$my_cmd"
cannam@127 656 eval "func_echo $func_quote_for_expand_result"
cannam@127 657 }
cannam@127 658
cannam@127 659 if ${opt_dry_run-false}; then :; else
cannam@127 660 eval "$my_cmd"
cannam@127 661 my_status=$?
cannam@127 662 if test "$my_status" -eq 0; then :; else
cannam@127 663 eval "(exit $my_status); $my_fail_exp"
cannam@127 664 fi
cannam@127 665 fi
cannam@127 666 }
cannam@127 667
cannam@127 668
cannam@127 669 # func_show_eval_locale cmd [fail_exp]
cannam@127 670 # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is
cannam@127 671 # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP
cannam@127 672 # is given, then evaluate it. Use the saved locale for evaluation.
cannam@127 673 func_show_eval_locale ()
cannam@127 674 {
cannam@127 675 my_cmd="$1"
cannam@127 676 my_fail_exp="${2-:}"
cannam@127 677
cannam@127 678 ${opt_silent-false} || {
cannam@127 679 func_quote_for_expand "$my_cmd"
cannam@127 680 eval "func_echo $func_quote_for_expand_result"
cannam@127 681 }
cannam@127 682
cannam@127 683 if ${opt_dry_run-false}; then :; else
cannam@127 684 eval "$lt_user_locale
cannam@127 685 $my_cmd"
cannam@127 686 my_status=$?
cannam@127 687 eval "$lt_safe_locale"
cannam@127 688 if test "$my_status" -eq 0; then :; else
cannam@127 689 eval "(exit $my_status); $my_fail_exp"
cannam@127 690 fi
cannam@127 691 fi
cannam@127 692 }
cannam@127 693
cannam@127 694 # func_tr_sh
cannam@127 695 # Turn $1 into a string suitable for a shell variable name.
cannam@127 696 # Result is stored in $func_tr_sh_result. All characters
cannam@127 697 # not in the set a-zA-Z0-9_ are replaced with '_'. Further,
cannam@127 698 # if $1 begins with a digit, a '_' is prepended as well.
cannam@127 699 func_tr_sh ()
cannam@127 700 {
cannam@127 701 case $1 in
cannam@127 702 [0-9]* | *[!a-zA-Z0-9_]*)
cannam@127 703 func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'`
cannam@127 704 ;;
cannam@127 705 * )
cannam@127 706 func_tr_sh_result=$1
cannam@127 707 ;;
cannam@127 708 esac
cannam@127 709 }
cannam@127 710
cannam@127 711
cannam@127 712 # func_version
cannam@127 713 # Echo version message to standard output and exit.
cannam@127 714 func_version ()
cannam@127 715 {
cannam@127 716 $opt_debug
cannam@127 717
cannam@127 718 $SED -n '/(C)/!b go
cannam@127 719 :more
cannam@127 720 /\./!{
cannam@127 721 N
cannam@127 722 s/\n# / /
cannam@127 723 b more
cannam@127 724 }
cannam@127 725 :go
cannam@127 726 /^# '$PROGRAM' (GNU /,/# warranty; / {
cannam@127 727 s/^# //
cannam@127 728 s/^# *$//
cannam@127 729 s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/
cannam@127 730 p
cannam@127 731 }' < "$progpath"
cannam@127 732 exit $?
cannam@127 733 }
cannam@127 734
cannam@127 735 # func_usage
cannam@127 736 # Echo short help message to standard output and exit.
cannam@127 737 func_usage ()
cannam@127 738 {
cannam@127 739 $opt_debug
cannam@127 740
cannam@127 741 $SED -n '/^# Usage:/,/^# *.*--help/ {
cannam@127 742 s/^# //
cannam@127 743 s/^# *$//
cannam@127 744 s/\$progname/'$progname'/
cannam@127 745 p
cannam@127 746 }' < "$progpath"
cannam@127 747 echo
cannam@127 748 $ECHO "run \`$progname --help | more' for full usage"
cannam@127 749 exit $?
cannam@127 750 }
cannam@127 751
cannam@127 752 # func_help [NOEXIT]
cannam@127 753 # Echo long help message to standard output and exit,
cannam@127 754 # unless 'noexit' is passed as argument.
cannam@127 755 func_help ()
cannam@127 756 {
cannam@127 757 $opt_debug
cannam@127 758
cannam@127 759 $SED -n '/^# Usage:/,/# Report bugs to/ {
cannam@127 760 :print
cannam@127 761 s/^# //
cannam@127 762 s/^# *$//
cannam@127 763 s*\$progname*'$progname'*
cannam@127 764 s*\$host*'"$host"'*
cannam@127 765 s*\$SHELL*'"$SHELL"'*
cannam@127 766 s*\$LTCC*'"$LTCC"'*
cannam@127 767 s*\$LTCFLAGS*'"$LTCFLAGS"'*
cannam@127 768 s*\$LD*'"$LD"'*
cannam@127 769 s/\$with_gnu_ld/'"$with_gnu_ld"'/
cannam@127 770 s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/
cannam@127 771 s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/
cannam@127 772 p
cannam@127 773 d
cannam@127 774 }
cannam@127 775 /^# .* home page:/b print
cannam@127 776 /^# General help using/b print
cannam@127 777 ' < "$progpath"
cannam@127 778 ret=$?
cannam@127 779 if test -z "$1"; then
cannam@127 780 exit $ret
cannam@127 781 fi
cannam@127 782 }
cannam@127 783
cannam@127 784 # func_missing_arg argname
cannam@127 785 # Echo program name prefixed message to standard error and set global
cannam@127 786 # exit_cmd.
cannam@127 787 func_missing_arg ()
cannam@127 788 {
cannam@127 789 $opt_debug
cannam@127 790
cannam@127 791 func_error "missing argument for $1."
cannam@127 792 exit_cmd=exit
cannam@127 793 }
cannam@127 794
cannam@127 795
cannam@127 796 # func_split_short_opt shortopt
cannam@127 797 # Set func_split_short_opt_name and func_split_short_opt_arg shell
cannam@127 798 # variables after splitting SHORTOPT after the 2nd character.
cannam@127 799 func_split_short_opt ()
cannam@127 800 {
cannam@127 801 my_sed_short_opt='1s/^\(..\).*$/\1/;q'
cannam@127 802 my_sed_short_rest='1s/^..\(.*\)$/\1/;q'
cannam@127 803
cannam@127 804 func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"`
cannam@127 805 func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"`
cannam@127 806 } # func_split_short_opt may be replaced by extended shell implementation
cannam@127 807
cannam@127 808
cannam@127 809 # func_split_long_opt longopt
cannam@127 810 # Set func_split_long_opt_name and func_split_long_opt_arg shell
cannam@127 811 # variables after splitting LONGOPT at the `=' sign.
cannam@127 812 func_split_long_opt ()
cannam@127 813 {
cannam@127 814 my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q'
cannam@127 815 my_sed_long_arg='1s/^--[^=]*=//'
cannam@127 816
cannam@127 817 func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"`
cannam@127 818 func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"`
cannam@127 819 } # func_split_long_opt may be replaced by extended shell implementation
cannam@127 820
cannam@127 821 exit_cmd=:
cannam@127 822
cannam@127 823
cannam@127 824
cannam@127 825
cannam@127 826
cannam@127 827 magic="%%%MAGIC variable%%%"
cannam@127 828 magic_exe="%%%MAGIC EXE variable%%%"
cannam@127 829
cannam@127 830 # Global variables.
cannam@127 831 nonopt=
cannam@127 832 preserve_args=
cannam@127 833 lo2o="s/\\.lo\$/.${objext}/"
cannam@127 834 o2lo="s/\\.${objext}\$/.lo/"
cannam@127 835 extracted_archives=
cannam@127 836 extracted_serial=0
cannam@127 837
cannam@127 838 # If this variable is set in any of the actions, the command in it
cannam@127 839 # will be execed at the end. This prevents here-documents from being
cannam@127 840 # left over by shells.
cannam@127 841 exec_cmd=
cannam@127 842
cannam@127 843 # func_append var value
cannam@127 844 # Append VALUE to the end of shell variable VAR.
cannam@127 845 func_append ()
cannam@127 846 {
cannam@127 847 eval "${1}=\$${1}\${2}"
cannam@127 848 } # func_append may be replaced by extended shell implementation
cannam@127 849
cannam@127 850 # func_append_quoted var value
cannam@127 851 # Quote VALUE and append to the end of shell variable VAR, separated
cannam@127 852 # by a space.
cannam@127 853 func_append_quoted ()
cannam@127 854 {
cannam@127 855 func_quote_for_eval "${2}"
cannam@127 856 eval "${1}=\$${1}\\ \$func_quote_for_eval_result"
cannam@127 857 } # func_append_quoted may be replaced by extended shell implementation
cannam@127 858
cannam@127 859
cannam@127 860 # func_arith arithmetic-term...
cannam@127 861 func_arith ()
cannam@127 862 {
cannam@127 863 func_arith_result=`expr "${@}"`
cannam@127 864 } # func_arith may be replaced by extended shell implementation
cannam@127 865
cannam@127 866
cannam@127 867 # func_len string
cannam@127 868 # STRING may not start with a hyphen.
cannam@127 869 func_len ()
cannam@127 870 {
cannam@127 871 func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len`
cannam@127 872 } # func_len may be replaced by extended shell implementation
cannam@127 873
cannam@127 874
cannam@127 875 # func_lo2o object
cannam@127 876 func_lo2o ()
cannam@127 877 {
cannam@127 878 func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"`
cannam@127 879 } # func_lo2o may be replaced by extended shell implementation
cannam@127 880
cannam@127 881
cannam@127 882 # func_xform libobj-or-source
cannam@127 883 func_xform ()
cannam@127 884 {
cannam@127 885 func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'`
cannam@127 886 } # func_xform may be replaced by extended shell implementation
cannam@127 887
cannam@127 888
cannam@127 889 # func_fatal_configuration arg...
cannam@127 890 # Echo program name prefixed message to standard error, followed by
cannam@127 891 # a configuration failure hint, and exit.
cannam@127 892 func_fatal_configuration ()
cannam@127 893 {
cannam@127 894 func_error ${1+"$@"}
cannam@127 895 func_error "See the $PACKAGE documentation for more information."
cannam@127 896 func_fatal_error "Fatal configuration error."
cannam@127 897 }
cannam@127 898
cannam@127 899
cannam@127 900 # func_config
cannam@127 901 # Display the configuration for all the tags in this script.
cannam@127 902 func_config ()
cannam@127 903 {
cannam@127 904 re_begincf='^# ### BEGIN LIBTOOL'
cannam@127 905 re_endcf='^# ### END LIBTOOL'
cannam@127 906
cannam@127 907 # Default configuration.
cannam@127 908 $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath"
cannam@127 909
cannam@127 910 # Now print the configurations for the tags.
cannam@127 911 for tagname in $taglist; do
cannam@127 912 $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath"
cannam@127 913 done
cannam@127 914
cannam@127 915 exit $?
cannam@127 916 }
cannam@127 917
cannam@127 918 # func_features
cannam@127 919 # Display the features supported by this script.
cannam@127 920 func_features ()
cannam@127 921 {
cannam@127 922 echo "host: $host"
cannam@127 923 if test "$build_libtool_libs" = yes; then
cannam@127 924 echo "enable shared libraries"
cannam@127 925 else
cannam@127 926 echo "disable shared libraries"
cannam@127 927 fi
cannam@127 928 if test "$build_old_libs" = yes; then
cannam@127 929 echo "enable static libraries"
cannam@127 930 else
cannam@127 931 echo "disable static libraries"
cannam@127 932 fi
cannam@127 933
cannam@127 934 exit $?
cannam@127 935 }
cannam@127 936
cannam@127 937 # func_enable_tag tagname
cannam@127 938 # Verify that TAGNAME is valid, and either flag an error and exit, or
cannam@127 939 # enable the TAGNAME tag. We also add TAGNAME to the global $taglist
cannam@127 940 # variable here.
cannam@127 941 func_enable_tag ()
cannam@127 942 {
cannam@127 943 # Global variable:
cannam@127 944 tagname="$1"
cannam@127 945
cannam@127 946 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
cannam@127 947 re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
cannam@127 948 sed_extractcf="/$re_begincf/,/$re_endcf/p"
cannam@127 949
cannam@127 950 # Validate tagname.
cannam@127 951 case $tagname in
cannam@127 952 *[!-_A-Za-z0-9,/]*)
cannam@127 953 func_fatal_error "invalid tag name: $tagname"
cannam@127 954 ;;
cannam@127 955 esac
cannam@127 956
cannam@127 957 # Don't test for the "default" C tag, as we know it's
cannam@127 958 # there but not specially marked.
cannam@127 959 case $tagname in
cannam@127 960 CC) ;;
cannam@127 961 *)
cannam@127 962 if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then
cannam@127 963 taglist="$taglist $tagname"
cannam@127 964
cannam@127 965 # Evaluate the configuration. Be careful to quote the path
cannam@127 966 # and the sed script, to avoid splitting on whitespace, but
cannam@127 967 # also don't use non-portable quotes within backquotes within
cannam@127 968 # quotes we have to do it in 2 steps:
cannam@127 969 extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"`
cannam@127 970 eval "$extractedcf"
cannam@127 971 else
cannam@127 972 func_error "ignoring unknown tag $tagname"
cannam@127 973 fi
cannam@127 974 ;;
cannam@127 975 esac
cannam@127 976 }
cannam@127 977
cannam@127 978 # func_check_version_match
cannam@127 979 # Ensure that we are using m4 macros, and libtool script from the same
cannam@127 980 # release of libtool.
cannam@127 981 func_check_version_match ()
cannam@127 982 {
cannam@127 983 if test "$package_revision" != "$macro_revision"; then
cannam@127 984 if test "$VERSION" != "$macro_version"; then
cannam@127 985 if test -z "$macro_version"; then
cannam@127 986 cat >&2 <<_LT_EOF
cannam@127 987 $progname: Version mismatch error. This is $PACKAGE $VERSION, but the
cannam@127 988 $progname: definition of this LT_INIT comes from an older release.
cannam@127 989 $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
cannam@127 990 $progname: and run autoconf again.
cannam@127 991 _LT_EOF
cannam@127 992 else
cannam@127 993 cat >&2 <<_LT_EOF
cannam@127 994 $progname: Version mismatch error. This is $PACKAGE $VERSION, but the
cannam@127 995 $progname: definition of this LT_INIT comes from $PACKAGE $macro_version.
cannam@127 996 $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
cannam@127 997 $progname: and run autoconf again.
cannam@127 998 _LT_EOF
cannam@127 999 fi
cannam@127 1000 else
cannam@127 1001 cat >&2 <<_LT_EOF
cannam@127 1002 $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision,
cannam@127 1003 $progname: but the definition of this LT_INIT comes from revision $macro_revision.
cannam@127 1004 $progname: You should recreate aclocal.m4 with macros from revision $package_revision
cannam@127 1005 $progname: of $PACKAGE $VERSION and run autoconf again.
cannam@127 1006 _LT_EOF
cannam@127 1007 fi
cannam@127 1008
cannam@127 1009 exit $EXIT_MISMATCH
cannam@127 1010 fi
cannam@127 1011 }
cannam@127 1012
cannam@127 1013
cannam@127 1014 # Shorthand for --mode=foo, only valid as the first argument
cannam@127 1015 case $1 in
cannam@127 1016 clean|clea|cle|cl)
cannam@127 1017 shift; set dummy --mode clean ${1+"$@"}; shift
cannam@127 1018 ;;
cannam@127 1019 compile|compil|compi|comp|com|co|c)
cannam@127 1020 shift; set dummy --mode compile ${1+"$@"}; shift
cannam@127 1021 ;;
cannam@127 1022 execute|execut|execu|exec|exe|ex|e)
cannam@127 1023 shift; set dummy --mode execute ${1+"$@"}; shift
cannam@127 1024 ;;
cannam@127 1025 finish|finis|fini|fin|fi|f)
cannam@127 1026 shift; set dummy --mode finish ${1+"$@"}; shift
cannam@127 1027 ;;
cannam@127 1028 install|instal|insta|inst|ins|in|i)
cannam@127 1029 shift; set dummy --mode install ${1+"$@"}; shift
cannam@127 1030 ;;
cannam@127 1031 link|lin|li|l)
cannam@127 1032 shift; set dummy --mode link ${1+"$@"}; shift
cannam@127 1033 ;;
cannam@127 1034 uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)
cannam@127 1035 shift; set dummy --mode uninstall ${1+"$@"}; shift
cannam@127 1036 ;;
cannam@127 1037 esac
cannam@127 1038
cannam@127 1039
cannam@127 1040
cannam@127 1041 # Option defaults:
cannam@127 1042 opt_debug=:
cannam@127 1043 opt_dry_run=false
cannam@127 1044 opt_config=false
cannam@127 1045 opt_preserve_dup_deps=false
cannam@127 1046 opt_features=false
cannam@127 1047 opt_finish=false
cannam@127 1048 opt_help=false
cannam@127 1049 opt_help_all=false
cannam@127 1050 opt_silent=:
cannam@127 1051 opt_warning=:
cannam@127 1052 opt_verbose=:
cannam@127 1053 opt_silent=false
cannam@127 1054 opt_verbose=false
cannam@127 1055
cannam@127 1056
cannam@127 1057 # Parse options once, thoroughly. This comes as soon as possible in the
cannam@127 1058 # script to make things like `--version' happen as quickly as we can.
cannam@127 1059 {
cannam@127 1060 # this just eases exit handling
cannam@127 1061 while test $# -gt 0; do
cannam@127 1062 opt="$1"
cannam@127 1063 shift
cannam@127 1064 case $opt in
cannam@127 1065 --debug|-x) opt_debug='set -x'
cannam@127 1066 func_echo "enabling shell trace mode"
cannam@127 1067 $opt_debug
cannam@127 1068 ;;
cannam@127 1069 --dry-run|--dryrun|-n)
cannam@127 1070 opt_dry_run=:
cannam@127 1071 ;;
cannam@127 1072 --config)
cannam@127 1073 opt_config=:
cannam@127 1074 func_config
cannam@127 1075 ;;
cannam@127 1076 --dlopen|-dlopen)
cannam@127 1077 optarg="$1"
cannam@127 1078 opt_dlopen="${opt_dlopen+$opt_dlopen
cannam@127 1079 }$optarg"
cannam@127 1080 shift
cannam@127 1081 ;;
cannam@127 1082 --preserve-dup-deps)
cannam@127 1083 opt_preserve_dup_deps=:
cannam@127 1084 ;;
cannam@127 1085 --features)
cannam@127 1086 opt_features=:
cannam@127 1087 func_features
cannam@127 1088 ;;
cannam@127 1089 --finish)
cannam@127 1090 opt_finish=:
cannam@127 1091 set dummy --mode finish ${1+"$@"}; shift
cannam@127 1092 ;;
cannam@127 1093 --help)
cannam@127 1094 opt_help=:
cannam@127 1095 ;;
cannam@127 1096 --help-all)
cannam@127 1097 opt_help_all=:
cannam@127 1098 opt_help=': help-all'
cannam@127 1099 ;;
cannam@127 1100 --mode)
cannam@127 1101 test $# = 0 && func_missing_arg $opt && break
cannam@127 1102 optarg="$1"
cannam@127 1103 opt_mode="$optarg"
cannam@127 1104 case $optarg in
cannam@127 1105 # Valid mode arguments:
cannam@127 1106 clean|compile|execute|finish|install|link|relink|uninstall) ;;
cannam@127 1107
cannam@127 1108 # Catch anything else as an error
cannam@127 1109 *) func_error "invalid argument for $opt"
cannam@127 1110 exit_cmd=exit
cannam@127 1111 break
cannam@127 1112 ;;
cannam@127 1113 esac
cannam@127 1114 shift
cannam@127 1115 ;;
cannam@127 1116 --no-silent|--no-quiet)
cannam@127 1117 opt_silent=false
cannam@127 1118 func_append preserve_args " $opt"
cannam@127 1119 ;;
cannam@127 1120 --no-warning|--no-warn)
cannam@127 1121 opt_warning=false
cannam@127 1122 func_append preserve_args " $opt"
cannam@127 1123 ;;
cannam@127 1124 --no-verbose)
cannam@127 1125 opt_verbose=false
cannam@127 1126 func_append preserve_args " $opt"
cannam@127 1127 ;;
cannam@127 1128 --silent|--quiet)
cannam@127 1129 opt_silent=:
cannam@127 1130 func_append preserve_args " $opt"
cannam@127 1131 opt_verbose=false
cannam@127 1132 ;;
cannam@127 1133 --verbose|-v)
cannam@127 1134 opt_verbose=:
cannam@127 1135 func_append preserve_args " $opt"
cannam@127 1136 opt_silent=false
cannam@127 1137 ;;
cannam@127 1138 --tag)
cannam@127 1139 test $# = 0 && func_missing_arg $opt && break
cannam@127 1140 optarg="$1"
cannam@127 1141 opt_tag="$optarg"
cannam@127 1142 func_append preserve_args " $opt $optarg"
cannam@127 1143 func_enable_tag "$optarg"
cannam@127 1144 shift
cannam@127 1145 ;;
cannam@127 1146
cannam@127 1147 -\?|-h) func_usage ;;
cannam@127 1148 --help) func_help ;;
cannam@127 1149 --version) func_version ;;
cannam@127 1150
cannam@127 1151 # Separate optargs to long options:
cannam@127 1152 --*=*)
cannam@127 1153 func_split_long_opt "$opt"
cannam@127 1154 set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"}
cannam@127 1155 shift
cannam@127 1156 ;;
cannam@127 1157
cannam@127 1158 # Separate non-argument short options:
cannam@127 1159 -\?*|-h*|-n*|-v*)
cannam@127 1160 func_split_short_opt "$opt"
cannam@127 1161 set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"}
cannam@127 1162 shift
cannam@127 1163 ;;
cannam@127 1164
cannam@127 1165 --) break ;;
cannam@127 1166 -*) func_fatal_help "unrecognized option \`$opt'" ;;
cannam@127 1167 *) set dummy "$opt" ${1+"$@"}; shift; break ;;
cannam@127 1168 esac
cannam@127 1169 done
cannam@127 1170
cannam@127 1171 # Validate options:
cannam@127 1172
cannam@127 1173 # save first non-option argument
cannam@127 1174 if test "$#" -gt 0; then
cannam@127 1175 nonopt="$opt"
cannam@127 1176 shift
cannam@127 1177 fi
cannam@127 1178
cannam@127 1179 # preserve --debug
cannam@127 1180 test "$opt_debug" = : || func_append preserve_args " --debug"
cannam@127 1181
cannam@127 1182 case $host in
cannam@127 1183 *cygwin* | *mingw* | *pw32* | *cegcc*)
cannam@127 1184 # don't eliminate duplications in $postdeps and $predeps
cannam@127 1185 opt_duplicate_compiler_generated_deps=:
cannam@127 1186 ;;
cannam@127 1187 *)
cannam@127 1188 opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps
cannam@127 1189 ;;
cannam@127 1190 esac
cannam@127 1191
cannam@127 1192 $opt_help || {
cannam@127 1193 # Sanity checks first:
cannam@127 1194 func_check_version_match
cannam@127 1195
cannam@127 1196 if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
cannam@127 1197 func_fatal_configuration "not configured to build any kind of library"
cannam@127 1198 fi
cannam@127 1199
cannam@127 1200 # Darwin sucks
cannam@127 1201 eval std_shrext=\"$shrext_cmds\"
cannam@127 1202
cannam@127 1203 # Only execute mode is allowed to have -dlopen flags.
cannam@127 1204 if test -n "$opt_dlopen" && test "$opt_mode" != execute; then
cannam@127 1205 func_error "unrecognized option \`-dlopen'"
cannam@127 1206 $ECHO "$help" 1>&2
cannam@127 1207 exit $EXIT_FAILURE
cannam@127 1208 fi
cannam@127 1209
cannam@127 1210 # Change the help message to a mode-specific one.
cannam@127 1211 generic_help="$help"
cannam@127 1212 help="Try \`$progname --help --mode=$opt_mode' for more information."
cannam@127 1213 }
cannam@127 1214
cannam@127 1215
cannam@127 1216 # Bail if the options were screwed
cannam@127 1217 $exit_cmd $EXIT_FAILURE
cannam@127 1218 }
cannam@127 1219
cannam@127 1220
cannam@127 1221
cannam@127 1222
cannam@127 1223 ## ----------- ##
cannam@127 1224 ## Main. ##
cannam@127 1225 ## ----------- ##
cannam@127 1226
cannam@127 1227 # func_lalib_p file
cannam@127 1228 # True iff FILE is a libtool `.la' library or `.lo' object file.
cannam@127 1229 # This function is only a basic sanity check; it will hardly flush out
cannam@127 1230 # determined imposters.
cannam@127 1231 func_lalib_p ()
cannam@127 1232 {
cannam@127 1233 test -f "$1" &&
cannam@127 1234 $SED -e 4q "$1" 2>/dev/null \
cannam@127 1235 | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1
cannam@127 1236 }
cannam@127 1237
cannam@127 1238 # func_lalib_unsafe_p file
cannam@127 1239 # True iff FILE is a libtool `.la' library or `.lo' object file.
cannam@127 1240 # This function implements the same check as func_lalib_p without
cannam@127 1241 # resorting to external programs. To this end, it redirects stdin and
cannam@127 1242 # closes it afterwards, without saving the original file descriptor.
cannam@127 1243 # As a safety measure, use it only where a negative result would be
cannam@127 1244 # fatal anyway. Works if `file' does not exist.
cannam@127 1245 func_lalib_unsafe_p ()
cannam@127 1246 {
cannam@127 1247 lalib_p=no
cannam@127 1248 if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then
cannam@127 1249 for lalib_p_l in 1 2 3 4
cannam@127 1250 do
cannam@127 1251 read lalib_p_line
cannam@127 1252 case "$lalib_p_line" in
cannam@127 1253 \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;;
cannam@127 1254 esac
cannam@127 1255 done
cannam@127 1256 exec 0<&5 5<&-
cannam@127 1257 fi
cannam@127 1258 test "$lalib_p" = yes
cannam@127 1259 }
cannam@127 1260
cannam@127 1261 # func_ltwrapper_script_p file
cannam@127 1262 # True iff FILE is a libtool wrapper script
cannam@127 1263 # This function is only a basic sanity check; it will hardly flush out
cannam@127 1264 # determined imposters.
cannam@127 1265 func_ltwrapper_script_p ()
cannam@127 1266 {
cannam@127 1267 func_lalib_p "$1"
cannam@127 1268 }
cannam@127 1269
cannam@127 1270 # func_ltwrapper_executable_p file
cannam@127 1271 # True iff FILE is a libtool wrapper executable
cannam@127 1272 # This function is only a basic sanity check; it will hardly flush out
cannam@127 1273 # determined imposters.
cannam@127 1274 func_ltwrapper_executable_p ()
cannam@127 1275 {
cannam@127 1276 func_ltwrapper_exec_suffix=
cannam@127 1277 case $1 in
cannam@127 1278 *.exe) ;;
cannam@127 1279 *) func_ltwrapper_exec_suffix=.exe ;;
cannam@127 1280 esac
cannam@127 1281 $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1
cannam@127 1282 }
cannam@127 1283
cannam@127 1284 # func_ltwrapper_scriptname file
cannam@127 1285 # Assumes file is an ltwrapper_executable
cannam@127 1286 # uses $file to determine the appropriate filename for a
cannam@127 1287 # temporary ltwrapper_script.
cannam@127 1288 func_ltwrapper_scriptname ()
cannam@127 1289 {
cannam@127 1290 func_dirname_and_basename "$1" "" "."
cannam@127 1291 func_stripname '' '.exe' "$func_basename_result"
cannam@127 1292 func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper"
cannam@127 1293 }
cannam@127 1294
cannam@127 1295 # func_ltwrapper_p file
cannam@127 1296 # True iff FILE is a libtool wrapper script or wrapper executable
cannam@127 1297 # This function is only a basic sanity check; it will hardly flush out
cannam@127 1298 # determined imposters.
cannam@127 1299 func_ltwrapper_p ()
cannam@127 1300 {
cannam@127 1301 func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1"
cannam@127 1302 }
cannam@127 1303
cannam@127 1304
cannam@127 1305 # func_execute_cmds commands fail_cmd
cannam@127 1306 # Execute tilde-delimited COMMANDS.
cannam@127 1307 # If FAIL_CMD is given, eval that upon failure.
cannam@127 1308 # FAIL_CMD may read-access the current command in variable CMD!
cannam@127 1309 func_execute_cmds ()
cannam@127 1310 {
cannam@127 1311 $opt_debug
cannam@127 1312 save_ifs=$IFS; IFS='~'
cannam@127 1313 for cmd in $1; do
cannam@127 1314 IFS=$save_ifs
cannam@127 1315 eval cmd=\"$cmd\"
cannam@127 1316 func_show_eval "$cmd" "${2-:}"
cannam@127 1317 done
cannam@127 1318 IFS=$save_ifs
cannam@127 1319 }
cannam@127 1320
cannam@127 1321
cannam@127 1322 # func_source file
cannam@127 1323 # Source FILE, adding directory component if necessary.
cannam@127 1324 # Note that it is not necessary on cygwin/mingw to append a dot to
cannam@127 1325 # FILE even if both FILE and FILE.exe exist: automatic-append-.exe
cannam@127 1326 # behavior happens only for exec(3), not for open(2)! Also, sourcing
cannam@127 1327 # `FILE.' does not work on cygwin managed mounts.
cannam@127 1328 func_source ()
cannam@127 1329 {
cannam@127 1330 $opt_debug
cannam@127 1331 case $1 in
cannam@127 1332 */* | *\\*) . "$1" ;;
cannam@127 1333 *) . "./$1" ;;
cannam@127 1334 esac
cannam@127 1335 }
cannam@127 1336
cannam@127 1337
cannam@127 1338 # func_resolve_sysroot PATH
cannam@127 1339 # Replace a leading = in PATH with a sysroot. Store the result into
cannam@127 1340 # func_resolve_sysroot_result
cannam@127 1341 func_resolve_sysroot ()
cannam@127 1342 {
cannam@127 1343 func_resolve_sysroot_result=$1
cannam@127 1344 case $func_resolve_sysroot_result in
cannam@127 1345 =*)
cannam@127 1346 func_stripname '=' '' "$func_resolve_sysroot_result"
cannam@127 1347 func_resolve_sysroot_result=$lt_sysroot$func_stripname_result
cannam@127 1348 ;;
cannam@127 1349 esac
cannam@127 1350 }
cannam@127 1351
cannam@127 1352 # func_replace_sysroot PATH
cannam@127 1353 # If PATH begins with the sysroot, replace it with = and
cannam@127 1354 # store the result into func_replace_sysroot_result.
cannam@127 1355 func_replace_sysroot ()
cannam@127 1356 {
cannam@127 1357 case "$lt_sysroot:$1" in
cannam@127 1358 ?*:"$lt_sysroot"*)
cannam@127 1359 func_stripname "$lt_sysroot" '' "$1"
cannam@127 1360 func_replace_sysroot_result="=$func_stripname_result"
cannam@127 1361 ;;
cannam@127 1362 *)
cannam@127 1363 # Including no sysroot.
cannam@127 1364 func_replace_sysroot_result=$1
cannam@127 1365 ;;
cannam@127 1366 esac
cannam@127 1367 }
cannam@127 1368
cannam@127 1369 # func_infer_tag arg
cannam@127 1370 # Infer tagged configuration to use if any are available and
cannam@127 1371 # if one wasn't chosen via the "--tag" command line option.
cannam@127 1372 # Only attempt this if the compiler in the base compile
cannam@127 1373 # command doesn't match the default compiler.
cannam@127 1374 # arg is usually of the form 'gcc ...'
cannam@127 1375 func_infer_tag ()
cannam@127 1376 {
cannam@127 1377 $opt_debug
cannam@127 1378 if test -n "$available_tags" && test -z "$tagname"; then
cannam@127 1379 CC_quoted=
cannam@127 1380 for arg in $CC; do
cannam@127 1381 func_append_quoted CC_quoted "$arg"
cannam@127 1382 done
cannam@127 1383 CC_expanded=`func_echo_all $CC`
cannam@127 1384 CC_quoted_expanded=`func_echo_all $CC_quoted`
cannam@127 1385 case $@ in
cannam@127 1386 # Blanks in the command may have been stripped by the calling shell,
cannam@127 1387 # but not from the CC environment variable when configure was run.
cannam@127 1388 " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \
cannam@127 1389 " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;;
cannam@127 1390 # Blanks at the start of $base_compile will cause this to fail
cannam@127 1391 # if we don't check for them as well.
cannam@127 1392 *)
cannam@127 1393 for z in $available_tags; do
cannam@127 1394 if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then
cannam@127 1395 # Evaluate the configuration.
cannam@127 1396 eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
cannam@127 1397 CC_quoted=
cannam@127 1398 for arg in $CC; do
cannam@127 1399 # Double-quote args containing other shell metacharacters.
cannam@127 1400 func_append_quoted CC_quoted "$arg"
cannam@127 1401 done
cannam@127 1402 CC_expanded=`func_echo_all $CC`
cannam@127 1403 CC_quoted_expanded=`func_echo_all $CC_quoted`
cannam@127 1404 case "$@ " in
cannam@127 1405 " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \
cannam@127 1406 " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*)
cannam@127 1407 # The compiler in the base compile command matches
cannam@127 1408 # the one in the tagged configuration.
cannam@127 1409 # Assume this is the tagged configuration we want.
cannam@127 1410 tagname=$z
cannam@127 1411 break
cannam@127 1412 ;;
cannam@127 1413 esac
cannam@127 1414 fi
cannam@127 1415 done
cannam@127 1416 # If $tagname still isn't set, then no tagged configuration
cannam@127 1417 # was found and let the user know that the "--tag" command
cannam@127 1418 # line option must be used.
cannam@127 1419 if test -z "$tagname"; then
cannam@127 1420 func_echo "unable to infer tagged configuration"
cannam@127 1421 func_fatal_error "specify a tag with \`--tag'"
cannam@127 1422 # else
cannam@127 1423 # func_verbose "using $tagname tagged configuration"
cannam@127 1424 fi
cannam@127 1425 ;;
cannam@127 1426 esac
cannam@127 1427 fi
cannam@127 1428 }
cannam@127 1429
cannam@127 1430
cannam@127 1431
cannam@127 1432 # func_write_libtool_object output_name pic_name nonpic_name
cannam@127 1433 # Create a libtool object file (analogous to a ".la" file),
cannam@127 1434 # but don't create it if we're doing a dry run.
cannam@127 1435 func_write_libtool_object ()
cannam@127 1436 {
cannam@127 1437 write_libobj=${1}
cannam@127 1438 if test "$build_libtool_libs" = yes; then
cannam@127 1439 write_lobj=\'${2}\'
cannam@127 1440 else
cannam@127 1441 write_lobj=none
cannam@127 1442 fi
cannam@127 1443
cannam@127 1444 if test "$build_old_libs" = yes; then
cannam@127 1445 write_oldobj=\'${3}\'
cannam@127 1446 else
cannam@127 1447 write_oldobj=none
cannam@127 1448 fi
cannam@127 1449
cannam@127 1450 $opt_dry_run || {
cannam@127 1451 cat >${write_libobj}T <<EOF
cannam@127 1452 # $write_libobj - a libtool object file
cannam@127 1453 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@127 1454 #
cannam@127 1455 # Please DO NOT delete this file!
cannam@127 1456 # It is necessary for linking the library.
cannam@127 1457
cannam@127 1458 # Name of the PIC object.
cannam@127 1459 pic_object=$write_lobj
cannam@127 1460
cannam@127 1461 # Name of the non-PIC object
cannam@127 1462 non_pic_object=$write_oldobj
cannam@127 1463
cannam@127 1464 EOF
cannam@127 1465 $MV "${write_libobj}T" "${write_libobj}"
cannam@127 1466 }
cannam@127 1467 }
cannam@127 1468
cannam@127 1469
cannam@127 1470 ##################################################
cannam@127 1471 # FILE NAME AND PATH CONVERSION HELPER FUNCTIONS #
cannam@127 1472 ##################################################
cannam@127 1473
cannam@127 1474 # func_convert_core_file_wine_to_w32 ARG
cannam@127 1475 # Helper function used by file name conversion functions when $build is *nix,
cannam@127 1476 # and $host is mingw, cygwin, or some other w32 environment. Relies on a
cannam@127 1477 # correctly configured wine environment available, with the winepath program
cannam@127 1478 # in $build's $PATH.
cannam@127 1479 #
cannam@127 1480 # ARG is the $build file name to be converted to w32 format.
cannam@127 1481 # Result is available in $func_convert_core_file_wine_to_w32_result, and will
cannam@127 1482 # be empty on error (or when ARG is empty)
cannam@127 1483 func_convert_core_file_wine_to_w32 ()
cannam@127 1484 {
cannam@127 1485 $opt_debug
cannam@127 1486 func_convert_core_file_wine_to_w32_result="$1"
cannam@127 1487 if test -n "$1"; then
cannam@127 1488 # Unfortunately, winepath does not exit with a non-zero error code, so we
cannam@127 1489 # are forced to check the contents of stdout. On the other hand, if the
cannam@127 1490 # command is not found, the shell will set an exit code of 127 and print
cannam@127 1491 # *an error message* to stdout. So we must check for both error code of
cannam@127 1492 # zero AND non-empty stdout, which explains the odd construction:
cannam@127 1493 func_convert_core_file_wine_to_w32_tmp=`winepath -w "$1" 2>/dev/null`
cannam@127 1494 if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then
cannam@127 1495 func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" |
cannam@127 1496 $SED -e "$lt_sed_naive_backslashify"`
cannam@127 1497 else
cannam@127 1498 func_convert_core_file_wine_to_w32_result=
cannam@127 1499 fi
cannam@127 1500 fi
cannam@127 1501 }
cannam@127 1502 # end: func_convert_core_file_wine_to_w32
cannam@127 1503
cannam@127 1504
cannam@127 1505 # func_convert_core_path_wine_to_w32 ARG
cannam@127 1506 # Helper function used by path conversion functions when $build is *nix, and
cannam@127 1507 # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly
cannam@127 1508 # configured wine environment available, with the winepath program in $build's
cannam@127 1509 # $PATH. Assumes ARG has no leading or trailing path separator characters.
cannam@127 1510 #
cannam@127 1511 # ARG is path to be converted from $build format to win32.
cannam@127 1512 # Result is available in $func_convert_core_path_wine_to_w32_result.
cannam@127 1513 # Unconvertible file (directory) names in ARG are skipped; if no directory names
cannam@127 1514 # are convertible, then the result may be empty.
cannam@127 1515 func_convert_core_path_wine_to_w32 ()
cannam@127 1516 {
cannam@127 1517 $opt_debug
cannam@127 1518 # unfortunately, winepath doesn't convert paths, only file names
cannam@127 1519 func_convert_core_path_wine_to_w32_result=""
cannam@127 1520 if test -n "$1"; then
cannam@127 1521 oldIFS=$IFS
cannam@127 1522 IFS=:
cannam@127 1523 for func_convert_core_path_wine_to_w32_f in $1; do
cannam@127 1524 IFS=$oldIFS
cannam@127 1525 func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f"
cannam@127 1526 if test -n "$func_convert_core_file_wine_to_w32_result" ; then
cannam@127 1527 if test -z "$func_convert_core_path_wine_to_w32_result"; then
cannam@127 1528 func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result"
cannam@127 1529 else
cannam@127 1530 func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result"
cannam@127 1531 fi
cannam@127 1532 fi
cannam@127 1533 done
cannam@127 1534 IFS=$oldIFS
cannam@127 1535 fi
cannam@127 1536 }
cannam@127 1537 # end: func_convert_core_path_wine_to_w32
cannam@127 1538
cannam@127 1539
cannam@127 1540 # func_cygpath ARGS...
cannam@127 1541 # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when
cannam@127 1542 # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2)
cannam@127 1543 # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or
cannam@127 1544 # (2), returns the Cygwin file name or path in func_cygpath_result (input
cannam@127 1545 # file name or path is assumed to be in w32 format, as previously converted
cannam@127 1546 # from $build's *nix or MSYS format). In case (3), returns the w32 file name
cannam@127 1547 # or path in func_cygpath_result (input file name or path is assumed to be in
cannam@127 1548 # Cygwin format). Returns an empty string on error.
cannam@127 1549 #
cannam@127 1550 # ARGS are passed to cygpath, with the last one being the file name or path to
cannam@127 1551 # be converted.
cannam@127 1552 #
cannam@127 1553 # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH
cannam@127 1554 # environment variable; do not put it in $PATH.
cannam@127 1555 func_cygpath ()
cannam@127 1556 {
cannam@127 1557 $opt_debug
cannam@127 1558 if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then
cannam@127 1559 func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null`
cannam@127 1560 if test "$?" -ne 0; then
cannam@127 1561 # on failure, ensure result is empty
cannam@127 1562 func_cygpath_result=
cannam@127 1563 fi
cannam@127 1564 else
cannam@127 1565 func_cygpath_result=
cannam@127 1566 func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'"
cannam@127 1567 fi
cannam@127 1568 }
cannam@127 1569 #end: func_cygpath
cannam@127 1570
cannam@127 1571
cannam@127 1572 # func_convert_core_msys_to_w32 ARG
cannam@127 1573 # Convert file name or path ARG from MSYS format to w32 format. Return
cannam@127 1574 # result in func_convert_core_msys_to_w32_result.
cannam@127 1575 func_convert_core_msys_to_w32 ()
cannam@127 1576 {
cannam@127 1577 $opt_debug
cannam@127 1578 # awkward: cmd appends spaces to result
cannam@127 1579 func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null |
cannam@127 1580 $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"`
cannam@127 1581 }
cannam@127 1582 #end: func_convert_core_msys_to_w32
cannam@127 1583
cannam@127 1584
cannam@127 1585 # func_convert_file_check ARG1 ARG2
cannam@127 1586 # Verify that ARG1 (a file name in $build format) was converted to $host
cannam@127 1587 # format in ARG2. Otherwise, emit an error message, but continue (resetting
cannam@127 1588 # func_to_host_file_result to ARG1).
cannam@127 1589 func_convert_file_check ()
cannam@127 1590 {
cannam@127 1591 $opt_debug
cannam@127 1592 if test -z "$2" && test -n "$1" ; then
cannam@127 1593 func_error "Could not determine host file name corresponding to"
cannam@127 1594 func_error " \`$1'"
cannam@127 1595 func_error "Continuing, but uninstalled executables may not work."
cannam@127 1596 # Fallback:
cannam@127 1597 func_to_host_file_result="$1"
cannam@127 1598 fi
cannam@127 1599 }
cannam@127 1600 # end func_convert_file_check
cannam@127 1601
cannam@127 1602
cannam@127 1603 # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH
cannam@127 1604 # Verify that FROM_PATH (a path in $build format) was converted to $host
cannam@127 1605 # format in TO_PATH. Otherwise, emit an error message, but continue, resetting
cannam@127 1606 # func_to_host_file_result to a simplistic fallback value (see below).
cannam@127 1607 func_convert_path_check ()
cannam@127 1608 {
cannam@127 1609 $opt_debug
cannam@127 1610 if test -z "$4" && test -n "$3"; then
cannam@127 1611 func_error "Could not determine the host path corresponding to"
cannam@127 1612 func_error " \`$3'"
cannam@127 1613 func_error "Continuing, but uninstalled executables may not work."
cannam@127 1614 # Fallback. This is a deliberately simplistic "conversion" and
cannam@127 1615 # should not be "improved". See libtool.info.
cannam@127 1616 if test "x$1" != "x$2"; then
cannam@127 1617 lt_replace_pathsep_chars="s|$1|$2|g"
cannam@127 1618 func_to_host_path_result=`echo "$3" |
cannam@127 1619 $SED -e "$lt_replace_pathsep_chars"`
cannam@127 1620 else
cannam@127 1621 func_to_host_path_result="$3"
cannam@127 1622 fi
cannam@127 1623 fi
cannam@127 1624 }
cannam@127 1625 # end func_convert_path_check
cannam@127 1626
cannam@127 1627
cannam@127 1628 # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG
cannam@127 1629 # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT
cannam@127 1630 # and appending REPL if ORIG matches BACKPAT.
cannam@127 1631 func_convert_path_front_back_pathsep ()
cannam@127 1632 {
cannam@127 1633 $opt_debug
cannam@127 1634 case $4 in
cannam@127 1635 $1 ) func_to_host_path_result="$3$func_to_host_path_result"
cannam@127 1636 ;;
cannam@127 1637 esac
cannam@127 1638 case $4 in
cannam@127 1639 $2 ) func_append func_to_host_path_result "$3"
cannam@127 1640 ;;
cannam@127 1641 esac
cannam@127 1642 }
cannam@127 1643 # end func_convert_path_front_back_pathsep
cannam@127 1644
cannam@127 1645
cannam@127 1646 ##################################################
cannam@127 1647 # $build to $host FILE NAME CONVERSION FUNCTIONS #
cannam@127 1648 ##################################################
cannam@127 1649 # invoked via `$to_host_file_cmd ARG'
cannam@127 1650 #
cannam@127 1651 # In each case, ARG is the path to be converted from $build to $host format.
cannam@127 1652 # Result will be available in $func_to_host_file_result.
cannam@127 1653
cannam@127 1654
cannam@127 1655 # func_to_host_file ARG
cannam@127 1656 # Converts the file name ARG from $build format to $host format. Return result
cannam@127 1657 # in func_to_host_file_result.
cannam@127 1658 func_to_host_file ()
cannam@127 1659 {
cannam@127 1660 $opt_debug
cannam@127 1661 $to_host_file_cmd "$1"
cannam@127 1662 }
cannam@127 1663 # end func_to_host_file
cannam@127 1664
cannam@127 1665
cannam@127 1666 # func_to_tool_file ARG LAZY
cannam@127 1667 # converts the file name ARG from $build format to toolchain format. Return
cannam@127 1668 # result in func_to_tool_file_result. If the conversion in use is listed
cannam@127 1669 # in (the comma separated) LAZY, no conversion takes place.
cannam@127 1670 func_to_tool_file ()
cannam@127 1671 {
cannam@127 1672 $opt_debug
cannam@127 1673 case ,$2, in
cannam@127 1674 *,"$to_tool_file_cmd",*)
cannam@127 1675 func_to_tool_file_result=$1
cannam@127 1676 ;;
cannam@127 1677 *)
cannam@127 1678 $to_tool_file_cmd "$1"
cannam@127 1679 func_to_tool_file_result=$func_to_host_file_result
cannam@127 1680 ;;
cannam@127 1681 esac
cannam@127 1682 }
cannam@127 1683 # end func_to_tool_file
cannam@127 1684
cannam@127 1685
cannam@127 1686 # func_convert_file_noop ARG
cannam@127 1687 # Copy ARG to func_to_host_file_result.
cannam@127 1688 func_convert_file_noop ()
cannam@127 1689 {
cannam@127 1690 func_to_host_file_result="$1"
cannam@127 1691 }
cannam@127 1692 # end func_convert_file_noop
cannam@127 1693
cannam@127 1694
cannam@127 1695 # func_convert_file_msys_to_w32 ARG
cannam@127 1696 # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic
cannam@127 1697 # conversion to w32 is not available inside the cwrapper. Returns result in
cannam@127 1698 # func_to_host_file_result.
cannam@127 1699 func_convert_file_msys_to_w32 ()
cannam@127 1700 {
cannam@127 1701 $opt_debug
cannam@127 1702 func_to_host_file_result="$1"
cannam@127 1703 if test -n "$1"; then
cannam@127 1704 func_convert_core_msys_to_w32 "$1"
cannam@127 1705 func_to_host_file_result="$func_convert_core_msys_to_w32_result"
cannam@127 1706 fi
cannam@127 1707 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@127 1708 }
cannam@127 1709 # end func_convert_file_msys_to_w32
cannam@127 1710
cannam@127 1711
cannam@127 1712 # func_convert_file_cygwin_to_w32 ARG
cannam@127 1713 # Convert file name ARG from Cygwin to w32 format. Returns result in
cannam@127 1714 # func_to_host_file_result.
cannam@127 1715 func_convert_file_cygwin_to_w32 ()
cannam@127 1716 {
cannam@127 1717 $opt_debug
cannam@127 1718 func_to_host_file_result="$1"
cannam@127 1719 if test -n "$1"; then
cannam@127 1720 # because $build is cygwin, we call "the" cygpath in $PATH; no need to use
cannam@127 1721 # LT_CYGPATH in this case.
cannam@127 1722 func_to_host_file_result=`cygpath -m "$1"`
cannam@127 1723 fi
cannam@127 1724 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@127 1725 }
cannam@127 1726 # end func_convert_file_cygwin_to_w32
cannam@127 1727
cannam@127 1728
cannam@127 1729 # func_convert_file_nix_to_w32 ARG
cannam@127 1730 # Convert file name ARG from *nix to w32 format. Requires a wine environment
cannam@127 1731 # and a working winepath. Returns result in func_to_host_file_result.
cannam@127 1732 func_convert_file_nix_to_w32 ()
cannam@127 1733 {
cannam@127 1734 $opt_debug
cannam@127 1735 func_to_host_file_result="$1"
cannam@127 1736 if test -n "$1"; then
cannam@127 1737 func_convert_core_file_wine_to_w32 "$1"
cannam@127 1738 func_to_host_file_result="$func_convert_core_file_wine_to_w32_result"
cannam@127 1739 fi
cannam@127 1740 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@127 1741 }
cannam@127 1742 # end func_convert_file_nix_to_w32
cannam@127 1743
cannam@127 1744
cannam@127 1745 # func_convert_file_msys_to_cygwin ARG
cannam@127 1746 # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set.
cannam@127 1747 # Returns result in func_to_host_file_result.
cannam@127 1748 func_convert_file_msys_to_cygwin ()
cannam@127 1749 {
cannam@127 1750 $opt_debug
cannam@127 1751 func_to_host_file_result="$1"
cannam@127 1752 if test -n "$1"; then
cannam@127 1753 func_convert_core_msys_to_w32 "$1"
cannam@127 1754 func_cygpath -u "$func_convert_core_msys_to_w32_result"
cannam@127 1755 func_to_host_file_result="$func_cygpath_result"
cannam@127 1756 fi
cannam@127 1757 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@127 1758 }
cannam@127 1759 # end func_convert_file_msys_to_cygwin
cannam@127 1760
cannam@127 1761
cannam@127 1762 # func_convert_file_nix_to_cygwin ARG
cannam@127 1763 # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed
cannam@127 1764 # in a wine environment, working winepath, and LT_CYGPATH set. Returns result
cannam@127 1765 # in func_to_host_file_result.
cannam@127 1766 func_convert_file_nix_to_cygwin ()
cannam@127 1767 {
cannam@127 1768 $opt_debug
cannam@127 1769 func_to_host_file_result="$1"
cannam@127 1770 if test -n "$1"; then
cannam@127 1771 # convert from *nix to w32, then use cygpath to convert from w32 to cygwin.
cannam@127 1772 func_convert_core_file_wine_to_w32 "$1"
cannam@127 1773 func_cygpath -u "$func_convert_core_file_wine_to_w32_result"
cannam@127 1774 func_to_host_file_result="$func_cygpath_result"
cannam@127 1775 fi
cannam@127 1776 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@127 1777 }
cannam@127 1778 # end func_convert_file_nix_to_cygwin
cannam@127 1779
cannam@127 1780
cannam@127 1781 #############################################
cannam@127 1782 # $build to $host PATH CONVERSION FUNCTIONS #
cannam@127 1783 #############################################
cannam@127 1784 # invoked via `$to_host_path_cmd ARG'
cannam@127 1785 #
cannam@127 1786 # In each case, ARG is the path to be converted from $build to $host format.
cannam@127 1787 # The result will be available in $func_to_host_path_result.
cannam@127 1788 #
cannam@127 1789 # Path separators are also converted from $build format to $host format. If
cannam@127 1790 # ARG begins or ends with a path separator character, it is preserved (but
cannam@127 1791 # converted to $host format) on output.
cannam@127 1792 #
cannam@127 1793 # All path conversion functions are named using the following convention:
cannam@127 1794 # file name conversion function : func_convert_file_X_to_Y ()
cannam@127 1795 # path conversion function : func_convert_path_X_to_Y ()
cannam@127 1796 # where, for any given $build/$host combination the 'X_to_Y' value is the
cannam@127 1797 # same. If conversion functions are added for new $build/$host combinations,
cannam@127 1798 # the two new functions must follow this pattern, or func_init_to_host_path_cmd
cannam@127 1799 # will break.
cannam@127 1800
cannam@127 1801
cannam@127 1802 # func_init_to_host_path_cmd
cannam@127 1803 # Ensures that function "pointer" variable $to_host_path_cmd is set to the
cannam@127 1804 # appropriate value, based on the value of $to_host_file_cmd.
cannam@127 1805 to_host_path_cmd=
cannam@127 1806 func_init_to_host_path_cmd ()
cannam@127 1807 {
cannam@127 1808 $opt_debug
cannam@127 1809 if test -z "$to_host_path_cmd"; then
cannam@127 1810 func_stripname 'func_convert_file_' '' "$to_host_file_cmd"
cannam@127 1811 to_host_path_cmd="func_convert_path_${func_stripname_result}"
cannam@127 1812 fi
cannam@127 1813 }
cannam@127 1814
cannam@127 1815
cannam@127 1816 # func_to_host_path ARG
cannam@127 1817 # Converts the path ARG from $build format to $host format. Return result
cannam@127 1818 # in func_to_host_path_result.
cannam@127 1819 func_to_host_path ()
cannam@127 1820 {
cannam@127 1821 $opt_debug
cannam@127 1822 func_init_to_host_path_cmd
cannam@127 1823 $to_host_path_cmd "$1"
cannam@127 1824 }
cannam@127 1825 # end func_to_host_path
cannam@127 1826
cannam@127 1827
cannam@127 1828 # func_convert_path_noop ARG
cannam@127 1829 # Copy ARG to func_to_host_path_result.
cannam@127 1830 func_convert_path_noop ()
cannam@127 1831 {
cannam@127 1832 func_to_host_path_result="$1"
cannam@127 1833 }
cannam@127 1834 # end func_convert_path_noop
cannam@127 1835
cannam@127 1836
cannam@127 1837 # func_convert_path_msys_to_w32 ARG
cannam@127 1838 # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic
cannam@127 1839 # conversion to w32 is not available inside the cwrapper. Returns result in
cannam@127 1840 # func_to_host_path_result.
cannam@127 1841 func_convert_path_msys_to_w32 ()
cannam@127 1842 {
cannam@127 1843 $opt_debug
cannam@127 1844 func_to_host_path_result="$1"
cannam@127 1845 if test -n "$1"; then
cannam@127 1846 # Remove leading and trailing path separator characters from ARG. MSYS
cannam@127 1847 # behavior is inconsistent here; cygpath turns them into '.;' and ';.';
cannam@127 1848 # and winepath ignores them completely.
cannam@127 1849 func_stripname : : "$1"
cannam@127 1850 func_to_host_path_tmp1=$func_stripname_result
cannam@127 1851 func_convert_core_msys_to_w32 "$func_to_host_path_tmp1"
cannam@127 1852 func_to_host_path_result="$func_convert_core_msys_to_w32_result"
cannam@127 1853 func_convert_path_check : ";" \
cannam@127 1854 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@127 1855 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
cannam@127 1856 fi
cannam@127 1857 }
cannam@127 1858 # end func_convert_path_msys_to_w32
cannam@127 1859
cannam@127 1860
cannam@127 1861 # func_convert_path_cygwin_to_w32 ARG
cannam@127 1862 # Convert path ARG from Cygwin to w32 format. Returns result in
cannam@127 1863 # func_to_host_file_result.
cannam@127 1864 func_convert_path_cygwin_to_w32 ()
cannam@127 1865 {
cannam@127 1866 $opt_debug
cannam@127 1867 func_to_host_path_result="$1"
cannam@127 1868 if test -n "$1"; then
cannam@127 1869 # See func_convert_path_msys_to_w32:
cannam@127 1870 func_stripname : : "$1"
cannam@127 1871 func_to_host_path_tmp1=$func_stripname_result
cannam@127 1872 func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"`
cannam@127 1873 func_convert_path_check : ";" \
cannam@127 1874 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@127 1875 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
cannam@127 1876 fi
cannam@127 1877 }
cannam@127 1878 # end func_convert_path_cygwin_to_w32
cannam@127 1879
cannam@127 1880
cannam@127 1881 # func_convert_path_nix_to_w32 ARG
cannam@127 1882 # Convert path ARG from *nix to w32 format. Requires a wine environment and
cannam@127 1883 # a working winepath. Returns result in func_to_host_file_result.
cannam@127 1884 func_convert_path_nix_to_w32 ()
cannam@127 1885 {
cannam@127 1886 $opt_debug
cannam@127 1887 func_to_host_path_result="$1"
cannam@127 1888 if test -n "$1"; then
cannam@127 1889 # See func_convert_path_msys_to_w32:
cannam@127 1890 func_stripname : : "$1"
cannam@127 1891 func_to_host_path_tmp1=$func_stripname_result
cannam@127 1892 func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1"
cannam@127 1893 func_to_host_path_result="$func_convert_core_path_wine_to_w32_result"
cannam@127 1894 func_convert_path_check : ";" \
cannam@127 1895 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@127 1896 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
cannam@127 1897 fi
cannam@127 1898 }
cannam@127 1899 # end func_convert_path_nix_to_w32
cannam@127 1900
cannam@127 1901
cannam@127 1902 # func_convert_path_msys_to_cygwin ARG
cannam@127 1903 # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set.
cannam@127 1904 # Returns result in func_to_host_file_result.
cannam@127 1905 func_convert_path_msys_to_cygwin ()
cannam@127 1906 {
cannam@127 1907 $opt_debug
cannam@127 1908 func_to_host_path_result="$1"
cannam@127 1909 if test -n "$1"; then
cannam@127 1910 # See func_convert_path_msys_to_w32:
cannam@127 1911 func_stripname : : "$1"
cannam@127 1912 func_to_host_path_tmp1=$func_stripname_result
cannam@127 1913 func_convert_core_msys_to_w32 "$func_to_host_path_tmp1"
cannam@127 1914 func_cygpath -u -p "$func_convert_core_msys_to_w32_result"
cannam@127 1915 func_to_host_path_result="$func_cygpath_result"
cannam@127 1916 func_convert_path_check : : \
cannam@127 1917 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@127 1918 func_convert_path_front_back_pathsep ":*" "*:" : "$1"
cannam@127 1919 fi
cannam@127 1920 }
cannam@127 1921 # end func_convert_path_msys_to_cygwin
cannam@127 1922
cannam@127 1923
cannam@127 1924 # func_convert_path_nix_to_cygwin ARG
cannam@127 1925 # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a
cannam@127 1926 # a wine environment, working winepath, and LT_CYGPATH set. Returns result in
cannam@127 1927 # func_to_host_file_result.
cannam@127 1928 func_convert_path_nix_to_cygwin ()
cannam@127 1929 {
cannam@127 1930 $opt_debug
cannam@127 1931 func_to_host_path_result="$1"
cannam@127 1932 if test -n "$1"; then
cannam@127 1933 # Remove leading and trailing path separator characters from
cannam@127 1934 # ARG. msys behavior is inconsistent here, cygpath turns them
cannam@127 1935 # into '.;' and ';.', and winepath ignores them completely.
cannam@127 1936 func_stripname : : "$1"
cannam@127 1937 func_to_host_path_tmp1=$func_stripname_result
cannam@127 1938 func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1"
cannam@127 1939 func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result"
cannam@127 1940 func_to_host_path_result="$func_cygpath_result"
cannam@127 1941 func_convert_path_check : : \
cannam@127 1942 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@127 1943 func_convert_path_front_back_pathsep ":*" "*:" : "$1"
cannam@127 1944 fi
cannam@127 1945 }
cannam@127 1946 # end func_convert_path_nix_to_cygwin
cannam@127 1947
cannam@127 1948
cannam@127 1949 # func_mode_compile arg...
cannam@127 1950 func_mode_compile ()
cannam@127 1951 {
cannam@127 1952 $opt_debug
cannam@127 1953 # Get the compilation command and the source file.
cannam@127 1954 base_compile=
cannam@127 1955 srcfile="$nonopt" # always keep a non-empty value in "srcfile"
cannam@127 1956 suppress_opt=yes
cannam@127 1957 suppress_output=
cannam@127 1958 arg_mode=normal
cannam@127 1959 libobj=
cannam@127 1960 later=
cannam@127 1961 pie_flag=
cannam@127 1962
cannam@127 1963 for arg
cannam@127 1964 do
cannam@127 1965 case $arg_mode in
cannam@127 1966 arg )
cannam@127 1967 # do not "continue". Instead, add this to base_compile
cannam@127 1968 lastarg="$arg"
cannam@127 1969 arg_mode=normal
cannam@127 1970 ;;
cannam@127 1971
cannam@127 1972 target )
cannam@127 1973 libobj="$arg"
cannam@127 1974 arg_mode=normal
cannam@127 1975 continue
cannam@127 1976 ;;
cannam@127 1977
cannam@127 1978 normal )
cannam@127 1979 # Accept any command-line options.
cannam@127 1980 case $arg in
cannam@127 1981 -o)
cannam@127 1982 test -n "$libobj" && \
cannam@127 1983 func_fatal_error "you cannot specify \`-o' more than once"
cannam@127 1984 arg_mode=target
cannam@127 1985 continue
cannam@127 1986 ;;
cannam@127 1987
cannam@127 1988 -pie | -fpie | -fPIE)
cannam@127 1989 func_append pie_flag " $arg"
cannam@127 1990 continue
cannam@127 1991 ;;
cannam@127 1992
cannam@127 1993 -shared | -static | -prefer-pic | -prefer-non-pic)
cannam@127 1994 func_append later " $arg"
cannam@127 1995 continue
cannam@127 1996 ;;
cannam@127 1997
cannam@127 1998 -no-suppress)
cannam@127 1999 suppress_opt=no
cannam@127 2000 continue
cannam@127 2001 ;;
cannam@127 2002
cannam@127 2003 -Xcompiler)
cannam@127 2004 arg_mode=arg # the next one goes into the "base_compile" arg list
cannam@127 2005 continue # The current "srcfile" will either be retained or
cannam@127 2006 ;; # replaced later. I would guess that would be a bug.
cannam@127 2007
cannam@127 2008 -Wc,*)
cannam@127 2009 func_stripname '-Wc,' '' "$arg"
cannam@127 2010 args=$func_stripname_result
cannam@127 2011 lastarg=
cannam@127 2012 save_ifs="$IFS"; IFS=','
cannam@127 2013 for arg in $args; do
cannam@127 2014 IFS="$save_ifs"
cannam@127 2015 func_append_quoted lastarg "$arg"
cannam@127 2016 done
cannam@127 2017 IFS="$save_ifs"
cannam@127 2018 func_stripname ' ' '' "$lastarg"
cannam@127 2019 lastarg=$func_stripname_result
cannam@127 2020
cannam@127 2021 # Add the arguments to base_compile.
cannam@127 2022 func_append base_compile " $lastarg"
cannam@127 2023 continue
cannam@127 2024 ;;
cannam@127 2025
cannam@127 2026 *)
cannam@127 2027 # Accept the current argument as the source file.
cannam@127 2028 # The previous "srcfile" becomes the current argument.
cannam@127 2029 #
cannam@127 2030 lastarg="$srcfile"
cannam@127 2031 srcfile="$arg"
cannam@127 2032 ;;
cannam@127 2033 esac # case $arg
cannam@127 2034 ;;
cannam@127 2035 esac # case $arg_mode
cannam@127 2036
cannam@127 2037 # Aesthetically quote the previous argument.
cannam@127 2038 func_append_quoted base_compile "$lastarg"
cannam@127 2039 done # for arg
cannam@127 2040
cannam@127 2041 case $arg_mode in
cannam@127 2042 arg)
cannam@127 2043 func_fatal_error "you must specify an argument for -Xcompile"
cannam@127 2044 ;;
cannam@127 2045 target)
cannam@127 2046 func_fatal_error "you must specify a target with \`-o'"
cannam@127 2047 ;;
cannam@127 2048 *)
cannam@127 2049 # Get the name of the library object.
cannam@127 2050 test -z "$libobj" && {
cannam@127 2051 func_basename "$srcfile"
cannam@127 2052 libobj="$func_basename_result"
cannam@127 2053 }
cannam@127 2054 ;;
cannam@127 2055 esac
cannam@127 2056
cannam@127 2057 # Recognize several different file suffixes.
cannam@127 2058 # If the user specifies -o file.o, it is replaced with file.lo
cannam@127 2059 case $libobj in
cannam@127 2060 *.[cCFSifmso] | \
cannam@127 2061 *.ada | *.adb | *.ads | *.asm | \
cannam@127 2062 *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \
cannam@127 2063 *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup)
cannam@127 2064 func_xform "$libobj"
cannam@127 2065 libobj=$func_xform_result
cannam@127 2066 ;;
cannam@127 2067 esac
cannam@127 2068
cannam@127 2069 case $libobj in
cannam@127 2070 *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;;
cannam@127 2071 *)
cannam@127 2072 func_fatal_error "cannot determine name of library object from \`$libobj'"
cannam@127 2073 ;;
cannam@127 2074 esac
cannam@127 2075
cannam@127 2076 func_infer_tag $base_compile
cannam@127 2077
cannam@127 2078 for arg in $later; do
cannam@127 2079 case $arg in
cannam@127 2080 -shared)
cannam@127 2081 test "$build_libtool_libs" != yes && \
cannam@127 2082 func_fatal_configuration "can not build a shared library"
cannam@127 2083 build_old_libs=no
cannam@127 2084 continue
cannam@127 2085 ;;
cannam@127 2086
cannam@127 2087 -static)
cannam@127 2088 build_libtool_libs=no
cannam@127 2089 build_old_libs=yes
cannam@127 2090 continue
cannam@127 2091 ;;
cannam@127 2092
cannam@127 2093 -prefer-pic)
cannam@127 2094 pic_mode=yes
cannam@127 2095 continue
cannam@127 2096 ;;
cannam@127 2097
cannam@127 2098 -prefer-non-pic)
cannam@127 2099 pic_mode=no
cannam@127 2100 continue
cannam@127 2101 ;;
cannam@127 2102 esac
cannam@127 2103 done
cannam@127 2104
cannam@127 2105 func_quote_for_eval "$libobj"
cannam@127 2106 test "X$libobj" != "X$func_quote_for_eval_result" \
cannam@127 2107 && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \
cannam@127 2108 && func_warning "libobj name \`$libobj' may not contain shell special characters."
cannam@127 2109 func_dirname_and_basename "$obj" "/" ""
cannam@127 2110 objname="$func_basename_result"
cannam@127 2111 xdir="$func_dirname_result"
cannam@127 2112 lobj=${xdir}$objdir/$objname
cannam@127 2113
cannam@127 2114 test -z "$base_compile" && \
cannam@127 2115 func_fatal_help "you must specify a compilation command"
cannam@127 2116
cannam@127 2117 # Delete any leftover library objects.
cannam@127 2118 if test "$build_old_libs" = yes; then
cannam@127 2119 removelist="$obj $lobj $libobj ${libobj}T"
cannam@127 2120 else
cannam@127 2121 removelist="$lobj $libobj ${libobj}T"
cannam@127 2122 fi
cannam@127 2123
cannam@127 2124 # On Cygwin there's no "real" PIC flag so we must build both object types
cannam@127 2125 case $host_os in
cannam@127 2126 cygwin* | mingw* | pw32* | os2* | cegcc*)
cannam@127 2127 pic_mode=default
cannam@127 2128 ;;
cannam@127 2129 esac
cannam@127 2130 if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then
cannam@127 2131 # non-PIC code in shared libraries is not supported
cannam@127 2132 pic_mode=default
cannam@127 2133 fi
cannam@127 2134
cannam@127 2135 # Calculate the filename of the output object if compiler does
cannam@127 2136 # not support -o with -c
cannam@127 2137 if test "$compiler_c_o" = no; then
cannam@127 2138 output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext}
cannam@127 2139 lockfile="$output_obj.lock"
cannam@127 2140 else
cannam@127 2141 output_obj=
cannam@127 2142 need_locks=no
cannam@127 2143 lockfile=
cannam@127 2144 fi
cannam@127 2145
cannam@127 2146 # Lock this critical section if it is needed
cannam@127 2147 # We use this script file to make the link, it avoids creating a new file
cannam@127 2148 if test "$need_locks" = yes; then
cannam@127 2149 until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do
cannam@127 2150 func_echo "Waiting for $lockfile to be removed"
cannam@127 2151 sleep 2
cannam@127 2152 done
cannam@127 2153 elif test "$need_locks" = warn; then
cannam@127 2154 if test -f "$lockfile"; then
cannam@127 2155 $ECHO "\
cannam@127 2156 *** ERROR, $lockfile exists and contains:
cannam@127 2157 `cat $lockfile 2>/dev/null`
cannam@127 2158
cannam@127 2159 This indicates that another process is trying to use the same
cannam@127 2160 temporary object file, and libtool could not work around it because
cannam@127 2161 your compiler does not support \`-c' and \`-o' together. If you
cannam@127 2162 repeat this compilation, it may succeed, by chance, but you had better
cannam@127 2163 avoid parallel builds (make -j) in this platform, or get a better
cannam@127 2164 compiler."
cannam@127 2165
cannam@127 2166 $opt_dry_run || $RM $removelist
cannam@127 2167 exit $EXIT_FAILURE
cannam@127 2168 fi
cannam@127 2169 func_append removelist " $output_obj"
cannam@127 2170 $ECHO "$srcfile" > "$lockfile"
cannam@127 2171 fi
cannam@127 2172
cannam@127 2173 $opt_dry_run || $RM $removelist
cannam@127 2174 func_append removelist " $lockfile"
cannam@127 2175 trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15
cannam@127 2176
cannam@127 2177 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32
cannam@127 2178 srcfile=$func_to_tool_file_result
cannam@127 2179 func_quote_for_eval "$srcfile"
cannam@127 2180 qsrcfile=$func_quote_for_eval_result
cannam@127 2181
cannam@127 2182 # Only build a PIC object if we are building libtool libraries.
cannam@127 2183 if test "$build_libtool_libs" = yes; then
cannam@127 2184 # Without this assignment, base_compile gets emptied.
cannam@127 2185 fbsd_hideous_sh_bug=$base_compile
cannam@127 2186
cannam@127 2187 if test "$pic_mode" != no; then
cannam@127 2188 command="$base_compile $qsrcfile $pic_flag"
cannam@127 2189 else
cannam@127 2190 # Don't build PIC code
cannam@127 2191 command="$base_compile $qsrcfile"
cannam@127 2192 fi
cannam@127 2193
cannam@127 2194 func_mkdir_p "$xdir$objdir"
cannam@127 2195
cannam@127 2196 if test -z "$output_obj"; then
cannam@127 2197 # Place PIC objects in $objdir
cannam@127 2198 func_append command " -o $lobj"
cannam@127 2199 fi
cannam@127 2200
cannam@127 2201 func_show_eval_locale "$command" \
cannam@127 2202 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE'
cannam@127 2203
cannam@127 2204 if test "$need_locks" = warn &&
cannam@127 2205 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
cannam@127 2206 $ECHO "\
cannam@127 2207 *** ERROR, $lockfile contains:
cannam@127 2208 `cat $lockfile 2>/dev/null`
cannam@127 2209
cannam@127 2210 but it should contain:
cannam@127 2211 $srcfile
cannam@127 2212
cannam@127 2213 This indicates that another process is trying to use the same
cannam@127 2214 temporary object file, and libtool could not work around it because
cannam@127 2215 your compiler does not support \`-c' and \`-o' together. If you
cannam@127 2216 repeat this compilation, it may succeed, by chance, but you had better
cannam@127 2217 avoid parallel builds (make -j) in this platform, or get a better
cannam@127 2218 compiler."
cannam@127 2219
cannam@127 2220 $opt_dry_run || $RM $removelist
cannam@127 2221 exit $EXIT_FAILURE
cannam@127 2222 fi
cannam@127 2223
cannam@127 2224 # Just move the object if needed, then go on to compile the next one
cannam@127 2225 if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then
cannam@127 2226 func_show_eval '$MV "$output_obj" "$lobj"' \
cannam@127 2227 'error=$?; $opt_dry_run || $RM $removelist; exit $error'
cannam@127 2228 fi
cannam@127 2229
cannam@127 2230 # Allow error messages only from the first compilation.
cannam@127 2231 if test "$suppress_opt" = yes; then
cannam@127 2232 suppress_output=' >/dev/null 2>&1'
cannam@127 2233 fi
cannam@127 2234 fi
cannam@127 2235
cannam@127 2236 # Only build a position-dependent object if we build old libraries.
cannam@127 2237 if test "$build_old_libs" = yes; then
cannam@127 2238 if test "$pic_mode" != yes; then
cannam@127 2239 # Don't build PIC code
cannam@127 2240 command="$base_compile $qsrcfile$pie_flag"
cannam@127 2241 else
cannam@127 2242 command="$base_compile $qsrcfile $pic_flag"
cannam@127 2243 fi
cannam@127 2244 if test "$compiler_c_o" = yes; then
cannam@127 2245 func_append command " -o $obj"
cannam@127 2246 fi
cannam@127 2247
cannam@127 2248 # Suppress compiler output if we already did a PIC compilation.
cannam@127 2249 func_append command "$suppress_output"
cannam@127 2250 func_show_eval_locale "$command" \
cannam@127 2251 '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE'
cannam@127 2252
cannam@127 2253 if test "$need_locks" = warn &&
cannam@127 2254 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
cannam@127 2255 $ECHO "\
cannam@127 2256 *** ERROR, $lockfile contains:
cannam@127 2257 `cat $lockfile 2>/dev/null`
cannam@127 2258
cannam@127 2259 but it should contain:
cannam@127 2260 $srcfile
cannam@127 2261
cannam@127 2262 This indicates that another process is trying to use the same
cannam@127 2263 temporary object file, and libtool could not work around it because
cannam@127 2264 your compiler does not support \`-c' and \`-o' together. If you
cannam@127 2265 repeat this compilation, it may succeed, by chance, but you had better
cannam@127 2266 avoid parallel builds (make -j) in this platform, or get a better
cannam@127 2267 compiler."
cannam@127 2268
cannam@127 2269 $opt_dry_run || $RM $removelist
cannam@127 2270 exit $EXIT_FAILURE
cannam@127 2271 fi
cannam@127 2272
cannam@127 2273 # Just move the object if needed
cannam@127 2274 if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then
cannam@127 2275 func_show_eval '$MV "$output_obj" "$obj"' \
cannam@127 2276 'error=$?; $opt_dry_run || $RM $removelist; exit $error'
cannam@127 2277 fi
cannam@127 2278 fi
cannam@127 2279
cannam@127 2280 $opt_dry_run || {
cannam@127 2281 func_write_libtool_object "$libobj" "$objdir/$objname" "$objname"
cannam@127 2282
cannam@127 2283 # Unlock the critical section if it was locked
cannam@127 2284 if test "$need_locks" != no; then
cannam@127 2285 removelist=$lockfile
cannam@127 2286 $RM "$lockfile"
cannam@127 2287 fi
cannam@127 2288 }
cannam@127 2289
cannam@127 2290 exit $EXIT_SUCCESS
cannam@127 2291 }
cannam@127 2292
cannam@127 2293 $opt_help || {
cannam@127 2294 test "$opt_mode" = compile && func_mode_compile ${1+"$@"}
cannam@127 2295 }
cannam@127 2296
cannam@127 2297 func_mode_help ()
cannam@127 2298 {
cannam@127 2299 # We need to display help for each of the modes.
cannam@127 2300 case $opt_mode in
cannam@127 2301 "")
cannam@127 2302 # Generic help is extracted from the usage comments
cannam@127 2303 # at the start of this file.
cannam@127 2304 func_help
cannam@127 2305 ;;
cannam@127 2306
cannam@127 2307 clean)
cannam@127 2308 $ECHO \
cannam@127 2309 "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
cannam@127 2310
cannam@127 2311 Remove files from the build directory.
cannam@127 2312
cannam@127 2313 RM is the name of the program to use to delete files associated with each FILE
cannam@127 2314 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
cannam@127 2315 to RM.
cannam@127 2316
cannam@127 2317 If FILE is a libtool library, object or program, all the files associated
cannam@127 2318 with it are deleted. Otherwise, only FILE itself is deleted using RM."
cannam@127 2319 ;;
cannam@127 2320
cannam@127 2321 compile)
cannam@127 2322 $ECHO \
cannam@127 2323 "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
cannam@127 2324
cannam@127 2325 Compile a source file into a libtool library object.
cannam@127 2326
cannam@127 2327 This mode accepts the following additional options:
cannam@127 2328
cannam@127 2329 -o OUTPUT-FILE set the output file name to OUTPUT-FILE
cannam@127 2330 -no-suppress do not suppress compiler output for multiple passes
cannam@127 2331 -prefer-pic try to build PIC objects only
cannam@127 2332 -prefer-non-pic try to build non-PIC objects only
cannam@127 2333 -shared do not build a \`.o' file suitable for static linking
cannam@127 2334 -static only build a \`.o' file suitable for static linking
cannam@127 2335 -Wc,FLAG pass FLAG directly to the compiler
cannam@127 2336
cannam@127 2337 COMPILE-COMMAND is a command to be used in creating a \`standard' object file
cannam@127 2338 from the given SOURCEFILE.
cannam@127 2339
cannam@127 2340 The output file name is determined by removing the directory component from
cannam@127 2341 SOURCEFILE, then substituting the C source code suffix \`.c' with the
cannam@127 2342 library object suffix, \`.lo'."
cannam@127 2343 ;;
cannam@127 2344
cannam@127 2345 execute)
cannam@127 2346 $ECHO \
cannam@127 2347 "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]...
cannam@127 2348
cannam@127 2349 Automatically set library path, then run a program.
cannam@127 2350
cannam@127 2351 This mode accepts the following additional options:
cannam@127 2352
cannam@127 2353 -dlopen FILE add the directory containing FILE to the library path
cannam@127 2354
cannam@127 2355 This mode sets the library path environment variable according to \`-dlopen'
cannam@127 2356 flags.
cannam@127 2357
cannam@127 2358 If any of the ARGS are libtool executable wrappers, then they are translated
cannam@127 2359 into their corresponding uninstalled binary, and any of their required library
cannam@127 2360 directories are added to the library path.
cannam@127 2361
cannam@127 2362 Then, COMMAND is executed, with ARGS as arguments."
cannam@127 2363 ;;
cannam@127 2364
cannam@127 2365 finish)
cannam@127 2366 $ECHO \
cannam@127 2367 "Usage: $progname [OPTION]... --mode=finish [LIBDIR]...
cannam@127 2368
cannam@127 2369 Complete the installation of libtool libraries.
cannam@127 2370
cannam@127 2371 Each LIBDIR is a directory that contains libtool libraries.
cannam@127 2372
cannam@127 2373 The commands that this mode executes may require superuser privileges. Use
cannam@127 2374 the \`--dry-run' option if you just want to see what would be executed."
cannam@127 2375 ;;
cannam@127 2376
cannam@127 2377 install)
cannam@127 2378 $ECHO \
cannam@127 2379 "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND...
cannam@127 2380
cannam@127 2381 Install executables or libraries.
cannam@127 2382
cannam@127 2383 INSTALL-COMMAND is the installation command. The first component should be
cannam@127 2384 either the \`install' or \`cp' program.
cannam@127 2385
cannam@127 2386 The following components of INSTALL-COMMAND are treated specially:
cannam@127 2387
cannam@127 2388 -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation
cannam@127 2389
cannam@127 2390 The rest of the components are interpreted as arguments to that command (only
cannam@127 2391 BSD-compatible install options are recognized)."
cannam@127 2392 ;;
cannam@127 2393
cannam@127 2394 link)
cannam@127 2395 $ECHO \
cannam@127 2396 "Usage: $progname [OPTION]... --mode=link LINK-COMMAND...
cannam@127 2397
cannam@127 2398 Link object files or libraries together to form another library, or to
cannam@127 2399 create an executable program.
cannam@127 2400
cannam@127 2401 LINK-COMMAND is a command using the C compiler that you would use to create
cannam@127 2402 a program from several object files.
cannam@127 2403
cannam@127 2404 The following components of LINK-COMMAND are treated specially:
cannam@127 2405
cannam@127 2406 -all-static do not do any dynamic linking at all
cannam@127 2407 -avoid-version do not add a version suffix if possible
cannam@127 2408 -bindir BINDIR specify path to binaries directory (for systems where
cannam@127 2409 libraries must be found in the PATH setting at runtime)
cannam@127 2410 -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
cannam@127 2411 -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols
cannam@127 2412 -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
cannam@127 2413 -export-symbols SYMFILE
cannam@127 2414 try to export only the symbols listed in SYMFILE
cannam@127 2415 -export-symbols-regex REGEX
cannam@127 2416 try to export only the symbols matching REGEX
cannam@127 2417 -LLIBDIR search LIBDIR for required installed libraries
cannam@127 2418 -lNAME OUTPUT-FILE requires the installed library libNAME
cannam@127 2419 -module build a library that can dlopened
cannam@127 2420 -no-fast-install disable the fast-install mode
cannam@127 2421 -no-install link a not-installable executable
cannam@127 2422 -no-undefined declare that a library does not refer to external symbols
cannam@127 2423 -o OUTPUT-FILE create OUTPUT-FILE from the specified objects
cannam@127 2424 -objectlist FILE Use a list of object files found in FILE to specify objects
cannam@127 2425 -precious-files-regex REGEX
cannam@127 2426 don't remove output files matching REGEX
cannam@127 2427 -release RELEASE specify package release information
cannam@127 2428 -rpath LIBDIR the created library will eventually be installed in LIBDIR
cannam@127 2429 -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries
cannam@127 2430 -shared only do dynamic linking of libtool libraries
cannam@127 2431 -shrext SUFFIX override the standard shared library file extension
cannam@127 2432 -static do not do any dynamic linking of uninstalled libtool libraries
cannam@127 2433 -static-libtool-libs
cannam@127 2434 do not do any dynamic linking of libtool libraries
cannam@127 2435 -version-info CURRENT[:REVISION[:AGE]]
cannam@127 2436 specify library version info [each variable defaults to 0]
cannam@127 2437 -weak LIBNAME declare that the target provides the LIBNAME interface
cannam@127 2438 -Wc,FLAG
cannam@127 2439 -Xcompiler FLAG pass linker-specific FLAG directly to the compiler
cannam@127 2440 -Wl,FLAG
cannam@127 2441 -Xlinker FLAG pass linker-specific FLAG directly to the linker
cannam@127 2442 -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC)
cannam@127 2443
cannam@127 2444 All other options (arguments beginning with \`-') are ignored.
cannam@127 2445
cannam@127 2446 Every other argument is treated as a filename. Files ending in \`.la' are
cannam@127 2447 treated as uninstalled libtool libraries, other files are standard or library
cannam@127 2448 object files.
cannam@127 2449
cannam@127 2450 If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
cannam@127 2451 only library objects (\`.lo' files) may be specified, and \`-rpath' is
cannam@127 2452 required, except when creating a convenience library.
cannam@127 2453
cannam@127 2454 If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
cannam@127 2455 using \`ar' and \`ranlib', or on Windows using \`lib'.
cannam@127 2456
cannam@127 2457 If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
cannam@127 2458 is created, otherwise an executable program is created."
cannam@127 2459 ;;
cannam@127 2460
cannam@127 2461 uninstall)
cannam@127 2462 $ECHO \
cannam@127 2463 "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
cannam@127 2464
cannam@127 2465 Remove libraries from an installation directory.
cannam@127 2466
cannam@127 2467 RM is the name of the program to use to delete files associated with each FILE
cannam@127 2468 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
cannam@127 2469 to RM.
cannam@127 2470
cannam@127 2471 If FILE is a libtool library, all the files associated with it are deleted.
cannam@127 2472 Otherwise, only FILE itself is deleted using RM."
cannam@127 2473 ;;
cannam@127 2474
cannam@127 2475 *)
cannam@127 2476 func_fatal_help "invalid operation mode \`$opt_mode'"
cannam@127 2477 ;;
cannam@127 2478 esac
cannam@127 2479
cannam@127 2480 echo
cannam@127 2481 $ECHO "Try \`$progname --help' for more information about other modes."
cannam@127 2482 }
cannam@127 2483
cannam@127 2484 # Now that we've collected a possible --mode arg, show help if necessary
cannam@127 2485 if $opt_help; then
cannam@127 2486 if test "$opt_help" = :; then
cannam@127 2487 func_mode_help
cannam@127 2488 else
cannam@127 2489 {
cannam@127 2490 func_help noexit
cannam@127 2491 for opt_mode in compile link execute install finish uninstall clean; do
cannam@127 2492 func_mode_help
cannam@127 2493 done
cannam@127 2494 } | sed -n '1p; 2,$s/^Usage:/ or: /p'
cannam@127 2495 {
cannam@127 2496 func_help noexit
cannam@127 2497 for opt_mode in compile link execute install finish uninstall clean; do
cannam@127 2498 echo
cannam@127 2499 func_mode_help
cannam@127 2500 done
cannam@127 2501 } |
cannam@127 2502 sed '1d
cannam@127 2503 /^When reporting/,/^Report/{
cannam@127 2504 H
cannam@127 2505 d
cannam@127 2506 }
cannam@127 2507 $x
cannam@127 2508 /information about other modes/d
cannam@127 2509 /more detailed .*MODE/d
cannam@127 2510 s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/'
cannam@127 2511 fi
cannam@127 2512 exit $?
cannam@127 2513 fi
cannam@127 2514
cannam@127 2515
cannam@127 2516 # func_mode_execute arg...
cannam@127 2517 func_mode_execute ()
cannam@127 2518 {
cannam@127 2519 $opt_debug
cannam@127 2520 # The first argument is the command name.
cannam@127 2521 cmd="$nonopt"
cannam@127 2522 test -z "$cmd" && \
cannam@127 2523 func_fatal_help "you must specify a COMMAND"
cannam@127 2524
cannam@127 2525 # Handle -dlopen flags immediately.
cannam@127 2526 for file in $opt_dlopen; do
cannam@127 2527 test -f "$file" \
cannam@127 2528 || func_fatal_help "\`$file' is not a file"
cannam@127 2529
cannam@127 2530 dir=
cannam@127 2531 case $file in
cannam@127 2532 *.la)
cannam@127 2533 func_resolve_sysroot "$file"
cannam@127 2534 file=$func_resolve_sysroot_result
cannam@127 2535
cannam@127 2536 # Check to see that this really is a libtool archive.
cannam@127 2537 func_lalib_unsafe_p "$file" \
cannam@127 2538 || func_fatal_help "\`$lib' is not a valid libtool archive"
cannam@127 2539
cannam@127 2540 # Read the libtool library.
cannam@127 2541 dlname=
cannam@127 2542 library_names=
cannam@127 2543 func_source "$file"
cannam@127 2544
cannam@127 2545 # Skip this library if it cannot be dlopened.
cannam@127 2546 if test -z "$dlname"; then
cannam@127 2547 # Warn if it was a shared library.
cannam@127 2548 test -n "$library_names" && \
cannam@127 2549 func_warning "\`$file' was not linked with \`-export-dynamic'"
cannam@127 2550 continue
cannam@127 2551 fi
cannam@127 2552
cannam@127 2553 func_dirname "$file" "" "."
cannam@127 2554 dir="$func_dirname_result"
cannam@127 2555
cannam@127 2556 if test -f "$dir/$objdir/$dlname"; then
cannam@127 2557 func_append dir "/$objdir"
cannam@127 2558 else
cannam@127 2559 if test ! -f "$dir/$dlname"; then
cannam@127 2560 func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'"
cannam@127 2561 fi
cannam@127 2562 fi
cannam@127 2563 ;;
cannam@127 2564
cannam@127 2565 *.lo)
cannam@127 2566 # Just add the directory containing the .lo file.
cannam@127 2567 func_dirname "$file" "" "."
cannam@127 2568 dir="$func_dirname_result"
cannam@127 2569 ;;
cannam@127 2570
cannam@127 2571 *)
cannam@127 2572 func_warning "\`-dlopen' is ignored for non-libtool libraries and objects"
cannam@127 2573 continue
cannam@127 2574 ;;
cannam@127 2575 esac
cannam@127 2576
cannam@127 2577 # Get the absolute pathname.
cannam@127 2578 absdir=`cd "$dir" && pwd`
cannam@127 2579 test -n "$absdir" && dir="$absdir"
cannam@127 2580
cannam@127 2581 # Now add the directory to shlibpath_var.
cannam@127 2582 if eval "test -z \"\$$shlibpath_var\""; then
cannam@127 2583 eval "$shlibpath_var=\"\$dir\""
cannam@127 2584 else
cannam@127 2585 eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
cannam@127 2586 fi
cannam@127 2587 done
cannam@127 2588
cannam@127 2589 # This variable tells wrapper scripts just to set shlibpath_var
cannam@127 2590 # rather than running their programs.
cannam@127 2591 libtool_execute_magic="$magic"
cannam@127 2592
cannam@127 2593 # Check if any of the arguments is a wrapper script.
cannam@127 2594 args=
cannam@127 2595 for file
cannam@127 2596 do
cannam@127 2597 case $file in
cannam@127 2598 -* | *.la | *.lo ) ;;
cannam@127 2599 *)
cannam@127 2600 # Do a test to see if this is really a libtool program.
cannam@127 2601 if func_ltwrapper_script_p "$file"; then
cannam@127 2602 func_source "$file"
cannam@127 2603 # Transform arg to wrapped name.
cannam@127 2604 file="$progdir/$program"
cannam@127 2605 elif func_ltwrapper_executable_p "$file"; then
cannam@127 2606 func_ltwrapper_scriptname "$file"
cannam@127 2607 func_source "$func_ltwrapper_scriptname_result"
cannam@127 2608 # Transform arg to wrapped name.
cannam@127 2609 file="$progdir/$program"
cannam@127 2610 fi
cannam@127 2611 ;;
cannam@127 2612 esac
cannam@127 2613 # Quote arguments (to preserve shell metacharacters).
cannam@127 2614 func_append_quoted args "$file"
cannam@127 2615 done
cannam@127 2616
cannam@127 2617 if test "X$opt_dry_run" = Xfalse; then
cannam@127 2618 if test -n "$shlibpath_var"; then
cannam@127 2619 # Export the shlibpath_var.
cannam@127 2620 eval "export $shlibpath_var"
cannam@127 2621 fi
cannam@127 2622
cannam@127 2623 # Restore saved environment variables
cannam@127 2624 for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
cannam@127 2625 do
cannam@127 2626 eval "if test \"\${save_$lt_var+set}\" = set; then
cannam@127 2627 $lt_var=\$save_$lt_var; export $lt_var
cannam@127 2628 else
cannam@127 2629 $lt_unset $lt_var
cannam@127 2630 fi"
cannam@127 2631 done
cannam@127 2632
cannam@127 2633 # Now prepare to actually exec the command.
cannam@127 2634 exec_cmd="\$cmd$args"
cannam@127 2635 else
cannam@127 2636 # Display what would be done.
cannam@127 2637 if test -n "$shlibpath_var"; then
cannam@127 2638 eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\""
cannam@127 2639 echo "export $shlibpath_var"
cannam@127 2640 fi
cannam@127 2641 $ECHO "$cmd$args"
cannam@127 2642 exit $EXIT_SUCCESS
cannam@127 2643 fi
cannam@127 2644 }
cannam@127 2645
cannam@127 2646 test "$opt_mode" = execute && func_mode_execute ${1+"$@"}
cannam@127 2647
cannam@127 2648
cannam@127 2649 # func_mode_finish arg...
cannam@127 2650 func_mode_finish ()
cannam@127 2651 {
cannam@127 2652 $opt_debug
cannam@127 2653 libs=
cannam@127 2654 libdirs=
cannam@127 2655 admincmds=
cannam@127 2656
cannam@127 2657 for opt in "$nonopt" ${1+"$@"}
cannam@127 2658 do
cannam@127 2659 if test -d "$opt"; then
cannam@127 2660 func_append libdirs " $opt"
cannam@127 2661
cannam@127 2662 elif test -f "$opt"; then
cannam@127 2663 if func_lalib_unsafe_p "$opt"; then
cannam@127 2664 func_append libs " $opt"
cannam@127 2665 else
cannam@127 2666 func_warning "\`$opt' is not a valid libtool archive"
cannam@127 2667 fi
cannam@127 2668
cannam@127 2669 else
cannam@127 2670 func_fatal_error "invalid argument \`$opt'"
cannam@127 2671 fi
cannam@127 2672 done
cannam@127 2673
cannam@127 2674 if test -n "$libs"; then
cannam@127 2675 if test -n "$lt_sysroot"; then
cannam@127 2676 sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"`
cannam@127 2677 sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;"
cannam@127 2678 else
cannam@127 2679 sysroot_cmd=
cannam@127 2680 fi
cannam@127 2681
cannam@127 2682 # Remove sysroot references
cannam@127 2683 if $opt_dry_run; then
cannam@127 2684 for lib in $libs; do
cannam@127 2685 echo "removing references to $lt_sysroot and \`=' prefixes from $lib"
cannam@127 2686 done
cannam@127 2687 else
cannam@127 2688 tmpdir=`func_mktempdir`
cannam@127 2689 for lib in $libs; do
cannam@127 2690 sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \
cannam@127 2691 > $tmpdir/tmp-la
cannam@127 2692 mv -f $tmpdir/tmp-la $lib
cannam@127 2693 done
cannam@127 2694 ${RM}r "$tmpdir"
cannam@127 2695 fi
cannam@127 2696 fi
cannam@127 2697
cannam@127 2698 if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
cannam@127 2699 for libdir in $libdirs; do
cannam@127 2700 if test -n "$finish_cmds"; then
cannam@127 2701 # Do each command in the finish commands.
cannam@127 2702 func_execute_cmds "$finish_cmds" 'admincmds="$admincmds
cannam@127 2703 '"$cmd"'"'
cannam@127 2704 fi
cannam@127 2705 if test -n "$finish_eval"; then
cannam@127 2706 # Do the single finish_eval.
cannam@127 2707 eval cmds=\"$finish_eval\"
cannam@127 2708 $opt_dry_run || eval "$cmds" || func_append admincmds "
cannam@127 2709 $cmds"
cannam@127 2710 fi
cannam@127 2711 done
cannam@127 2712 fi
cannam@127 2713
cannam@127 2714 # Exit here if they wanted silent mode.
cannam@127 2715 $opt_silent && exit $EXIT_SUCCESS
cannam@127 2716
cannam@127 2717 if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
cannam@127 2718 echo "----------------------------------------------------------------------"
cannam@127 2719 echo "Libraries have been installed in:"
cannam@127 2720 for libdir in $libdirs; do
cannam@127 2721 $ECHO " $libdir"
cannam@127 2722 done
cannam@127 2723 echo
cannam@127 2724 echo "If you ever happen to want to link against installed libraries"
cannam@127 2725 echo "in a given directory, LIBDIR, you must either use libtool, and"
cannam@127 2726 echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
cannam@127 2727 echo "flag during linking and do at least one of the following:"
cannam@127 2728 if test -n "$shlibpath_var"; then
cannam@127 2729 echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
cannam@127 2730 echo " during execution"
cannam@127 2731 fi
cannam@127 2732 if test -n "$runpath_var"; then
cannam@127 2733 echo " - add LIBDIR to the \`$runpath_var' environment variable"
cannam@127 2734 echo " during linking"
cannam@127 2735 fi
cannam@127 2736 if test -n "$hardcode_libdir_flag_spec"; then
cannam@127 2737 libdir=LIBDIR
cannam@127 2738 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@127 2739
cannam@127 2740 $ECHO " - use the \`$flag' linker flag"
cannam@127 2741 fi
cannam@127 2742 if test -n "$admincmds"; then
cannam@127 2743 $ECHO " - have your system administrator run these commands:$admincmds"
cannam@127 2744 fi
cannam@127 2745 if test -f /etc/ld.so.conf; then
cannam@127 2746 echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
cannam@127 2747 fi
cannam@127 2748 echo
cannam@127 2749
cannam@127 2750 echo "See any operating system documentation about shared libraries for"
cannam@127 2751 case $host in
cannam@127 2752 solaris2.[6789]|solaris2.1[0-9])
cannam@127 2753 echo "more information, such as the ld(1), crle(1) and ld.so(8) manual"
cannam@127 2754 echo "pages."
cannam@127 2755 ;;
cannam@127 2756 *)
cannam@127 2757 echo "more information, such as the ld(1) and ld.so(8) manual pages."
cannam@127 2758 ;;
cannam@127 2759 esac
cannam@127 2760 echo "----------------------------------------------------------------------"
cannam@127 2761 fi
cannam@127 2762 exit $EXIT_SUCCESS
cannam@127 2763 }
cannam@127 2764
cannam@127 2765 test "$opt_mode" = finish && func_mode_finish ${1+"$@"}
cannam@127 2766
cannam@127 2767
cannam@127 2768 # func_mode_install arg...
cannam@127 2769 func_mode_install ()
cannam@127 2770 {
cannam@127 2771 $opt_debug
cannam@127 2772 # There may be an optional sh(1) argument at the beginning of
cannam@127 2773 # install_prog (especially on Windows NT).
cannam@127 2774 if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
cannam@127 2775 # Allow the use of GNU shtool's install command.
cannam@127 2776 case $nonopt in *shtool*) :;; *) false;; esac; then
cannam@127 2777 # Aesthetically quote it.
cannam@127 2778 func_quote_for_eval "$nonopt"
cannam@127 2779 install_prog="$func_quote_for_eval_result "
cannam@127 2780 arg=$1
cannam@127 2781 shift
cannam@127 2782 else
cannam@127 2783 install_prog=
cannam@127 2784 arg=$nonopt
cannam@127 2785 fi
cannam@127 2786
cannam@127 2787 # The real first argument should be the name of the installation program.
cannam@127 2788 # Aesthetically quote it.
cannam@127 2789 func_quote_for_eval "$arg"
cannam@127 2790 func_append install_prog "$func_quote_for_eval_result"
cannam@127 2791 install_shared_prog=$install_prog
cannam@127 2792 case " $install_prog " in
cannam@127 2793 *[\\\ /]cp\ *) install_cp=: ;;
cannam@127 2794 *) install_cp=false ;;
cannam@127 2795 esac
cannam@127 2796
cannam@127 2797 # We need to accept at least all the BSD install flags.
cannam@127 2798 dest=
cannam@127 2799 files=
cannam@127 2800 opts=
cannam@127 2801 prev=
cannam@127 2802 install_type=
cannam@127 2803 isdir=no
cannam@127 2804 stripme=
cannam@127 2805 no_mode=:
cannam@127 2806 for arg
cannam@127 2807 do
cannam@127 2808 arg2=
cannam@127 2809 if test -n "$dest"; then
cannam@127 2810 func_append files " $dest"
cannam@127 2811 dest=$arg
cannam@127 2812 continue
cannam@127 2813 fi
cannam@127 2814
cannam@127 2815 case $arg in
cannam@127 2816 -d) isdir=yes ;;
cannam@127 2817 -f)
cannam@127 2818 if $install_cp; then :; else
cannam@127 2819 prev=$arg
cannam@127 2820 fi
cannam@127 2821 ;;
cannam@127 2822 -g | -m | -o)
cannam@127 2823 prev=$arg
cannam@127 2824 ;;
cannam@127 2825 -s)
cannam@127 2826 stripme=" -s"
cannam@127 2827 continue
cannam@127 2828 ;;
cannam@127 2829 -*)
cannam@127 2830 ;;
cannam@127 2831 *)
cannam@127 2832 # If the previous option needed an argument, then skip it.
cannam@127 2833 if test -n "$prev"; then
cannam@127 2834 if test "x$prev" = x-m && test -n "$install_override_mode"; then
cannam@127 2835 arg2=$install_override_mode
cannam@127 2836 no_mode=false
cannam@127 2837 fi
cannam@127 2838 prev=
cannam@127 2839 else
cannam@127 2840 dest=$arg
cannam@127 2841 continue
cannam@127 2842 fi
cannam@127 2843 ;;
cannam@127 2844 esac
cannam@127 2845
cannam@127 2846 # Aesthetically quote the argument.
cannam@127 2847 func_quote_for_eval "$arg"
cannam@127 2848 func_append install_prog " $func_quote_for_eval_result"
cannam@127 2849 if test -n "$arg2"; then
cannam@127 2850 func_quote_for_eval "$arg2"
cannam@127 2851 fi
cannam@127 2852 func_append install_shared_prog " $func_quote_for_eval_result"
cannam@127 2853 done
cannam@127 2854
cannam@127 2855 test -z "$install_prog" && \
cannam@127 2856 func_fatal_help "you must specify an install program"
cannam@127 2857
cannam@127 2858 test -n "$prev" && \
cannam@127 2859 func_fatal_help "the \`$prev' option requires an argument"
cannam@127 2860
cannam@127 2861 if test -n "$install_override_mode" && $no_mode; then
cannam@127 2862 if $install_cp; then :; else
cannam@127 2863 func_quote_for_eval "$install_override_mode"
cannam@127 2864 func_append install_shared_prog " -m $func_quote_for_eval_result"
cannam@127 2865 fi
cannam@127 2866 fi
cannam@127 2867
cannam@127 2868 if test -z "$files"; then
cannam@127 2869 if test -z "$dest"; then
cannam@127 2870 func_fatal_help "no file or destination specified"
cannam@127 2871 else
cannam@127 2872 func_fatal_help "you must specify a destination"
cannam@127 2873 fi
cannam@127 2874 fi
cannam@127 2875
cannam@127 2876 # Strip any trailing slash from the destination.
cannam@127 2877 func_stripname '' '/' "$dest"
cannam@127 2878 dest=$func_stripname_result
cannam@127 2879
cannam@127 2880 # Check to see that the destination is a directory.
cannam@127 2881 test -d "$dest" && isdir=yes
cannam@127 2882 if test "$isdir" = yes; then
cannam@127 2883 destdir="$dest"
cannam@127 2884 destname=
cannam@127 2885 else
cannam@127 2886 func_dirname_and_basename "$dest" "" "."
cannam@127 2887 destdir="$func_dirname_result"
cannam@127 2888 destname="$func_basename_result"
cannam@127 2889
cannam@127 2890 # Not a directory, so check to see that there is only one file specified.
cannam@127 2891 set dummy $files; shift
cannam@127 2892 test "$#" -gt 1 && \
cannam@127 2893 func_fatal_help "\`$dest' is not a directory"
cannam@127 2894 fi
cannam@127 2895 case $destdir in
cannam@127 2896 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@127 2897 *)
cannam@127 2898 for file in $files; do
cannam@127 2899 case $file in
cannam@127 2900 *.lo) ;;
cannam@127 2901 *)
cannam@127 2902 func_fatal_help "\`$destdir' must be an absolute directory name"
cannam@127 2903 ;;
cannam@127 2904 esac
cannam@127 2905 done
cannam@127 2906 ;;
cannam@127 2907 esac
cannam@127 2908
cannam@127 2909 # This variable tells wrapper scripts just to set variables rather
cannam@127 2910 # than running their programs.
cannam@127 2911 libtool_install_magic="$magic"
cannam@127 2912
cannam@127 2913 staticlibs=
cannam@127 2914 future_libdirs=
cannam@127 2915 current_libdirs=
cannam@127 2916 for file in $files; do
cannam@127 2917
cannam@127 2918 # Do each installation.
cannam@127 2919 case $file in
cannam@127 2920 *.$libext)
cannam@127 2921 # Do the static libraries later.
cannam@127 2922 func_append staticlibs " $file"
cannam@127 2923 ;;
cannam@127 2924
cannam@127 2925 *.la)
cannam@127 2926 func_resolve_sysroot "$file"
cannam@127 2927 file=$func_resolve_sysroot_result
cannam@127 2928
cannam@127 2929 # Check to see that this really is a libtool archive.
cannam@127 2930 func_lalib_unsafe_p "$file" \
cannam@127 2931 || func_fatal_help "\`$file' is not a valid libtool archive"
cannam@127 2932
cannam@127 2933 library_names=
cannam@127 2934 old_library=
cannam@127 2935 relink_command=
cannam@127 2936 func_source "$file"
cannam@127 2937
cannam@127 2938 # Add the libdir to current_libdirs if it is the destination.
cannam@127 2939 if test "X$destdir" = "X$libdir"; then
cannam@127 2940 case "$current_libdirs " in
cannam@127 2941 *" $libdir "*) ;;
cannam@127 2942 *) func_append current_libdirs " $libdir" ;;
cannam@127 2943 esac
cannam@127 2944 else
cannam@127 2945 # Note the libdir as a future libdir.
cannam@127 2946 case "$future_libdirs " in
cannam@127 2947 *" $libdir "*) ;;
cannam@127 2948 *) func_append future_libdirs " $libdir" ;;
cannam@127 2949 esac
cannam@127 2950 fi
cannam@127 2951
cannam@127 2952 func_dirname "$file" "/" ""
cannam@127 2953 dir="$func_dirname_result"
cannam@127 2954 func_append dir "$objdir"
cannam@127 2955
cannam@127 2956 if test -n "$relink_command"; then
cannam@127 2957 # Determine the prefix the user has applied to our future dir.
cannam@127 2958 inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"`
cannam@127 2959
cannam@127 2960 # Don't allow the user to place us outside of our expected
cannam@127 2961 # location b/c this prevents finding dependent libraries that
cannam@127 2962 # are installed to the same prefix.
cannam@127 2963 # At present, this check doesn't affect windows .dll's that
cannam@127 2964 # are installed into $libdir/../bin (currently, that works fine)
cannam@127 2965 # but it's something to keep an eye on.
cannam@127 2966 test "$inst_prefix_dir" = "$destdir" && \
cannam@127 2967 func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir"
cannam@127 2968
cannam@127 2969 if test -n "$inst_prefix_dir"; then
cannam@127 2970 # Stick the inst_prefix_dir data into the link command.
cannam@127 2971 relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
cannam@127 2972 else
cannam@127 2973 relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
cannam@127 2974 fi
cannam@127 2975
cannam@127 2976 func_warning "relinking \`$file'"
cannam@127 2977 func_show_eval "$relink_command" \
cannam@127 2978 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"'
cannam@127 2979 fi
cannam@127 2980
cannam@127 2981 # See the names of the shared library.
cannam@127 2982 set dummy $library_names; shift
cannam@127 2983 if test -n "$1"; then
cannam@127 2984 realname="$1"
cannam@127 2985 shift
cannam@127 2986
cannam@127 2987 srcname="$realname"
cannam@127 2988 test -n "$relink_command" && srcname="$realname"T
cannam@127 2989
cannam@127 2990 # Install the shared library and build the symlinks.
cannam@127 2991 func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \
cannam@127 2992 'exit $?'
cannam@127 2993 tstripme="$stripme"
cannam@127 2994 case $host_os in
cannam@127 2995 cygwin* | mingw* | pw32* | cegcc*)
cannam@127 2996 case $realname in
cannam@127 2997 *.dll.a)
cannam@127 2998 tstripme=""
cannam@127 2999 ;;
cannam@127 3000 esac
cannam@127 3001 ;;
cannam@127 3002 esac
cannam@127 3003 if test -n "$tstripme" && test -n "$striplib"; then
cannam@127 3004 func_show_eval "$striplib $destdir/$realname" 'exit $?'
cannam@127 3005 fi
cannam@127 3006
cannam@127 3007 if test "$#" -gt 0; then
cannam@127 3008 # Delete the old symlinks, and create new ones.
cannam@127 3009 # Try `ln -sf' first, because the `ln' binary might depend on
cannam@127 3010 # the symlink we replace! Solaris /bin/ln does not understand -f,
cannam@127 3011 # so we also need to try rm && ln -s.
cannam@127 3012 for linkname
cannam@127 3013 do
cannam@127 3014 test "$linkname" != "$realname" \
cannam@127 3015 && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })"
cannam@127 3016 done
cannam@127 3017 fi
cannam@127 3018
cannam@127 3019 # Do each command in the postinstall commands.
cannam@127 3020 lib="$destdir/$realname"
cannam@127 3021 func_execute_cmds "$postinstall_cmds" 'exit $?'
cannam@127 3022 fi
cannam@127 3023
cannam@127 3024 # Install the pseudo-library for information purposes.
cannam@127 3025 func_basename "$file"
cannam@127 3026 name="$func_basename_result"
cannam@127 3027 instname="$dir/$name"i
cannam@127 3028 func_show_eval "$install_prog $instname $destdir/$name" 'exit $?'
cannam@127 3029
cannam@127 3030 # Maybe install the static library, too.
cannam@127 3031 test -n "$old_library" && func_append staticlibs " $dir/$old_library"
cannam@127 3032 ;;
cannam@127 3033
cannam@127 3034 *.lo)
cannam@127 3035 # Install (i.e. copy) a libtool object.
cannam@127 3036
cannam@127 3037 # Figure out destination file name, if it wasn't already specified.
cannam@127 3038 if test -n "$destname"; then
cannam@127 3039 destfile="$destdir/$destname"
cannam@127 3040 else
cannam@127 3041 func_basename "$file"
cannam@127 3042 destfile="$func_basename_result"
cannam@127 3043 destfile="$destdir/$destfile"
cannam@127 3044 fi
cannam@127 3045
cannam@127 3046 # Deduce the name of the destination old-style object file.
cannam@127 3047 case $destfile in
cannam@127 3048 *.lo)
cannam@127 3049 func_lo2o "$destfile"
cannam@127 3050 staticdest=$func_lo2o_result
cannam@127 3051 ;;
cannam@127 3052 *.$objext)
cannam@127 3053 staticdest="$destfile"
cannam@127 3054 destfile=
cannam@127 3055 ;;
cannam@127 3056 *)
cannam@127 3057 func_fatal_help "cannot copy a libtool object to \`$destfile'"
cannam@127 3058 ;;
cannam@127 3059 esac
cannam@127 3060
cannam@127 3061 # Install the libtool object if requested.
cannam@127 3062 test -n "$destfile" && \
cannam@127 3063 func_show_eval "$install_prog $file $destfile" 'exit $?'
cannam@127 3064
cannam@127 3065 # Install the old object if enabled.
cannam@127 3066 if test "$build_old_libs" = yes; then
cannam@127 3067 # Deduce the name of the old-style object file.
cannam@127 3068 func_lo2o "$file"
cannam@127 3069 staticobj=$func_lo2o_result
cannam@127 3070 func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?'
cannam@127 3071 fi
cannam@127 3072 exit $EXIT_SUCCESS
cannam@127 3073 ;;
cannam@127 3074
cannam@127 3075 *)
cannam@127 3076 # Figure out destination file name, if it wasn't already specified.
cannam@127 3077 if test -n "$destname"; then
cannam@127 3078 destfile="$destdir/$destname"
cannam@127 3079 else
cannam@127 3080 func_basename "$file"
cannam@127 3081 destfile="$func_basename_result"
cannam@127 3082 destfile="$destdir/$destfile"
cannam@127 3083 fi
cannam@127 3084
cannam@127 3085 # If the file is missing, and there is a .exe on the end, strip it
cannam@127 3086 # because it is most likely a libtool script we actually want to
cannam@127 3087 # install
cannam@127 3088 stripped_ext=""
cannam@127 3089 case $file in
cannam@127 3090 *.exe)
cannam@127 3091 if test ! -f "$file"; then
cannam@127 3092 func_stripname '' '.exe' "$file"
cannam@127 3093 file=$func_stripname_result
cannam@127 3094 stripped_ext=".exe"
cannam@127 3095 fi
cannam@127 3096 ;;
cannam@127 3097 esac
cannam@127 3098
cannam@127 3099 # Do a test to see if this is really a libtool program.
cannam@127 3100 case $host in
cannam@127 3101 *cygwin* | *mingw*)
cannam@127 3102 if func_ltwrapper_executable_p "$file"; then
cannam@127 3103 func_ltwrapper_scriptname "$file"
cannam@127 3104 wrapper=$func_ltwrapper_scriptname_result
cannam@127 3105 else
cannam@127 3106 func_stripname '' '.exe' "$file"
cannam@127 3107 wrapper=$func_stripname_result
cannam@127 3108 fi
cannam@127 3109 ;;
cannam@127 3110 *)
cannam@127 3111 wrapper=$file
cannam@127 3112 ;;
cannam@127 3113 esac
cannam@127 3114 if func_ltwrapper_script_p "$wrapper"; then
cannam@127 3115 notinst_deplibs=
cannam@127 3116 relink_command=
cannam@127 3117
cannam@127 3118 func_source "$wrapper"
cannam@127 3119
cannam@127 3120 # Check the variables that should have been set.
cannam@127 3121 test -z "$generated_by_libtool_version" && \
cannam@127 3122 func_fatal_error "invalid libtool wrapper script \`$wrapper'"
cannam@127 3123
cannam@127 3124 finalize=yes
cannam@127 3125 for lib in $notinst_deplibs; do
cannam@127 3126 # Check to see that each library is installed.
cannam@127 3127 libdir=
cannam@127 3128 if test -f "$lib"; then
cannam@127 3129 func_source "$lib"
cannam@127 3130 fi
cannam@127 3131 libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test
cannam@127 3132 if test -n "$libdir" && test ! -f "$libfile"; then
cannam@127 3133 func_warning "\`$lib' has not been installed in \`$libdir'"
cannam@127 3134 finalize=no
cannam@127 3135 fi
cannam@127 3136 done
cannam@127 3137
cannam@127 3138 relink_command=
cannam@127 3139 func_source "$wrapper"
cannam@127 3140
cannam@127 3141 outputname=
cannam@127 3142 if test "$fast_install" = no && test -n "$relink_command"; then
cannam@127 3143 $opt_dry_run || {
cannam@127 3144 if test "$finalize" = yes; then
cannam@127 3145 tmpdir=`func_mktempdir`
cannam@127 3146 func_basename "$file$stripped_ext"
cannam@127 3147 file="$func_basename_result"
cannam@127 3148 outputname="$tmpdir/$file"
cannam@127 3149 # Replace the output file specification.
cannam@127 3150 relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'`
cannam@127 3151
cannam@127 3152 $opt_silent || {
cannam@127 3153 func_quote_for_expand "$relink_command"
cannam@127 3154 eval "func_echo $func_quote_for_expand_result"
cannam@127 3155 }
cannam@127 3156 if eval "$relink_command"; then :
cannam@127 3157 else
cannam@127 3158 func_error "error: relink \`$file' with the above command before installing it"
cannam@127 3159 $opt_dry_run || ${RM}r "$tmpdir"
cannam@127 3160 continue
cannam@127 3161 fi
cannam@127 3162 file="$outputname"
cannam@127 3163 else
cannam@127 3164 func_warning "cannot relink \`$file'"
cannam@127 3165 fi
cannam@127 3166 }
cannam@127 3167 else
cannam@127 3168 # Install the binary that we compiled earlier.
cannam@127 3169 file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"`
cannam@127 3170 fi
cannam@127 3171 fi
cannam@127 3172
cannam@127 3173 # remove .exe since cygwin /usr/bin/install will append another
cannam@127 3174 # one anyway
cannam@127 3175 case $install_prog,$host in
cannam@127 3176 */usr/bin/install*,*cygwin*)
cannam@127 3177 case $file:$destfile in
cannam@127 3178 *.exe:*.exe)
cannam@127 3179 # this is ok
cannam@127 3180 ;;
cannam@127 3181 *.exe:*)
cannam@127 3182 destfile=$destfile.exe
cannam@127 3183 ;;
cannam@127 3184 *:*.exe)
cannam@127 3185 func_stripname '' '.exe' "$destfile"
cannam@127 3186 destfile=$func_stripname_result
cannam@127 3187 ;;
cannam@127 3188 esac
cannam@127 3189 ;;
cannam@127 3190 esac
cannam@127 3191 func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?'
cannam@127 3192 $opt_dry_run || if test -n "$outputname"; then
cannam@127 3193 ${RM}r "$tmpdir"
cannam@127 3194 fi
cannam@127 3195 ;;
cannam@127 3196 esac
cannam@127 3197 done
cannam@127 3198
cannam@127 3199 for file in $staticlibs; do
cannam@127 3200 func_basename "$file"
cannam@127 3201 name="$func_basename_result"
cannam@127 3202
cannam@127 3203 # Set up the ranlib parameters.
cannam@127 3204 oldlib="$destdir/$name"
cannam@127 3205 func_to_tool_file "$oldlib" func_convert_file_msys_to_w32
cannam@127 3206 tool_oldlib=$func_to_tool_file_result
cannam@127 3207
cannam@127 3208 func_show_eval "$install_prog \$file \$oldlib" 'exit $?'
cannam@127 3209
cannam@127 3210 if test -n "$stripme" && test -n "$old_striplib"; then
cannam@127 3211 func_show_eval "$old_striplib $tool_oldlib" 'exit $?'
cannam@127 3212 fi
cannam@127 3213
cannam@127 3214 # Do each command in the postinstall commands.
cannam@127 3215 func_execute_cmds "$old_postinstall_cmds" 'exit $?'
cannam@127 3216 done
cannam@127 3217
cannam@127 3218 test -n "$future_libdirs" && \
cannam@127 3219 func_warning "remember to run \`$progname --finish$future_libdirs'"
cannam@127 3220
cannam@127 3221 if test -n "$current_libdirs"; then
cannam@127 3222 # Maybe just do a dry run.
cannam@127 3223 $opt_dry_run && current_libdirs=" -n$current_libdirs"
cannam@127 3224 exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs'
cannam@127 3225 else
cannam@127 3226 exit $EXIT_SUCCESS
cannam@127 3227 fi
cannam@127 3228 }
cannam@127 3229
cannam@127 3230 test "$opt_mode" = install && func_mode_install ${1+"$@"}
cannam@127 3231
cannam@127 3232
cannam@127 3233 # func_generate_dlsyms outputname originator pic_p
cannam@127 3234 # Extract symbols from dlprefiles and create ${outputname}S.o with
cannam@127 3235 # a dlpreopen symbol table.
cannam@127 3236 func_generate_dlsyms ()
cannam@127 3237 {
cannam@127 3238 $opt_debug
cannam@127 3239 my_outputname="$1"
cannam@127 3240 my_originator="$2"
cannam@127 3241 my_pic_p="${3-no}"
cannam@127 3242 my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'`
cannam@127 3243 my_dlsyms=
cannam@127 3244
cannam@127 3245 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@127 3246 if test -n "$NM" && test -n "$global_symbol_pipe"; then
cannam@127 3247 my_dlsyms="${my_outputname}S.c"
cannam@127 3248 else
cannam@127 3249 func_error "not configured to extract global symbols from dlpreopened files"
cannam@127 3250 fi
cannam@127 3251 fi
cannam@127 3252
cannam@127 3253 if test -n "$my_dlsyms"; then
cannam@127 3254 case $my_dlsyms in
cannam@127 3255 "") ;;
cannam@127 3256 *.c)
cannam@127 3257 # Discover the nlist of each of the dlfiles.
cannam@127 3258 nlist="$output_objdir/${my_outputname}.nm"
cannam@127 3259
cannam@127 3260 func_show_eval "$RM $nlist ${nlist}S ${nlist}T"
cannam@127 3261
cannam@127 3262 # Parse the name list into a source file.
cannam@127 3263 func_verbose "creating $output_objdir/$my_dlsyms"
cannam@127 3264
cannam@127 3265 $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\
cannam@127 3266 /* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */
cannam@127 3267 /* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */
cannam@127 3268
cannam@127 3269 #ifdef __cplusplus
cannam@127 3270 extern \"C\" {
cannam@127 3271 #endif
cannam@127 3272
cannam@127 3273 #if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4))
cannam@127 3274 #pragma GCC diagnostic ignored \"-Wstrict-prototypes\"
cannam@127 3275 #endif
cannam@127 3276
cannam@127 3277 /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */
cannam@127 3278 #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE)
cannam@127 3279 /* DATA imports from DLLs on WIN32 con't be const, because runtime
cannam@127 3280 relocations are performed -- see ld's documentation on pseudo-relocs. */
cannam@127 3281 # define LT_DLSYM_CONST
cannam@127 3282 #elif defined(__osf__)
cannam@127 3283 /* This system does not cope well with relocations in const data. */
cannam@127 3284 # define LT_DLSYM_CONST
cannam@127 3285 #else
cannam@127 3286 # define LT_DLSYM_CONST const
cannam@127 3287 #endif
cannam@127 3288
cannam@127 3289 /* External symbol declarations for the compiler. */\
cannam@127 3290 "
cannam@127 3291
cannam@127 3292 if test "$dlself" = yes; then
cannam@127 3293 func_verbose "generating symbol list for \`$output'"
cannam@127 3294
cannam@127 3295 $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist"
cannam@127 3296
cannam@127 3297 # Add our own program objects to the symbol list.
cannam@127 3298 progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@127 3299 for progfile in $progfiles; do
cannam@127 3300 func_to_tool_file "$progfile" func_convert_file_msys_to_w32
cannam@127 3301 func_verbose "extracting global C symbols from \`$func_to_tool_file_result'"
cannam@127 3302 $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'"
cannam@127 3303 done
cannam@127 3304
cannam@127 3305 if test -n "$exclude_expsyms"; then
cannam@127 3306 $opt_dry_run || {
cannam@127 3307 eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
cannam@127 3308 eval '$MV "$nlist"T "$nlist"'
cannam@127 3309 }
cannam@127 3310 fi
cannam@127 3311
cannam@127 3312 if test -n "$export_symbols_regex"; then
cannam@127 3313 $opt_dry_run || {
cannam@127 3314 eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T'
cannam@127 3315 eval '$MV "$nlist"T "$nlist"'
cannam@127 3316 }
cannam@127 3317 fi
cannam@127 3318
cannam@127 3319 # Prepare the list of exported symbols
cannam@127 3320 if test -z "$export_symbols"; then
cannam@127 3321 export_symbols="$output_objdir/$outputname.exp"
cannam@127 3322 $opt_dry_run || {
cannam@127 3323 $RM $export_symbols
cannam@127 3324 eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
cannam@127 3325 case $host in
cannam@127 3326 *cygwin* | *mingw* | *cegcc* )
cannam@127 3327 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
cannam@127 3328 eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"'
cannam@127 3329 ;;
cannam@127 3330 esac
cannam@127 3331 }
cannam@127 3332 else
cannam@127 3333 $opt_dry_run || {
cannam@127 3334 eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"'
cannam@127 3335 eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T'
cannam@127 3336 eval '$MV "$nlist"T "$nlist"'
cannam@127 3337 case $host in
cannam@127 3338 *cygwin* | *mingw* | *cegcc* )
cannam@127 3339 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
cannam@127 3340 eval 'cat "$nlist" >> "$output_objdir/$outputname.def"'
cannam@127 3341 ;;
cannam@127 3342 esac
cannam@127 3343 }
cannam@127 3344 fi
cannam@127 3345 fi
cannam@127 3346
cannam@127 3347 for dlprefile in $dlprefiles; do
cannam@127 3348 func_verbose "extracting global C symbols from \`$dlprefile'"
cannam@127 3349 func_basename "$dlprefile"
cannam@127 3350 name="$func_basename_result"
cannam@127 3351 case $host in
cannam@127 3352 *cygwin* | *mingw* | *cegcc* )
cannam@127 3353 # if an import library, we need to obtain dlname
cannam@127 3354 if func_win32_import_lib_p "$dlprefile"; then
cannam@127 3355 func_tr_sh "$dlprefile"
cannam@127 3356 eval "curr_lafile=\$libfile_$func_tr_sh_result"
cannam@127 3357 dlprefile_dlbasename=""
cannam@127 3358 if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then
cannam@127 3359 # Use subshell, to avoid clobbering current variable values
cannam@127 3360 dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"`
cannam@127 3361 if test -n "$dlprefile_dlname" ; then
cannam@127 3362 func_basename "$dlprefile_dlname"
cannam@127 3363 dlprefile_dlbasename="$func_basename_result"
cannam@127 3364 else
cannam@127 3365 # no lafile. user explicitly requested -dlpreopen <import library>.
cannam@127 3366 $sharedlib_from_linklib_cmd "$dlprefile"
cannam@127 3367 dlprefile_dlbasename=$sharedlib_from_linklib_result
cannam@127 3368 fi
cannam@127 3369 fi
cannam@127 3370 $opt_dry_run || {
cannam@127 3371 if test -n "$dlprefile_dlbasename" ; then
cannam@127 3372 eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"'
cannam@127 3373 else
cannam@127 3374 func_warning "Could not compute DLL name from $name"
cannam@127 3375 eval '$ECHO ": $name " >> "$nlist"'
cannam@127 3376 fi
cannam@127 3377 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
cannam@127 3378 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe |
cannam@127 3379 $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'"
cannam@127 3380 }
cannam@127 3381 else # not an import lib
cannam@127 3382 $opt_dry_run || {
cannam@127 3383 eval '$ECHO ": $name " >> "$nlist"'
cannam@127 3384 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
cannam@127 3385 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
cannam@127 3386 }
cannam@127 3387 fi
cannam@127 3388 ;;
cannam@127 3389 *)
cannam@127 3390 $opt_dry_run || {
cannam@127 3391 eval '$ECHO ": $name " >> "$nlist"'
cannam@127 3392 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
cannam@127 3393 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
cannam@127 3394 }
cannam@127 3395 ;;
cannam@127 3396 esac
cannam@127 3397 done
cannam@127 3398
cannam@127 3399 $opt_dry_run || {
cannam@127 3400 # Make sure we have at least an empty file.
cannam@127 3401 test -f "$nlist" || : > "$nlist"
cannam@127 3402
cannam@127 3403 if test -n "$exclude_expsyms"; then
cannam@127 3404 $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
cannam@127 3405 $MV "$nlist"T "$nlist"
cannam@127 3406 fi
cannam@127 3407
cannam@127 3408 # Try sorting and uniquifying the output.
cannam@127 3409 if $GREP -v "^: " < "$nlist" |
cannam@127 3410 if sort -k 3 </dev/null >/dev/null 2>&1; then
cannam@127 3411 sort -k 3
cannam@127 3412 else
cannam@127 3413 sort +2
cannam@127 3414 fi |
cannam@127 3415 uniq > "$nlist"S; then
cannam@127 3416 :
cannam@127 3417 else
cannam@127 3418 $GREP -v "^: " < "$nlist" > "$nlist"S
cannam@127 3419 fi
cannam@127 3420
cannam@127 3421 if test -f "$nlist"S; then
cannam@127 3422 eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"'
cannam@127 3423 else
cannam@127 3424 echo '/* NONE */' >> "$output_objdir/$my_dlsyms"
cannam@127 3425 fi
cannam@127 3426
cannam@127 3427 echo >> "$output_objdir/$my_dlsyms" "\
cannam@127 3428
cannam@127 3429 /* The mapping between symbol names and symbols. */
cannam@127 3430 typedef struct {
cannam@127 3431 const char *name;
cannam@127 3432 void *address;
cannam@127 3433 } lt_dlsymlist;
cannam@127 3434 extern LT_DLSYM_CONST lt_dlsymlist
cannam@127 3435 lt_${my_prefix}_LTX_preloaded_symbols[];
cannam@127 3436 LT_DLSYM_CONST lt_dlsymlist
cannam@127 3437 lt_${my_prefix}_LTX_preloaded_symbols[] =
cannam@127 3438 {\
cannam@127 3439 { \"$my_originator\", (void *) 0 },"
cannam@127 3440
cannam@127 3441 case $need_lib_prefix in
cannam@127 3442 no)
cannam@127 3443 eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms"
cannam@127 3444 ;;
cannam@127 3445 *)
cannam@127 3446 eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms"
cannam@127 3447 ;;
cannam@127 3448 esac
cannam@127 3449 echo >> "$output_objdir/$my_dlsyms" "\
cannam@127 3450 {0, (void *) 0}
cannam@127 3451 };
cannam@127 3452
cannam@127 3453 /* This works around a problem in FreeBSD linker */
cannam@127 3454 #ifdef FREEBSD_WORKAROUND
cannam@127 3455 static const void *lt_preloaded_setup() {
cannam@127 3456 return lt_${my_prefix}_LTX_preloaded_symbols;
cannam@127 3457 }
cannam@127 3458 #endif
cannam@127 3459
cannam@127 3460 #ifdef __cplusplus
cannam@127 3461 }
cannam@127 3462 #endif\
cannam@127 3463 "
cannam@127 3464 } # !$opt_dry_run
cannam@127 3465
cannam@127 3466 pic_flag_for_symtable=
cannam@127 3467 case "$compile_command " in
cannam@127 3468 *" -static "*) ;;
cannam@127 3469 *)
cannam@127 3470 case $host in
cannam@127 3471 # compiling the symbol table file with pic_flag works around
cannam@127 3472 # a FreeBSD bug that causes programs to crash when -lm is
cannam@127 3473 # linked before any other PIC object. But we must not use
cannam@127 3474 # pic_flag when linking with -static. The problem exists in
cannam@127 3475 # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
cannam@127 3476 *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
cannam@127 3477 pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;;
cannam@127 3478 *-*-hpux*)
cannam@127 3479 pic_flag_for_symtable=" $pic_flag" ;;
cannam@127 3480 *)
cannam@127 3481 if test "X$my_pic_p" != Xno; then
cannam@127 3482 pic_flag_for_symtable=" $pic_flag"
cannam@127 3483 fi
cannam@127 3484 ;;
cannam@127 3485 esac
cannam@127 3486 ;;
cannam@127 3487 esac
cannam@127 3488 symtab_cflags=
cannam@127 3489 for arg in $LTCFLAGS; do
cannam@127 3490 case $arg in
cannam@127 3491 -pie | -fpie | -fPIE) ;;
cannam@127 3492 *) func_append symtab_cflags " $arg" ;;
cannam@127 3493 esac
cannam@127 3494 done
cannam@127 3495
cannam@127 3496 # Now compile the dynamic symbol file.
cannam@127 3497 func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?'
cannam@127 3498
cannam@127 3499 # Clean up the generated files.
cannam@127 3500 func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"'
cannam@127 3501
cannam@127 3502 # Transform the symbol file into the correct name.
cannam@127 3503 symfileobj="$output_objdir/${my_outputname}S.$objext"
cannam@127 3504 case $host in
cannam@127 3505 *cygwin* | *mingw* | *cegcc* )
cannam@127 3506 if test -f "$output_objdir/$my_outputname.def"; then
cannam@127 3507 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
cannam@127 3508 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
cannam@127 3509 else
cannam@127 3510 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@127 3511 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@127 3512 fi
cannam@127 3513 ;;
cannam@127 3514 *)
cannam@127 3515 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@127 3516 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@127 3517 ;;
cannam@127 3518 esac
cannam@127 3519 ;;
cannam@127 3520 *)
cannam@127 3521 func_fatal_error "unknown suffix for \`$my_dlsyms'"
cannam@127 3522 ;;
cannam@127 3523 esac
cannam@127 3524 else
cannam@127 3525 # We keep going just in case the user didn't refer to
cannam@127 3526 # lt_preloaded_symbols. The linker will fail if global_symbol_pipe
cannam@127 3527 # really was required.
cannam@127 3528
cannam@127 3529 # Nullify the symbol file.
cannam@127 3530 compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"`
cannam@127 3531 finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"`
cannam@127 3532 fi
cannam@127 3533 }
cannam@127 3534
cannam@127 3535 # func_win32_libid arg
cannam@127 3536 # return the library type of file 'arg'
cannam@127 3537 #
cannam@127 3538 # Need a lot of goo to handle *both* DLLs and import libs
cannam@127 3539 # Has to be a shell function in order to 'eat' the argument
cannam@127 3540 # that is supplied when $file_magic_command is called.
cannam@127 3541 # Despite the name, also deal with 64 bit binaries.
cannam@127 3542 func_win32_libid ()
cannam@127 3543 {
cannam@127 3544 $opt_debug
cannam@127 3545 win32_libid_type="unknown"
cannam@127 3546 win32_fileres=`file -L $1 2>/dev/null`
cannam@127 3547 case $win32_fileres in
cannam@127 3548 *ar\ archive\ import\ library*) # definitely import
cannam@127 3549 win32_libid_type="x86 archive import"
cannam@127 3550 ;;
cannam@127 3551 *ar\ archive*) # could be an import, or static
cannam@127 3552 # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD.
cannam@127 3553 if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null |
cannam@127 3554 $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then
cannam@127 3555 func_to_tool_file "$1" func_convert_file_msys_to_w32
cannam@127 3556 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" |
cannam@127 3557 $SED -n -e '
cannam@127 3558 1,100{
cannam@127 3559 / I /{
cannam@127 3560 s,.*,import,
cannam@127 3561 p
cannam@127 3562 q
cannam@127 3563 }
cannam@127 3564 }'`
cannam@127 3565 case $win32_nmres in
cannam@127 3566 import*) win32_libid_type="x86 archive import";;
cannam@127 3567 *) win32_libid_type="x86 archive static";;
cannam@127 3568 esac
cannam@127 3569 fi
cannam@127 3570 ;;
cannam@127 3571 *DLL*)
cannam@127 3572 win32_libid_type="x86 DLL"
cannam@127 3573 ;;
cannam@127 3574 *executable*) # but shell scripts are "executable" too...
cannam@127 3575 case $win32_fileres in
cannam@127 3576 *MS\ Windows\ PE\ Intel*)
cannam@127 3577 win32_libid_type="x86 DLL"
cannam@127 3578 ;;
cannam@127 3579 esac
cannam@127 3580 ;;
cannam@127 3581 esac
cannam@127 3582 $ECHO "$win32_libid_type"
cannam@127 3583 }
cannam@127 3584
cannam@127 3585 # func_cygming_dll_for_implib ARG
cannam@127 3586 #
cannam@127 3587 # Platform-specific function to extract the
cannam@127 3588 # name of the DLL associated with the specified
cannam@127 3589 # import library ARG.
cannam@127 3590 # Invoked by eval'ing the libtool variable
cannam@127 3591 # $sharedlib_from_linklib_cmd
cannam@127 3592 # Result is available in the variable
cannam@127 3593 # $sharedlib_from_linklib_result
cannam@127 3594 func_cygming_dll_for_implib ()
cannam@127 3595 {
cannam@127 3596 $opt_debug
cannam@127 3597 sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"`
cannam@127 3598 }
cannam@127 3599
cannam@127 3600 # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs
cannam@127 3601 #
cannam@127 3602 # The is the core of a fallback implementation of a
cannam@127 3603 # platform-specific function to extract the name of the
cannam@127 3604 # DLL associated with the specified import library LIBNAME.
cannam@127 3605 #
cannam@127 3606 # SECTION_NAME is either .idata$6 or .idata$7, depending
cannam@127 3607 # on the platform and compiler that created the implib.
cannam@127 3608 #
cannam@127 3609 # Echos the name of the DLL associated with the
cannam@127 3610 # specified import library.
cannam@127 3611 func_cygming_dll_for_implib_fallback_core ()
cannam@127 3612 {
cannam@127 3613 $opt_debug
cannam@127 3614 match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"`
cannam@127 3615 $OBJDUMP -s --section "$1" "$2" 2>/dev/null |
cannam@127 3616 $SED '/^Contents of section '"$match_literal"':/{
cannam@127 3617 # Place marker at beginning of archive member dllname section
cannam@127 3618 s/.*/====MARK====/
cannam@127 3619 p
cannam@127 3620 d
cannam@127 3621 }
cannam@127 3622 # These lines can sometimes be longer than 43 characters, but
cannam@127 3623 # are always uninteresting
cannam@127 3624 /:[ ]*file format pe[i]\{,1\}-/d
cannam@127 3625 /^In archive [^:]*:/d
cannam@127 3626 # Ensure marker is printed
cannam@127 3627 /^====MARK====/p
cannam@127 3628 # Remove all lines with less than 43 characters
cannam@127 3629 /^.\{43\}/!d
cannam@127 3630 # From remaining lines, remove first 43 characters
cannam@127 3631 s/^.\{43\}//' |
cannam@127 3632 $SED -n '
cannam@127 3633 # Join marker and all lines until next marker into a single line
cannam@127 3634 /^====MARK====/ b para
cannam@127 3635 H
cannam@127 3636 $ b para
cannam@127 3637 b
cannam@127 3638 :para
cannam@127 3639 x
cannam@127 3640 s/\n//g
cannam@127 3641 # Remove the marker
cannam@127 3642 s/^====MARK====//
cannam@127 3643 # Remove trailing dots and whitespace
cannam@127 3644 s/[\. \t]*$//
cannam@127 3645 # Print
cannam@127 3646 /./p' |
cannam@127 3647 # we now have a list, one entry per line, of the stringified
cannam@127 3648 # contents of the appropriate section of all members of the
cannam@127 3649 # archive which possess that section. Heuristic: eliminate
cannam@127 3650 # all those which have a first or second character that is
cannam@127 3651 # a '.' (that is, objdump's representation of an unprintable
cannam@127 3652 # character.) This should work for all archives with less than
cannam@127 3653 # 0x302f exports -- but will fail for DLLs whose name actually
cannam@127 3654 # begins with a literal '.' or a single character followed by
cannam@127 3655 # a '.'.
cannam@127 3656 #
cannam@127 3657 # Of those that remain, print the first one.
cannam@127 3658 $SED -e '/^\./d;/^.\./d;q'
cannam@127 3659 }
cannam@127 3660
cannam@127 3661 # func_cygming_gnu_implib_p ARG
cannam@127 3662 # This predicate returns with zero status (TRUE) if
cannam@127 3663 # ARG is a GNU/binutils-style import library. Returns
cannam@127 3664 # with nonzero status (FALSE) otherwise.
cannam@127 3665 func_cygming_gnu_implib_p ()
cannam@127 3666 {
cannam@127 3667 $opt_debug
cannam@127 3668 func_to_tool_file "$1" func_convert_file_msys_to_w32
cannam@127 3669 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@127 3670 test -n "$func_cygming_gnu_implib_tmp"
cannam@127 3671 }
cannam@127 3672
cannam@127 3673 # func_cygming_ms_implib_p ARG
cannam@127 3674 # This predicate returns with zero status (TRUE) if
cannam@127 3675 # ARG is an MS-style import library. Returns
cannam@127 3676 # with nonzero status (FALSE) otherwise.
cannam@127 3677 func_cygming_ms_implib_p ()
cannam@127 3678 {
cannam@127 3679 $opt_debug
cannam@127 3680 func_to_tool_file "$1" func_convert_file_msys_to_w32
cannam@127 3681 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'`
cannam@127 3682 test -n "$func_cygming_ms_implib_tmp"
cannam@127 3683 }
cannam@127 3684
cannam@127 3685 # func_cygming_dll_for_implib_fallback ARG
cannam@127 3686 # Platform-specific function to extract the
cannam@127 3687 # name of the DLL associated with the specified
cannam@127 3688 # import library ARG.
cannam@127 3689 #
cannam@127 3690 # This fallback implementation is for use when $DLLTOOL
cannam@127 3691 # does not support the --identify-strict option.
cannam@127 3692 # Invoked by eval'ing the libtool variable
cannam@127 3693 # $sharedlib_from_linklib_cmd
cannam@127 3694 # Result is available in the variable
cannam@127 3695 # $sharedlib_from_linklib_result
cannam@127 3696 func_cygming_dll_for_implib_fallback ()
cannam@127 3697 {
cannam@127 3698 $opt_debug
cannam@127 3699 if func_cygming_gnu_implib_p "$1" ; then
cannam@127 3700 # binutils import library
cannam@127 3701 sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"`
cannam@127 3702 elif func_cygming_ms_implib_p "$1" ; then
cannam@127 3703 # ms-generated import library
cannam@127 3704 sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"`
cannam@127 3705 else
cannam@127 3706 # unknown
cannam@127 3707 sharedlib_from_linklib_result=""
cannam@127 3708 fi
cannam@127 3709 }
cannam@127 3710
cannam@127 3711
cannam@127 3712 # func_extract_an_archive dir oldlib
cannam@127 3713 func_extract_an_archive ()
cannam@127 3714 {
cannam@127 3715 $opt_debug
cannam@127 3716 f_ex_an_ar_dir="$1"; shift
cannam@127 3717 f_ex_an_ar_oldlib="$1"
cannam@127 3718 if test "$lock_old_archive_extraction" = yes; then
cannam@127 3719 lockfile=$f_ex_an_ar_oldlib.lock
cannam@127 3720 until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do
cannam@127 3721 func_echo "Waiting for $lockfile to be removed"
cannam@127 3722 sleep 2
cannam@127 3723 done
cannam@127 3724 fi
cannam@127 3725 func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \
cannam@127 3726 'stat=$?; rm -f "$lockfile"; exit $stat'
cannam@127 3727 if test "$lock_old_archive_extraction" = yes; then
cannam@127 3728 $opt_dry_run || rm -f "$lockfile"
cannam@127 3729 fi
cannam@127 3730 if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
cannam@127 3731 :
cannam@127 3732 else
cannam@127 3733 func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib"
cannam@127 3734 fi
cannam@127 3735 }
cannam@127 3736
cannam@127 3737
cannam@127 3738 # func_extract_archives gentop oldlib ...
cannam@127 3739 func_extract_archives ()
cannam@127 3740 {
cannam@127 3741 $opt_debug
cannam@127 3742 my_gentop="$1"; shift
cannam@127 3743 my_oldlibs=${1+"$@"}
cannam@127 3744 my_oldobjs=""
cannam@127 3745 my_xlib=""
cannam@127 3746 my_xabs=""
cannam@127 3747 my_xdir=""
cannam@127 3748
cannam@127 3749 for my_xlib in $my_oldlibs; do
cannam@127 3750 # Extract the objects.
cannam@127 3751 case $my_xlib in
cannam@127 3752 [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;;
cannam@127 3753 *) my_xabs=`pwd`"/$my_xlib" ;;
cannam@127 3754 esac
cannam@127 3755 func_basename "$my_xlib"
cannam@127 3756 my_xlib="$func_basename_result"
cannam@127 3757 my_xlib_u=$my_xlib
cannam@127 3758 while :; do
cannam@127 3759 case " $extracted_archives " in
cannam@127 3760 *" $my_xlib_u "*)
cannam@127 3761 func_arith $extracted_serial + 1
cannam@127 3762 extracted_serial=$func_arith_result
cannam@127 3763 my_xlib_u=lt$extracted_serial-$my_xlib ;;
cannam@127 3764 *) break ;;
cannam@127 3765 esac
cannam@127 3766 done
cannam@127 3767 extracted_archives="$extracted_archives $my_xlib_u"
cannam@127 3768 my_xdir="$my_gentop/$my_xlib_u"
cannam@127 3769
cannam@127 3770 func_mkdir_p "$my_xdir"
cannam@127 3771
cannam@127 3772 case $host in
cannam@127 3773 *-darwin*)
cannam@127 3774 func_verbose "Extracting $my_xabs"
cannam@127 3775 # Do not bother doing anything if just a dry run
cannam@127 3776 $opt_dry_run || {
cannam@127 3777 darwin_orig_dir=`pwd`
cannam@127 3778 cd $my_xdir || exit $?
cannam@127 3779 darwin_archive=$my_xabs
cannam@127 3780 darwin_curdir=`pwd`
cannam@127 3781 darwin_base_archive=`basename "$darwin_archive"`
cannam@127 3782 darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true`
cannam@127 3783 if test -n "$darwin_arches"; then
cannam@127 3784 darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'`
cannam@127 3785 darwin_arch=
cannam@127 3786 func_verbose "$darwin_base_archive has multiple architectures $darwin_arches"
cannam@127 3787 for darwin_arch in $darwin_arches ; do
cannam@127 3788 func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}"
cannam@127 3789 $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}"
cannam@127 3790 cd "unfat-$$/${darwin_base_archive}-${darwin_arch}"
cannam@127 3791 func_extract_an_archive "`pwd`" "${darwin_base_archive}"
cannam@127 3792 cd "$darwin_curdir"
cannam@127 3793 $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}"
cannam@127 3794 done # $darwin_arches
cannam@127 3795 ## Okay now we've a bunch of thin objects, gotta fatten them up :)
cannam@127 3796 darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u`
cannam@127 3797 darwin_file=
cannam@127 3798 darwin_files=
cannam@127 3799 for darwin_file in $darwin_filelist; do
cannam@127 3800 darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP`
cannam@127 3801 $LIPO -create -output "$darwin_file" $darwin_files
cannam@127 3802 done # $darwin_filelist
cannam@127 3803 $RM -rf unfat-$$
cannam@127 3804 cd "$darwin_orig_dir"
cannam@127 3805 else
cannam@127 3806 cd $darwin_orig_dir
cannam@127 3807 func_extract_an_archive "$my_xdir" "$my_xabs"
cannam@127 3808 fi # $darwin_arches
cannam@127 3809 } # !$opt_dry_run
cannam@127 3810 ;;
cannam@127 3811 *)
cannam@127 3812 func_extract_an_archive "$my_xdir" "$my_xabs"
cannam@127 3813 ;;
cannam@127 3814 esac
cannam@127 3815 my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP`
cannam@127 3816 done
cannam@127 3817
cannam@127 3818 func_extract_archives_result="$my_oldobjs"
cannam@127 3819 }
cannam@127 3820
cannam@127 3821
cannam@127 3822 # func_emit_wrapper [arg=no]
cannam@127 3823 #
cannam@127 3824 # Emit a libtool wrapper script on stdout.
cannam@127 3825 # Don't directly open a file because we may want to
cannam@127 3826 # incorporate the script contents within a cygwin/mingw
cannam@127 3827 # wrapper executable. Must ONLY be called from within
cannam@127 3828 # func_mode_link because it depends on a number of variables
cannam@127 3829 # set therein.
cannam@127 3830 #
cannam@127 3831 # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR
cannam@127 3832 # variable will take. If 'yes', then the emitted script
cannam@127 3833 # will assume that the directory in which it is stored is
cannam@127 3834 # the $objdir directory. This is a cygwin/mingw-specific
cannam@127 3835 # behavior.
cannam@127 3836 func_emit_wrapper ()
cannam@127 3837 {
cannam@127 3838 func_emit_wrapper_arg1=${1-no}
cannam@127 3839
cannam@127 3840 $ECHO "\
cannam@127 3841 #! $SHELL
cannam@127 3842
cannam@127 3843 # $output - temporary wrapper script for $objdir/$outputname
cannam@127 3844 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@127 3845 #
cannam@127 3846 # The $output program cannot be directly executed until all the libtool
cannam@127 3847 # libraries that it depends on are installed.
cannam@127 3848 #
cannam@127 3849 # This wrapper script should never be moved out of the build directory.
cannam@127 3850 # If it is, it will not operate correctly.
cannam@127 3851
cannam@127 3852 # Sed substitution that helps us do robust quoting. It backslashifies
cannam@127 3853 # metacharacters that are still active within double-quoted strings.
cannam@127 3854 sed_quote_subst='$sed_quote_subst'
cannam@127 3855
cannam@127 3856 # Be Bourne compatible
cannam@127 3857 if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then
cannam@127 3858 emulate sh
cannam@127 3859 NULLCMD=:
cannam@127 3860 # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which
cannam@127 3861 # is contrary to our usage. Disable this feature.
cannam@127 3862 alias -g '\${1+\"\$@\"}'='\"\$@\"'
cannam@127 3863 setopt NO_GLOB_SUBST
cannam@127 3864 else
cannam@127 3865 case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac
cannam@127 3866 fi
cannam@127 3867 BIN_SH=xpg4; export BIN_SH # for Tru64
cannam@127 3868 DUALCASE=1; export DUALCASE # for MKS sh
cannam@127 3869
cannam@127 3870 # The HP-UX ksh and POSIX shell print the target directory to stdout
cannam@127 3871 # if CDPATH is set.
cannam@127 3872 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
cannam@127 3873
cannam@127 3874 relink_command=\"$relink_command\"
cannam@127 3875
cannam@127 3876 # This environment variable determines our operation mode.
cannam@127 3877 if test \"\$libtool_install_magic\" = \"$magic\"; then
cannam@127 3878 # install mode needs the following variables:
cannam@127 3879 generated_by_libtool_version='$macro_version'
cannam@127 3880 notinst_deplibs='$notinst_deplibs'
cannam@127 3881 else
cannam@127 3882 # When we are sourced in execute mode, \$file and \$ECHO are already set.
cannam@127 3883 if test \"\$libtool_execute_magic\" != \"$magic\"; then
cannam@127 3884 file=\"\$0\""
cannam@127 3885
cannam@127 3886 qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"`
cannam@127 3887 $ECHO "\
cannam@127 3888
cannam@127 3889 # A function that is used when there is no print builtin or printf.
cannam@127 3890 func_fallback_echo ()
cannam@127 3891 {
cannam@127 3892 eval 'cat <<_LTECHO_EOF
cannam@127 3893 \$1
cannam@127 3894 _LTECHO_EOF'
cannam@127 3895 }
cannam@127 3896 ECHO=\"$qECHO\"
cannam@127 3897 fi
cannam@127 3898
cannam@127 3899 # Very basic option parsing. These options are (a) specific to
cannam@127 3900 # the libtool wrapper, (b) are identical between the wrapper
cannam@127 3901 # /script/ and the wrapper /executable/ which is used only on
cannam@127 3902 # windows platforms, and (c) all begin with the string "--lt-"
cannam@127 3903 # (application programs are unlikely to have options which match
cannam@127 3904 # this pattern).
cannam@127 3905 #
cannam@127 3906 # There are only two supported options: --lt-debug and
cannam@127 3907 # --lt-dump-script. There is, deliberately, no --lt-help.
cannam@127 3908 #
cannam@127 3909 # The first argument to this parsing function should be the
cannam@127 3910 # script's $0 value, followed by "$@".
cannam@127 3911 lt_option_debug=
cannam@127 3912 func_parse_lt_options ()
cannam@127 3913 {
cannam@127 3914 lt_script_arg0=\$0
cannam@127 3915 shift
cannam@127 3916 for lt_opt
cannam@127 3917 do
cannam@127 3918 case \"\$lt_opt\" in
cannam@127 3919 --lt-debug) lt_option_debug=1 ;;
cannam@127 3920 --lt-dump-script)
cannam@127 3921 lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\`
cannam@127 3922 test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=.
cannam@127 3923 lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\`
cannam@127 3924 cat \"\$lt_dump_D/\$lt_dump_F\"
cannam@127 3925 exit 0
cannam@127 3926 ;;
cannam@127 3927 --lt-*)
cannam@127 3928 \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2
cannam@127 3929 exit 1
cannam@127 3930 ;;
cannam@127 3931 esac
cannam@127 3932 done
cannam@127 3933
cannam@127 3934 # Print the debug banner immediately:
cannam@127 3935 if test -n \"\$lt_option_debug\"; then
cannam@127 3936 echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2
cannam@127 3937 fi
cannam@127 3938 }
cannam@127 3939
cannam@127 3940 # Used when --lt-debug. Prints its arguments to stdout
cannam@127 3941 # (redirection is the responsibility of the caller)
cannam@127 3942 func_lt_dump_args ()
cannam@127 3943 {
cannam@127 3944 lt_dump_args_N=1;
cannam@127 3945 for lt_arg
cannam@127 3946 do
cannam@127 3947 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\"
cannam@127 3948 lt_dump_args_N=\`expr \$lt_dump_args_N + 1\`
cannam@127 3949 done
cannam@127 3950 }
cannam@127 3951
cannam@127 3952 # Core function for launching the target application
cannam@127 3953 func_exec_program_core ()
cannam@127 3954 {
cannam@127 3955 "
cannam@127 3956 case $host in
cannam@127 3957 # Backslashes separate directories on plain windows
cannam@127 3958 *-*-mingw | *-*-os2* | *-cegcc*)
cannam@127 3959 $ECHO "\
cannam@127 3960 if test -n \"\$lt_option_debug\"; then
cannam@127 3961 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2
cannam@127 3962 func_lt_dump_args \${1+\"\$@\"} 1>&2
cannam@127 3963 fi
cannam@127 3964 exec \"\$progdir\\\\\$program\" \${1+\"\$@\"}
cannam@127 3965 "
cannam@127 3966 ;;
cannam@127 3967
cannam@127 3968 *)
cannam@127 3969 $ECHO "\
cannam@127 3970 if test -n \"\$lt_option_debug\"; then
cannam@127 3971 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2
cannam@127 3972 func_lt_dump_args \${1+\"\$@\"} 1>&2
cannam@127 3973 fi
cannam@127 3974 exec \"\$progdir/\$program\" \${1+\"\$@\"}
cannam@127 3975 "
cannam@127 3976 ;;
cannam@127 3977 esac
cannam@127 3978 $ECHO "\
cannam@127 3979 \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2
cannam@127 3980 exit 1
cannam@127 3981 }
cannam@127 3982
cannam@127 3983 # A function to encapsulate launching the target application
cannam@127 3984 # Strips options in the --lt-* namespace from \$@ and
cannam@127 3985 # launches target application with the remaining arguments.
cannam@127 3986 func_exec_program ()
cannam@127 3987 {
cannam@127 3988 case \" \$* \" in
cannam@127 3989 *\\ --lt-*)
cannam@127 3990 for lt_wr_arg
cannam@127 3991 do
cannam@127 3992 case \$lt_wr_arg in
cannam@127 3993 --lt-*) ;;
cannam@127 3994 *) set x \"\$@\" \"\$lt_wr_arg\"; shift;;
cannam@127 3995 esac
cannam@127 3996 shift
cannam@127 3997 done ;;
cannam@127 3998 esac
cannam@127 3999 func_exec_program_core \${1+\"\$@\"}
cannam@127 4000 }
cannam@127 4001
cannam@127 4002 # Parse options
cannam@127 4003 func_parse_lt_options \"\$0\" \${1+\"\$@\"}
cannam@127 4004
cannam@127 4005 # Find the directory that this script lives in.
cannam@127 4006 thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\`
cannam@127 4007 test \"x\$thisdir\" = \"x\$file\" && thisdir=.
cannam@127 4008
cannam@127 4009 # Follow symbolic links until we get to the real thisdir.
cannam@127 4010 file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\`
cannam@127 4011 while test -n \"\$file\"; do
cannam@127 4012 destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\`
cannam@127 4013
cannam@127 4014 # If there was a directory component, then change thisdir.
cannam@127 4015 if test \"x\$destdir\" != \"x\$file\"; then
cannam@127 4016 case \"\$destdir\" in
cannam@127 4017 [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
cannam@127 4018 *) thisdir=\"\$thisdir/\$destdir\" ;;
cannam@127 4019 esac
cannam@127 4020 fi
cannam@127 4021
cannam@127 4022 file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\`
cannam@127 4023 file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\`
cannam@127 4024 done
cannam@127 4025
cannam@127 4026 # Usually 'no', except on cygwin/mingw when embedded into
cannam@127 4027 # the cwrapper.
cannam@127 4028 WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1
cannam@127 4029 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then
cannam@127 4030 # special case for '.'
cannam@127 4031 if test \"\$thisdir\" = \".\"; then
cannam@127 4032 thisdir=\`pwd\`
cannam@127 4033 fi
cannam@127 4034 # remove .libs from thisdir
cannam@127 4035 case \"\$thisdir\" in
cannam@127 4036 *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;;
cannam@127 4037 $objdir ) thisdir=. ;;
cannam@127 4038 esac
cannam@127 4039 fi
cannam@127 4040
cannam@127 4041 # Try to get the absolute directory name.
cannam@127 4042 absdir=\`cd \"\$thisdir\" && pwd\`
cannam@127 4043 test -n \"\$absdir\" && thisdir=\"\$absdir\"
cannam@127 4044 "
cannam@127 4045
cannam@127 4046 if test "$fast_install" = yes; then
cannam@127 4047 $ECHO "\
cannam@127 4048 program=lt-'$outputname'$exeext
cannam@127 4049 progdir=\"\$thisdir/$objdir\"
cannam@127 4050
cannam@127 4051 if test ! -f \"\$progdir/\$program\" ||
cannam@127 4052 { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\
cannam@127 4053 test \"X\$file\" != \"X\$progdir/\$program\"; }; then
cannam@127 4054
cannam@127 4055 file=\"\$\$-\$program\"
cannam@127 4056
cannam@127 4057 if test ! -d \"\$progdir\"; then
cannam@127 4058 $MKDIR \"\$progdir\"
cannam@127 4059 else
cannam@127 4060 $RM \"\$progdir/\$file\"
cannam@127 4061 fi"
cannam@127 4062
cannam@127 4063 $ECHO "\
cannam@127 4064
cannam@127 4065 # relink executable if necessary
cannam@127 4066 if test -n \"\$relink_command\"; then
cannam@127 4067 if relink_command_output=\`eval \$relink_command 2>&1\`; then :
cannam@127 4068 else
cannam@127 4069 $ECHO \"\$relink_command_output\" >&2
cannam@127 4070 $RM \"\$progdir/\$file\"
cannam@127 4071 exit 1
cannam@127 4072 fi
cannam@127 4073 fi
cannam@127 4074
cannam@127 4075 $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
cannam@127 4076 { $RM \"\$progdir/\$program\";
cannam@127 4077 $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; }
cannam@127 4078 $RM \"\$progdir/\$file\"
cannam@127 4079 fi"
cannam@127 4080 else
cannam@127 4081 $ECHO "\
cannam@127 4082 program='$outputname'
cannam@127 4083 progdir=\"\$thisdir/$objdir\"
cannam@127 4084 "
cannam@127 4085 fi
cannam@127 4086
cannam@127 4087 $ECHO "\
cannam@127 4088
cannam@127 4089 if test -f \"\$progdir/\$program\"; then"
cannam@127 4090
cannam@127 4091 # fixup the dll searchpath if we need to.
cannam@127 4092 #
cannam@127 4093 # Fix the DLL searchpath if we need to. Do this before prepending
cannam@127 4094 # to shlibpath, because on Windows, both are PATH and uninstalled
cannam@127 4095 # libraries must come first.
cannam@127 4096 if test -n "$dllsearchpath"; then
cannam@127 4097 $ECHO "\
cannam@127 4098 # Add the dll search path components to the executable PATH
cannam@127 4099 PATH=$dllsearchpath:\$PATH
cannam@127 4100 "
cannam@127 4101 fi
cannam@127 4102
cannam@127 4103 # Export our shlibpath_var if we have one.
cannam@127 4104 if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
cannam@127 4105 $ECHO "\
cannam@127 4106 # Add our own library path to $shlibpath_var
cannam@127 4107 $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
cannam@127 4108
cannam@127 4109 # Some systems cannot cope with colon-terminated $shlibpath_var
cannam@127 4110 # The second colon is a workaround for a bug in BeOS R4 sed
cannam@127 4111 $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\`
cannam@127 4112
cannam@127 4113 export $shlibpath_var
cannam@127 4114 "
cannam@127 4115 fi
cannam@127 4116
cannam@127 4117 $ECHO "\
cannam@127 4118 if test \"\$libtool_execute_magic\" != \"$magic\"; then
cannam@127 4119 # Run the actual program with our arguments.
cannam@127 4120 func_exec_program \${1+\"\$@\"}
cannam@127 4121 fi
cannam@127 4122 else
cannam@127 4123 # The program doesn't exist.
cannam@127 4124 \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2
cannam@127 4125 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2
cannam@127 4126 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2
cannam@127 4127 exit 1
cannam@127 4128 fi
cannam@127 4129 fi\
cannam@127 4130 "
cannam@127 4131 }
cannam@127 4132
cannam@127 4133
cannam@127 4134 # func_emit_cwrapperexe_src
cannam@127 4135 # emit the source code for a wrapper executable on stdout
cannam@127 4136 # Must ONLY be called from within func_mode_link because
cannam@127 4137 # it depends on a number of variable set therein.
cannam@127 4138 func_emit_cwrapperexe_src ()
cannam@127 4139 {
cannam@127 4140 cat <<EOF
cannam@127 4141
cannam@127 4142 /* $cwrappersource - temporary wrapper executable for $objdir/$outputname
cannam@127 4143 Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@127 4144
cannam@127 4145 The $output program cannot be directly executed until all the libtool
cannam@127 4146 libraries that it depends on are installed.
cannam@127 4147
cannam@127 4148 This wrapper executable should never be moved out of the build directory.
cannam@127 4149 If it is, it will not operate correctly.
cannam@127 4150 */
cannam@127 4151 EOF
cannam@127 4152 cat <<"EOF"
cannam@127 4153 #ifdef _MSC_VER
cannam@127 4154 # define _CRT_SECURE_NO_DEPRECATE 1
cannam@127 4155 #endif
cannam@127 4156 #include <stdio.h>
cannam@127 4157 #include <stdlib.h>
cannam@127 4158 #ifdef _MSC_VER
cannam@127 4159 # include <direct.h>
cannam@127 4160 # include <process.h>
cannam@127 4161 # include <io.h>
cannam@127 4162 #else
cannam@127 4163 # include <unistd.h>
cannam@127 4164 # include <stdint.h>
cannam@127 4165 # ifdef __CYGWIN__
cannam@127 4166 # include <io.h>
cannam@127 4167 # endif
cannam@127 4168 #endif
cannam@127 4169 #include <malloc.h>
cannam@127 4170 #include <stdarg.h>
cannam@127 4171 #include <assert.h>
cannam@127 4172 #include <string.h>
cannam@127 4173 #include <ctype.h>
cannam@127 4174 #include <errno.h>
cannam@127 4175 #include <fcntl.h>
cannam@127 4176 #include <sys/stat.h>
cannam@127 4177
cannam@127 4178 /* declarations of non-ANSI functions */
cannam@127 4179 #if defined(__MINGW32__)
cannam@127 4180 # ifdef __STRICT_ANSI__
cannam@127 4181 int _putenv (const char *);
cannam@127 4182 # endif
cannam@127 4183 #elif defined(__CYGWIN__)
cannam@127 4184 # ifdef __STRICT_ANSI__
cannam@127 4185 char *realpath (const char *, char *);
cannam@127 4186 int putenv (char *);
cannam@127 4187 int setenv (const char *, const char *, int);
cannam@127 4188 # endif
cannam@127 4189 /* #elif defined (other platforms) ... */
cannam@127 4190 #endif
cannam@127 4191
cannam@127 4192 /* portability defines, excluding path handling macros */
cannam@127 4193 #if defined(_MSC_VER)
cannam@127 4194 # define setmode _setmode
cannam@127 4195 # define stat _stat
cannam@127 4196 # define chmod _chmod
cannam@127 4197 # define getcwd _getcwd
cannam@127 4198 # define putenv _putenv
cannam@127 4199 # define S_IXUSR _S_IEXEC
cannam@127 4200 # ifndef _INTPTR_T_DEFINED
cannam@127 4201 # define _INTPTR_T_DEFINED
cannam@127 4202 # define intptr_t int
cannam@127 4203 # endif
cannam@127 4204 #elif defined(__MINGW32__)
cannam@127 4205 # define setmode _setmode
cannam@127 4206 # define stat _stat
cannam@127 4207 # define chmod _chmod
cannam@127 4208 # define getcwd _getcwd
cannam@127 4209 # define putenv _putenv
cannam@127 4210 #elif defined(__CYGWIN__)
cannam@127 4211 # define HAVE_SETENV
cannam@127 4212 # define FOPEN_WB "wb"
cannam@127 4213 /* #elif defined (other platforms) ... */
cannam@127 4214 #endif
cannam@127 4215
cannam@127 4216 #if defined(PATH_MAX)
cannam@127 4217 # define LT_PATHMAX PATH_MAX
cannam@127 4218 #elif defined(MAXPATHLEN)
cannam@127 4219 # define LT_PATHMAX MAXPATHLEN
cannam@127 4220 #else
cannam@127 4221 # define LT_PATHMAX 1024
cannam@127 4222 #endif
cannam@127 4223
cannam@127 4224 #ifndef S_IXOTH
cannam@127 4225 # define S_IXOTH 0
cannam@127 4226 #endif
cannam@127 4227 #ifndef S_IXGRP
cannam@127 4228 # define S_IXGRP 0
cannam@127 4229 #endif
cannam@127 4230
cannam@127 4231 /* path handling portability macros */
cannam@127 4232 #ifndef DIR_SEPARATOR
cannam@127 4233 # define DIR_SEPARATOR '/'
cannam@127 4234 # define PATH_SEPARATOR ':'
cannam@127 4235 #endif
cannam@127 4236
cannam@127 4237 #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \
cannam@127 4238 defined (__OS2__)
cannam@127 4239 # define HAVE_DOS_BASED_FILE_SYSTEM
cannam@127 4240 # define FOPEN_WB "wb"
cannam@127 4241 # ifndef DIR_SEPARATOR_2
cannam@127 4242 # define DIR_SEPARATOR_2 '\\'
cannam@127 4243 # endif
cannam@127 4244 # ifndef PATH_SEPARATOR_2
cannam@127 4245 # define PATH_SEPARATOR_2 ';'
cannam@127 4246 # endif
cannam@127 4247 #endif
cannam@127 4248
cannam@127 4249 #ifndef DIR_SEPARATOR_2
cannam@127 4250 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
cannam@127 4251 #else /* DIR_SEPARATOR_2 */
cannam@127 4252 # define IS_DIR_SEPARATOR(ch) \
cannam@127 4253 (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
cannam@127 4254 #endif /* DIR_SEPARATOR_2 */
cannam@127 4255
cannam@127 4256 #ifndef PATH_SEPARATOR_2
cannam@127 4257 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR)
cannam@127 4258 #else /* PATH_SEPARATOR_2 */
cannam@127 4259 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2)
cannam@127 4260 #endif /* PATH_SEPARATOR_2 */
cannam@127 4261
cannam@127 4262 #ifndef FOPEN_WB
cannam@127 4263 # define FOPEN_WB "w"
cannam@127 4264 #endif
cannam@127 4265 #ifndef _O_BINARY
cannam@127 4266 # define _O_BINARY 0
cannam@127 4267 #endif
cannam@127 4268
cannam@127 4269 #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type)))
cannam@127 4270 #define XFREE(stale) do { \
cannam@127 4271 if (stale) { free ((void *) stale); stale = 0; } \
cannam@127 4272 } while (0)
cannam@127 4273
cannam@127 4274 #if defined(LT_DEBUGWRAPPER)
cannam@127 4275 static int lt_debug = 1;
cannam@127 4276 #else
cannam@127 4277 static int lt_debug = 0;
cannam@127 4278 #endif
cannam@127 4279
cannam@127 4280 const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */
cannam@127 4281
cannam@127 4282 void *xmalloc (size_t num);
cannam@127 4283 char *xstrdup (const char *string);
cannam@127 4284 const char *base_name (const char *name);
cannam@127 4285 char *find_executable (const char *wrapper);
cannam@127 4286 char *chase_symlinks (const char *pathspec);
cannam@127 4287 int make_executable (const char *path);
cannam@127 4288 int check_executable (const char *path);
cannam@127 4289 char *strendzap (char *str, const char *pat);
cannam@127 4290 void lt_debugprintf (const char *file, int line, const char *fmt, ...);
cannam@127 4291 void lt_fatal (const char *file, int line, const char *message, ...);
cannam@127 4292 static const char *nonnull (const char *s);
cannam@127 4293 static const char *nonempty (const char *s);
cannam@127 4294 void lt_setenv (const char *name, const char *value);
cannam@127 4295 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
cannam@127 4296 void lt_update_exe_path (const char *name, const char *value);
cannam@127 4297 void lt_update_lib_path (const char *name, const char *value);
cannam@127 4298 char **prepare_spawn (char **argv);
cannam@127 4299 void lt_dump_script (FILE *f);
cannam@127 4300 EOF
cannam@127 4301
cannam@127 4302 cat <<EOF
cannam@127 4303 volatile const char * MAGIC_EXE = "$magic_exe";
cannam@127 4304 const char * LIB_PATH_VARNAME = "$shlibpath_var";
cannam@127 4305 EOF
cannam@127 4306
cannam@127 4307 if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
cannam@127 4308 func_to_host_path "$temp_rpath"
cannam@127 4309 cat <<EOF
cannam@127 4310 const char * LIB_PATH_VALUE = "$func_to_host_path_result";
cannam@127 4311 EOF
cannam@127 4312 else
cannam@127 4313 cat <<"EOF"
cannam@127 4314 const char * LIB_PATH_VALUE = "";
cannam@127 4315 EOF
cannam@127 4316 fi
cannam@127 4317
cannam@127 4318 if test -n "$dllsearchpath"; then
cannam@127 4319 func_to_host_path "$dllsearchpath:"
cannam@127 4320 cat <<EOF
cannam@127 4321 const char * EXE_PATH_VARNAME = "PATH";
cannam@127 4322 const char * EXE_PATH_VALUE = "$func_to_host_path_result";
cannam@127 4323 EOF
cannam@127 4324 else
cannam@127 4325 cat <<"EOF"
cannam@127 4326 const char * EXE_PATH_VARNAME = "";
cannam@127 4327 const char * EXE_PATH_VALUE = "";
cannam@127 4328 EOF
cannam@127 4329 fi
cannam@127 4330
cannam@127 4331 if test "$fast_install" = yes; then
cannam@127 4332 cat <<EOF
cannam@127 4333 const char * TARGET_PROGRAM_NAME = "lt-$outputname"; /* hopefully, no .exe */
cannam@127 4334 EOF
cannam@127 4335 else
cannam@127 4336 cat <<EOF
cannam@127 4337 const char * TARGET_PROGRAM_NAME = "$outputname"; /* hopefully, no .exe */
cannam@127 4338 EOF
cannam@127 4339 fi
cannam@127 4340
cannam@127 4341
cannam@127 4342 cat <<"EOF"
cannam@127 4343
cannam@127 4344 #define LTWRAPPER_OPTION_PREFIX "--lt-"
cannam@127 4345
cannam@127 4346 static const char *ltwrapper_option_prefix = LTWRAPPER_OPTION_PREFIX;
cannam@127 4347 static const char *dumpscript_opt = LTWRAPPER_OPTION_PREFIX "dump-script";
cannam@127 4348 static const char *debug_opt = LTWRAPPER_OPTION_PREFIX "debug";
cannam@127 4349
cannam@127 4350 int
cannam@127 4351 main (int argc, char *argv[])
cannam@127 4352 {
cannam@127 4353 char **newargz;
cannam@127 4354 int newargc;
cannam@127 4355 char *tmp_pathspec;
cannam@127 4356 char *actual_cwrapper_path;
cannam@127 4357 char *actual_cwrapper_name;
cannam@127 4358 char *target_name;
cannam@127 4359 char *lt_argv_zero;
cannam@127 4360 intptr_t rval = 127;
cannam@127 4361
cannam@127 4362 int i;
cannam@127 4363
cannam@127 4364 program_name = (char *) xstrdup (base_name (argv[0]));
cannam@127 4365 newargz = XMALLOC (char *, argc + 1);
cannam@127 4366
cannam@127 4367 /* very simple arg parsing; don't want to rely on getopt
cannam@127 4368 * also, copy all non cwrapper options to newargz, except
cannam@127 4369 * argz[0], which is handled differently
cannam@127 4370 */
cannam@127 4371 newargc=0;
cannam@127 4372 for (i = 1; i < argc; i++)
cannam@127 4373 {
cannam@127 4374 if (strcmp (argv[i], dumpscript_opt) == 0)
cannam@127 4375 {
cannam@127 4376 EOF
cannam@127 4377 case "$host" in
cannam@127 4378 *mingw* | *cygwin* )
cannam@127 4379 # make stdout use "unix" line endings
cannam@127 4380 echo " setmode(1,_O_BINARY);"
cannam@127 4381 ;;
cannam@127 4382 esac
cannam@127 4383
cannam@127 4384 cat <<"EOF"
cannam@127 4385 lt_dump_script (stdout);
cannam@127 4386 return 0;
cannam@127 4387 }
cannam@127 4388 if (strcmp (argv[i], debug_opt) == 0)
cannam@127 4389 {
cannam@127 4390 lt_debug = 1;
cannam@127 4391 continue;
cannam@127 4392 }
cannam@127 4393 if (strcmp (argv[i], ltwrapper_option_prefix) == 0)
cannam@127 4394 {
cannam@127 4395 /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX
cannam@127 4396 namespace, but it is not one of the ones we know about and
cannam@127 4397 have already dealt with, above (inluding dump-script), then
cannam@127 4398 report an error. Otherwise, targets might begin to believe
cannam@127 4399 they are allowed to use options in the LTWRAPPER_OPTION_PREFIX
cannam@127 4400 namespace. The first time any user complains about this, we'll
cannam@127 4401 need to make LTWRAPPER_OPTION_PREFIX a configure-time option
cannam@127 4402 or a configure.ac-settable value.
cannam@127 4403 */
cannam@127 4404 lt_fatal (__FILE__, __LINE__,
cannam@127 4405 "unrecognized %s option: '%s'",
cannam@127 4406 ltwrapper_option_prefix, argv[i]);
cannam@127 4407 }
cannam@127 4408 /* otherwise ... */
cannam@127 4409 newargz[++newargc] = xstrdup (argv[i]);
cannam@127 4410 }
cannam@127 4411 newargz[++newargc] = NULL;
cannam@127 4412
cannam@127 4413 EOF
cannam@127 4414 cat <<EOF
cannam@127 4415 /* The GNU banner must be the first non-error debug message */
cannam@127 4416 lt_debugprintf (__FILE__, __LINE__, "libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\n");
cannam@127 4417 EOF
cannam@127 4418 cat <<"EOF"
cannam@127 4419 lt_debugprintf (__FILE__, __LINE__, "(main) argv[0]: %s\n", argv[0]);
cannam@127 4420 lt_debugprintf (__FILE__, __LINE__, "(main) program_name: %s\n", program_name);
cannam@127 4421
cannam@127 4422 tmp_pathspec = find_executable (argv[0]);
cannam@127 4423 if (tmp_pathspec == NULL)
cannam@127 4424 lt_fatal (__FILE__, __LINE__, "couldn't find %s", argv[0]);
cannam@127 4425 lt_debugprintf (__FILE__, __LINE__,
cannam@127 4426 "(main) found exe (before symlink chase) at: %s\n",
cannam@127 4427 tmp_pathspec);
cannam@127 4428
cannam@127 4429 actual_cwrapper_path = chase_symlinks (tmp_pathspec);
cannam@127 4430 lt_debugprintf (__FILE__, __LINE__,
cannam@127 4431 "(main) found exe (after symlink chase) at: %s\n",
cannam@127 4432 actual_cwrapper_path);
cannam@127 4433 XFREE (tmp_pathspec);
cannam@127 4434
cannam@127 4435 actual_cwrapper_name = xstrdup (base_name (actual_cwrapper_path));
cannam@127 4436 strendzap (actual_cwrapper_path, actual_cwrapper_name);
cannam@127 4437
cannam@127 4438 /* wrapper name transforms */
cannam@127 4439 strendzap (actual_cwrapper_name, ".exe");
cannam@127 4440 tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
cannam@127 4441 XFREE (actual_cwrapper_name);
cannam@127 4442 actual_cwrapper_name = tmp_pathspec;
cannam@127 4443 tmp_pathspec = 0;
cannam@127 4444
cannam@127 4445 /* target_name transforms -- use actual target program name; might have lt- prefix */
cannam@127 4446 target_name = xstrdup (base_name (TARGET_PROGRAM_NAME));
cannam@127 4447 strendzap (target_name, ".exe");
cannam@127 4448 tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
cannam@127 4449 XFREE (target_name);
cannam@127 4450 target_name = tmp_pathspec;
cannam@127 4451 tmp_pathspec = 0;
cannam@127 4452
cannam@127 4453 lt_debugprintf (__FILE__, __LINE__,
cannam@127 4454 "(main) libtool target name: %s\n",
cannam@127 4455 target_name);
cannam@127 4456 EOF
cannam@127 4457
cannam@127 4458 cat <<EOF
cannam@127 4459 newargz[0] =
cannam@127 4460 XMALLOC (char, (strlen (actual_cwrapper_path) +
cannam@127 4461 strlen ("$objdir") + 1 + strlen (actual_cwrapper_name) + 1));
cannam@127 4462 strcpy (newargz[0], actual_cwrapper_path);
cannam@127 4463 strcat (newargz[0], "$objdir");
cannam@127 4464 strcat (newargz[0], "/");
cannam@127 4465 EOF
cannam@127 4466
cannam@127 4467 cat <<"EOF"
cannam@127 4468 /* stop here, and copy so we don't have to do this twice */
cannam@127 4469 tmp_pathspec = xstrdup (newargz[0]);
cannam@127 4470
cannam@127 4471 /* do NOT want the lt- prefix here, so use actual_cwrapper_name */
cannam@127 4472 strcat (newargz[0], actual_cwrapper_name);
cannam@127 4473
cannam@127 4474 /* DO want the lt- prefix here if it exists, so use target_name */
cannam@127 4475 lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
cannam@127 4476 XFREE (tmp_pathspec);
cannam@127 4477 tmp_pathspec = NULL;
cannam@127 4478 EOF
cannam@127 4479
cannam@127 4480 case $host_os in
cannam@127 4481 mingw*)
cannam@127 4482 cat <<"EOF"
cannam@127 4483 {
cannam@127 4484 char* p;
cannam@127 4485 while ((p = strchr (newargz[0], '\\')) != NULL)
cannam@127 4486 {
cannam@127 4487 *p = '/';
cannam@127 4488 }
cannam@127 4489 while ((p = strchr (lt_argv_zero, '\\')) != NULL)
cannam@127 4490 {
cannam@127 4491 *p = '/';
cannam@127 4492 }
cannam@127 4493 }
cannam@127 4494 EOF
cannam@127 4495 ;;
cannam@127 4496 esac
cannam@127 4497
cannam@127 4498 cat <<"EOF"
cannam@127 4499 XFREE (target_name);
cannam@127 4500 XFREE (actual_cwrapper_path);
cannam@127 4501 XFREE (actual_cwrapper_name);
cannam@127 4502
cannam@127 4503 lt_setenv ("BIN_SH", "xpg4"); /* for Tru64 */
cannam@127 4504 lt_setenv ("DUALCASE", "1"); /* for MSK sh */
cannam@127 4505 /* Update the DLL searchpath. EXE_PATH_VALUE ($dllsearchpath) must
cannam@127 4506 be prepended before (that is, appear after) LIB_PATH_VALUE ($temp_rpath)
cannam@127 4507 because on Windows, both *_VARNAMEs are PATH but uninstalled
cannam@127 4508 libraries must come first. */
cannam@127 4509 lt_update_exe_path (EXE_PATH_VARNAME, EXE_PATH_VALUE);
cannam@127 4510 lt_update_lib_path (LIB_PATH_VARNAME, LIB_PATH_VALUE);
cannam@127 4511
cannam@127 4512 lt_debugprintf (__FILE__, __LINE__, "(main) lt_argv_zero: %s\n",
cannam@127 4513 nonnull (lt_argv_zero));
cannam@127 4514 for (i = 0; i < newargc; i++)
cannam@127 4515 {
cannam@127 4516 lt_debugprintf (__FILE__, __LINE__, "(main) newargz[%d]: %s\n",
cannam@127 4517 i, nonnull (newargz[i]));
cannam@127 4518 }
cannam@127 4519
cannam@127 4520 EOF
cannam@127 4521
cannam@127 4522 case $host_os in
cannam@127 4523 mingw*)
cannam@127 4524 cat <<"EOF"
cannam@127 4525 /* execv doesn't actually work on mingw as expected on unix */
cannam@127 4526 newargz = prepare_spawn (newargz);
cannam@127 4527 rval = _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz);
cannam@127 4528 if (rval == -1)
cannam@127 4529 {
cannam@127 4530 /* failed to start process */
cannam@127 4531 lt_debugprintf (__FILE__, __LINE__,
cannam@127 4532 "(main) failed to launch target \"%s\": %s\n",
cannam@127 4533 lt_argv_zero, nonnull (strerror (errno)));
cannam@127 4534 return 127;
cannam@127 4535 }
cannam@127 4536 return rval;
cannam@127 4537 EOF
cannam@127 4538 ;;
cannam@127 4539 *)
cannam@127 4540 cat <<"EOF"
cannam@127 4541 execv (lt_argv_zero, newargz);
cannam@127 4542 return rval; /* =127, but avoids unused variable warning */
cannam@127 4543 EOF
cannam@127 4544 ;;
cannam@127 4545 esac
cannam@127 4546
cannam@127 4547 cat <<"EOF"
cannam@127 4548 }
cannam@127 4549
cannam@127 4550 void *
cannam@127 4551 xmalloc (size_t num)
cannam@127 4552 {
cannam@127 4553 void *p = (void *) malloc (num);
cannam@127 4554 if (!p)
cannam@127 4555 lt_fatal (__FILE__, __LINE__, "memory exhausted");
cannam@127 4556
cannam@127 4557 return p;
cannam@127 4558 }
cannam@127 4559
cannam@127 4560 char *
cannam@127 4561 xstrdup (const char *string)
cannam@127 4562 {
cannam@127 4563 return string ? strcpy ((char *) xmalloc (strlen (string) + 1),
cannam@127 4564 string) : NULL;
cannam@127 4565 }
cannam@127 4566
cannam@127 4567 const char *
cannam@127 4568 base_name (const char *name)
cannam@127 4569 {
cannam@127 4570 const char *base;
cannam@127 4571
cannam@127 4572 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
cannam@127 4573 /* Skip over the disk name in MSDOS pathnames. */
cannam@127 4574 if (isalpha ((unsigned char) name[0]) && name[1] == ':')
cannam@127 4575 name += 2;
cannam@127 4576 #endif
cannam@127 4577
cannam@127 4578 for (base = name; *name; name++)
cannam@127 4579 if (IS_DIR_SEPARATOR (*name))
cannam@127 4580 base = name + 1;
cannam@127 4581 return base;
cannam@127 4582 }
cannam@127 4583
cannam@127 4584 int
cannam@127 4585 check_executable (const char *path)
cannam@127 4586 {
cannam@127 4587 struct stat st;
cannam@127 4588
cannam@127 4589 lt_debugprintf (__FILE__, __LINE__, "(check_executable): %s\n",
cannam@127 4590 nonempty (path));
cannam@127 4591 if ((!path) || (!*path))
cannam@127 4592 return 0;
cannam@127 4593
cannam@127 4594 if ((stat (path, &st) >= 0)
cannam@127 4595 && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
cannam@127 4596 return 1;
cannam@127 4597 else
cannam@127 4598 return 0;
cannam@127 4599 }
cannam@127 4600
cannam@127 4601 int
cannam@127 4602 make_executable (const char *path)
cannam@127 4603 {
cannam@127 4604 int rval = 0;
cannam@127 4605 struct stat st;
cannam@127 4606
cannam@127 4607 lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n",
cannam@127 4608 nonempty (path));
cannam@127 4609 if ((!path) || (!*path))
cannam@127 4610 return 0;
cannam@127 4611
cannam@127 4612 if (stat (path, &st) >= 0)
cannam@127 4613 {
cannam@127 4614 rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR);
cannam@127 4615 }
cannam@127 4616 return rval;
cannam@127 4617 }
cannam@127 4618
cannam@127 4619 /* Searches for the full path of the wrapper. Returns
cannam@127 4620 newly allocated full path name if found, NULL otherwise
cannam@127 4621 Does not chase symlinks, even on platforms that support them.
cannam@127 4622 */
cannam@127 4623 char *
cannam@127 4624 find_executable (const char *wrapper)
cannam@127 4625 {
cannam@127 4626 int has_slash = 0;
cannam@127 4627 const char *p;
cannam@127 4628 const char *p_next;
cannam@127 4629 /* static buffer for getcwd */
cannam@127 4630 char tmp[LT_PATHMAX + 1];
cannam@127 4631 int tmp_len;
cannam@127 4632 char *concat_name;
cannam@127 4633
cannam@127 4634 lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n",
cannam@127 4635 nonempty (wrapper));
cannam@127 4636
cannam@127 4637 if ((wrapper == NULL) || (*wrapper == '\0'))
cannam@127 4638 return NULL;
cannam@127 4639
cannam@127 4640 /* Absolute path? */
cannam@127 4641 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
cannam@127 4642 if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':')
cannam@127 4643 {
cannam@127 4644 concat_name = xstrdup (wrapper);
cannam@127 4645 if (check_executable (concat_name))
cannam@127 4646 return concat_name;
cannam@127 4647 XFREE (concat_name);
cannam@127 4648 }
cannam@127 4649 else
cannam@127 4650 {
cannam@127 4651 #endif
cannam@127 4652 if (IS_DIR_SEPARATOR (wrapper[0]))
cannam@127 4653 {
cannam@127 4654 concat_name = xstrdup (wrapper);
cannam@127 4655 if (check_executable (concat_name))
cannam@127 4656 return concat_name;
cannam@127 4657 XFREE (concat_name);
cannam@127 4658 }
cannam@127 4659 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
cannam@127 4660 }
cannam@127 4661 #endif
cannam@127 4662
cannam@127 4663 for (p = wrapper; *p; p++)
cannam@127 4664 if (*p == '/')
cannam@127 4665 {
cannam@127 4666 has_slash = 1;
cannam@127 4667 break;
cannam@127 4668 }
cannam@127 4669 if (!has_slash)
cannam@127 4670 {
cannam@127 4671 /* no slashes; search PATH */
cannam@127 4672 const char *path = getenv ("PATH");
cannam@127 4673 if (path != NULL)
cannam@127 4674 {
cannam@127 4675 for (p = path; *p; p = p_next)
cannam@127 4676 {
cannam@127 4677 const char *q;
cannam@127 4678 size_t p_len;
cannam@127 4679 for (q = p; *q; q++)
cannam@127 4680 if (IS_PATH_SEPARATOR (*q))
cannam@127 4681 break;
cannam@127 4682 p_len = q - p;
cannam@127 4683 p_next = (*q == '\0' ? q : q + 1);
cannam@127 4684 if (p_len == 0)
cannam@127 4685 {
cannam@127 4686 /* empty path: current directory */
cannam@127 4687 if (getcwd (tmp, LT_PATHMAX) == NULL)
cannam@127 4688 lt_fatal (__FILE__, __LINE__, "getcwd failed: %s",
cannam@127 4689 nonnull (strerror (errno)));
cannam@127 4690 tmp_len = strlen (tmp);
cannam@127 4691 concat_name =
cannam@127 4692 XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
cannam@127 4693 memcpy (concat_name, tmp, tmp_len);
cannam@127 4694 concat_name[tmp_len] = '/';
cannam@127 4695 strcpy (concat_name + tmp_len + 1, wrapper);
cannam@127 4696 }
cannam@127 4697 else
cannam@127 4698 {
cannam@127 4699 concat_name =
cannam@127 4700 XMALLOC (char, p_len + 1 + strlen (wrapper) + 1);
cannam@127 4701 memcpy (concat_name, p, p_len);
cannam@127 4702 concat_name[p_len] = '/';
cannam@127 4703 strcpy (concat_name + p_len + 1, wrapper);
cannam@127 4704 }
cannam@127 4705 if (check_executable (concat_name))
cannam@127 4706 return concat_name;
cannam@127 4707 XFREE (concat_name);
cannam@127 4708 }
cannam@127 4709 }
cannam@127 4710 /* not found in PATH; assume curdir */
cannam@127 4711 }
cannam@127 4712 /* Relative path | not found in path: prepend cwd */
cannam@127 4713 if (getcwd (tmp, LT_PATHMAX) == NULL)
cannam@127 4714 lt_fatal (__FILE__, __LINE__, "getcwd failed: %s",
cannam@127 4715 nonnull (strerror (errno)));
cannam@127 4716 tmp_len = strlen (tmp);
cannam@127 4717 concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
cannam@127 4718 memcpy (concat_name, tmp, tmp_len);
cannam@127 4719 concat_name[tmp_len] = '/';
cannam@127 4720 strcpy (concat_name + tmp_len + 1, wrapper);
cannam@127 4721
cannam@127 4722 if (check_executable (concat_name))
cannam@127 4723 return concat_name;
cannam@127 4724 XFREE (concat_name);
cannam@127 4725 return NULL;
cannam@127 4726 }
cannam@127 4727
cannam@127 4728 char *
cannam@127 4729 chase_symlinks (const char *pathspec)
cannam@127 4730 {
cannam@127 4731 #ifndef S_ISLNK
cannam@127 4732 return xstrdup (pathspec);
cannam@127 4733 #else
cannam@127 4734 char buf[LT_PATHMAX];
cannam@127 4735 struct stat s;
cannam@127 4736 char *tmp_pathspec = xstrdup (pathspec);
cannam@127 4737 char *p;
cannam@127 4738 int has_symlinks = 0;
cannam@127 4739 while (strlen (tmp_pathspec) && !has_symlinks)
cannam@127 4740 {
cannam@127 4741 lt_debugprintf (__FILE__, __LINE__,
cannam@127 4742 "checking path component for symlinks: %s\n",
cannam@127 4743 tmp_pathspec);
cannam@127 4744 if (lstat (tmp_pathspec, &s) == 0)
cannam@127 4745 {
cannam@127 4746 if (S_ISLNK (s.st_mode) != 0)
cannam@127 4747 {
cannam@127 4748 has_symlinks = 1;
cannam@127 4749 break;
cannam@127 4750 }
cannam@127 4751
cannam@127 4752 /* search backwards for last DIR_SEPARATOR */
cannam@127 4753 p = tmp_pathspec + strlen (tmp_pathspec) - 1;
cannam@127 4754 while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
cannam@127 4755 p--;
cannam@127 4756 if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
cannam@127 4757 {
cannam@127 4758 /* no more DIR_SEPARATORS left */
cannam@127 4759 break;
cannam@127 4760 }
cannam@127 4761 *p = '\0';
cannam@127 4762 }
cannam@127 4763 else
cannam@127 4764 {
cannam@127 4765 lt_fatal (__FILE__, __LINE__,
cannam@127 4766 "error accessing file \"%s\": %s",
cannam@127 4767 tmp_pathspec, nonnull (strerror (errno)));
cannam@127 4768 }
cannam@127 4769 }
cannam@127 4770 XFREE (tmp_pathspec);
cannam@127 4771
cannam@127 4772 if (!has_symlinks)
cannam@127 4773 {
cannam@127 4774 return xstrdup (pathspec);
cannam@127 4775 }
cannam@127 4776
cannam@127 4777 tmp_pathspec = realpath (pathspec, buf);
cannam@127 4778 if (tmp_pathspec == 0)
cannam@127 4779 {
cannam@127 4780 lt_fatal (__FILE__, __LINE__,
cannam@127 4781 "could not follow symlinks for %s", pathspec);
cannam@127 4782 }
cannam@127 4783 return xstrdup (tmp_pathspec);
cannam@127 4784 #endif
cannam@127 4785 }
cannam@127 4786
cannam@127 4787 char *
cannam@127 4788 strendzap (char *str, const char *pat)
cannam@127 4789 {
cannam@127 4790 size_t len, patlen;
cannam@127 4791
cannam@127 4792 assert (str != NULL);
cannam@127 4793 assert (pat != NULL);
cannam@127 4794
cannam@127 4795 len = strlen (str);
cannam@127 4796 patlen = strlen (pat);
cannam@127 4797
cannam@127 4798 if (patlen <= len)
cannam@127 4799 {
cannam@127 4800 str += len - patlen;
cannam@127 4801 if (strcmp (str, pat) == 0)
cannam@127 4802 *str = '\0';
cannam@127 4803 }
cannam@127 4804 return str;
cannam@127 4805 }
cannam@127 4806
cannam@127 4807 void
cannam@127 4808 lt_debugprintf (const char *file, int line, const char *fmt, ...)
cannam@127 4809 {
cannam@127 4810 va_list args;
cannam@127 4811 if (lt_debug)
cannam@127 4812 {
cannam@127 4813 (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line);
cannam@127 4814 va_start (args, fmt);
cannam@127 4815 (void) vfprintf (stderr, fmt, args);
cannam@127 4816 va_end (args);
cannam@127 4817 }
cannam@127 4818 }
cannam@127 4819
cannam@127 4820 static void
cannam@127 4821 lt_error_core (int exit_status, const char *file,
cannam@127 4822 int line, const char *mode,
cannam@127 4823 const char *message, va_list ap)
cannam@127 4824 {
cannam@127 4825 fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode);
cannam@127 4826 vfprintf (stderr, message, ap);
cannam@127 4827 fprintf (stderr, ".\n");
cannam@127 4828
cannam@127 4829 if (exit_status >= 0)
cannam@127 4830 exit (exit_status);
cannam@127 4831 }
cannam@127 4832
cannam@127 4833 void
cannam@127 4834 lt_fatal (const char *file, int line, const char *message, ...)
cannam@127 4835 {
cannam@127 4836 va_list ap;
cannam@127 4837 va_start (ap, message);
cannam@127 4838 lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap);
cannam@127 4839 va_end (ap);
cannam@127 4840 }
cannam@127 4841
cannam@127 4842 static const char *
cannam@127 4843 nonnull (const char *s)
cannam@127 4844 {
cannam@127 4845 return s ? s : "(null)";
cannam@127 4846 }
cannam@127 4847
cannam@127 4848 static const char *
cannam@127 4849 nonempty (const char *s)
cannam@127 4850 {
cannam@127 4851 return (s && !*s) ? "(empty)" : nonnull (s);
cannam@127 4852 }
cannam@127 4853
cannam@127 4854 void
cannam@127 4855 lt_setenv (const char *name, const char *value)
cannam@127 4856 {
cannam@127 4857 lt_debugprintf (__FILE__, __LINE__,
cannam@127 4858 "(lt_setenv) setting '%s' to '%s'\n",
cannam@127 4859 nonnull (name), nonnull (value));
cannam@127 4860 {
cannam@127 4861 #ifdef HAVE_SETENV
cannam@127 4862 /* always make a copy, for consistency with !HAVE_SETENV */
cannam@127 4863 char *str = xstrdup (value);
cannam@127 4864 setenv (name, str, 1);
cannam@127 4865 #else
cannam@127 4866 int len = strlen (name) + 1 + strlen (value) + 1;
cannam@127 4867 char *str = XMALLOC (char, len);
cannam@127 4868 sprintf (str, "%s=%s", name, value);
cannam@127 4869 if (putenv (str) != EXIT_SUCCESS)
cannam@127 4870 {
cannam@127 4871 XFREE (str);
cannam@127 4872 }
cannam@127 4873 #endif
cannam@127 4874 }
cannam@127 4875 }
cannam@127 4876
cannam@127 4877 char *
cannam@127 4878 lt_extend_str (const char *orig_value, const char *add, int to_end)
cannam@127 4879 {
cannam@127 4880 char *new_value;
cannam@127 4881 if (orig_value && *orig_value)
cannam@127 4882 {
cannam@127 4883 int orig_value_len = strlen (orig_value);
cannam@127 4884 int add_len = strlen (add);
cannam@127 4885 new_value = XMALLOC (char, add_len + orig_value_len + 1);
cannam@127 4886 if (to_end)
cannam@127 4887 {
cannam@127 4888 strcpy (new_value, orig_value);
cannam@127 4889 strcpy (new_value + orig_value_len, add);
cannam@127 4890 }
cannam@127 4891 else
cannam@127 4892 {
cannam@127 4893 strcpy (new_value, add);
cannam@127 4894 strcpy (new_value + add_len, orig_value);
cannam@127 4895 }
cannam@127 4896 }
cannam@127 4897 else
cannam@127 4898 {
cannam@127 4899 new_value = xstrdup (add);
cannam@127 4900 }
cannam@127 4901 return new_value;
cannam@127 4902 }
cannam@127 4903
cannam@127 4904 void
cannam@127 4905 lt_update_exe_path (const char *name, const char *value)
cannam@127 4906 {
cannam@127 4907 lt_debugprintf (__FILE__, __LINE__,
cannam@127 4908 "(lt_update_exe_path) modifying '%s' by prepending '%s'\n",
cannam@127 4909 nonnull (name), nonnull (value));
cannam@127 4910
cannam@127 4911 if (name && *name && value && *value)
cannam@127 4912 {
cannam@127 4913 char *new_value = lt_extend_str (getenv (name), value, 0);
cannam@127 4914 /* some systems can't cope with a ':'-terminated path #' */
cannam@127 4915 int len = strlen (new_value);
cannam@127 4916 while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1]))
cannam@127 4917 {
cannam@127 4918 new_value[len-1] = '\0';
cannam@127 4919 }
cannam@127 4920 lt_setenv (name, new_value);
cannam@127 4921 XFREE (new_value);
cannam@127 4922 }
cannam@127 4923 }
cannam@127 4924
cannam@127 4925 void
cannam@127 4926 lt_update_lib_path (const char *name, const char *value)
cannam@127 4927 {
cannam@127 4928 lt_debugprintf (__FILE__, __LINE__,
cannam@127 4929 "(lt_update_lib_path) modifying '%s' by prepending '%s'\n",
cannam@127 4930 nonnull (name), nonnull (value));
cannam@127 4931
cannam@127 4932 if (name && *name && value && *value)
cannam@127 4933 {
cannam@127 4934 char *new_value = lt_extend_str (getenv (name), value, 0);
cannam@127 4935 lt_setenv (name, new_value);
cannam@127 4936 XFREE (new_value);
cannam@127 4937 }
cannam@127 4938 }
cannam@127 4939
cannam@127 4940 EOF
cannam@127 4941 case $host_os in
cannam@127 4942 mingw*)
cannam@127 4943 cat <<"EOF"
cannam@127 4944
cannam@127 4945 /* Prepares an argument vector before calling spawn().
cannam@127 4946 Note that spawn() does not by itself call the command interpreter
cannam@127 4947 (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") :
cannam@127 4948 ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
cannam@127 4949 GetVersionEx(&v);
cannam@127 4950 v.dwPlatformId == VER_PLATFORM_WIN32_NT;
cannam@127 4951 }) ? "cmd.exe" : "command.com").
cannam@127 4952 Instead it simply concatenates the arguments, separated by ' ', and calls
cannam@127 4953 CreateProcess(). We must quote the arguments since Win32 CreateProcess()
cannam@127 4954 interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a
cannam@127 4955 special way:
cannam@127 4956 - Space and tab are interpreted as delimiters. They are not treated as
cannam@127 4957 delimiters if they are surrounded by double quotes: "...".
cannam@127 4958 - Unescaped double quotes are removed from the input. Their only effect is
cannam@127 4959 that within double quotes, space and tab are treated like normal
cannam@127 4960 characters.
cannam@127 4961 - Backslashes not followed by double quotes are not special.
cannam@127 4962 - But 2*n+1 backslashes followed by a double quote become
cannam@127 4963 n backslashes followed by a double quote (n >= 0):
cannam@127 4964 \" -> "
cannam@127 4965 \\\" -> \"
cannam@127 4966 \\\\\" -> \\"
cannam@127 4967 */
cannam@127 4968 #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@127 4969 #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@127 4970 char **
cannam@127 4971 prepare_spawn (char **argv)
cannam@127 4972 {
cannam@127 4973 size_t argc;
cannam@127 4974 char **new_argv;
cannam@127 4975 size_t i;
cannam@127 4976
cannam@127 4977 /* Count number of arguments. */
cannam@127 4978 for (argc = 0; argv[argc] != NULL; argc++)
cannam@127 4979 ;
cannam@127 4980
cannam@127 4981 /* Allocate new argument vector. */
cannam@127 4982 new_argv = XMALLOC (char *, argc + 1);
cannam@127 4983
cannam@127 4984 /* Put quoted arguments into the new argument vector. */
cannam@127 4985 for (i = 0; i < argc; i++)
cannam@127 4986 {
cannam@127 4987 const char *string = argv[i];
cannam@127 4988
cannam@127 4989 if (string[0] == '\0')
cannam@127 4990 new_argv[i] = xstrdup ("\"\"");
cannam@127 4991 else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL)
cannam@127 4992 {
cannam@127 4993 int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL);
cannam@127 4994 size_t length;
cannam@127 4995 unsigned int backslashes;
cannam@127 4996 const char *s;
cannam@127 4997 char *quoted_string;
cannam@127 4998 char *p;
cannam@127 4999
cannam@127 5000 length = 0;
cannam@127 5001 backslashes = 0;
cannam@127 5002 if (quote_around)
cannam@127 5003 length++;
cannam@127 5004 for (s = string; *s != '\0'; s++)
cannam@127 5005 {
cannam@127 5006 char c = *s;
cannam@127 5007 if (c == '"')
cannam@127 5008 length += backslashes + 1;
cannam@127 5009 length++;
cannam@127 5010 if (c == '\\')
cannam@127 5011 backslashes++;
cannam@127 5012 else
cannam@127 5013 backslashes = 0;
cannam@127 5014 }
cannam@127 5015 if (quote_around)
cannam@127 5016 length += backslashes + 1;
cannam@127 5017
cannam@127 5018 quoted_string = XMALLOC (char, length + 1);
cannam@127 5019
cannam@127 5020 p = quoted_string;
cannam@127 5021 backslashes = 0;
cannam@127 5022 if (quote_around)
cannam@127 5023 *p++ = '"';
cannam@127 5024 for (s = string; *s != '\0'; s++)
cannam@127 5025 {
cannam@127 5026 char c = *s;
cannam@127 5027 if (c == '"')
cannam@127 5028 {
cannam@127 5029 unsigned int j;
cannam@127 5030 for (j = backslashes + 1; j > 0; j--)
cannam@127 5031 *p++ = '\\';
cannam@127 5032 }
cannam@127 5033 *p++ = c;
cannam@127 5034 if (c == '\\')
cannam@127 5035 backslashes++;
cannam@127 5036 else
cannam@127 5037 backslashes = 0;
cannam@127 5038 }
cannam@127 5039 if (quote_around)
cannam@127 5040 {
cannam@127 5041 unsigned int j;
cannam@127 5042 for (j = backslashes; j > 0; j--)
cannam@127 5043 *p++ = '\\';
cannam@127 5044 *p++ = '"';
cannam@127 5045 }
cannam@127 5046 *p = '\0';
cannam@127 5047
cannam@127 5048 new_argv[i] = quoted_string;
cannam@127 5049 }
cannam@127 5050 else
cannam@127 5051 new_argv[i] = (char *) string;
cannam@127 5052 }
cannam@127 5053 new_argv[argc] = NULL;
cannam@127 5054
cannam@127 5055 return new_argv;
cannam@127 5056 }
cannam@127 5057 EOF
cannam@127 5058 ;;
cannam@127 5059 esac
cannam@127 5060
cannam@127 5061 cat <<"EOF"
cannam@127 5062 void lt_dump_script (FILE* f)
cannam@127 5063 {
cannam@127 5064 EOF
cannam@127 5065 func_emit_wrapper yes |
cannam@127 5066 $SED -n -e '
cannam@127 5067 s/^\(.\{79\}\)\(..*\)/\1\
cannam@127 5068 \2/
cannam@127 5069 h
cannam@127 5070 s/\([\\"]\)/\\\1/g
cannam@127 5071 s/$/\\n/
cannam@127 5072 s/\([^\n]*\).*/ fputs ("\1", f);/p
cannam@127 5073 g
cannam@127 5074 D'
cannam@127 5075 cat <<"EOF"
cannam@127 5076 }
cannam@127 5077 EOF
cannam@127 5078 }
cannam@127 5079 # end: func_emit_cwrapperexe_src
cannam@127 5080
cannam@127 5081 # func_win32_import_lib_p ARG
cannam@127 5082 # True if ARG is an import lib, as indicated by $file_magic_cmd
cannam@127 5083 func_win32_import_lib_p ()
cannam@127 5084 {
cannam@127 5085 $opt_debug
cannam@127 5086 case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in
cannam@127 5087 *import*) : ;;
cannam@127 5088 *) false ;;
cannam@127 5089 esac
cannam@127 5090 }
cannam@127 5091
cannam@127 5092 # func_mode_link arg...
cannam@127 5093 func_mode_link ()
cannam@127 5094 {
cannam@127 5095 $opt_debug
cannam@127 5096 case $host in
cannam@127 5097 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
cannam@127 5098 # It is impossible to link a dll without this setting, and
cannam@127 5099 # we shouldn't force the makefile maintainer to figure out
cannam@127 5100 # which system we are compiling for in order to pass an extra
cannam@127 5101 # flag for every libtool invocation.
cannam@127 5102 # allow_undefined=no
cannam@127 5103
cannam@127 5104 # FIXME: Unfortunately, there are problems with the above when trying
cannam@127 5105 # to make a dll which has undefined symbols, in which case not
cannam@127 5106 # even a static library is built. For now, we need to specify
cannam@127 5107 # -no-undefined on the libtool link line when we can be certain
cannam@127 5108 # that all symbols are satisfied, otherwise we get a static library.
cannam@127 5109 allow_undefined=yes
cannam@127 5110 ;;
cannam@127 5111 *)
cannam@127 5112 allow_undefined=yes
cannam@127 5113 ;;
cannam@127 5114 esac
cannam@127 5115 libtool_args=$nonopt
cannam@127 5116 base_compile="$nonopt $@"
cannam@127 5117 compile_command=$nonopt
cannam@127 5118 finalize_command=$nonopt
cannam@127 5119
cannam@127 5120 compile_rpath=
cannam@127 5121 finalize_rpath=
cannam@127 5122 compile_shlibpath=
cannam@127 5123 finalize_shlibpath=
cannam@127 5124 convenience=
cannam@127 5125 old_convenience=
cannam@127 5126 deplibs=
cannam@127 5127 old_deplibs=
cannam@127 5128 compiler_flags=
cannam@127 5129 linker_flags=
cannam@127 5130 dllsearchpath=
cannam@127 5131 lib_search_path=`pwd`
cannam@127 5132 inst_prefix_dir=
cannam@127 5133 new_inherited_linker_flags=
cannam@127 5134
cannam@127 5135 avoid_version=no
cannam@127 5136 bindir=
cannam@127 5137 dlfiles=
cannam@127 5138 dlprefiles=
cannam@127 5139 dlself=no
cannam@127 5140 export_dynamic=no
cannam@127 5141 export_symbols=
cannam@127 5142 export_symbols_regex=
cannam@127 5143 generated=
cannam@127 5144 libobjs=
cannam@127 5145 ltlibs=
cannam@127 5146 module=no
cannam@127 5147 no_install=no
cannam@127 5148 objs=
cannam@127 5149 non_pic_objects=
cannam@127 5150 precious_files_regex=
cannam@127 5151 prefer_static_libs=no
cannam@127 5152 preload=no
cannam@127 5153 prev=
cannam@127 5154 prevarg=
cannam@127 5155 release=
cannam@127 5156 rpath=
cannam@127 5157 xrpath=
cannam@127 5158 perm_rpath=
cannam@127 5159 temp_rpath=
cannam@127 5160 thread_safe=no
cannam@127 5161 vinfo=
cannam@127 5162 vinfo_number=no
cannam@127 5163 weak_libs=
cannam@127 5164 single_module="${wl}-single_module"
cannam@127 5165 func_infer_tag $base_compile
cannam@127 5166
cannam@127 5167 # We need to know -static, to get the right output filenames.
cannam@127 5168 for arg
cannam@127 5169 do
cannam@127 5170 case $arg in
cannam@127 5171 -shared)
cannam@127 5172 test "$build_libtool_libs" != yes && \
cannam@127 5173 func_fatal_configuration "can not build a shared library"
cannam@127 5174 build_old_libs=no
cannam@127 5175 break
cannam@127 5176 ;;
cannam@127 5177 -all-static | -static | -static-libtool-libs)
cannam@127 5178 case $arg in
cannam@127 5179 -all-static)
cannam@127 5180 if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
cannam@127 5181 func_warning "complete static linking is impossible in this configuration"
cannam@127 5182 fi
cannam@127 5183 if test -n "$link_static_flag"; then
cannam@127 5184 dlopen_self=$dlopen_self_static
cannam@127 5185 fi
cannam@127 5186 prefer_static_libs=yes
cannam@127 5187 ;;
cannam@127 5188 -static)
cannam@127 5189 if test -z "$pic_flag" && test -n "$link_static_flag"; then
cannam@127 5190 dlopen_self=$dlopen_self_static
cannam@127 5191 fi
cannam@127 5192 prefer_static_libs=built
cannam@127 5193 ;;
cannam@127 5194 -static-libtool-libs)
cannam@127 5195 if test -z "$pic_flag" && test -n "$link_static_flag"; then
cannam@127 5196 dlopen_self=$dlopen_self_static
cannam@127 5197 fi
cannam@127 5198 prefer_static_libs=yes
cannam@127 5199 ;;
cannam@127 5200 esac
cannam@127 5201 build_libtool_libs=no
cannam@127 5202 build_old_libs=yes
cannam@127 5203 break
cannam@127 5204 ;;
cannam@127 5205 esac
cannam@127 5206 done
cannam@127 5207
cannam@127 5208 # See if our shared archives depend on static archives.
cannam@127 5209 test -n "$old_archive_from_new_cmds" && build_old_libs=yes
cannam@127 5210
cannam@127 5211 # Go through the arguments, transforming them on the way.
cannam@127 5212 while test "$#" -gt 0; do
cannam@127 5213 arg="$1"
cannam@127 5214 shift
cannam@127 5215 func_quote_for_eval "$arg"
cannam@127 5216 qarg=$func_quote_for_eval_unquoted_result
cannam@127 5217 func_append libtool_args " $func_quote_for_eval_result"
cannam@127 5218
cannam@127 5219 # If the previous option needs an argument, assign it.
cannam@127 5220 if test -n "$prev"; then
cannam@127 5221 case $prev in
cannam@127 5222 output)
cannam@127 5223 func_append compile_command " @OUTPUT@"
cannam@127 5224 func_append finalize_command " @OUTPUT@"
cannam@127 5225 ;;
cannam@127 5226 esac
cannam@127 5227
cannam@127 5228 case $prev in
cannam@127 5229 bindir)
cannam@127 5230 bindir="$arg"
cannam@127 5231 prev=
cannam@127 5232 continue
cannam@127 5233 ;;
cannam@127 5234 dlfiles|dlprefiles)
cannam@127 5235 if test "$preload" = no; then
cannam@127 5236 # Add the symbol object into the linking commands.
cannam@127 5237 func_append compile_command " @SYMFILE@"
cannam@127 5238 func_append finalize_command " @SYMFILE@"
cannam@127 5239 preload=yes
cannam@127 5240 fi
cannam@127 5241 case $arg in
cannam@127 5242 *.la | *.lo) ;; # We handle these cases below.
cannam@127 5243 force)
cannam@127 5244 if test "$dlself" = no; then
cannam@127 5245 dlself=needless
cannam@127 5246 export_dynamic=yes
cannam@127 5247 fi
cannam@127 5248 prev=
cannam@127 5249 continue
cannam@127 5250 ;;
cannam@127 5251 self)
cannam@127 5252 if test "$prev" = dlprefiles; then
cannam@127 5253 dlself=yes
cannam@127 5254 elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
cannam@127 5255 dlself=yes
cannam@127 5256 else
cannam@127 5257 dlself=needless
cannam@127 5258 export_dynamic=yes
cannam@127 5259 fi
cannam@127 5260 prev=
cannam@127 5261 continue
cannam@127 5262 ;;
cannam@127 5263 *)
cannam@127 5264 if test "$prev" = dlfiles; then
cannam@127 5265 func_append dlfiles " $arg"
cannam@127 5266 else
cannam@127 5267 func_append dlprefiles " $arg"
cannam@127 5268 fi
cannam@127 5269 prev=
cannam@127 5270 continue
cannam@127 5271 ;;
cannam@127 5272 esac
cannam@127 5273 ;;
cannam@127 5274 expsyms)
cannam@127 5275 export_symbols="$arg"
cannam@127 5276 test -f "$arg" \
cannam@127 5277 || func_fatal_error "symbol file \`$arg' does not exist"
cannam@127 5278 prev=
cannam@127 5279 continue
cannam@127 5280 ;;
cannam@127 5281 expsyms_regex)
cannam@127 5282 export_symbols_regex="$arg"
cannam@127 5283 prev=
cannam@127 5284 continue
cannam@127 5285 ;;
cannam@127 5286 framework)
cannam@127 5287 case $host in
cannam@127 5288 *-*-darwin*)
cannam@127 5289 case "$deplibs " in
cannam@127 5290 *" $qarg.ltframework "*) ;;
cannam@127 5291 *) func_append deplibs " $qarg.ltframework" # this is fixed later
cannam@127 5292 ;;
cannam@127 5293 esac
cannam@127 5294 ;;
cannam@127 5295 esac
cannam@127 5296 prev=
cannam@127 5297 continue
cannam@127 5298 ;;
cannam@127 5299 inst_prefix)
cannam@127 5300 inst_prefix_dir="$arg"
cannam@127 5301 prev=
cannam@127 5302 continue
cannam@127 5303 ;;
cannam@127 5304 objectlist)
cannam@127 5305 if test -f "$arg"; then
cannam@127 5306 save_arg=$arg
cannam@127 5307 moreargs=
cannam@127 5308 for fil in `cat "$save_arg"`
cannam@127 5309 do
cannam@127 5310 # func_append moreargs " $fil"
cannam@127 5311 arg=$fil
cannam@127 5312 # A libtool-controlled object.
cannam@127 5313
cannam@127 5314 # Check to see that this really is a libtool object.
cannam@127 5315 if func_lalib_unsafe_p "$arg"; then
cannam@127 5316 pic_object=
cannam@127 5317 non_pic_object=
cannam@127 5318
cannam@127 5319 # Read the .lo file
cannam@127 5320 func_source "$arg"
cannam@127 5321
cannam@127 5322 if test -z "$pic_object" ||
cannam@127 5323 test -z "$non_pic_object" ||
cannam@127 5324 test "$pic_object" = none &&
cannam@127 5325 test "$non_pic_object" = none; then
cannam@127 5326 func_fatal_error "cannot find name of object for \`$arg'"
cannam@127 5327 fi
cannam@127 5328
cannam@127 5329 # Extract subdirectory from the argument.
cannam@127 5330 func_dirname "$arg" "/" ""
cannam@127 5331 xdir="$func_dirname_result"
cannam@127 5332
cannam@127 5333 if test "$pic_object" != none; then
cannam@127 5334 # Prepend the subdirectory the object is found in.
cannam@127 5335 pic_object="$xdir$pic_object"
cannam@127 5336
cannam@127 5337 if test "$prev" = dlfiles; then
cannam@127 5338 if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
cannam@127 5339 func_append dlfiles " $pic_object"
cannam@127 5340 prev=
cannam@127 5341 continue
cannam@127 5342 else
cannam@127 5343 # If libtool objects are unsupported, then we need to preload.
cannam@127 5344 prev=dlprefiles
cannam@127 5345 fi
cannam@127 5346 fi
cannam@127 5347
cannam@127 5348 # CHECK ME: I think I busted this. -Ossama
cannam@127 5349 if test "$prev" = dlprefiles; then
cannam@127 5350 # Preload the old-style object.
cannam@127 5351 func_append dlprefiles " $pic_object"
cannam@127 5352 prev=
cannam@127 5353 fi
cannam@127 5354
cannam@127 5355 # A PIC object.
cannam@127 5356 func_append libobjs " $pic_object"
cannam@127 5357 arg="$pic_object"
cannam@127 5358 fi
cannam@127 5359
cannam@127 5360 # Non-PIC object.
cannam@127 5361 if test "$non_pic_object" != none; then
cannam@127 5362 # Prepend the subdirectory the object is found in.
cannam@127 5363 non_pic_object="$xdir$non_pic_object"
cannam@127 5364
cannam@127 5365 # A standard non-PIC object
cannam@127 5366 func_append non_pic_objects " $non_pic_object"
cannam@127 5367 if test -z "$pic_object" || test "$pic_object" = none ; then
cannam@127 5368 arg="$non_pic_object"
cannam@127 5369 fi
cannam@127 5370 else
cannam@127 5371 # If the PIC object exists, use it instead.
cannam@127 5372 # $xdir was prepended to $pic_object above.
cannam@127 5373 non_pic_object="$pic_object"
cannam@127 5374 func_append non_pic_objects " $non_pic_object"
cannam@127 5375 fi
cannam@127 5376 else
cannam@127 5377 # Only an error if not doing a dry-run.
cannam@127 5378 if $opt_dry_run; then
cannam@127 5379 # Extract subdirectory from the argument.
cannam@127 5380 func_dirname "$arg" "/" ""
cannam@127 5381 xdir="$func_dirname_result"
cannam@127 5382
cannam@127 5383 func_lo2o "$arg"
cannam@127 5384 pic_object=$xdir$objdir/$func_lo2o_result
cannam@127 5385 non_pic_object=$xdir$func_lo2o_result
cannam@127 5386 func_append libobjs " $pic_object"
cannam@127 5387 func_append non_pic_objects " $non_pic_object"
cannam@127 5388 else
cannam@127 5389 func_fatal_error "\`$arg' is not a valid libtool object"
cannam@127 5390 fi
cannam@127 5391 fi
cannam@127 5392 done
cannam@127 5393 else
cannam@127 5394 func_fatal_error "link input file \`$arg' does not exist"
cannam@127 5395 fi
cannam@127 5396 arg=$save_arg
cannam@127 5397 prev=
cannam@127 5398 continue
cannam@127 5399 ;;
cannam@127 5400 precious_regex)
cannam@127 5401 precious_files_regex="$arg"
cannam@127 5402 prev=
cannam@127 5403 continue
cannam@127 5404 ;;
cannam@127 5405 release)
cannam@127 5406 release="-$arg"
cannam@127 5407 prev=
cannam@127 5408 continue
cannam@127 5409 ;;
cannam@127 5410 rpath | xrpath)
cannam@127 5411 # We need an absolute path.
cannam@127 5412 case $arg in
cannam@127 5413 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@127 5414 *)
cannam@127 5415 func_fatal_error "only absolute run-paths are allowed"
cannam@127 5416 ;;
cannam@127 5417 esac
cannam@127 5418 if test "$prev" = rpath; then
cannam@127 5419 case "$rpath " in
cannam@127 5420 *" $arg "*) ;;
cannam@127 5421 *) func_append rpath " $arg" ;;
cannam@127 5422 esac
cannam@127 5423 else
cannam@127 5424 case "$xrpath " in
cannam@127 5425 *" $arg "*) ;;
cannam@127 5426 *) func_append xrpath " $arg" ;;
cannam@127 5427 esac
cannam@127 5428 fi
cannam@127 5429 prev=
cannam@127 5430 continue
cannam@127 5431 ;;
cannam@127 5432 shrext)
cannam@127 5433 shrext_cmds="$arg"
cannam@127 5434 prev=
cannam@127 5435 continue
cannam@127 5436 ;;
cannam@127 5437 weak)
cannam@127 5438 func_append weak_libs " $arg"
cannam@127 5439 prev=
cannam@127 5440 continue
cannam@127 5441 ;;
cannam@127 5442 xcclinker)
cannam@127 5443 func_append linker_flags " $qarg"
cannam@127 5444 func_append compiler_flags " $qarg"
cannam@127 5445 prev=
cannam@127 5446 func_append compile_command " $qarg"
cannam@127 5447 func_append finalize_command " $qarg"
cannam@127 5448 continue
cannam@127 5449 ;;
cannam@127 5450 xcompiler)
cannam@127 5451 func_append compiler_flags " $qarg"
cannam@127 5452 prev=
cannam@127 5453 func_append compile_command " $qarg"
cannam@127 5454 func_append finalize_command " $qarg"
cannam@127 5455 continue
cannam@127 5456 ;;
cannam@127 5457 xlinker)
cannam@127 5458 func_append linker_flags " $qarg"
cannam@127 5459 func_append compiler_flags " $wl$qarg"
cannam@127 5460 prev=
cannam@127 5461 func_append compile_command " $wl$qarg"
cannam@127 5462 func_append finalize_command " $wl$qarg"
cannam@127 5463 continue
cannam@127 5464 ;;
cannam@127 5465 *)
cannam@127 5466 eval "$prev=\"\$arg\""
cannam@127 5467 prev=
cannam@127 5468 continue
cannam@127 5469 ;;
cannam@127 5470 esac
cannam@127 5471 fi # test -n "$prev"
cannam@127 5472
cannam@127 5473 prevarg="$arg"
cannam@127 5474
cannam@127 5475 case $arg in
cannam@127 5476 -all-static)
cannam@127 5477 if test -n "$link_static_flag"; then
cannam@127 5478 # See comment for -static flag below, for more details.
cannam@127 5479 func_append compile_command " $link_static_flag"
cannam@127 5480 func_append finalize_command " $link_static_flag"
cannam@127 5481 fi
cannam@127 5482 continue
cannam@127 5483 ;;
cannam@127 5484
cannam@127 5485 -allow-undefined)
cannam@127 5486 # FIXME: remove this flag sometime in the future.
cannam@127 5487 func_fatal_error "\`-allow-undefined' must not be used because it is the default"
cannam@127 5488 ;;
cannam@127 5489
cannam@127 5490 -avoid-version)
cannam@127 5491 avoid_version=yes
cannam@127 5492 continue
cannam@127 5493 ;;
cannam@127 5494
cannam@127 5495 -bindir)
cannam@127 5496 prev=bindir
cannam@127 5497 continue
cannam@127 5498 ;;
cannam@127 5499
cannam@127 5500 -dlopen)
cannam@127 5501 prev=dlfiles
cannam@127 5502 continue
cannam@127 5503 ;;
cannam@127 5504
cannam@127 5505 -dlpreopen)
cannam@127 5506 prev=dlprefiles
cannam@127 5507 continue
cannam@127 5508 ;;
cannam@127 5509
cannam@127 5510 -export-dynamic)
cannam@127 5511 export_dynamic=yes
cannam@127 5512 continue
cannam@127 5513 ;;
cannam@127 5514
cannam@127 5515 -export-symbols | -export-symbols-regex)
cannam@127 5516 if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
cannam@127 5517 func_fatal_error "more than one -exported-symbols argument is not allowed"
cannam@127 5518 fi
cannam@127 5519 if test "X$arg" = "X-export-symbols"; then
cannam@127 5520 prev=expsyms
cannam@127 5521 else
cannam@127 5522 prev=expsyms_regex
cannam@127 5523 fi
cannam@127 5524 continue
cannam@127 5525 ;;
cannam@127 5526
cannam@127 5527 -framework)
cannam@127 5528 prev=framework
cannam@127 5529 continue
cannam@127 5530 ;;
cannam@127 5531
cannam@127 5532 -inst-prefix-dir)
cannam@127 5533 prev=inst_prefix
cannam@127 5534 continue
cannam@127 5535 ;;
cannam@127 5536
cannam@127 5537 # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
cannam@127 5538 # so, if we see these flags be careful not to treat them like -L
cannam@127 5539 -L[A-Z][A-Z]*:*)
cannam@127 5540 case $with_gcc/$host in
cannam@127 5541 no/*-*-irix* | /*-*-irix*)
cannam@127 5542 func_append compile_command " $arg"
cannam@127 5543 func_append finalize_command " $arg"
cannam@127 5544 ;;
cannam@127 5545 esac
cannam@127 5546 continue
cannam@127 5547 ;;
cannam@127 5548
cannam@127 5549 -L*)
cannam@127 5550 func_stripname "-L" '' "$arg"
cannam@127 5551 if test -z "$func_stripname_result"; then
cannam@127 5552 if test "$#" -gt 0; then
cannam@127 5553 func_fatal_error "require no space between \`-L' and \`$1'"
cannam@127 5554 else
cannam@127 5555 func_fatal_error "need path for \`-L' option"
cannam@127 5556 fi
cannam@127 5557 fi
cannam@127 5558 func_resolve_sysroot "$func_stripname_result"
cannam@127 5559 dir=$func_resolve_sysroot_result
cannam@127 5560 # We need an absolute path.
cannam@127 5561 case $dir in
cannam@127 5562 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@127 5563 *)
cannam@127 5564 absdir=`cd "$dir" && pwd`
cannam@127 5565 test -z "$absdir" && \
cannam@127 5566 func_fatal_error "cannot determine absolute directory name of \`$dir'"
cannam@127 5567 dir="$absdir"
cannam@127 5568 ;;
cannam@127 5569 esac
cannam@127 5570 case "$deplibs " in
cannam@127 5571 *" -L$dir "* | *" $arg "*)
cannam@127 5572 # Will only happen for absolute or sysroot arguments
cannam@127 5573 ;;
cannam@127 5574 *)
cannam@127 5575 # Preserve sysroot, but never include relative directories
cannam@127 5576 case $dir in
cannam@127 5577 [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;;
cannam@127 5578 *) func_append deplibs " -L$dir" ;;
cannam@127 5579 esac
cannam@127 5580 func_append lib_search_path " $dir"
cannam@127 5581 ;;
cannam@127 5582 esac
cannam@127 5583 case $host in
cannam@127 5584 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
cannam@127 5585 testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'`
cannam@127 5586 case :$dllsearchpath: in
cannam@127 5587 *":$dir:"*) ;;
cannam@127 5588 ::) dllsearchpath=$dir;;
cannam@127 5589 *) func_append dllsearchpath ":$dir";;
cannam@127 5590 esac
cannam@127 5591 case :$dllsearchpath: in
cannam@127 5592 *":$testbindir:"*) ;;
cannam@127 5593 ::) dllsearchpath=$testbindir;;
cannam@127 5594 *) func_append dllsearchpath ":$testbindir";;
cannam@127 5595 esac
cannam@127 5596 ;;
cannam@127 5597 esac
cannam@127 5598 continue
cannam@127 5599 ;;
cannam@127 5600
cannam@127 5601 -l*)
cannam@127 5602 if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
cannam@127 5603 case $host in
cannam@127 5604 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*)
cannam@127 5605 # These systems don't actually have a C or math library (as such)
cannam@127 5606 continue
cannam@127 5607 ;;
cannam@127 5608 *-*-os2*)
cannam@127 5609 # These systems don't actually have a C library (as such)
cannam@127 5610 test "X$arg" = "X-lc" && continue
cannam@127 5611 ;;
cannam@127 5612 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@127 5613 # Do not include libc due to us having libc/libc_r.
cannam@127 5614 test "X$arg" = "X-lc" && continue
cannam@127 5615 ;;
cannam@127 5616 *-*-rhapsody* | *-*-darwin1.[012])
cannam@127 5617 # Rhapsody C and math libraries are in the System framework
cannam@127 5618 func_append deplibs " System.ltframework"
cannam@127 5619 continue
cannam@127 5620 ;;
cannam@127 5621 *-*-sco3.2v5* | *-*-sco5v6*)
cannam@127 5622 # Causes problems with __ctype
cannam@127 5623 test "X$arg" = "X-lc" && continue
cannam@127 5624 ;;
cannam@127 5625 *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
cannam@127 5626 # Compiler inserts libc in the correct place for threads to work
cannam@127 5627 test "X$arg" = "X-lc" && continue
cannam@127 5628 ;;
cannam@127 5629 esac
cannam@127 5630 elif test "X$arg" = "X-lc_r"; then
cannam@127 5631 case $host in
cannam@127 5632 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@127 5633 # Do not include libc_r directly, use -pthread flag.
cannam@127 5634 continue
cannam@127 5635 ;;
cannam@127 5636 esac
cannam@127 5637 fi
cannam@127 5638 func_append deplibs " $arg"
cannam@127 5639 continue
cannam@127 5640 ;;
cannam@127 5641
cannam@127 5642 -module)
cannam@127 5643 module=yes
cannam@127 5644 continue
cannam@127 5645 ;;
cannam@127 5646
cannam@127 5647 # Tru64 UNIX uses -model [arg] to determine the layout of C++
cannam@127 5648 # classes, name mangling, and exception handling.
cannam@127 5649 # Darwin uses the -arch flag to determine output architecture.
cannam@127 5650 -model|-arch|-isysroot|--sysroot)
cannam@127 5651 func_append compiler_flags " $arg"
cannam@127 5652 func_append compile_command " $arg"
cannam@127 5653 func_append finalize_command " $arg"
cannam@127 5654 prev=xcompiler
cannam@127 5655 continue
cannam@127 5656 ;;
cannam@127 5657
cannam@127 5658 -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \
cannam@127 5659 |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)
cannam@127 5660 func_append compiler_flags " $arg"
cannam@127 5661 func_append compile_command " $arg"
cannam@127 5662 func_append finalize_command " $arg"
cannam@127 5663 case "$new_inherited_linker_flags " in
cannam@127 5664 *" $arg "*) ;;
cannam@127 5665 * ) func_append new_inherited_linker_flags " $arg" ;;
cannam@127 5666 esac
cannam@127 5667 continue
cannam@127 5668 ;;
cannam@127 5669
cannam@127 5670 -multi_module)
cannam@127 5671 single_module="${wl}-multi_module"
cannam@127 5672 continue
cannam@127 5673 ;;
cannam@127 5674
cannam@127 5675 -no-fast-install)
cannam@127 5676 fast_install=no
cannam@127 5677 continue
cannam@127 5678 ;;
cannam@127 5679
cannam@127 5680 -no-install)
cannam@127 5681 case $host in
cannam@127 5682 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*)
cannam@127 5683 # The PATH hackery in wrapper scripts is required on Windows
cannam@127 5684 # and Darwin in order for the loader to find any dlls it needs.
cannam@127 5685 func_warning "\`-no-install' is ignored for $host"
cannam@127 5686 func_warning "assuming \`-no-fast-install' instead"
cannam@127 5687 fast_install=no
cannam@127 5688 ;;
cannam@127 5689 *) no_install=yes ;;
cannam@127 5690 esac
cannam@127 5691 continue
cannam@127 5692 ;;
cannam@127 5693
cannam@127 5694 -no-undefined)
cannam@127 5695 allow_undefined=no
cannam@127 5696 continue
cannam@127 5697 ;;
cannam@127 5698
cannam@127 5699 -objectlist)
cannam@127 5700 prev=objectlist
cannam@127 5701 continue
cannam@127 5702 ;;
cannam@127 5703
cannam@127 5704 -o) prev=output ;;
cannam@127 5705
cannam@127 5706 -precious-files-regex)
cannam@127 5707 prev=precious_regex
cannam@127 5708 continue
cannam@127 5709 ;;
cannam@127 5710
cannam@127 5711 -release)
cannam@127 5712 prev=release
cannam@127 5713 continue
cannam@127 5714 ;;
cannam@127 5715
cannam@127 5716 -rpath)
cannam@127 5717 prev=rpath
cannam@127 5718 continue
cannam@127 5719 ;;
cannam@127 5720
cannam@127 5721 -R)
cannam@127 5722 prev=xrpath
cannam@127 5723 continue
cannam@127 5724 ;;
cannam@127 5725
cannam@127 5726 -R*)
cannam@127 5727 func_stripname '-R' '' "$arg"
cannam@127 5728 dir=$func_stripname_result
cannam@127 5729 # We need an absolute path.
cannam@127 5730 case $dir in
cannam@127 5731 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@127 5732 =*)
cannam@127 5733 func_stripname '=' '' "$dir"
cannam@127 5734 dir=$lt_sysroot$func_stripname_result
cannam@127 5735 ;;
cannam@127 5736 *)
cannam@127 5737 func_fatal_error "only absolute run-paths are allowed"
cannam@127 5738 ;;
cannam@127 5739 esac
cannam@127 5740 case "$xrpath " in
cannam@127 5741 *" $dir "*) ;;
cannam@127 5742 *) func_append xrpath " $dir" ;;
cannam@127 5743 esac
cannam@127 5744 continue
cannam@127 5745 ;;
cannam@127 5746
cannam@127 5747 -shared)
cannam@127 5748 # The effects of -shared are defined in a previous loop.
cannam@127 5749 continue
cannam@127 5750 ;;
cannam@127 5751
cannam@127 5752 -shrext)
cannam@127 5753 prev=shrext
cannam@127 5754 continue
cannam@127 5755 ;;
cannam@127 5756
cannam@127 5757 -static | -static-libtool-libs)
cannam@127 5758 # The effects of -static are defined in a previous loop.
cannam@127 5759 # We used to do the same as -all-static on platforms that
cannam@127 5760 # didn't have a PIC flag, but the assumption that the effects
cannam@127 5761 # would be equivalent was wrong. It would break on at least
cannam@127 5762 # Digital Unix and AIX.
cannam@127 5763 continue
cannam@127 5764 ;;
cannam@127 5765
cannam@127 5766 -thread-safe)
cannam@127 5767 thread_safe=yes
cannam@127 5768 continue
cannam@127 5769 ;;
cannam@127 5770
cannam@127 5771 -version-info)
cannam@127 5772 prev=vinfo
cannam@127 5773 continue
cannam@127 5774 ;;
cannam@127 5775
cannam@127 5776 -version-number)
cannam@127 5777 prev=vinfo
cannam@127 5778 vinfo_number=yes
cannam@127 5779 continue
cannam@127 5780 ;;
cannam@127 5781
cannam@127 5782 -weak)
cannam@127 5783 prev=weak
cannam@127 5784 continue
cannam@127 5785 ;;
cannam@127 5786
cannam@127 5787 -Wc,*)
cannam@127 5788 func_stripname '-Wc,' '' "$arg"
cannam@127 5789 args=$func_stripname_result
cannam@127 5790 arg=
cannam@127 5791 save_ifs="$IFS"; IFS=','
cannam@127 5792 for flag in $args; do
cannam@127 5793 IFS="$save_ifs"
cannam@127 5794 func_quote_for_eval "$flag"
cannam@127 5795 func_append arg " $func_quote_for_eval_result"
cannam@127 5796 func_append compiler_flags " $func_quote_for_eval_result"
cannam@127 5797 done
cannam@127 5798 IFS="$save_ifs"
cannam@127 5799 func_stripname ' ' '' "$arg"
cannam@127 5800 arg=$func_stripname_result
cannam@127 5801 ;;
cannam@127 5802
cannam@127 5803 -Wl,*)
cannam@127 5804 func_stripname '-Wl,' '' "$arg"
cannam@127 5805 args=$func_stripname_result
cannam@127 5806 arg=
cannam@127 5807 save_ifs="$IFS"; IFS=','
cannam@127 5808 for flag in $args; do
cannam@127 5809 IFS="$save_ifs"
cannam@127 5810 func_quote_for_eval "$flag"
cannam@127 5811 func_append arg " $wl$func_quote_for_eval_result"
cannam@127 5812 func_append compiler_flags " $wl$func_quote_for_eval_result"
cannam@127 5813 func_append linker_flags " $func_quote_for_eval_result"
cannam@127 5814 done
cannam@127 5815 IFS="$save_ifs"
cannam@127 5816 func_stripname ' ' '' "$arg"
cannam@127 5817 arg=$func_stripname_result
cannam@127 5818 ;;
cannam@127 5819
cannam@127 5820 -Xcompiler)
cannam@127 5821 prev=xcompiler
cannam@127 5822 continue
cannam@127 5823 ;;
cannam@127 5824
cannam@127 5825 -Xlinker)
cannam@127 5826 prev=xlinker
cannam@127 5827 continue
cannam@127 5828 ;;
cannam@127 5829
cannam@127 5830 -XCClinker)
cannam@127 5831 prev=xcclinker
cannam@127 5832 continue
cannam@127 5833 ;;
cannam@127 5834
cannam@127 5835 # -msg_* for osf cc
cannam@127 5836 -msg_*)
cannam@127 5837 func_quote_for_eval "$arg"
cannam@127 5838 arg="$func_quote_for_eval_result"
cannam@127 5839 ;;
cannam@127 5840
cannam@127 5841 # Flags to be passed through unchanged, with rationale:
cannam@127 5842 # -64, -mips[0-9] enable 64-bit mode for the SGI compiler
cannam@127 5843 # -r[0-9][0-9]* specify processor for the SGI compiler
cannam@127 5844 # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler
cannam@127 5845 # +DA*, +DD* enable 64-bit mode for the HP compiler
cannam@127 5846 # -q* compiler args for the IBM compiler
cannam@127 5847 # -m*, -t[45]*, -txscale* architecture-specific flags for GCC
cannam@127 5848 # -F/path path to uninstalled frameworks, gcc on darwin
cannam@127 5849 # -p, -pg, --coverage, -fprofile-* profiling flags for GCC
cannam@127 5850 # @file GCC response files
cannam@127 5851 # -tp=* Portland pgcc target processor selection
cannam@127 5852 # --sysroot=* for sysroot support
cannam@127 5853 # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization
cannam@127 5854 -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
cannam@127 5855 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
cannam@127 5856 -O*|-flto*|-fwhopr*|-fuse-linker-plugin)
cannam@127 5857 func_quote_for_eval "$arg"
cannam@127 5858 arg="$func_quote_for_eval_result"
cannam@127 5859 func_append compile_command " $arg"
cannam@127 5860 func_append finalize_command " $arg"
cannam@127 5861 func_append compiler_flags " $arg"
cannam@127 5862 continue
cannam@127 5863 ;;
cannam@127 5864
cannam@127 5865 # Some other compiler flag.
cannam@127 5866 -* | +*)
cannam@127 5867 func_quote_for_eval "$arg"
cannam@127 5868 arg="$func_quote_for_eval_result"
cannam@127 5869 ;;
cannam@127 5870
cannam@127 5871 *.$objext)
cannam@127 5872 # A standard object.
cannam@127 5873 func_append objs " $arg"
cannam@127 5874 ;;
cannam@127 5875
cannam@127 5876 *.lo)
cannam@127 5877 # A libtool-controlled object.
cannam@127 5878
cannam@127 5879 # Check to see that this really is a libtool object.
cannam@127 5880 if func_lalib_unsafe_p "$arg"; then
cannam@127 5881 pic_object=
cannam@127 5882 non_pic_object=
cannam@127 5883
cannam@127 5884 # Read the .lo file
cannam@127 5885 func_source "$arg"
cannam@127 5886
cannam@127 5887 if test -z "$pic_object" ||
cannam@127 5888 test -z "$non_pic_object" ||
cannam@127 5889 test "$pic_object" = none &&
cannam@127 5890 test "$non_pic_object" = none; then
cannam@127 5891 func_fatal_error "cannot find name of object for \`$arg'"
cannam@127 5892 fi
cannam@127 5893
cannam@127 5894 # Extract subdirectory from the argument.
cannam@127 5895 func_dirname "$arg" "/" ""
cannam@127 5896 xdir="$func_dirname_result"
cannam@127 5897
cannam@127 5898 if test "$pic_object" != none; then
cannam@127 5899 # Prepend the subdirectory the object is found in.
cannam@127 5900 pic_object="$xdir$pic_object"
cannam@127 5901
cannam@127 5902 if test "$prev" = dlfiles; then
cannam@127 5903 if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
cannam@127 5904 func_append dlfiles " $pic_object"
cannam@127 5905 prev=
cannam@127 5906 continue
cannam@127 5907 else
cannam@127 5908 # If libtool objects are unsupported, then we need to preload.
cannam@127 5909 prev=dlprefiles
cannam@127 5910 fi
cannam@127 5911 fi
cannam@127 5912
cannam@127 5913 # CHECK ME: I think I busted this. -Ossama
cannam@127 5914 if test "$prev" = dlprefiles; then
cannam@127 5915 # Preload the old-style object.
cannam@127 5916 func_append dlprefiles " $pic_object"
cannam@127 5917 prev=
cannam@127 5918 fi
cannam@127 5919
cannam@127 5920 # A PIC object.
cannam@127 5921 func_append libobjs " $pic_object"
cannam@127 5922 arg="$pic_object"
cannam@127 5923 fi
cannam@127 5924
cannam@127 5925 # Non-PIC object.
cannam@127 5926 if test "$non_pic_object" != none; then
cannam@127 5927 # Prepend the subdirectory the object is found in.
cannam@127 5928 non_pic_object="$xdir$non_pic_object"
cannam@127 5929
cannam@127 5930 # A standard non-PIC object
cannam@127 5931 func_append non_pic_objects " $non_pic_object"
cannam@127 5932 if test -z "$pic_object" || test "$pic_object" = none ; then
cannam@127 5933 arg="$non_pic_object"
cannam@127 5934 fi
cannam@127 5935 else
cannam@127 5936 # If the PIC object exists, use it instead.
cannam@127 5937 # $xdir was prepended to $pic_object above.
cannam@127 5938 non_pic_object="$pic_object"
cannam@127 5939 func_append non_pic_objects " $non_pic_object"
cannam@127 5940 fi
cannam@127 5941 else
cannam@127 5942 # Only an error if not doing a dry-run.
cannam@127 5943 if $opt_dry_run; then
cannam@127 5944 # Extract subdirectory from the argument.
cannam@127 5945 func_dirname "$arg" "/" ""
cannam@127 5946 xdir="$func_dirname_result"
cannam@127 5947
cannam@127 5948 func_lo2o "$arg"
cannam@127 5949 pic_object=$xdir$objdir/$func_lo2o_result
cannam@127 5950 non_pic_object=$xdir$func_lo2o_result
cannam@127 5951 func_append libobjs " $pic_object"
cannam@127 5952 func_append non_pic_objects " $non_pic_object"
cannam@127 5953 else
cannam@127 5954 func_fatal_error "\`$arg' is not a valid libtool object"
cannam@127 5955 fi
cannam@127 5956 fi
cannam@127 5957 ;;
cannam@127 5958
cannam@127 5959 *.$libext)
cannam@127 5960 # An archive.
cannam@127 5961 func_append deplibs " $arg"
cannam@127 5962 func_append old_deplibs " $arg"
cannam@127 5963 continue
cannam@127 5964 ;;
cannam@127 5965
cannam@127 5966 *.la)
cannam@127 5967 # A libtool-controlled library.
cannam@127 5968
cannam@127 5969 func_resolve_sysroot "$arg"
cannam@127 5970 if test "$prev" = dlfiles; then
cannam@127 5971 # This library was specified with -dlopen.
cannam@127 5972 func_append dlfiles " $func_resolve_sysroot_result"
cannam@127 5973 prev=
cannam@127 5974 elif test "$prev" = dlprefiles; then
cannam@127 5975 # The library was specified with -dlpreopen.
cannam@127 5976 func_append dlprefiles " $func_resolve_sysroot_result"
cannam@127 5977 prev=
cannam@127 5978 else
cannam@127 5979 func_append deplibs " $func_resolve_sysroot_result"
cannam@127 5980 fi
cannam@127 5981 continue
cannam@127 5982 ;;
cannam@127 5983
cannam@127 5984 # Some other compiler argument.
cannam@127 5985 *)
cannam@127 5986 # Unknown arguments in both finalize_command and compile_command need
cannam@127 5987 # to be aesthetically quoted because they are evaled later.
cannam@127 5988 func_quote_for_eval "$arg"
cannam@127 5989 arg="$func_quote_for_eval_result"
cannam@127 5990 ;;
cannam@127 5991 esac # arg
cannam@127 5992
cannam@127 5993 # Now actually substitute the argument into the commands.
cannam@127 5994 if test -n "$arg"; then
cannam@127 5995 func_append compile_command " $arg"
cannam@127 5996 func_append finalize_command " $arg"
cannam@127 5997 fi
cannam@127 5998 done # argument parsing loop
cannam@127 5999
cannam@127 6000 test -n "$prev" && \
cannam@127 6001 func_fatal_help "the \`$prevarg' option requires an argument"
cannam@127 6002
cannam@127 6003 if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
cannam@127 6004 eval arg=\"$export_dynamic_flag_spec\"
cannam@127 6005 func_append compile_command " $arg"
cannam@127 6006 func_append finalize_command " $arg"
cannam@127 6007 fi
cannam@127 6008
cannam@127 6009 oldlibs=
cannam@127 6010 # calculate the name of the file, without its directory
cannam@127 6011 func_basename "$output"
cannam@127 6012 outputname="$func_basename_result"
cannam@127 6013 libobjs_save="$libobjs"
cannam@127 6014
cannam@127 6015 if test -n "$shlibpath_var"; then
cannam@127 6016 # get the directories listed in $shlibpath_var
cannam@127 6017 eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\`
cannam@127 6018 else
cannam@127 6019 shlib_search_path=
cannam@127 6020 fi
cannam@127 6021 eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
cannam@127 6022 eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"
cannam@127 6023
cannam@127 6024 func_dirname "$output" "/" ""
cannam@127 6025 output_objdir="$func_dirname_result$objdir"
cannam@127 6026 func_to_tool_file "$output_objdir/"
cannam@127 6027 tool_output_objdir=$func_to_tool_file_result
cannam@127 6028 # Create the object directory.
cannam@127 6029 func_mkdir_p "$output_objdir"
cannam@127 6030
cannam@127 6031 # Determine the type of output
cannam@127 6032 case $output in
cannam@127 6033 "")
cannam@127 6034 func_fatal_help "you must specify an output file"
cannam@127 6035 ;;
cannam@127 6036 *.$libext) linkmode=oldlib ;;
cannam@127 6037 *.lo | *.$objext) linkmode=obj ;;
cannam@127 6038 *.la) linkmode=lib ;;
cannam@127 6039 *) linkmode=prog ;; # Anything else should be a program.
cannam@127 6040 esac
cannam@127 6041
cannam@127 6042 specialdeplibs=
cannam@127 6043
cannam@127 6044 libs=
cannam@127 6045 # Find all interdependent deplibs by searching for libraries
cannam@127 6046 # that are linked more than once (e.g. -la -lb -la)
cannam@127 6047 for deplib in $deplibs; do
cannam@127 6048 if $opt_preserve_dup_deps ; then
cannam@127 6049 case "$libs " in
cannam@127 6050 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
cannam@127 6051 esac
cannam@127 6052 fi
cannam@127 6053 func_append libs " $deplib"
cannam@127 6054 done
cannam@127 6055
cannam@127 6056 if test "$linkmode" = lib; then
cannam@127 6057 libs="$predeps $libs $compiler_lib_search_path $postdeps"
cannam@127 6058
cannam@127 6059 # Compute libraries that are listed more than once in $predeps
cannam@127 6060 # $postdeps and mark them as special (i.e., whose duplicates are
cannam@127 6061 # not to be eliminated).
cannam@127 6062 pre_post_deps=
cannam@127 6063 if $opt_duplicate_compiler_generated_deps; then
cannam@127 6064 for pre_post_dep in $predeps $postdeps; do
cannam@127 6065 case "$pre_post_deps " in
cannam@127 6066 *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;;
cannam@127 6067 esac
cannam@127 6068 func_append pre_post_deps " $pre_post_dep"
cannam@127 6069 done
cannam@127 6070 fi
cannam@127 6071 pre_post_deps=
cannam@127 6072 fi
cannam@127 6073
cannam@127 6074 deplibs=
cannam@127 6075 newdependency_libs=
cannam@127 6076 newlib_search_path=
cannam@127 6077 need_relink=no # whether we're linking any uninstalled libtool libraries
cannam@127 6078 notinst_deplibs= # not-installed libtool libraries
cannam@127 6079 notinst_path= # paths that contain not-installed libtool libraries
cannam@127 6080
cannam@127 6081 case $linkmode in
cannam@127 6082 lib)
cannam@127 6083 passes="conv dlpreopen link"
cannam@127 6084 for file in $dlfiles $dlprefiles; do
cannam@127 6085 case $file in
cannam@127 6086 *.la) ;;
cannam@127 6087 *)
cannam@127 6088 func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file"
cannam@127 6089 ;;
cannam@127 6090 esac
cannam@127 6091 done
cannam@127 6092 ;;
cannam@127 6093 prog)
cannam@127 6094 compile_deplibs=
cannam@127 6095 finalize_deplibs=
cannam@127 6096 alldeplibs=no
cannam@127 6097 newdlfiles=
cannam@127 6098 newdlprefiles=
cannam@127 6099 passes="conv scan dlopen dlpreopen link"
cannam@127 6100 ;;
cannam@127 6101 *) passes="conv"
cannam@127 6102 ;;
cannam@127 6103 esac
cannam@127 6104
cannam@127 6105 for pass in $passes; do
cannam@127 6106 # The preopen pass in lib mode reverses $deplibs; put it back here
cannam@127 6107 # so that -L comes before libs that need it for instance...
cannam@127 6108 if test "$linkmode,$pass" = "lib,link"; then
cannam@127 6109 ## FIXME: Find the place where the list is rebuilt in the wrong
cannam@127 6110 ## order, and fix it there properly
cannam@127 6111 tmp_deplibs=
cannam@127 6112 for deplib in $deplibs; do
cannam@127 6113 tmp_deplibs="$deplib $tmp_deplibs"
cannam@127 6114 done
cannam@127 6115 deplibs="$tmp_deplibs"
cannam@127 6116 fi
cannam@127 6117
cannam@127 6118 if test "$linkmode,$pass" = "lib,link" ||
cannam@127 6119 test "$linkmode,$pass" = "prog,scan"; then
cannam@127 6120 libs="$deplibs"
cannam@127 6121 deplibs=
cannam@127 6122 fi
cannam@127 6123 if test "$linkmode" = prog; then
cannam@127 6124 case $pass in
cannam@127 6125 dlopen) libs="$dlfiles" ;;
cannam@127 6126 dlpreopen) libs="$dlprefiles" ;;
cannam@127 6127 link)
cannam@127 6128 libs="$deplibs %DEPLIBS%"
cannam@127 6129 test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
cannam@127 6130 ;;
cannam@127 6131 esac
cannam@127 6132 fi
cannam@127 6133 if test "$linkmode,$pass" = "lib,dlpreopen"; then
cannam@127 6134 # Collect and forward deplibs of preopened libtool libs
cannam@127 6135 for lib in $dlprefiles; do
cannam@127 6136 # Ignore non-libtool-libs
cannam@127 6137 dependency_libs=
cannam@127 6138 func_resolve_sysroot "$lib"
cannam@127 6139 case $lib in
cannam@127 6140 *.la) func_source "$func_resolve_sysroot_result" ;;
cannam@127 6141 esac
cannam@127 6142
cannam@127 6143 # Collect preopened libtool deplibs, except any this library
cannam@127 6144 # has declared as weak libs
cannam@127 6145 for deplib in $dependency_libs; do
cannam@127 6146 func_basename "$deplib"
cannam@127 6147 deplib_base=$func_basename_result
cannam@127 6148 case " $weak_libs " in
cannam@127 6149 *" $deplib_base "*) ;;
cannam@127 6150 *) func_append deplibs " $deplib" ;;
cannam@127 6151 esac
cannam@127 6152 done
cannam@127 6153 done
cannam@127 6154 libs="$dlprefiles"
cannam@127 6155 fi
cannam@127 6156 if test "$pass" = dlopen; then
cannam@127 6157 # Collect dlpreopened libraries
cannam@127 6158 save_deplibs="$deplibs"
cannam@127 6159 deplibs=
cannam@127 6160 fi
cannam@127 6161
cannam@127 6162 for deplib in $libs; do
cannam@127 6163 lib=
cannam@127 6164 found=no
cannam@127 6165 case $deplib in
cannam@127 6166 -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \
cannam@127 6167 |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)
cannam@127 6168 if test "$linkmode,$pass" = "prog,link"; then
cannam@127 6169 compile_deplibs="$deplib $compile_deplibs"
cannam@127 6170 finalize_deplibs="$deplib $finalize_deplibs"
cannam@127 6171 else
cannam@127 6172 func_append compiler_flags " $deplib"
cannam@127 6173 if test "$linkmode" = lib ; then
cannam@127 6174 case "$new_inherited_linker_flags " in
cannam@127 6175 *" $deplib "*) ;;
cannam@127 6176 * ) func_append new_inherited_linker_flags " $deplib" ;;
cannam@127 6177 esac
cannam@127 6178 fi
cannam@127 6179 fi
cannam@127 6180 continue
cannam@127 6181 ;;
cannam@127 6182 -l*)
cannam@127 6183 if test "$linkmode" != lib && test "$linkmode" != prog; then
cannam@127 6184 func_warning "\`-l' is ignored for archives/objects"
cannam@127 6185 continue
cannam@127 6186 fi
cannam@127 6187 func_stripname '-l' '' "$deplib"
cannam@127 6188 name=$func_stripname_result
cannam@127 6189 if test "$linkmode" = lib; then
cannam@127 6190 searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path"
cannam@127 6191 else
cannam@127 6192 searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path"
cannam@127 6193 fi
cannam@127 6194 for searchdir in $searchdirs; do
cannam@127 6195 for search_ext in .la $std_shrext .so .a; do
cannam@127 6196 # Search the libtool library
cannam@127 6197 lib="$searchdir/lib${name}${search_ext}"
cannam@127 6198 if test -f "$lib"; then
cannam@127 6199 if test "$search_ext" = ".la"; then
cannam@127 6200 found=yes
cannam@127 6201 else
cannam@127 6202 found=no
cannam@127 6203 fi
cannam@127 6204 break 2
cannam@127 6205 fi
cannam@127 6206 done
cannam@127 6207 done
cannam@127 6208 if test "$found" != yes; then
cannam@127 6209 # deplib doesn't seem to be a libtool library
cannam@127 6210 if test "$linkmode,$pass" = "prog,link"; then
cannam@127 6211 compile_deplibs="$deplib $compile_deplibs"
cannam@127 6212 finalize_deplibs="$deplib $finalize_deplibs"
cannam@127 6213 else
cannam@127 6214 deplibs="$deplib $deplibs"
cannam@127 6215 test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
cannam@127 6216 fi
cannam@127 6217 continue
cannam@127 6218 else # deplib is a libtool library
cannam@127 6219 # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,
cannam@127 6220 # We need to do some special things here, and not later.
cannam@127 6221 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@127 6222 case " $predeps $postdeps " in
cannam@127 6223 *" $deplib "*)
cannam@127 6224 if func_lalib_p "$lib"; then
cannam@127 6225 library_names=
cannam@127 6226 old_library=
cannam@127 6227 func_source "$lib"
cannam@127 6228 for l in $old_library $library_names; do
cannam@127 6229 ll="$l"
cannam@127 6230 done
cannam@127 6231 if test "X$ll" = "X$old_library" ; then # only static version available
cannam@127 6232 found=no
cannam@127 6233 func_dirname "$lib" "" "."
cannam@127 6234 ladir="$func_dirname_result"
cannam@127 6235 lib=$ladir/$old_library
cannam@127 6236 if test "$linkmode,$pass" = "prog,link"; then
cannam@127 6237 compile_deplibs="$deplib $compile_deplibs"
cannam@127 6238 finalize_deplibs="$deplib $finalize_deplibs"
cannam@127 6239 else
cannam@127 6240 deplibs="$deplib $deplibs"
cannam@127 6241 test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
cannam@127 6242 fi
cannam@127 6243 continue
cannam@127 6244 fi
cannam@127 6245 fi
cannam@127 6246 ;;
cannam@127 6247 *) ;;
cannam@127 6248 esac
cannam@127 6249 fi
cannam@127 6250 fi
cannam@127 6251 ;; # -l
cannam@127 6252 *.ltframework)
cannam@127 6253 if test "$linkmode,$pass" = "prog,link"; then
cannam@127 6254 compile_deplibs="$deplib $compile_deplibs"
cannam@127 6255 finalize_deplibs="$deplib $finalize_deplibs"
cannam@127 6256 else
cannam@127 6257 deplibs="$deplib $deplibs"
cannam@127 6258 if test "$linkmode" = lib ; then
cannam@127 6259 case "$new_inherited_linker_flags " in
cannam@127 6260 *" $deplib "*) ;;
cannam@127 6261 * ) func_append new_inherited_linker_flags " $deplib" ;;
cannam@127 6262 esac
cannam@127 6263 fi
cannam@127 6264 fi
cannam@127 6265 continue
cannam@127 6266 ;;
cannam@127 6267 -L*)
cannam@127 6268 case $linkmode in
cannam@127 6269 lib)
cannam@127 6270 deplibs="$deplib $deplibs"
cannam@127 6271 test "$pass" = conv && continue
cannam@127 6272 newdependency_libs="$deplib $newdependency_libs"
cannam@127 6273 func_stripname '-L' '' "$deplib"
cannam@127 6274 func_resolve_sysroot "$func_stripname_result"
cannam@127 6275 func_append newlib_search_path " $func_resolve_sysroot_result"
cannam@127 6276 ;;
cannam@127 6277 prog)
cannam@127 6278 if test "$pass" = conv; then
cannam@127 6279 deplibs="$deplib $deplibs"
cannam@127 6280 continue
cannam@127 6281 fi
cannam@127 6282 if test "$pass" = scan; then
cannam@127 6283 deplibs="$deplib $deplibs"
cannam@127 6284 else
cannam@127 6285 compile_deplibs="$deplib $compile_deplibs"
cannam@127 6286 finalize_deplibs="$deplib $finalize_deplibs"
cannam@127 6287 fi
cannam@127 6288 func_stripname '-L' '' "$deplib"
cannam@127 6289 func_resolve_sysroot "$func_stripname_result"
cannam@127 6290 func_append newlib_search_path " $func_resolve_sysroot_result"
cannam@127 6291 ;;
cannam@127 6292 *)
cannam@127 6293 func_warning "\`-L' is ignored for archives/objects"
cannam@127 6294 ;;
cannam@127 6295 esac # linkmode
cannam@127 6296 continue
cannam@127 6297 ;; # -L
cannam@127 6298 -R*)
cannam@127 6299 if test "$pass" = link; then
cannam@127 6300 func_stripname '-R' '' "$deplib"
cannam@127 6301 func_resolve_sysroot "$func_stripname_result"
cannam@127 6302 dir=$func_resolve_sysroot_result
cannam@127 6303 # Make sure the xrpath contains only unique directories.
cannam@127 6304 case "$xrpath " in
cannam@127 6305 *" $dir "*) ;;
cannam@127 6306 *) func_append xrpath " $dir" ;;
cannam@127 6307 esac
cannam@127 6308 fi
cannam@127 6309 deplibs="$deplib $deplibs"
cannam@127 6310 continue
cannam@127 6311 ;;
cannam@127 6312 *.la)
cannam@127 6313 func_resolve_sysroot "$deplib"
cannam@127 6314 lib=$func_resolve_sysroot_result
cannam@127 6315 ;;
cannam@127 6316 *.$libext)
cannam@127 6317 if test "$pass" = conv; then
cannam@127 6318 deplibs="$deplib $deplibs"
cannam@127 6319 continue
cannam@127 6320 fi
cannam@127 6321 case $linkmode in
cannam@127 6322 lib)
cannam@127 6323 # Linking convenience modules into shared libraries is allowed,
cannam@127 6324 # but linking other static libraries is non-portable.
cannam@127 6325 case " $dlpreconveniencelibs " in
cannam@127 6326 *" $deplib "*) ;;
cannam@127 6327 *)
cannam@127 6328 valid_a_lib=no
cannam@127 6329 case $deplibs_check_method in
cannam@127 6330 match_pattern*)
cannam@127 6331 set dummy $deplibs_check_method; shift
cannam@127 6332 match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
cannam@127 6333 if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \
cannam@127 6334 | $EGREP "$match_pattern_regex" > /dev/null; then
cannam@127 6335 valid_a_lib=yes
cannam@127 6336 fi
cannam@127 6337 ;;
cannam@127 6338 pass_all)
cannam@127 6339 valid_a_lib=yes
cannam@127 6340 ;;
cannam@127 6341 esac
cannam@127 6342 if test "$valid_a_lib" != yes; then
cannam@127 6343 echo
cannam@127 6344 $ECHO "*** Warning: Trying to link with static lib archive $deplib."
cannam@127 6345 echo "*** I have the capability to make that library automatically link in when"
cannam@127 6346 echo "*** you link to this library. But I can only do this if you have a"
cannam@127 6347 echo "*** shared version of the library, which you do not appear to have"
cannam@127 6348 echo "*** because the file extensions .$libext of this argument makes me believe"
cannam@127 6349 echo "*** that it is just a static archive that I should not use here."
cannam@127 6350 else
cannam@127 6351 echo
cannam@127 6352 $ECHO "*** Warning: Linking the shared library $output against the"
cannam@127 6353 $ECHO "*** static library $deplib is not portable!"
cannam@127 6354 deplibs="$deplib $deplibs"
cannam@127 6355 fi
cannam@127 6356 ;;
cannam@127 6357 esac
cannam@127 6358 continue
cannam@127 6359 ;;
cannam@127 6360 prog)
cannam@127 6361 if test "$pass" != link; then
cannam@127 6362 deplibs="$deplib $deplibs"
cannam@127 6363 else
cannam@127 6364 compile_deplibs="$deplib $compile_deplibs"
cannam@127 6365 finalize_deplibs="$deplib $finalize_deplibs"
cannam@127 6366 fi
cannam@127 6367 continue
cannam@127 6368 ;;
cannam@127 6369 esac # linkmode
cannam@127 6370 ;; # *.$libext
cannam@127 6371 *.lo | *.$objext)
cannam@127 6372 if test "$pass" = conv; then
cannam@127 6373 deplibs="$deplib $deplibs"
cannam@127 6374 elif test "$linkmode" = prog; then
cannam@127 6375 if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
cannam@127 6376 # If there is no dlopen support or we're linking statically,
cannam@127 6377 # we need to preload.
cannam@127 6378 func_append newdlprefiles " $deplib"
cannam@127 6379 compile_deplibs="$deplib $compile_deplibs"
cannam@127 6380 finalize_deplibs="$deplib $finalize_deplibs"
cannam@127 6381 else
cannam@127 6382 func_append newdlfiles " $deplib"
cannam@127 6383 fi
cannam@127 6384 fi
cannam@127 6385 continue
cannam@127 6386 ;;
cannam@127 6387 %DEPLIBS%)
cannam@127 6388 alldeplibs=yes
cannam@127 6389 continue
cannam@127 6390 ;;
cannam@127 6391 esac # case $deplib
cannam@127 6392
cannam@127 6393 if test "$found" = yes || test -f "$lib"; then :
cannam@127 6394 else
cannam@127 6395 func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'"
cannam@127 6396 fi
cannam@127 6397
cannam@127 6398 # Check to see that this really is a libtool archive.
cannam@127 6399 func_lalib_unsafe_p "$lib" \
cannam@127 6400 || func_fatal_error "\`$lib' is not a valid libtool archive"
cannam@127 6401
cannam@127 6402 func_dirname "$lib" "" "."
cannam@127 6403 ladir="$func_dirname_result"
cannam@127 6404
cannam@127 6405 dlname=
cannam@127 6406 dlopen=
cannam@127 6407 dlpreopen=
cannam@127 6408 libdir=
cannam@127 6409 library_names=
cannam@127 6410 old_library=
cannam@127 6411 inherited_linker_flags=
cannam@127 6412 # If the library was installed with an old release of libtool,
cannam@127 6413 # it will not redefine variables installed, or shouldnotlink
cannam@127 6414 installed=yes
cannam@127 6415 shouldnotlink=no
cannam@127 6416 avoidtemprpath=
cannam@127 6417
cannam@127 6418
cannam@127 6419 # Read the .la file
cannam@127 6420 func_source "$lib"
cannam@127 6421
cannam@127 6422 # Convert "-framework foo" to "foo.ltframework"
cannam@127 6423 if test -n "$inherited_linker_flags"; then
cannam@127 6424 tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'`
cannam@127 6425 for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do
cannam@127 6426 case " $new_inherited_linker_flags " in
cannam@127 6427 *" $tmp_inherited_linker_flag "*) ;;
cannam@127 6428 *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";;
cannam@127 6429 esac
cannam@127 6430 done
cannam@127 6431 fi
cannam@127 6432 dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@127 6433 if test "$linkmode,$pass" = "lib,link" ||
cannam@127 6434 test "$linkmode,$pass" = "prog,scan" ||
cannam@127 6435 { test "$linkmode" != prog && test "$linkmode" != lib; }; then
cannam@127 6436 test -n "$dlopen" && func_append dlfiles " $dlopen"
cannam@127 6437 test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen"
cannam@127 6438 fi
cannam@127 6439
cannam@127 6440 if test "$pass" = conv; then
cannam@127 6441 # Only check for convenience libraries
cannam@127 6442 deplibs="$lib $deplibs"
cannam@127 6443 if test -z "$libdir"; then
cannam@127 6444 if test -z "$old_library"; then
cannam@127 6445 func_fatal_error "cannot find name of link library for \`$lib'"
cannam@127 6446 fi
cannam@127 6447 # It is a libtool convenience library, so add in its objects.
cannam@127 6448 func_append convenience " $ladir/$objdir/$old_library"
cannam@127 6449 func_append old_convenience " $ladir/$objdir/$old_library"
cannam@127 6450 tmp_libs=
cannam@127 6451 for deplib in $dependency_libs; do
cannam@127 6452 deplibs="$deplib $deplibs"
cannam@127 6453 if $opt_preserve_dup_deps ; then
cannam@127 6454 case "$tmp_libs " in
cannam@127 6455 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
cannam@127 6456 esac
cannam@127 6457 fi
cannam@127 6458 func_append tmp_libs " $deplib"
cannam@127 6459 done
cannam@127 6460 elif test "$linkmode" != prog && test "$linkmode" != lib; then
cannam@127 6461 func_fatal_error "\`$lib' is not a convenience library"
cannam@127 6462 fi
cannam@127 6463 continue
cannam@127 6464 fi # $pass = conv
cannam@127 6465
cannam@127 6466
cannam@127 6467 # Get the name of the library we link against.
cannam@127 6468 linklib=
cannam@127 6469 if test -n "$old_library" &&
cannam@127 6470 { test "$prefer_static_libs" = yes ||
cannam@127 6471 test "$prefer_static_libs,$installed" = "built,no"; }; then
cannam@127 6472 linklib=$old_library
cannam@127 6473 else
cannam@127 6474 for l in $old_library $library_names; do
cannam@127 6475 linklib="$l"
cannam@127 6476 done
cannam@127 6477 fi
cannam@127 6478 if test -z "$linklib"; then
cannam@127 6479 func_fatal_error "cannot find name of link library for \`$lib'"
cannam@127 6480 fi
cannam@127 6481
cannam@127 6482 # This library was specified with -dlopen.
cannam@127 6483 if test "$pass" = dlopen; then
cannam@127 6484 if test -z "$libdir"; then
cannam@127 6485 func_fatal_error "cannot -dlopen a convenience library: \`$lib'"
cannam@127 6486 fi
cannam@127 6487 if test -z "$dlname" ||
cannam@127 6488 test "$dlopen_support" != yes ||
cannam@127 6489 test "$build_libtool_libs" = no; then
cannam@127 6490 # If there is no dlname, no dlopen support or we're linking
cannam@127 6491 # statically, we need to preload. We also need to preload any
cannam@127 6492 # dependent libraries so libltdl's deplib preloader doesn't
cannam@127 6493 # bomb out in the load deplibs phase.
cannam@127 6494 func_append dlprefiles " $lib $dependency_libs"
cannam@127 6495 else
cannam@127 6496 func_append newdlfiles " $lib"
cannam@127 6497 fi
cannam@127 6498 continue
cannam@127 6499 fi # $pass = dlopen
cannam@127 6500
cannam@127 6501 # We need an absolute path.
cannam@127 6502 case $ladir in
cannam@127 6503 [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;
cannam@127 6504 *)
cannam@127 6505 abs_ladir=`cd "$ladir" && pwd`
cannam@127 6506 if test -z "$abs_ladir"; then
cannam@127 6507 func_warning "cannot determine absolute directory name of \`$ladir'"
cannam@127 6508 func_warning "passing it literally to the linker, although it might fail"
cannam@127 6509 abs_ladir="$ladir"
cannam@127 6510 fi
cannam@127 6511 ;;
cannam@127 6512 esac
cannam@127 6513 func_basename "$lib"
cannam@127 6514 laname="$func_basename_result"
cannam@127 6515
cannam@127 6516 # Find the relevant object directory and library name.
cannam@127 6517 if test "X$installed" = Xyes; then
cannam@127 6518 if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
cannam@127 6519 func_warning "library \`$lib' was moved."
cannam@127 6520 dir="$ladir"
cannam@127 6521 absdir="$abs_ladir"
cannam@127 6522 libdir="$abs_ladir"
cannam@127 6523 else
cannam@127 6524 dir="$lt_sysroot$libdir"
cannam@127 6525 absdir="$lt_sysroot$libdir"
cannam@127 6526 fi
cannam@127 6527 test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes
cannam@127 6528 else
cannam@127 6529 if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then
cannam@127 6530 dir="$ladir"
cannam@127 6531 absdir="$abs_ladir"
cannam@127 6532 # Remove this search path later
cannam@127 6533 func_append notinst_path " $abs_ladir"
cannam@127 6534 else
cannam@127 6535 dir="$ladir/$objdir"
cannam@127 6536 absdir="$abs_ladir/$objdir"
cannam@127 6537 # Remove this search path later
cannam@127 6538 func_append notinst_path " $abs_ladir"
cannam@127 6539 fi
cannam@127 6540 fi # $installed = yes
cannam@127 6541 func_stripname 'lib' '.la' "$laname"
cannam@127 6542 name=$func_stripname_result
cannam@127 6543
cannam@127 6544 # This library was specified with -dlpreopen.
cannam@127 6545 if test "$pass" = dlpreopen; then
cannam@127 6546 if test -z "$libdir" && test "$linkmode" = prog; then
cannam@127 6547 func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'"
cannam@127 6548 fi
cannam@127 6549 case "$host" in
cannam@127 6550 # special handling for platforms with PE-DLLs.
cannam@127 6551 *cygwin* | *mingw* | *cegcc* )
cannam@127 6552 # Linker will automatically link against shared library if both
cannam@127 6553 # static and shared are present. Therefore, ensure we extract
cannam@127 6554 # symbols from the import library if a shared library is present
cannam@127 6555 # (otherwise, the dlopen module name will be incorrect). We do
cannam@127 6556 # this by putting the import library name into $newdlprefiles.
cannam@127 6557 # We recover the dlopen module name by 'saving' the la file
cannam@127 6558 # name in a special purpose variable, and (later) extracting the
cannam@127 6559 # dlname from the la file.
cannam@127 6560 if test -n "$dlname"; then
cannam@127 6561 func_tr_sh "$dir/$linklib"
cannam@127 6562 eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname"
cannam@127 6563 func_append newdlprefiles " $dir/$linklib"
cannam@127 6564 else
cannam@127 6565 func_append newdlprefiles " $dir/$old_library"
cannam@127 6566 # Keep a list of preopened convenience libraries to check
cannam@127 6567 # that they are being used correctly in the link pass.
cannam@127 6568 test -z "$libdir" && \
cannam@127 6569 func_append dlpreconveniencelibs " $dir/$old_library"
cannam@127 6570 fi
cannam@127 6571 ;;
cannam@127 6572 * )
cannam@127 6573 # Prefer using a static library (so that no silly _DYNAMIC symbols
cannam@127 6574 # are required to link).
cannam@127 6575 if test -n "$old_library"; then
cannam@127 6576 func_append newdlprefiles " $dir/$old_library"
cannam@127 6577 # Keep a list of preopened convenience libraries to check
cannam@127 6578 # that they are being used correctly in the link pass.
cannam@127 6579 test -z "$libdir" && \
cannam@127 6580 func_append dlpreconveniencelibs " $dir/$old_library"
cannam@127 6581 # Otherwise, use the dlname, so that lt_dlopen finds it.
cannam@127 6582 elif test -n "$dlname"; then
cannam@127 6583 func_append newdlprefiles " $dir/$dlname"
cannam@127 6584 else
cannam@127 6585 func_append newdlprefiles " $dir/$linklib"
cannam@127 6586 fi
cannam@127 6587 ;;
cannam@127 6588 esac
cannam@127 6589 fi # $pass = dlpreopen
cannam@127 6590
cannam@127 6591 if test -z "$libdir"; then
cannam@127 6592 # Link the convenience library
cannam@127 6593 if test "$linkmode" = lib; then
cannam@127 6594 deplibs="$dir/$old_library $deplibs"
cannam@127 6595 elif test "$linkmode,$pass" = "prog,link"; then
cannam@127 6596 compile_deplibs="$dir/$old_library $compile_deplibs"
cannam@127 6597 finalize_deplibs="$dir/$old_library $finalize_deplibs"
cannam@127 6598 else
cannam@127 6599 deplibs="$lib $deplibs" # used for prog,scan pass
cannam@127 6600 fi
cannam@127 6601 continue
cannam@127 6602 fi
cannam@127 6603
cannam@127 6604
cannam@127 6605 if test "$linkmode" = prog && test "$pass" != link; then
cannam@127 6606 func_append newlib_search_path " $ladir"
cannam@127 6607 deplibs="$lib $deplibs"
cannam@127 6608
cannam@127 6609 linkalldeplibs=no
cannam@127 6610 if test "$link_all_deplibs" != no || test -z "$library_names" ||
cannam@127 6611 test "$build_libtool_libs" = no; then
cannam@127 6612 linkalldeplibs=yes
cannam@127 6613 fi
cannam@127 6614
cannam@127 6615 tmp_libs=
cannam@127 6616 for deplib in $dependency_libs; do
cannam@127 6617 case $deplib in
cannam@127 6618 -L*) func_stripname '-L' '' "$deplib"
cannam@127 6619 func_resolve_sysroot "$func_stripname_result"
cannam@127 6620 func_append newlib_search_path " $func_resolve_sysroot_result"
cannam@127 6621 ;;
cannam@127 6622 esac
cannam@127 6623 # Need to link against all dependency_libs?
cannam@127 6624 if test "$linkalldeplibs" = yes; then
cannam@127 6625 deplibs="$deplib $deplibs"
cannam@127 6626 else
cannam@127 6627 # Need to hardcode shared library paths
cannam@127 6628 # or/and link against static libraries
cannam@127 6629 newdependency_libs="$deplib $newdependency_libs"
cannam@127 6630 fi
cannam@127 6631 if $opt_preserve_dup_deps ; then
cannam@127 6632 case "$tmp_libs " in
cannam@127 6633 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
cannam@127 6634 esac
cannam@127 6635 fi
cannam@127 6636 func_append tmp_libs " $deplib"
cannam@127 6637 done # for deplib
cannam@127 6638 continue
cannam@127 6639 fi # $linkmode = prog...
cannam@127 6640
cannam@127 6641 if test "$linkmode,$pass" = "prog,link"; then
cannam@127 6642 if test -n "$library_names" &&
cannam@127 6643 { { test "$prefer_static_libs" = no ||
cannam@127 6644 test "$prefer_static_libs,$installed" = "built,yes"; } ||
cannam@127 6645 test -z "$old_library"; }; then
cannam@127 6646 # We need to hardcode the library path
cannam@127 6647 if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then
cannam@127 6648 # Make sure the rpath contains only unique directories.
cannam@127 6649 case "$temp_rpath:" in
cannam@127 6650 *"$absdir:"*) ;;
cannam@127 6651 *) func_append temp_rpath "$absdir:" ;;
cannam@127 6652 esac
cannam@127 6653 fi
cannam@127 6654
cannam@127 6655 # Hardcode the library path.
cannam@127 6656 # Skip directories that are in the system default run-time
cannam@127 6657 # search path.
cannam@127 6658 case " $sys_lib_dlsearch_path " in
cannam@127 6659 *" $absdir "*) ;;
cannam@127 6660 *)
cannam@127 6661 case "$compile_rpath " in
cannam@127 6662 *" $absdir "*) ;;
cannam@127 6663 *) func_append compile_rpath " $absdir" ;;
cannam@127 6664 esac
cannam@127 6665 ;;
cannam@127 6666 esac
cannam@127 6667 case " $sys_lib_dlsearch_path " in
cannam@127 6668 *" $libdir "*) ;;
cannam@127 6669 *)
cannam@127 6670 case "$finalize_rpath " in
cannam@127 6671 *" $libdir "*) ;;
cannam@127 6672 *) func_append finalize_rpath " $libdir" ;;
cannam@127 6673 esac
cannam@127 6674 ;;
cannam@127 6675 esac
cannam@127 6676 fi # $linkmode,$pass = prog,link...
cannam@127 6677
cannam@127 6678 if test "$alldeplibs" = yes &&
cannam@127 6679 { test "$deplibs_check_method" = pass_all ||
cannam@127 6680 { test "$build_libtool_libs" = yes &&
cannam@127 6681 test -n "$library_names"; }; }; then
cannam@127 6682 # We only need to search for static libraries
cannam@127 6683 continue
cannam@127 6684 fi
cannam@127 6685 fi
cannam@127 6686
cannam@127 6687 link_static=no # Whether the deplib will be linked statically
cannam@127 6688 use_static_libs=$prefer_static_libs
cannam@127 6689 if test "$use_static_libs" = built && test "$installed" = yes; then
cannam@127 6690 use_static_libs=no
cannam@127 6691 fi
cannam@127 6692 if test -n "$library_names" &&
cannam@127 6693 { test "$use_static_libs" = no || test -z "$old_library"; }; then
cannam@127 6694 case $host in
cannam@127 6695 *cygwin* | *mingw* | *cegcc*)
cannam@127 6696 # No point in relinking DLLs because paths are not encoded
cannam@127 6697 func_append notinst_deplibs " $lib"
cannam@127 6698 need_relink=no
cannam@127 6699 ;;
cannam@127 6700 *)
cannam@127 6701 if test "$installed" = no; then
cannam@127 6702 func_append notinst_deplibs " $lib"
cannam@127 6703 need_relink=yes
cannam@127 6704 fi
cannam@127 6705 ;;
cannam@127 6706 esac
cannam@127 6707 # This is a shared library
cannam@127 6708
cannam@127 6709 # Warn about portability, can't link against -module's on some
cannam@127 6710 # systems (darwin). Don't bleat about dlopened modules though!
cannam@127 6711 dlopenmodule=""
cannam@127 6712 for dlpremoduletest in $dlprefiles; do
cannam@127 6713 if test "X$dlpremoduletest" = "X$lib"; then
cannam@127 6714 dlopenmodule="$dlpremoduletest"
cannam@127 6715 break
cannam@127 6716 fi
cannam@127 6717 done
cannam@127 6718 if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then
cannam@127 6719 echo
cannam@127 6720 if test "$linkmode" = prog; then
cannam@127 6721 $ECHO "*** Warning: Linking the executable $output against the loadable module"
cannam@127 6722 else
cannam@127 6723 $ECHO "*** Warning: Linking the shared library $output against the loadable module"
cannam@127 6724 fi
cannam@127 6725 $ECHO "*** $linklib is not portable!"
cannam@127 6726 fi
cannam@127 6727 if test "$linkmode" = lib &&
cannam@127 6728 test "$hardcode_into_libs" = yes; then
cannam@127 6729 # Hardcode the library path.
cannam@127 6730 # Skip directories that are in the system default run-time
cannam@127 6731 # search path.
cannam@127 6732 case " $sys_lib_dlsearch_path " in
cannam@127 6733 *" $absdir "*) ;;
cannam@127 6734 *)
cannam@127 6735 case "$compile_rpath " in
cannam@127 6736 *" $absdir "*) ;;
cannam@127 6737 *) func_append compile_rpath " $absdir" ;;
cannam@127 6738 esac
cannam@127 6739 ;;
cannam@127 6740 esac
cannam@127 6741 case " $sys_lib_dlsearch_path " in
cannam@127 6742 *" $libdir "*) ;;
cannam@127 6743 *)
cannam@127 6744 case "$finalize_rpath " in
cannam@127 6745 *" $libdir "*) ;;
cannam@127 6746 *) func_append finalize_rpath " $libdir" ;;
cannam@127 6747 esac
cannam@127 6748 ;;
cannam@127 6749 esac
cannam@127 6750 fi
cannam@127 6751
cannam@127 6752 if test -n "$old_archive_from_expsyms_cmds"; then
cannam@127 6753 # figure out the soname
cannam@127 6754 set dummy $library_names
cannam@127 6755 shift
cannam@127 6756 realname="$1"
cannam@127 6757 shift
cannam@127 6758 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@127 6759 # use dlname if we got it. it's perfectly good, no?
cannam@127 6760 if test -n "$dlname"; then
cannam@127 6761 soname="$dlname"
cannam@127 6762 elif test -n "$soname_spec"; then
cannam@127 6763 # bleh windows
cannam@127 6764 case $host in
cannam@127 6765 *cygwin* | mingw* | *cegcc*)
cannam@127 6766 func_arith $current - $age
cannam@127 6767 major=$func_arith_result
cannam@127 6768 versuffix="-$major"
cannam@127 6769 ;;
cannam@127 6770 esac
cannam@127 6771 eval soname=\"$soname_spec\"
cannam@127 6772 else
cannam@127 6773 soname="$realname"
cannam@127 6774 fi
cannam@127 6775
cannam@127 6776 # Make a new name for the extract_expsyms_cmds to use
cannam@127 6777 soroot="$soname"
cannam@127 6778 func_basename "$soroot"
cannam@127 6779 soname="$func_basename_result"
cannam@127 6780 func_stripname 'lib' '.dll' "$soname"
cannam@127 6781 newlib=libimp-$func_stripname_result.a
cannam@127 6782
cannam@127 6783 # If the library has no export list, then create one now
cannam@127 6784 if test -f "$output_objdir/$soname-def"; then :
cannam@127 6785 else
cannam@127 6786 func_verbose "extracting exported symbol list from \`$soname'"
cannam@127 6787 func_execute_cmds "$extract_expsyms_cmds" 'exit $?'
cannam@127 6788 fi
cannam@127 6789
cannam@127 6790 # Create $newlib
cannam@127 6791 if test -f "$output_objdir/$newlib"; then :; else
cannam@127 6792 func_verbose "generating import library for \`$soname'"
cannam@127 6793 func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?'
cannam@127 6794 fi
cannam@127 6795 # make sure the library variables are pointing to the new library
cannam@127 6796 dir=$output_objdir
cannam@127 6797 linklib=$newlib
cannam@127 6798 fi # test -n "$old_archive_from_expsyms_cmds"
cannam@127 6799
cannam@127 6800 if test "$linkmode" = prog || test "$opt_mode" != relink; then
cannam@127 6801 add_shlibpath=
cannam@127 6802 add_dir=
cannam@127 6803 add=
cannam@127 6804 lib_linked=yes
cannam@127 6805 case $hardcode_action in
cannam@127 6806 immediate | unsupported)
cannam@127 6807 if test "$hardcode_direct" = no; then
cannam@127 6808 add="$dir/$linklib"
cannam@127 6809 case $host in
cannam@127 6810 *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;;
cannam@127 6811 *-*-sysv4*uw2*) add_dir="-L$dir" ;;
cannam@127 6812 *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \
cannam@127 6813 *-*-unixware7*) add_dir="-L$dir" ;;
cannam@127 6814 *-*-darwin* )
cannam@127 6815 # if the lib is a (non-dlopened) module then we can not
cannam@127 6816 # link against it, someone is ignoring the earlier warnings
cannam@127 6817 if /usr/bin/file -L $add 2> /dev/null |
cannam@127 6818 $GREP ": [^:]* bundle" >/dev/null ; then
cannam@127 6819 if test "X$dlopenmodule" != "X$lib"; then
cannam@127 6820 $ECHO "*** Warning: lib $linklib is a module, not a shared library"
cannam@127 6821 if test -z "$old_library" ; then
cannam@127 6822 echo
cannam@127 6823 echo "*** And there doesn't seem to be a static archive available"
cannam@127 6824 echo "*** The link will probably fail, sorry"
cannam@127 6825 else
cannam@127 6826 add="$dir/$old_library"
cannam@127 6827 fi
cannam@127 6828 elif test -n "$old_library"; then
cannam@127 6829 add="$dir/$old_library"
cannam@127 6830 fi
cannam@127 6831 fi
cannam@127 6832 esac
cannam@127 6833 elif test "$hardcode_minus_L" = no; then
cannam@127 6834 case $host in
cannam@127 6835 *-*-sunos*) add_shlibpath="$dir" ;;
cannam@127 6836 esac
cannam@127 6837 add_dir="-L$dir"
cannam@127 6838 add="-l$name"
cannam@127 6839 elif test "$hardcode_shlibpath_var" = no; then
cannam@127 6840 add_shlibpath="$dir"
cannam@127 6841 add="-l$name"
cannam@127 6842 else
cannam@127 6843 lib_linked=no
cannam@127 6844 fi
cannam@127 6845 ;;
cannam@127 6846 relink)
cannam@127 6847 if test "$hardcode_direct" = yes &&
cannam@127 6848 test "$hardcode_direct_absolute" = no; then
cannam@127 6849 add="$dir/$linklib"
cannam@127 6850 elif test "$hardcode_minus_L" = yes; then
cannam@127 6851 add_dir="-L$absdir"
cannam@127 6852 # Try looking first in the location we're being installed to.
cannam@127 6853 if test -n "$inst_prefix_dir"; then
cannam@127 6854 case $libdir in
cannam@127 6855 [\\/]*)
cannam@127 6856 func_append add_dir " -L$inst_prefix_dir$libdir"
cannam@127 6857 ;;
cannam@127 6858 esac
cannam@127 6859 fi
cannam@127 6860 add="-l$name"
cannam@127 6861 elif test "$hardcode_shlibpath_var" = yes; then
cannam@127 6862 add_shlibpath="$dir"
cannam@127 6863 add="-l$name"
cannam@127 6864 else
cannam@127 6865 lib_linked=no
cannam@127 6866 fi
cannam@127 6867 ;;
cannam@127 6868 *) lib_linked=no ;;
cannam@127 6869 esac
cannam@127 6870
cannam@127 6871 if test "$lib_linked" != yes; then
cannam@127 6872 func_fatal_configuration "unsupported hardcode properties"
cannam@127 6873 fi
cannam@127 6874
cannam@127 6875 if test -n "$add_shlibpath"; then
cannam@127 6876 case :$compile_shlibpath: in
cannam@127 6877 *":$add_shlibpath:"*) ;;
cannam@127 6878 *) func_append compile_shlibpath "$add_shlibpath:" ;;
cannam@127 6879 esac
cannam@127 6880 fi
cannam@127 6881 if test "$linkmode" = prog; then
cannam@127 6882 test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
cannam@127 6883 test -n "$add" && compile_deplibs="$add $compile_deplibs"
cannam@127 6884 else
cannam@127 6885 test -n "$add_dir" && deplibs="$add_dir $deplibs"
cannam@127 6886 test -n "$add" && deplibs="$add $deplibs"
cannam@127 6887 if test "$hardcode_direct" != yes &&
cannam@127 6888 test "$hardcode_minus_L" != yes &&
cannam@127 6889 test "$hardcode_shlibpath_var" = yes; then
cannam@127 6890 case :$finalize_shlibpath: in
cannam@127 6891 *":$libdir:"*) ;;
cannam@127 6892 *) func_append finalize_shlibpath "$libdir:" ;;
cannam@127 6893 esac
cannam@127 6894 fi
cannam@127 6895 fi
cannam@127 6896 fi
cannam@127 6897
cannam@127 6898 if test "$linkmode" = prog || test "$opt_mode" = relink; then
cannam@127 6899 add_shlibpath=
cannam@127 6900 add_dir=
cannam@127 6901 add=
cannam@127 6902 # Finalize command for both is simple: just hardcode it.
cannam@127 6903 if test "$hardcode_direct" = yes &&
cannam@127 6904 test "$hardcode_direct_absolute" = no; then
cannam@127 6905 add="$libdir/$linklib"
cannam@127 6906 elif test "$hardcode_minus_L" = yes; then
cannam@127 6907 add_dir="-L$libdir"
cannam@127 6908 add="-l$name"
cannam@127 6909 elif test "$hardcode_shlibpath_var" = yes; then
cannam@127 6910 case :$finalize_shlibpath: in
cannam@127 6911 *":$libdir:"*) ;;
cannam@127 6912 *) func_append finalize_shlibpath "$libdir:" ;;
cannam@127 6913 esac
cannam@127 6914 add="-l$name"
cannam@127 6915 elif test "$hardcode_automatic" = yes; then
cannam@127 6916 if test -n "$inst_prefix_dir" &&
cannam@127 6917 test -f "$inst_prefix_dir$libdir/$linklib" ; then
cannam@127 6918 add="$inst_prefix_dir$libdir/$linklib"
cannam@127 6919 else
cannam@127 6920 add="$libdir/$linklib"
cannam@127 6921 fi
cannam@127 6922 else
cannam@127 6923 # We cannot seem to hardcode it, guess we'll fake it.
cannam@127 6924 add_dir="-L$libdir"
cannam@127 6925 # Try looking first in the location we're being installed to.
cannam@127 6926 if test -n "$inst_prefix_dir"; then
cannam@127 6927 case $libdir in
cannam@127 6928 [\\/]*)
cannam@127 6929 func_append add_dir " -L$inst_prefix_dir$libdir"
cannam@127 6930 ;;
cannam@127 6931 esac
cannam@127 6932 fi
cannam@127 6933 add="-l$name"
cannam@127 6934 fi
cannam@127 6935
cannam@127 6936 if test "$linkmode" = prog; then
cannam@127 6937 test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
cannam@127 6938 test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
cannam@127 6939 else
cannam@127 6940 test -n "$add_dir" && deplibs="$add_dir $deplibs"
cannam@127 6941 test -n "$add" && deplibs="$add $deplibs"
cannam@127 6942 fi
cannam@127 6943 fi
cannam@127 6944 elif test "$linkmode" = prog; then
cannam@127 6945 # Here we assume that one of hardcode_direct or hardcode_minus_L
cannam@127 6946 # is not unsupported. This is valid on all known static and
cannam@127 6947 # shared platforms.
cannam@127 6948 if test "$hardcode_direct" != unsupported; then
cannam@127 6949 test -n "$old_library" && linklib="$old_library"
cannam@127 6950 compile_deplibs="$dir/$linklib $compile_deplibs"
cannam@127 6951 finalize_deplibs="$dir/$linklib $finalize_deplibs"
cannam@127 6952 else
cannam@127 6953 compile_deplibs="-l$name -L$dir $compile_deplibs"
cannam@127 6954 finalize_deplibs="-l$name -L$dir $finalize_deplibs"
cannam@127 6955 fi
cannam@127 6956 elif test "$build_libtool_libs" = yes; then
cannam@127 6957 # Not a shared library
cannam@127 6958 if test "$deplibs_check_method" != pass_all; then
cannam@127 6959 # We're trying link a shared library against a static one
cannam@127 6960 # but the system doesn't support it.
cannam@127 6961
cannam@127 6962 # Just print a warning and add the library to dependency_libs so
cannam@127 6963 # that the program can be linked against the static library.
cannam@127 6964 echo
cannam@127 6965 $ECHO "*** Warning: This system can not link to static lib archive $lib."
cannam@127 6966 echo "*** I have the capability to make that library automatically link in when"
cannam@127 6967 echo "*** you link to this library. But I can only do this if you have a"
cannam@127 6968 echo "*** shared version of the library, which you do not appear to have."
cannam@127 6969 if test "$module" = yes; then
cannam@127 6970 echo "*** But as you try to build a module library, libtool will still create "
cannam@127 6971 echo "*** a static module, that should work as long as the dlopening application"
cannam@127 6972 echo "*** is linked with the -dlopen flag to resolve symbols at runtime."
cannam@127 6973 if test -z "$global_symbol_pipe"; then
cannam@127 6974 echo
cannam@127 6975 echo "*** However, this would only work if libtool was able to extract symbol"
cannam@127 6976 echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
cannam@127 6977 echo "*** not find such a program. So, this module is probably useless."
cannam@127 6978 echo "*** \`nm' from GNU binutils and a full rebuild may help."
cannam@127 6979 fi
cannam@127 6980 if test "$build_old_libs" = no; then
cannam@127 6981 build_libtool_libs=module
cannam@127 6982 build_old_libs=yes
cannam@127 6983 else
cannam@127 6984 build_libtool_libs=no
cannam@127 6985 fi
cannam@127 6986 fi
cannam@127 6987 else
cannam@127 6988 deplibs="$dir/$old_library $deplibs"
cannam@127 6989 link_static=yes
cannam@127 6990 fi
cannam@127 6991 fi # link shared/static library?
cannam@127 6992
cannam@127 6993 if test "$linkmode" = lib; then
cannam@127 6994 if test -n "$dependency_libs" &&
cannam@127 6995 { test "$hardcode_into_libs" != yes ||
cannam@127 6996 test "$build_old_libs" = yes ||
cannam@127 6997 test "$link_static" = yes; }; then
cannam@127 6998 # Extract -R from dependency_libs
cannam@127 6999 temp_deplibs=
cannam@127 7000 for libdir in $dependency_libs; do
cannam@127 7001 case $libdir in
cannam@127 7002 -R*) func_stripname '-R' '' "$libdir"
cannam@127 7003 temp_xrpath=$func_stripname_result
cannam@127 7004 case " $xrpath " in
cannam@127 7005 *" $temp_xrpath "*) ;;
cannam@127 7006 *) func_append xrpath " $temp_xrpath";;
cannam@127 7007 esac;;
cannam@127 7008 *) func_append temp_deplibs " $libdir";;
cannam@127 7009 esac
cannam@127 7010 done
cannam@127 7011 dependency_libs="$temp_deplibs"
cannam@127 7012 fi
cannam@127 7013
cannam@127 7014 func_append newlib_search_path " $absdir"
cannam@127 7015 # Link against this library
cannam@127 7016 test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
cannam@127 7017 # ... and its dependency_libs
cannam@127 7018 tmp_libs=
cannam@127 7019 for deplib in $dependency_libs; do
cannam@127 7020 newdependency_libs="$deplib $newdependency_libs"
cannam@127 7021 case $deplib in
cannam@127 7022 -L*) func_stripname '-L' '' "$deplib"
cannam@127 7023 func_resolve_sysroot "$func_stripname_result";;
cannam@127 7024 *) func_resolve_sysroot "$deplib" ;;
cannam@127 7025 esac
cannam@127 7026 if $opt_preserve_dup_deps ; then
cannam@127 7027 case "$tmp_libs " in
cannam@127 7028 *" $func_resolve_sysroot_result "*)
cannam@127 7029 func_append specialdeplibs " $func_resolve_sysroot_result" ;;
cannam@127 7030 esac
cannam@127 7031 fi
cannam@127 7032 func_append tmp_libs " $func_resolve_sysroot_result"
cannam@127 7033 done
cannam@127 7034
cannam@127 7035 if test "$link_all_deplibs" != no; then
cannam@127 7036 # Add the search paths of all dependency libraries
cannam@127 7037 for deplib in $dependency_libs; do
cannam@127 7038 path=
cannam@127 7039 case $deplib in
cannam@127 7040 -L*) path="$deplib" ;;
cannam@127 7041 *.la)
cannam@127 7042 func_resolve_sysroot "$deplib"
cannam@127 7043 deplib=$func_resolve_sysroot_result
cannam@127 7044 func_dirname "$deplib" "" "."
cannam@127 7045 dir=$func_dirname_result
cannam@127 7046 # We need an absolute path.
cannam@127 7047 case $dir in
cannam@127 7048 [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;
cannam@127 7049 *)
cannam@127 7050 absdir=`cd "$dir" && pwd`
cannam@127 7051 if test -z "$absdir"; then
cannam@127 7052 func_warning "cannot determine absolute directory name of \`$dir'"
cannam@127 7053 absdir="$dir"
cannam@127 7054 fi
cannam@127 7055 ;;
cannam@127 7056 esac
cannam@127 7057 if $GREP "^installed=no" $deplib > /dev/null; then
cannam@127 7058 case $host in
cannam@127 7059 *-*-darwin*)
cannam@127 7060 depdepl=
cannam@127 7061 eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib`
cannam@127 7062 if test -n "$deplibrary_names" ; then
cannam@127 7063 for tmp in $deplibrary_names ; do
cannam@127 7064 depdepl=$tmp
cannam@127 7065 done
cannam@127 7066 if test -f "$absdir/$objdir/$depdepl" ; then
cannam@127 7067 depdepl="$absdir/$objdir/$depdepl"
cannam@127 7068 darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
cannam@127 7069 if test -z "$darwin_install_name"; then
cannam@127 7070 darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
cannam@127 7071 fi
cannam@127 7072 func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}"
cannam@127 7073 func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}"
cannam@127 7074 path=
cannam@127 7075 fi
cannam@127 7076 fi
cannam@127 7077 ;;
cannam@127 7078 *)
cannam@127 7079 path="-L$absdir/$objdir"
cannam@127 7080 ;;
cannam@127 7081 esac
cannam@127 7082 else
cannam@127 7083 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
cannam@127 7084 test -z "$libdir" && \
cannam@127 7085 func_fatal_error "\`$deplib' is not a valid libtool archive"
cannam@127 7086 test "$absdir" != "$libdir" && \
cannam@127 7087 func_warning "\`$deplib' seems to be moved"
cannam@127 7088
cannam@127 7089 path="-L$absdir"
cannam@127 7090 fi
cannam@127 7091 ;;
cannam@127 7092 esac
cannam@127 7093 case " $deplibs " in
cannam@127 7094 *" $path "*) ;;
cannam@127 7095 *) deplibs="$path $deplibs" ;;
cannam@127 7096 esac
cannam@127 7097 done
cannam@127 7098 fi # link_all_deplibs != no
cannam@127 7099 fi # linkmode = lib
cannam@127 7100 done # for deplib in $libs
cannam@127 7101 if test "$pass" = link; then
cannam@127 7102 if test "$linkmode" = "prog"; then
cannam@127 7103 compile_deplibs="$new_inherited_linker_flags $compile_deplibs"
cannam@127 7104 finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs"
cannam@127 7105 else
cannam@127 7106 compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@127 7107 fi
cannam@127 7108 fi
cannam@127 7109 dependency_libs="$newdependency_libs"
cannam@127 7110 if test "$pass" = dlpreopen; then
cannam@127 7111 # Link the dlpreopened libraries before other libraries
cannam@127 7112 for deplib in $save_deplibs; do
cannam@127 7113 deplibs="$deplib $deplibs"
cannam@127 7114 done
cannam@127 7115 fi
cannam@127 7116 if test "$pass" != dlopen; then
cannam@127 7117 if test "$pass" != conv; then
cannam@127 7118 # Make sure lib_search_path contains only unique directories.
cannam@127 7119 lib_search_path=
cannam@127 7120 for dir in $newlib_search_path; do
cannam@127 7121 case "$lib_search_path " in
cannam@127 7122 *" $dir "*) ;;
cannam@127 7123 *) func_append lib_search_path " $dir" ;;
cannam@127 7124 esac
cannam@127 7125 done
cannam@127 7126 newlib_search_path=
cannam@127 7127 fi
cannam@127 7128
cannam@127 7129 if test "$linkmode,$pass" != "prog,link"; then
cannam@127 7130 vars="deplibs"
cannam@127 7131 else
cannam@127 7132 vars="compile_deplibs finalize_deplibs"
cannam@127 7133 fi
cannam@127 7134 for var in $vars dependency_libs; do
cannam@127 7135 # Add libraries to $var in reverse order
cannam@127 7136 eval tmp_libs=\"\$$var\"
cannam@127 7137 new_libs=
cannam@127 7138 for deplib in $tmp_libs; do
cannam@127 7139 # FIXME: Pedantically, this is the right thing to do, so
cannam@127 7140 # that some nasty dependency loop isn't accidentally
cannam@127 7141 # broken:
cannam@127 7142 #new_libs="$deplib $new_libs"
cannam@127 7143 # Pragmatically, this seems to cause very few problems in
cannam@127 7144 # practice:
cannam@127 7145 case $deplib in
cannam@127 7146 -L*) new_libs="$deplib $new_libs" ;;
cannam@127 7147 -R*) ;;
cannam@127 7148 *)
cannam@127 7149 # And here is the reason: when a library appears more
cannam@127 7150 # than once as an explicit dependence of a library, or
cannam@127 7151 # is implicitly linked in more than once by the
cannam@127 7152 # compiler, it is considered special, and multiple
cannam@127 7153 # occurrences thereof are not removed. Compare this
cannam@127 7154 # with having the same library being listed as a
cannam@127 7155 # dependency of multiple other libraries: in this case,
cannam@127 7156 # we know (pedantically, we assume) the library does not
cannam@127 7157 # need to be listed more than once, so we keep only the
cannam@127 7158 # last copy. This is not always right, but it is rare
cannam@127 7159 # enough that we require users that really mean to play
cannam@127 7160 # such unportable linking tricks to link the library
cannam@127 7161 # using -Wl,-lname, so that libtool does not consider it
cannam@127 7162 # for duplicate removal.
cannam@127 7163 case " $specialdeplibs " in
cannam@127 7164 *" $deplib "*) new_libs="$deplib $new_libs" ;;
cannam@127 7165 *)
cannam@127 7166 case " $new_libs " in
cannam@127 7167 *" $deplib "*) ;;
cannam@127 7168 *) new_libs="$deplib $new_libs" ;;
cannam@127 7169 esac
cannam@127 7170 ;;
cannam@127 7171 esac
cannam@127 7172 ;;
cannam@127 7173 esac
cannam@127 7174 done
cannam@127 7175 tmp_libs=
cannam@127 7176 for deplib in $new_libs; do
cannam@127 7177 case $deplib in
cannam@127 7178 -L*)
cannam@127 7179 case " $tmp_libs " in
cannam@127 7180 *" $deplib "*) ;;
cannam@127 7181 *) func_append tmp_libs " $deplib" ;;
cannam@127 7182 esac
cannam@127 7183 ;;
cannam@127 7184 *) func_append tmp_libs " $deplib" ;;
cannam@127 7185 esac
cannam@127 7186 done
cannam@127 7187 eval $var=\"$tmp_libs\"
cannam@127 7188 done # for var
cannam@127 7189 fi
cannam@127 7190 # Last step: remove runtime libs from dependency_libs
cannam@127 7191 # (they stay in deplibs)
cannam@127 7192 tmp_libs=
cannam@127 7193 for i in $dependency_libs ; do
cannam@127 7194 case " $predeps $postdeps $compiler_lib_search_path " in
cannam@127 7195 *" $i "*)
cannam@127 7196 i=""
cannam@127 7197 ;;
cannam@127 7198 esac
cannam@127 7199 if test -n "$i" ; then
cannam@127 7200 func_append tmp_libs " $i"
cannam@127 7201 fi
cannam@127 7202 done
cannam@127 7203 dependency_libs=$tmp_libs
cannam@127 7204 done # for pass
cannam@127 7205 if test "$linkmode" = prog; then
cannam@127 7206 dlfiles="$newdlfiles"
cannam@127 7207 fi
cannam@127 7208 if test "$linkmode" = prog || test "$linkmode" = lib; then
cannam@127 7209 dlprefiles="$newdlprefiles"
cannam@127 7210 fi
cannam@127 7211
cannam@127 7212 case $linkmode in
cannam@127 7213 oldlib)
cannam@127 7214 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@127 7215 func_warning "\`-dlopen' is ignored for archives"
cannam@127 7216 fi
cannam@127 7217
cannam@127 7218 case " $deplibs" in
cannam@127 7219 *\ -l* | *\ -L*)
cannam@127 7220 func_warning "\`-l' and \`-L' are ignored for archives" ;;
cannam@127 7221 esac
cannam@127 7222
cannam@127 7223 test -n "$rpath" && \
cannam@127 7224 func_warning "\`-rpath' is ignored for archives"
cannam@127 7225
cannam@127 7226 test -n "$xrpath" && \
cannam@127 7227 func_warning "\`-R' is ignored for archives"
cannam@127 7228
cannam@127 7229 test -n "$vinfo" && \
cannam@127 7230 func_warning "\`-version-info/-version-number' is ignored for archives"
cannam@127 7231
cannam@127 7232 test -n "$release" && \
cannam@127 7233 func_warning "\`-release' is ignored for archives"
cannam@127 7234
cannam@127 7235 test -n "$export_symbols$export_symbols_regex" && \
cannam@127 7236 func_warning "\`-export-symbols' is ignored for archives"
cannam@127 7237
cannam@127 7238 # Now set the variables for building old libraries.
cannam@127 7239 build_libtool_libs=no
cannam@127 7240 oldlibs="$output"
cannam@127 7241 func_append objs "$old_deplibs"
cannam@127 7242 ;;
cannam@127 7243
cannam@127 7244 lib)
cannam@127 7245 # Make sure we only generate libraries of the form `libNAME.la'.
cannam@127 7246 case $outputname in
cannam@127 7247 lib*)
cannam@127 7248 func_stripname 'lib' '.la' "$outputname"
cannam@127 7249 name=$func_stripname_result
cannam@127 7250 eval shared_ext=\"$shrext_cmds\"
cannam@127 7251 eval libname=\"$libname_spec\"
cannam@127 7252 ;;
cannam@127 7253 *)
cannam@127 7254 test "$module" = no && \
cannam@127 7255 func_fatal_help "libtool library \`$output' must begin with \`lib'"
cannam@127 7256
cannam@127 7257 if test "$need_lib_prefix" != no; then
cannam@127 7258 # Add the "lib" prefix for modules if required
cannam@127 7259 func_stripname '' '.la' "$outputname"
cannam@127 7260 name=$func_stripname_result
cannam@127 7261 eval shared_ext=\"$shrext_cmds\"
cannam@127 7262 eval libname=\"$libname_spec\"
cannam@127 7263 else
cannam@127 7264 func_stripname '' '.la' "$outputname"
cannam@127 7265 libname=$func_stripname_result
cannam@127 7266 fi
cannam@127 7267 ;;
cannam@127 7268 esac
cannam@127 7269
cannam@127 7270 if test -n "$objs"; then
cannam@127 7271 if test "$deplibs_check_method" != pass_all; then
cannam@127 7272 func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs"
cannam@127 7273 else
cannam@127 7274 echo
cannam@127 7275 $ECHO "*** Warning: Linking the shared library $output against the non-libtool"
cannam@127 7276 $ECHO "*** objects $objs is not portable!"
cannam@127 7277 func_append libobjs " $objs"
cannam@127 7278 fi
cannam@127 7279 fi
cannam@127 7280
cannam@127 7281 test "$dlself" != no && \
cannam@127 7282 func_warning "\`-dlopen self' is ignored for libtool libraries"
cannam@127 7283
cannam@127 7284 set dummy $rpath
cannam@127 7285 shift
cannam@127 7286 test "$#" -gt 1 && \
cannam@127 7287 func_warning "ignoring multiple \`-rpath's for a libtool library"
cannam@127 7288
cannam@127 7289 install_libdir="$1"
cannam@127 7290
cannam@127 7291 oldlibs=
cannam@127 7292 if test -z "$rpath"; then
cannam@127 7293 if test "$build_libtool_libs" = yes; then
cannam@127 7294 # Building a libtool convenience library.
cannam@127 7295 # Some compilers have problems with a `.al' extension so
cannam@127 7296 # convenience libraries should have the same extension an
cannam@127 7297 # archive normally would.
cannam@127 7298 oldlibs="$output_objdir/$libname.$libext $oldlibs"
cannam@127 7299 build_libtool_libs=convenience
cannam@127 7300 build_old_libs=yes
cannam@127 7301 fi
cannam@127 7302
cannam@127 7303 test -n "$vinfo" && \
cannam@127 7304 func_warning "\`-version-info/-version-number' is ignored for convenience libraries"
cannam@127 7305
cannam@127 7306 test -n "$release" && \
cannam@127 7307 func_warning "\`-release' is ignored for convenience libraries"
cannam@127 7308 else
cannam@127 7309
cannam@127 7310 # Parse the version information argument.
cannam@127 7311 save_ifs="$IFS"; IFS=':'
cannam@127 7312 set dummy $vinfo 0 0 0
cannam@127 7313 shift
cannam@127 7314 IFS="$save_ifs"
cannam@127 7315
cannam@127 7316 test -n "$7" && \
cannam@127 7317 func_fatal_help "too many parameters to \`-version-info'"
cannam@127 7318
cannam@127 7319 # convert absolute version numbers to libtool ages
cannam@127 7320 # this retains compatibility with .la files and attempts
cannam@127 7321 # to make the code below a bit more comprehensible
cannam@127 7322
cannam@127 7323 case $vinfo_number in
cannam@127 7324 yes)
cannam@127 7325 number_major="$1"
cannam@127 7326 number_minor="$2"
cannam@127 7327 number_revision="$3"
cannam@127 7328 #
cannam@127 7329 # There are really only two kinds -- those that
cannam@127 7330 # use the current revision as the major version
cannam@127 7331 # and those that subtract age and use age as
cannam@127 7332 # a minor version. But, then there is irix
cannam@127 7333 # which has an extra 1 added just for fun
cannam@127 7334 #
cannam@127 7335 case $version_type in
cannam@127 7336 # correct linux to gnu/linux during the next big refactor
cannam@127 7337 darwin|linux|osf|windows|none)
cannam@127 7338 func_arith $number_major + $number_minor
cannam@127 7339 current=$func_arith_result
cannam@127 7340 age="$number_minor"
cannam@127 7341 revision="$number_revision"
cannam@127 7342 ;;
cannam@127 7343 freebsd-aout|freebsd-elf|qnx|sunos)
cannam@127 7344 current="$number_major"
cannam@127 7345 revision="$number_minor"
cannam@127 7346 age="0"
cannam@127 7347 ;;
cannam@127 7348 irix|nonstopux)
cannam@127 7349 func_arith $number_major + $number_minor
cannam@127 7350 current=$func_arith_result
cannam@127 7351 age="$number_minor"
cannam@127 7352 revision="$number_minor"
cannam@127 7353 lt_irix_increment=no
cannam@127 7354 ;;
cannam@127 7355 *)
cannam@127 7356 func_fatal_configuration "$modename: unknown library version type \`$version_type'"
cannam@127 7357 ;;
cannam@127 7358 esac
cannam@127 7359 ;;
cannam@127 7360 no)
cannam@127 7361 current="$1"
cannam@127 7362 revision="$2"
cannam@127 7363 age="$3"
cannam@127 7364 ;;
cannam@127 7365 esac
cannam@127 7366
cannam@127 7367 # Check that each of the things are valid numbers.
cannam@127 7368 case $current in
cannam@127 7369 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@127 7370 *)
cannam@127 7371 func_error "CURRENT \`$current' must be a nonnegative integer"
cannam@127 7372 func_fatal_error "\`$vinfo' is not valid version information"
cannam@127 7373 ;;
cannam@127 7374 esac
cannam@127 7375
cannam@127 7376 case $revision in
cannam@127 7377 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@127 7378 *)
cannam@127 7379 func_error "REVISION \`$revision' must be a nonnegative integer"
cannam@127 7380 func_fatal_error "\`$vinfo' is not valid version information"
cannam@127 7381 ;;
cannam@127 7382 esac
cannam@127 7383
cannam@127 7384 case $age in
cannam@127 7385 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@127 7386 *)
cannam@127 7387 func_error "AGE \`$age' must be a nonnegative integer"
cannam@127 7388 func_fatal_error "\`$vinfo' is not valid version information"
cannam@127 7389 ;;
cannam@127 7390 esac
cannam@127 7391
cannam@127 7392 if test "$age" -gt "$current"; then
cannam@127 7393 func_error "AGE \`$age' is greater than the current interface number \`$current'"
cannam@127 7394 func_fatal_error "\`$vinfo' is not valid version information"
cannam@127 7395 fi
cannam@127 7396
cannam@127 7397 # Calculate the version variables.
cannam@127 7398 major=
cannam@127 7399 versuffix=
cannam@127 7400 verstring=
cannam@127 7401 case $version_type in
cannam@127 7402 none) ;;
cannam@127 7403
cannam@127 7404 darwin)
cannam@127 7405 # Like Linux, but with the current version available in
cannam@127 7406 # verstring for coding it into the library header
cannam@127 7407 func_arith $current - $age
cannam@127 7408 major=.$func_arith_result
cannam@127 7409 versuffix="$major.$age.$revision"
cannam@127 7410 # Darwin ld doesn't like 0 for these options...
cannam@127 7411 func_arith $current + 1
cannam@127 7412 minor_current=$func_arith_result
cannam@127 7413 xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
cannam@127 7414 verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
cannam@127 7415 ;;
cannam@127 7416
cannam@127 7417 freebsd-aout)
cannam@127 7418 major=".$current"
cannam@127 7419 versuffix=".$current.$revision";
cannam@127 7420 ;;
cannam@127 7421
cannam@127 7422 freebsd-elf)
cannam@127 7423 major=".$current"
cannam@127 7424 versuffix=".$current"
cannam@127 7425 ;;
cannam@127 7426
cannam@127 7427 irix | nonstopux)
cannam@127 7428 if test "X$lt_irix_increment" = "Xno"; then
cannam@127 7429 func_arith $current - $age
cannam@127 7430 else
cannam@127 7431 func_arith $current - $age + 1
cannam@127 7432 fi
cannam@127 7433 major=$func_arith_result
cannam@127 7434
cannam@127 7435 case $version_type in
cannam@127 7436 nonstopux) verstring_prefix=nonstopux ;;
cannam@127 7437 *) verstring_prefix=sgi ;;
cannam@127 7438 esac
cannam@127 7439 verstring="$verstring_prefix$major.$revision"
cannam@127 7440
cannam@127 7441 # Add in all the interfaces that we are compatible with.
cannam@127 7442 loop=$revision
cannam@127 7443 while test "$loop" -ne 0; do
cannam@127 7444 func_arith $revision - $loop
cannam@127 7445 iface=$func_arith_result
cannam@127 7446 func_arith $loop - 1
cannam@127 7447 loop=$func_arith_result
cannam@127 7448 verstring="$verstring_prefix$major.$iface:$verstring"
cannam@127 7449 done
cannam@127 7450
cannam@127 7451 # Before this point, $major must not contain `.'.
cannam@127 7452 major=.$major
cannam@127 7453 versuffix="$major.$revision"
cannam@127 7454 ;;
cannam@127 7455
cannam@127 7456 linux) # correct to gnu/linux during the next big refactor
cannam@127 7457 func_arith $current - $age
cannam@127 7458 major=.$func_arith_result
cannam@127 7459 versuffix="$major.$age.$revision"
cannam@127 7460 ;;
cannam@127 7461
cannam@127 7462 osf)
cannam@127 7463 func_arith $current - $age
cannam@127 7464 major=.$func_arith_result
cannam@127 7465 versuffix=".$current.$age.$revision"
cannam@127 7466 verstring="$current.$age.$revision"
cannam@127 7467
cannam@127 7468 # Add in all the interfaces that we are compatible with.
cannam@127 7469 loop=$age
cannam@127 7470 while test "$loop" -ne 0; do
cannam@127 7471 func_arith $current - $loop
cannam@127 7472 iface=$func_arith_result
cannam@127 7473 func_arith $loop - 1
cannam@127 7474 loop=$func_arith_result
cannam@127 7475 verstring="$verstring:${iface}.0"
cannam@127 7476 done
cannam@127 7477
cannam@127 7478 # Make executables depend on our current version.
cannam@127 7479 func_append verstring ":${current}.0"
cannam@127 7480 ;;
cannam@127 7481
cannam@127 7482 qnx)
cannam@127 7483 major=".$current"
cannam@127 7484 versuffix=".$current"
cannam@127 7485 ;;
cannam@127 7486
cannam@127 7487 sunos)
cannam@127 7488 major=".$current"
cannam@127 7489 versuffix=".$current.$revision"
cannam@127 7490 ;;
cannam@127 7491
cannam@127 7492 windows)
cannam@127 7493 # Use '-' rather than '.', since we only want one
cannam@127 7494 # extension on DOS 8.3 filesystems.
cannam@127 7495 func_arith $current - $age
cannam@127 7496 major=$func_arith_result
cannam@127 7497 versuffix="-$major"
cannam@127 7498 ;;
cannam@127 7499
cannam@127 7500 *)
cannam@127 7501 func_fatal_configuration "unknown library version type \`$version_type'"
cannam@127 7502 ;;
cannam@127 7503 esac
cannam@127 7504
cannam@127 7505 # Clear the version info if we defaulted, and they specified a release.
cannam@127 7506 if test -z "$vinfo" && test -n "$release"; then
cannam@127 7507 major=
cannam@127 7508 case $version_type in
cannam@127 7509 darwin)
cannam@127 7510 # we can't check for "0.0" in archive_cmds due to quoting
cannam@127 7511 # problems, so we reset it completely
cannam@127 7512 verstring=
cannam@127 7513 ;;
cannam@127 7514 *)
cannam@127 7515 verstring="0.0"
cannam@127 7516 ;;
cannam@127 7517 esac
cannam@127 7518 if test "$need_version" = no; then
cannam@127 7519 versuffix=
cannam@127 7520 else
cannam@127 7521 versuffix=".0.0"
cannam@127 7522 fi
cannam@127 7523 fi
cannam@127 7524
cannam@127 7525 # Remove version info from name if versioning should be avoided
cannam@127 7526 if test "$avoid_version" = yes && test "$need_version" = no; then
cannam@127 7527 major=
cannam@127 7528 versuffix=
cannam@127 7529 verstring=""
cannam@127 7530 fi
cannam@127 7531
cannam@127 7532 # Check to see if the archive will have undefined symbols.
cannam@127 7533 if test "$allow_undefined" = yes; then
cannam@127 7534 if test "$allow_undefined_flag" = unsupported; then
cannam@127 7535 func_warning "undefined symbols not allowed in $host shared libraries"
cannam@127 7536 build_libtool_libs=no
cannam@127 7537 build_old_libs=yes
cannam@127 7538 fi
cannam@127 7539 else
cannam@127 7540 # Don't allow undefined symbols.
cannam@127 7541 allow_undefined_flag="$no_undefined_flag"
cannam@127 7542 fi
cannam@127 7543
cannam@127 7544 fi
cannam@127 7545
cannam@127 7546 func_generate_dlsyms "$libname" "$libname" "yes"
cannam@127 7547 func_append libobjs " $symfileobj"
cannam@127 7548 test "X$libobjs" = "X " && libobjs=
cannam@127 7549
cannam@127 7550 if test "$opt_mode" != relink; then
cannam@127 7551 # Remove our outputs, but don't remove object files since they
cannam@127 7552 # may have been created when compiling PIC objects.
cannam@127 7553 removelist=
cannam@127 7554 tempremovelist=`$ECHO "$output_objdir/*"`
cannam@127 7555 for p in $tempremovelist; do
cannam@127 7556 case $p in
cannam@127 7557 *.$objext | *.gcno)
cannam@127 7558 ;;
cannam@127 7559 $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
cannam@127 7560 if test "X$precious_files_regex" != "X"; then
cannam@127 7561 if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
cannam@127 7562 then
cannam@127 7563 continue
cannam@127 7564 fi
cannam@127 7565 fi
cannam@127 7566 func_append removelist " $p"
cannam@127 7567 ;;
cannam@127 7568 *) ;;
cannam@127 7569 esac
cannam@127 7570 done
cannam@127 7571 test -n "$removelist" && \
cannam@127 7572 func_show_eval "${RM}r \$removelist"
cannam@127 7573 fi
cannam@127 7574
cannam@127 7575 # Now set the variables for building old libraries.
cannam@127 7576 if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
cannam@127 7577 func_append oldlibs " $output_objdir/$libname.$libext"
cannam@127 7578
cannam@127 7579 # Transform .lo files to .o files.
cannam@127 7580 oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP`
cannam@127 7581 fi
cannam@127 7582
cannam@127 7583 # Eliminate all temporary directories.
cannam@127 7584 #for path in $notinst_path; do
cannam@127 7585 # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"`
cannam@127 7586 # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"`
cannam@127 7587 # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"`
cannam@127 7588 #done
cannam@127 7589
cannam@127 7590 if test -n "$xrpath"; then
cannam@127 7591 # If the user specified any rpath flags, then add them.
cannam@127 7592 temp_xrpath=
cannam@127 7593 for libdir in $xrpath; do
cannam@127 7594 func_replace_sysroot "$libdir"
cannam@127 7595 func_append temp_xrpath " -R$func_replace_sysroot_result"
cannam@127 7596 case "$finalize_rpath " in
cannam@127 7597 *" $libdir "*) ;;
cannam@127 7598 *) func_append finalize_rpath " $libdir" ;;
cannam@127 7599 esac
cannam@127 7600 done
cannam@127 7601 if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then
cannam@127 7602 dependency_libs="$temp_xrpath $dependency_libs"
cannam@127 7603 fi
cannam@127 7604 fi
cannam@127 7605
cannam@127 7606 # Make sure dlfiles contains only unique files that won't be dlpreopened
cannam@127 7607 old_dlfiles="$dlfiles"
cannam@127 7608 dlfiles=
cannam@127 7609 for lib in $old_dlfiles; do
cannam@127 7610 case " $dlprefiles $dlfiles " in
cannam@127 7611 *" $lib "*) ;;
cannam@127 7612 *) func_append dlfiles " $lib" ;;
cannam@127 7613 esac
cannam@127 7614 done
cannam@127 7615
cannam@127 7616 # Make sure dlprefiles contains only unique files
cannam@127 7617 old_dlprefiles="$dlprefiles"
cannam@127 7618 dlprefiles=
cannam@127 7619 for lib in $old_dlprefiles; do
cannam@127 7620 case "$dlprefiles " in
cannam@127 7621 *" $lib "*) ;;
cannam@127 7622 *) func_append dlprefiles " $lib" ;;
cannam@127 7623 esac
cannam@127 7624 done
cannam@127 7625
cannam@127 7626 if test "$build_libtool_libs" = yes; then
cannam@127 7627 if test -n "$rpath"; then
cannam@127 7628 case $host in
cannam@127 7629 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*)
cannam@127 7630 # these systems don't actually have a c library (as such)!
cannam@127 7631 ;;
cannam@127 7632 *-*-rhapsody* | *-*-darwin1.[012])
cannam@127 7633 # Rhapsody C library is in the System framework
cannam@127 7634 func_append deplibs " System.ltframework"
cannam@127 7635 ;;
cannam@127 7636 *-*-netbsd*)
cannam@127 7637 # Don't link with libc until the a.out ld.so is fixed.
cannam@127 7638 ;;
cannam@127 7639 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@127 7640 # Do not include libc due to us having libc/libc_r.
cannam@127 7641 ;;
cannam@127 7642 *-*-sco3.2v5* | *-*-sco5v6*)
cannam@127 7643 # Causes problems with __ctype
cannam@127 7644 ;;
cannam@127 7645 *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
cannam@127 7646 # Compiler inserts libc in the correct place for threads to work
cannam@127 7647 ;;
cannam@127 7648 *)
cannam@127 7649 # Add libc to deplibs on all other systems if necessary.
cannam@127 7650 if test "$build_libtool_need_lc" = "yes"; then
cannam@127 7651 func_append deplibs " -lc"
cannam@127 7652 fi
cannam@127 7653 ;;
cannam@127 7654 esac
cannam@127 7655 fi
cannam@127 7656
cannam@127 7657 # Transform deplibs into only deplibs that can be linked in shared.
cannam@127 7658 name_save=$name
cannam@127 7659 libname_save=$libname
cannam@127 7660 release_save=$release
cannam@127 7661 versuffix_save=$versuffix
cannam@127 7662 major_save=$major
cannam@127 7663 # I'm not sure if I'm treating the release correctly. I think
cannam@127 7664 # release should show up in the -l (ie -lgmp5) so we don't want to
cannam@127 7665 # add it in twice. Is that correct?
cannam@127 7666 release=""
cannam@127 7667 versuffix=""
cannam@127 7668 major=""
cannam@127 7669 newdeplibs=
cannam@127 7670 droppeddeps=no
cannam@127 7671 case $deplibs_check_method in
cannam@127 7672 pass_all)
cannam@127 7673 # Don't check for shared/static. Everything works.
cannam@127 7674 # This might be a little naive. We might want to check
cannam@127 7675 # whether the library exists or not. But this is on
cannam@127 7676 # osf3 & osf4 and I'm not really sure... Just
cannam@127 7677 # implementing what was already the behavior.
cannam@127 7678 newdeplibs=$deplibs
cannam@127 7679 ;;
cannam@127 7680 test_compile)
cannam@127 7681 # This code stresses the "libraries are programs" paradigm to its
cannam@127 7682 # limits. Maybe even breaks it. We compile a program, linking it
cannam@127 7683 # against the deplibs as a proxy for the library. Then we can check
cannam@127 7684 # whether they linked in statically or dynamically with ldd.
cannam@127 7685 $opt_dry_run || $RM conftest.c
cannam@127 7686 cat > conftest.c <<EOF
cannam@127 7687 int main() { return 0; }
cannam@127 7688 EOF
cannam@127 7689 $opt_dry_run || $RM conftest
cannam@127 7690 if $LTCC $LTCFLAGS -o conftest conftest.c $deplibs; then
cannam@127 7691 ldd_output=`ldd conftest`
cannam@127 7692 for i in $deplibs; do
cannam@127 7693 case $i in
cannam@127 7694 -l*)
cannam@127 7695 func_stripname -l '' "$i"
cannam@127 7696 name=$func_stripname_result
cannam@127 7697 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@127 7698 case " $predeps $postdeps " in
cannam@127 7699 *" $i "*)
cannam@127 7700 func_append newdeplibs " $i"
cannam@127 7701 i=""
cannam@127 7702 ;;
cannam@127 7703 esac
cannam@127 7704 fi
cannam@127 7705 if test -n "$i" ; then
cannam@127 7706 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@127 7707 deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
cannam@127 7708 set dummy $deplib_matches; shift
cannam@127 7709 deplib_match=$1
cannam@127 7710 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
cannam@127 7711 func_append newdeplibs " $i"
cannam@127 7712 else
cannam@127 7713 droppeddeps=yes
cannam@127 7714 echo
cannam@127 7715 $ECHO "*** Warning: dynamic linker does not accept needed library $i."
cannam@127 7716 echo "*** I have the capability to make that library automatically link in when"
cannam@127 7717 echo "*** you link to this library. But I can only do this if you have a"
cannam@127 7718 echo "*** shared version of the library, which I believe you do not have"
cannam@127 7719 echo "*** because a test_compile did reveal that the linker did not use it for"
cannam@127 7720 echo "*** its dynamic dependency list that programs get resolved with at runtime."
cannam@127 7721 fi
cannam@127 7722 fi
cannam@127 7723 ;;
cannam@127 7724 *)
cannam@127 7725 func_append newdeplibs " $i"
cannam@127 7726 ;;
cannam@127 7727 esac
cannam@127 7728 done
cannam@127 7729 else
cannam@127 7730 # Error occurred in the first compile. Let's try to salvage
cannam@127 7731 # the situation: Compile a separate program for each library.
cannam@127 7732 for i in $deplibs; do
cannam@127 7733 case $i in
cannam@127 7734 -l*)
cannam@127 7735 func_stripname -l '' "$i"
cannam@127 7736 name=$func_stripname_result
cannam@127 7737 $opt_dry_run || $RM conftest
cannam@127 7738 if $LTCC $LTCFLAGS -o conftest conftest.c $i; then
cannam@127 7739 ldd_output=`ldd conftest`
cannam@127 7740 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@127 7741 case " $predeps $postdeps " in
cannam@127 7742 *" $i "*)
cannam@127 7743 func_append newdeplibs " $i"
cannam@127 7744 i=""
cannam@127 7745 ;;
cannam@127 7746 esac
cannam@127 7747 fi
cannam@127 7748 if test -n "$i" ; then
cannam@127 7749 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@127 7750 deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
cannam@127 7751 set dummy $deplib_matches; shift
cannam@127 7752 deplib_match=$1
cannam@127 7753 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
cannam@127 7754 func_append newdeplibs " $i"
cannam@127 7755 else
cannam@127 7756 droppeddeps=yes
cannam@127 7757 echo
cannam@127 7758 $ECHO "*** Warning: dynamic linker does not accept needed library $i."
cannam@127 7759 echo "*** I have the capability to make that library automatically link in when"
cannam@127 7760 echo "*** you link to this library. But I can only do this if you have a"
cannam@127 7761 echo "*** shared version of the library, which you do not appear to have"
cannam@127 7762 echo "*** because a test_compile did reveal that the linker did not use this one"
cannam@127 7763 echo "*** as a dynamic dependency that programs can get resolved with at runtime."
cannam@127 7764 fi
cannam@127 7765 fi
cannam@127 7766 else
cannam@127 7767 droppeddeps=yes
cannam@127 7768 echo
cannam@127 7769 $ECHO "*** Warning! Library $i is needed by this library but I was not able to"
cannam@127 7770 echo "*** make it link in! You will probably need to install it or some"
cannam@127 7771 echo "*** library that it depends on before this library will be fully"
cannam@127 7772 echo "*** functional. Installing it before continuing would be even better."
cannam@127 7773 fi
cannam@127 7774 ;;
cannam@127 7775 *)
cannam@127 7776 func_append newdeplibs " $i"
cannam@127 7777 ;;
cannam@127 7778 esac
cannam@127 7779 done
cannam@127 7780 fi
cannam@127 7781 ;;
cannam@127 7782 file_magic*)
cannam@127 7783 set dummy $deplibs_check_method; shift
cannam@127 7784 file_magic_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
cannam@127 7785 for a_deplib in $deplibs; do
cannam@127 7786 case $a_deplib in
cannam@127 7787 -l*)
cannam@127 7788 func_stripname -l '' "$a_deplib"
cannam@127 7789 name=$func_stripname_result
cannam@127 7790 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@127 7791 case " $predeps $postdeps " in
cannam@127 7792 *" $a_deplib "*)
cannam@127 7793 func_append newdeplibs " $a_deplib"
cannam@127 7794 a_deplib=""
cannam@127 7795 ;;
cannam@127 7796 esac
cannam@127 7797 fi
cannam@127 7798 if test -n "$a_deplib" ; then
cannam@127 7799 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@127 7800 if test -n "$file_magic_glob"; then
cannam@127 7801 libnameglob=`func_echo_all "$libname" | $SED -e $file_magic_glob`
cannam@127 7802 else
cannam@127 7803 libnameglob=$libname
cannam@127 7804 fi
cannam@127 7805 test "$want_nocaseglob" = yes && nocaseglob=`shopt -p nocaseglob`
cannam@127 7806 for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
cannam@127 7807 if test "$want_nocaseglob" = yes; then
cannam@127 7808 shopt -s nocaseglob
cannam@127 7809 potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`
cannam@127 7810 $nocaseglob
cannam@127 7811 else
cannam@127 7812 potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`
cannam@127 7813 fi
cannam@127 7814 for potent_lib in $potential_libs; do
cannam@127 7815 # Follow soft links.
cannam@127 7816 if ls -lLd "$potent_lib" 2>/dev/null |
cannam@127 7817 $GREP " -> " >/dev/null; then
cannam@127 7818 continue
cannam@127 7819 fi
cannam@127 7820 # The statement above tries to avoid entering an
cannam@127 7821 # endless loop below, in case of cyclic links.
cannam@127 7822 # We might still enter an endless loop, since a link
cannam@127 7823 # loop can be closed while we follow links,
cannam@127 7824 # but so what?
cannam@127 7825 potlib="$potent_lib"
cannam@127 7826 while test -h "$potlib" 2>/dev/null; do
cannam@127 7827 potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'`
cannam@127 7828 case $potliblink in
cannam@127 7829 [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
cannam@127 7830 *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";;
cannam@127 7831 esac
cannam@127 7832 done
cannam@127 7833 if eval $file_magic_cmd \"\$potlib\" 2>/dev/null |
cannam@127 7834 $SED -e 10q |
cannam@127 7835 $EGREP "$file_magic_regex" > /dev/null; then
cannam@127 7836 func_append newdeplibs " $a_deplib"
cannam@127 7837 a_deplib=""
cannam@127 7838 break 2
cannam@127 7839 fi
cannam@127 7840 done
cannam@127 7841 done
cannam@127 7842 fi
cannam@127 7843 if test -n "$a_deplib" ; then
cannam@127 7844 droppeddeps=yes
cannam@127 7845 echo
cannam@127 7846 $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
cannam@127 7847 echo "*** I have the capability to make that library automatically link in when"
cannam@127 7848 echo "*** you link to this library. But I can only do this if you have a"
cannam@127 7849 echo "*** shared version of the library, which you do not appear to have"
cannam@127 7850 echo "*** because I did check the linker path looking for a file starting"
cannam@127 7851 if test -z "$potlib" ; then
cannam@127 7852 $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
cannam@127 7853 else
cannam@127 7854 $ECHO "*** with $libname and none of the candidates passed a file format test"
cannam@127 7855 $ECHO "*** using a file magic. Last file checked: $potlib"
cannam@127 7856 fi
cannam@127 7857 fi
cannam@127 7858 ;;
cannam@127 7859 *)
cannam@127 7860 # Add a -L argument.
cannam@127 7861 func_append newdeplibs " $a_deplib"
cannam@127 7862 ;;
cannam@127 7863 esac
cannam@127 7864 done # Gone through all deplibs.
cannam@127 7865 ;;
cannam@127 7866 match_pattern*)
cannam@127 7867 set dummy $deplibs_check_method; shift
cannam@127 7868 match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
cannam@127 7869 for a_deplib in $deplibs; do
cannam@127 7870 case $a_deplib in
cannam@127 7871 -l*)
cannam@127 7872 func_stripname -l '' "$a_deplib"
cannam@127 7873 name=$func_stripname_result
cannam@127 7874 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@127 7875 case " $predeps $postdeps " in
cannam@127 7876 *" $a_deplib "*)
cannam@127 7877 func_append newdeplibs " $a_deplib"
cannam@127 7878 a_deplib=""
cannam@127 7879 ;;
cannam@127 7880 esac
cannam@127 7881 fi
cannam@127 7882 if test -n "$a_deplib" ; then
cannam@127 7883 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@127 7884 for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
cannam@127 7885 potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
cannam@127 7886 for potent_lib in $potential_libs; do
cannam@127 7887 potlib="$potent_lib" # see symlink-check above in file_magic test
cannam@127 7888 if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \
cannam@127 7889 $EGREP "$match_pattern_regex" > /dev/null; then
cannam@127 7890 func_append newdeplibs " $a_deplib"
cannam@127 7891 a_deplib=""
cannam@127 7892 break 2
cannam@127 7893 fi
cannam@127 7894 done
cannam@127 7895 done
cannam@127 7896 fi
cannam@127 7897 if test -n "$a_deplib" ; then
cannam@127 7898 droppeddeps=yes
cannam@127 7899 echo
cannam@127 7900 $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
cannam@127 7901 echo "*** I have the capability to make that library automatically link in when"
cannam@127 7902 echo "*** you link to this library. But I can only do this if you have a"
cannam@127 7903 echo "*** shared version of the library, which you do not appear to have"
cannam@127 7904 echo "*** because I did check the linker path looking for a file starting"
cannam@127 7905 if test -z "$potlib" ; then
cannam@127 7906 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
cannam@127 7907 else
cannam@127 7908 $ECHO "*** with $libname and none of the candidates passed a file format test"
cannam@127 7909 $ECHO "*** using a regex pattern. Last file checked: $potlib"
cannam@127 7910 fi
cannam@127 7911 fi
cannam@127 7912 ;;
cannam@127 7913 *)
cannam@127 7914 # Add a -L argument.
cannam@127 7915 func_append newdeplibs " $a_deplib"
cannam@127 7916 ;;
cannam@127 7917 esac
cannam@127 7918 done # Gone through all deplibs.
cannam@127 7919 ;;
cannam@127 7920 none | unknown | *)
cannam@127 7921 newdeplibs=""
cannam@127 7922 tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'`
cannam@127 7923 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@127 7924 for i in $predeps $postdeps ; do
cannam@127 7925 # can't use Xsed below, because $i might contain '/'
cannam@127 7926 tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"`
cannam@127 7927 done
cannam@127 7928 fi
cannam@127 7929 case $tmp_deplibs in
cannam@127 7930 *[!\ \ ]*)
cannam@127 7931 echo
cannam@127 7932 if test "X$deplibs_check_method" = "Xnone"; then
cannam@127 7933 echo "*** Warning: inter-library dependencies are not supported in this platform."
cannam@127 7934 else
cannam@127 7935 echo "*** Warning: inter-library dependencies are not known to be supported."
cannam@127 7936 fi
cannam@127 7937 echo "*** All declared inter-library dependencies are being dropped."
cannam@127 7938 droppeddeps=yes
cannam@127 7939 ;;
cannam@127 7940 esac
cannam@127 7941 ;;
cannam@127 7942 esac
cannam@127 7943 versuffix=$versuffix_save
cannam@127 7944 major=$major_save
cannam@127 7945 release=$release_save
cannam@127 7946 libname=$libname_save
cannam@127 7947 name=$name_save
cannam@127 7948
cannam@127 7949 case $host in
cannam@127 7950 *-*-rhapsody* | *-*-darwin1.[012])
cannam@127 7951 # On Rhapsody replace the C library with the System framework
cannam@127 7952 newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'`
cannam@127 7953 ;;
cannam@127 7954 esac
cannam@127 7955
cannam@127 7956 if test "$droppeddeps" = yes; then
cannam@127 7957 if test "$module" = yes; then
cannam@127 7958 echo
cannam@127 7959 echo "*** Warning: libtool could not satisfy all declared inter-library"
cannam@127 7960 $ECHO "*** dependencies of module $libname. Therefore, libtool will create"
cannam@127 7961 echo "*** a static module, that should work as long as the dlopening"
cannam@127 7962 echo "*** application is linked with the -dlopen flag."
cannam@127 7963 if test -z "$global_symbol_pipe"; then
cannam@127 7964 echo
cannam@127 7965 echo "*** However, this would only work if libtool was able to extract symbol"
cannam@127 7966 echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
cannam@127 7967 echo "*** not find such a program. So, this module is probably useless."
cannam@127 7968 echo "*** \`nm' from GNU binutils and a full rebuild may help."
cannam@127 7969 fi
cannam@127 7970 if test "$build_old_libs" = no; then
cannam@127 7971 oldlibs="$output_objdir/$libname.$libext"
cannam@127 7972 build_libtool_libs=module
cannam@127 7973 build_old_libs=yes
cannam@127 7974 else
cannam@127 7975 build_libtool_libs=no
cannam@127 7976 fi
cannam@127 7977 else
cannam@127 7978 echo "*** The inter-library dependencies that have been dropped here will be"
cannam@127 7979 echo "*** automatically added whenever a program is linked with this library"
cannam@127 7980 echo "*** or is declared to -dlopen it."
cannam@127 7981
cannam@127 7982 if test "$allow_undefined" = no; then
cannam@127 7983 echo
cannam@127 7984 echo "*** Since this library must not contain undefined symbols,"
cannam@127 7985 echo "*** because either the platform does not support them or"
cannam@127 7986 echo "*** it was explicitly requested with -no-undefined,"
cannam@127 7987 echo "*** libtool will only create a static version of it."
cannam@127 7988 if test "$build_old_libs" = no; then
cannam@127 7989 oldlibs="$output_objdir/$libname.$libext"
cannam@127 7990 build_libtool_libs=module
cannam@127 7991 build_old_libs=yes
cannam@127 7992 else
cannam@127 7993 build_libtool_libs=no
cannam@127 7994 fi
cannam@127 7995 fi
cannam@127 7996 fi
cannam@127 7997 fi
cannam@127 7998 # Done checking deplibs!
cannam@127 7999 deplibs=$newdeplibs
cannam@127 8000 fi
cannam@127 8001 # Time to change all our "foo.ltframework" stuff back to "-framework foo"
cannam@127 8002 case $host in
cannam@127 8003 *-*-darwin*)
cannam@127 8004 newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@127 8005 new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@127 8006 deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@127 8007 ;;
cannam@127 8008 esac
cannam@127 8009
cannam@127 8010 # move library search paths that coincide with paths to not yet
cannam@127 8011 # installed libraries to the beginning of the library search list
cannam@127 8012 new_libs=
cannam@127 8013 for path in $notinst_path; do
cannam@127 8014 case " $new_libs " in
cannam@127 8015 *" -L$path/$objdir "*) ;;
cannam@127 8016 *)
cannam@127 8017 case " $deplibs " in
cannam@127 8018 *" -L$path/$objdir "*)
cannam@127 8019 func_append new_libs " -L$path/$objdir" ;;
cannam@127 8020 esac
cannam@127 8021 ;;
cannam@127 8022 esac
cannam@127 8023 done
cannam@127 8024 for deplib in $deplibs; do
cannam@127 8025 case $deplib in
cannam@127 8026 -L*)
cannam@127 8027 case " $new_libs " in
cannam@127 8028 *" $deplib "*) ;;
cannam@127 8029 *) func_append new_libs " $deplib" ;;
cannam@127 8030 esac
cannam@127 8031 ;;
cannam@127 8032 *) func_append new_libs " $deplib" ;;
cannam@127 8033 esac
cannam@127 8034 done
cannam@127 8035 deplibs="$new_libs"
cannam@127 8036
cannam@127 8037 # All the library-specific variables (install_libdir is set above).
cannam@127 8038 library_names=
cannam@127 8039 old_library=
cannam@127 8040 dlname=
cannam@127 8041
cannam@127 8042 # Test again, we may have decided not to build it any more
cannam@127 8043 if test "$build_libtool_libs" = yes; then
cannam@127 8044 # Remove ${wl} instances when linking with ld.
cannam@127 8045 # FIXME: should test the right _cmds variable.
cannam@127 8046 case $archive_cmds in
cannam@127 8047 *\$LD\ *) wl= ;;
cannam@127 8048 esac
cannam@127 8049 if test "$hardcode_into_libs" = yes; then
cannam@127 8050 # Hardcode the library paths
cannam@127 8051 hardcode_libdirs=
cannam@127 8052 dep_rpath=
cannam@127 8053 rpath="$finalize_rpath"
cannam@127 8054 test "$opt_mode" != relink && rpath="$compile_rpath$rpath"
cannam@127 8055 for libdir in $rpath; do
cannam@127 8056 if test -n "$hardcode_libdir_flag_spec"; then
cannam@127 8057 if test -n "$hardcode_libdir_separator"; then
cannam@127 8058 func_replace_sysroot "$libdir"
cannam@127 8059 libdir=$func_replace_sysroot_result
cannam@127 8060 if test -z "$hardcode_libdirs"; then
cannam@127 8061 hardcode_libdirs="$libdir"
cannam@127 8062 else
cannam@127 8063 # Just accumulate the unique libdirs.
cannam@127 8064 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@127 8065 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@127 8066 ;;
cannam@127 8067 *)
cannam@127 8068 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
cannam@127 8069 ;;
cannam@127 8070 esac
cannam@127 8071 fi
cannam@127 8072 else
cannam@127 8073 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@127 8074 func_append dep_rpath " $flag"
cannam@127 8075 fi
cannam@127 8076 elif test -n "$runpath_var"; then
cannam@127 8077 case "$perm_rpath " in
cannam@127 8078 *" $libdir "*) ;;
cannam@127 8079 *) func_append perm_rpath " $libdir" ;;
cannam@127 8080 esac
cannam@127 8081 fi
cannam@127 8082 done
cannam@127 8083 # Substitute the hardcoded libdirs into the rpath.
cannam@127 8084 if test -n "$hardcode_libdir_separator" &&
cannam@127 8085 test -n "$hardcode_libdirs"; then
cannam@127 8086 libdir="$hardcode_libdirs"
cannam@127 8087 eval "dep_rpath=\"$hardcode_libdir_flag_spec\""
cannam@127 8088 fi
cannam@127 8089 if test -n "$runpath_var" && test -n "$perm_rpath"; then
cannam@127 8090 # We should set the runpath_var.
cannam@127 8091 rpath=
cannam@127 8092 for dir in $perm_rpath; do
cannam@127 8093 func_append rpath "$dir:"
cannam@127 8094 done
cannam@127 8095 eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var"
cannam@127 8096 fi
cannam@127 8097 test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs"
cannam@127 8098 fi
cannam@127 8099
cannam@127 8100 shlibpath="$finalize_shlibpath"
cannam@127 8101 test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath"
cannam@127 8102 if test -n "$shlibpath"; then
cannam@127 8103 eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var"
cannam@127 8104 fi
cannam@127 8105
cannam@127 8106 # Get the real and link names of the library.
cannam@127 8107 eval shared_ext=\"$shrext_cmds\"
cannam@127 8108 eval library_names=\"$library_names_spec\"
cannam@127 8109 set dummy $library_names
cannam@127 8110 shift
cannam@127 8111 realname="$1"
cannam@127 8112 shift
cannam@127 8113
cannam@127 8114 if test -n "$soname_spec"; then
cannam@127 8115 eval soname=\"$soname_spec\"
cannam@127 8116 else
cannam@127 8117 soname="$realname"
cannam@127 8118 fi
cannam@127 8119 if test -z "$dlname"; then
cannam@127 8120 dlname=$soname
cannam@127 8121 fi
cannam@127 8122
cannam@127 8123 lib="$output_objdir/$realname"
cannam@127 8124 linknames=
cannam@127 8125 for link
cannam@127 8126 do
cannam@127 8127 func_append linknames " $link"
cannam@127 8128 done
cannam@127 8129
cannam@127 8130 # Use standard objects if they are pic
cannam@127 8131 test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@127 8132 test "X$libobjs" = "X " && libobjs=
cannam@127 8133
cannam@127 8134 delfiles=
cannam@127 8135 if test -n "$export_symbols" && test -n "$include_expsyms"; then
cannam@127 8136 $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp"
cannam@127 8137 export_symbols="$output_objdir/$libname.uexp"
cannam@127 8138 func_append delfiles " $export_symbols"
cannam@127 8139 fi
cannam@127 8140
cannam@127 8141 orig_export_symbols=
cannam@127 8142 case $host_os in
cannam@127 8143 cygwin* | mingw* | cegcc*)
cannam@127 8144 if test -n "$export_symbols" && test -z "$export_symbols_regex"; then
cannam@127 8145 # exporting using user supplied symfile
cannam@127 8146 if test "x`$SED 1q $export_symbols`" != xEXPORTS; then
cannam@127 8147 # and it's NOT already a .def file. Must figure out
cannam@127 8148 # which of the given symbols are data symbols and tag
cannam@127 8149 # them as such. So, trigger use of export_symbols_cmds.
cannam@127 8150 # export_symbols gets reassigned inside the "prepare
cannam@127 8151 # the list of exported symbols" if statement, so the
cannam@127 8152 # include_expsyms logic still works.
cannam@127 8153 orig_export_symbols="$export_symbols"
cannam@127 8154 export_symbols=
cannam@127 8155 always_export_symbols=yes
cannam@127 8156 fi
cannam@127 8157 fi
cannam@127 8158 ;;
cannam@127 8159 esac
cannam@127 8160
cannam@127 8161 # Prepare the list of exported symbols
cannam@127 8162 if test -z "$export_symbols"; then
cannam@127 8163 if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
cannam@127 8164 func_verbose "generating symbol list for \`$libname.la'"
cannam@127 8165 export_symbols="$output_objdir/$libname.exp"
cannam@127 8166 $opt_dry_run || $RM $export_symbols
cannam@127 8167 cmds=$export_symbols_cmds
cannam@127 8168 save_ifs="$IFS"; IFS='~'
cannam@127 8169 for cmd1 in $cmds; do
cannam@127 8170 IFS="$save_ifs"
cannam@127 8171 # Take the normal branch if the nm_file_list_spec branch
cannam@127 8172 # doesn't work or if tool conversion is not needed.
cannam@127 8173 case $nm_file_list_spec~$to_tool_file_cmd in
cannam@127 8174 *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*)
cannam@127 8175 try_normal_branch=yes
cannam@127 8176 eval cmd=\"$cmd1\"
cannam@127 8177 func_len " $cmd"
cannam@127 8178 len=$func_len_result
cannam@127 8179 ;;
cannam@127 8180 *)
cannam@127 8181 try_normal_branch=no
cannam@127 8182 ;;
cannam@127 8183 esac
cannam@127 8184 if test "$try_normal_branch" = yes \
cannam@127 8185 && { test "$len" -lt "$max_cmd_len" \
cannam@127 8186 || test "$max_cmd_len" -le -1; }
cannam@127 8187 then
cannam@127 8188 func_show_eval "$cmd" 'exit $?'
cannam@127 8189 skipped_export=false
cannam@127 8190 elif test -n "$nm_file_list_spec"; then
cannam@127 8191 func_basename "$output"
cannam@127 8192 output_la=$func_basename_result
cannam@127 8193 save_libobjs=$libobjs
cannam@127 8194 save_output=$output
cannam@127 8195 output=${output_objdir}/${output_la}.nm
cannam@127 8196 func_to_tool_file "$output"
cannam@127 8197 libobjs=$nm_file_list_spec$func_to_tool_file_result
cannam@127 8198 func_append delfiles " $output"
cannam@127 8199 func_verbose "creating $NM input file list: $output"
cannam@127 8200 for obj in $save_libobjs; do
cannam@127 8201 func_to_tool_file "$obj"
cannam@127 8202 $ECHO "$func_to_tool_file_result"
cannam@127 8203 done > "$output"
cannam@127 8204 eval cmd=\"$cmd1\"
cannam@127 8205 func_show_eval "$cmd" 'exit $?'
cannam@127 8206 output=$save_output
cannam@127 8207 libobjs=$save_libobjs
cannam@127 8208 skipped_export=false
cannam@127 8209 else
cannam@127 8210 # The command line is too long to execute in one step.
cannam@127 8211 func_verbose "using reloadable object file for export list..."
cannam@127 8212 skipped_export=:
cannam@127 8213 # Break out early, otherwise skipped_export may be
cannam@127 8214 # set to false by a later but shorter cmd.
cannam@127 8215 break
cannam@127 8216 fi
cannam@127 8217 done
cannam@127 8218 IFS="$save_ifs"
cannam@127 8219 if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then
cannam@127 8220 func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
cannam@127 8221 func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
cannam@127 8222 fi
cannam@127 8223 fi
cannam@127 8224 fi
cannam@127 8225
cannam@127 8226 if test -n "$export_symbols" && test -n "$include_expsyms"; then
cannam@127 8227 tmp_export_symbols="$export_symbols"
cannam@127 8228 test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
cannam@127 8229 $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"'
cannam@127 8230 fi
cannam@127 8231
cannam@127 8232 if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then
cannam@127 8233 # The given exports_symbols file has to be filtered, so filter it.
cannam@127 8234 func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
cannam@127 8235 # FIXME: $output_objdir/$libname.filter potentially contains lots of
cannam@127 8236 # 's' commands which not all seds can handle. GNU sed should be fine
cannam@127 8237 # though. Also, the filter scales superlinearly with the number of
cannam@127 8238 # global variables. join(1) would be nice here, but unfortunately
cannam@127 8239 # isn't a blessed tool.
cannam@127 8240 $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter
cannam@127 8241 func_append delfiles " $export_symbols $output_objdir/$libname.filter"
cannam@127 8242 export_symbols=$output_objdir/$libname.def
cannam@127 8243 $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
cannam@127 8244 fi
cannam@127 8245
cannam@127 8246 tmp_deplibs=
cannam@127 8247 for test_deplib in $deplibs; do
cannam@127 8248 case " $convenience " in
cannam@127 8249 *" $test_deplib "*) ;;
cannam@127 8250 *)
cannam@127 8251 func_append tmp_deplibs " $test_deplib"
cannam@127 8252 ;;
cannam@127 8253 esac
cannam@127 8254 done
cannam@127 8255 deplibs="$tmp_deplibs"
cannam@127 8256
cannam@127 8257 if test -n "$convenience"; then
cannam@127 8258 if test -n "$whole_archive_flag_spec" &&
cannam@127 8259 test "$compiler_needs_object" = yes &&
cannam@127 8260 test -z "$libobjs"; then
cannam@127 8261 # extract the archives, so we have objects to list.
cannam@127 8262 # TODO: could optimize this to just extract one archive.
cannam@127 8263 whole_archive_flag_spec=
cannam@127 8264 fi
cannam@127 8265 if test -n "$whole_archive_flag_spec"; then
cannam@127 8266 save_libobjs=$libobjs
cannam@127 8267 eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
cannam@127 8268 test "X$libobjs" = "X " && libobjs=
cannam@127 8269 else
cannam@127 8270 gentop="$output_objdir/${outputname}x"
cannam@127 8271 func_append generated " $gentop"
cannam@127 8272
cannam@127 8273 func_extract_archives $gentop $convenience
cannam@127 8274 func_append libobjs " $func_extract_archives_result"
cannam@127 8275 test "X$libobjs" = "X " && libobjs=
cannam@127 8276 fi
cannam@127 8277 fi
cannam@127 8278
cannam@127 8279 if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
cannam@127 8280 eval flag=\"$thread_safe_flag_spec\"
cannam@127 8281 func_append linker_flags " $flag"
cannam@127 8282 fi
cannam@127 8283
cannam@127 8284 # Make a backup of the uninstalled library when relinking
cannam@127 8285 if test "$opt_mode" = relink; then
cannam@127 8286 $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?
cannam@127 8287 fi
cannam@127 8288
cannam@127 8289 # Do each of the archive commands.
cannam@127 8290 if test "$module" = yes && test -n "$module_cmds" ; then
cannam@127 8291 if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
cannam@127 8292 eval test_cmds=\"$module_expsym_cmds\"
cannam@127 8293 cmds=$module_expsym_cmds
cannam@127 8294 else
cannam@127 8295 eval test_cmds=\"$module_cmds\"
cannam@127 8296 cmds=$module_cmds
cannam@127 8297 fi
cannam@127 8298 else
cannam@127 8299 if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
cannam@127 8300 eval test_cmds=\"$archive_expsym_cmds\"
cannam@127 8301 cmds=$archive_expsym_cmds
cannam@127 8302 else
cannam@127 8303 eval test_cmds=\"$archive_cmds\"
cannam@127 8304 cmds=$archive_cmds
cannam@127 8305 fi
cannam@127 8306 fi
cannam@127 8307
cannam@127 8308 if test "X$skipped_export" != "X:" &&
cannam@127 8309 func_len " $test_cmds" &&
cannam@127 8310 len=$func_len_result &&
cannam@127 8311 test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
cannam@127 8312 :
cannam@127 8313 else
cannam@127 8314 # The command line is too long to link in one step, link piecewise
cannam@127 8315 # or, if using GNU ld and skipped_export is not :, use a linker
cannam@127 8316 # script.
cannam@127 8317
cannam@127 8318 # Save the value of $output and $libobjs because we want to
cannam@127 8319 # use them later. If we have whole_archive_flag_spec, we
cannam@127 8320 # want to use save_libobjs as it was before
cannam@127 8321 # whole_archive_flag_spec was expanded, because we can't
cannam@127 8322 # assume the linker understands whole_archive_flag_spec.
cannam@127 8323 # This may have to be revisited, in case too many
cannam@127 8324 # convenience libraries get linked in and end up exceeding
cannam@127 8325 # the spec.
cannam@127 8326 if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then
cannam@127 8327 save_libobjs=$libobjs
cannam@127 8328 fi
cannam@127 8329 save_output=$output
cannam@127 8330 func_basename "$output"
cannam@127 8331 output_la=$func_basename_result
cannam@127 8332
cannam@127 8333 # Clear the reloadable object creation command queue and
cannam@127 8334 # initialize k to one.
cannam@127 8335 test_cmds=
cannam@127 8336 concat_cmds=
cannam@127 8337 objlist=
cannam@127 8338 last_robj=
cannam@127 8339 k=1
cannam@127 8340
cannam@127 8341 if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then
cannam@127 8342 output=${output_objdir}/${output_la}.lnkscript
cannam@127 8343 func_verbose "creating GNU ld script: $output"
cannam@127 8344 echo 'INPUT (' > $output
cannam@127 8345 for obj in $save_libobjs
cannam@127 8346 do
cannam@127 8347 func_to_tool_file "$obj"
cannam@127 8348 $ECHO "$func_to_tool_file_result" >> $output
cannam@127 8349 done
cannam@127 8350 echo ')' >> $output
cannam@127 8351 func_append delfiles " $output"
cannam@127 8352 func_to_tool_file "$output"
cannam@127 8353 output=$func_to_tool_file_result
cannam@127 8354 elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then
cannam@127 8355 output=${output_objdir}/${output_la}.lnk
cannam@127 8356 func_verbose "creating linker input file list: $output"
cannam@127 8357 : > $output
cannam@127 8358 set x $save_libobjs
cannam@127 8359 shift
cannam@127 8360 firstobj=
cannam@127 8361 if test "$compiler_needs_object" = yes; then
cannam@127 8362 firstobj="$1 "
cannam@127 8363 shift
cannam@127 8364 fi
cannam@127 8365 for obj
cannam@127 8366 do
cannam@127 8367 func_to_tool_file "$obj"
cannam@127 8368 $ECHO "$func_to_tool_file_result" >> $output
cannam@127 8369 done
cannam@127 8370 func_append delfiles " $output"
cannam@127 8371 func_to_tool_file "$output"
cannam@127 8372 output=$firstobj\"$file_list_spec$func_to_tool_file_result\"
cannam@127 8373 else
cannam@127 8374 if test -n "$save_libobjs"; then
cannam@127 8375 func_verbose "creating reloadable object files..."
cannam@127 8376 output=$output_objdir/$output_la-${k}.$objext
cannam@127 8377 eval test_cmds=\"$reload_cmds\"
cannam@127 8378 func_len " $test_cmds"
cannam@127 8379 len0=$func_len_result
cannam@127 8380 len=$len0
cannam@127 8381
cannam@127 8382 # Loop over the list of objects to be linked.
cannam@127 8383 for obj in $save_libobjs
cannam@127 8384 do
cannam@127 8385 func_len " $obj"
cannam@127 8386 func_arith $len + $func_len_result
cannam@127 8387 len=$func_arith_result
cannam@127 8388 if test "X$objlist" = X ||
cannam@127 8389 test "$len" -lt "$max_cmd_len"; then
cannam@127 8390 func_append objlist " $obj"
cannam@127 8391 else
cannam@127 8392 # The command $test_cmds is almost too long, add a
cannam@127 8393 # command to the queue.
cannam@127 8394 if test "$k" -eq 1 ; then
cannam@127 8395 # The first file doesn't have a previous command to add.
cannam@127 8396 reload_objs=$objlist
cannam@127 8397 eval concat_cmds=\"$reload_cmds\"
cannam@127 8398 else
cannam@127 8399 # All subsequent reloadable object files will link in
cannam@127 8400 # the last one created.
cannam@127 8401 reload_objs="$objlist $last_robj"
cannam@127 8402 eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\"
cannam@127 8403 fi
cannam@127 8404 last_robj=$output_objdir/$output_la-${k}.$objext
cannam@127 8405 func_arith $k + 1
cannam@127 8406 k=$func_arith_result
cannam@127 8407 output=$output_objdir/$output_la-${k}.$objext
cannam@127 8408 objlist=" $obj"
cannam@127 8409 func_len " $last_robj"
cannam@127 8410 func_arith $len0 + $func_len_result
cannam@127 8411 len=$func_arith_result
cannam@127 8412 fi
cannam@127 8413 done
cannam@127 8414 # Handle the remaining objects by creating one last
cannam@127 8415 # reloadable object file. All subsequent reloadable object
cannam@127 8416 # files will link in the last one created.
cannam@127 8417 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
cannam@127 8418 reload_objs="$objlist $last_robj"
cannam@127 8419 eval concat_cmds=\"\${concat_cmds}$reload_cmds\"
cannam@127 8420 if test -n "$last_robj"; then
cannam@127 8421 eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\"
cannam@127 8422 fi
cannam@127 8423 func_append delfiles " $output"
cannam@127 8424
cannam@127 8425 else
cannam@127 8426 output=
cannam@127 8427 fi
cannam@127 8428
cannam@127 8429 if ${skipped_export-false}; then
cannam@127 8430 func_verbose "generating symbol list for \`$libname.la'"
cannam@127 8431 export_symbols="$output_objdir/$libname.exp"
cannam@127 8432 $opt_dry_run || $RM $export_symbols
cannam@127 8433 libobjs=$output
cannam@127 8434 # Append the command to create the export file.
cannam@127 8435 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
cannam@127 8436 eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\"
cannam@127 8437 if test -n "$last_robj"; then
cannam@127 8438 eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\"
cannam@127 8439 fi
cannam@127 8440 fi
cannam@127 8441
cannam@127 8442 test -n "$save_libobjs" &&
cannam@127 8443 func_verbose "creating a temporary reloadable object file: $output"
cannam@127 8444
cannam@127 8445 # Loop through the commands generated above and execute them.
cannam@127 8446 save_ifs="$IFS"; IFS='~'
cannam@127 8447 for cmd in $concat_cmds; do
cannam@127 8448 IFS="$save_ifs"
cannam@127 8449 $opt_silent || {
cannam@127 8450 func_quote_for_expand "$cmd"
cannam@127 8451 eval "func_echo $func_quote_for_expand_result"
cannam@127 8452 }
cannam@127 8453 $opt_dry_run || eval "$cmd" || {
cannam@127 8454 lt_exit=$?
cannam@127 8455
cannam@127 8456 # Restore the uninstalled library and exit
cannam@127 8457 if test "$opt_mode" = relink; then
cannam@127 8458 ( cd "$output_objdir" && \
cannam@127 8459 $RM "${realname}T" && \
cannam@127 8460 $MV "${realname}U" "$realname" )
cannam@127 8461 fi
cannam@127 8462
cannam@127 8463 exit $lt_exit
cannam@127 8464 }
cannam@127 8465 done
cannam@127 8466 IFS="$save_ifs"
cannam@127 8467
cannam@127 8468 if test -n "$export_symbols_regex" && ${skipped_export-false}; then
cannam@127 8469 func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
cannam@127 8470 func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
cannam@127 8471 fi
cannam@127 8472 fi
cannam@127 8473
cannam@127 8474 if ${skipped_export-false}; then
cannam@127 8475 if test -n "$export_symbols" && test -n "$include_expsyms"; then
cannam@127 8476 tmp_export_symbols="$export_symbols"
cannam@127 8477 test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
cannam@127 8478 $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"'
cannam@127 8479 fi
cannam@127 8480
cannam@127 8481 if test -n "$orig_export_symbols"; then
cannam@127 8482 # The given exports_symbols file has to be filtered, so filter it.
cannam@127 8483 func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
cannam@127 8484 # FIXME: $output_objdir/$libname.filter potentially contains lots of
cannam@127 8485 # 's' commands which not all seds can handle. GNU sed should be fine
cannam@127 8486 # though. Also, the filter scales superlinearly with the number of
cannam@127 8487 # global variables. join(1) would be nice here, but unfortunately
cannam@127 8488 # isn't a blessed tool.
cannam@127 8489 $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter
cannam@127 8490 func_append delfiles " $export_symbols $output_objdir/$libname.filter"
cannam@127 8491 export_symbols=$output_objdir/$libname.def
cannam@127 8492 $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
cannam@127 8493 fi
cannam@127 8494 fi
cannam@127 8495
cannam@127 8496 libobjs=$output
cannam@127 8497 # Restore the value of output.
cannam@127 8498 output=$save_output
cannam@127 8499
cannam@127 8500 if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then
cannam@127 8501 eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
cannam@127 8502 test "X$libobjs" = "X " && libobjs=
cannam@127 8503 fi
cannam@127 8504 # Expand the library linking commands again to reset the
cannam@127 8505 # value of $libobjs for piecewise linking.
cannam@127 8506
cannam@127 8507 # Do each of the archive commands.
cannam@127 8508 if test "$module" = yes && test -n "$module_cmds" ; then
cannam@127 8509 if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
cannam@127 8510 cmds=$module_expsym_cmds
cannam@127 8511 else
cannam@127 8512 cmds=$module_cmds
cannam@127 8513 fi
cannam@127 8514 else
cannam@127 8515 if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
cannam@127 8516 cmds=$archive_expsym_cmds
cannam@127 8517 else
cannam@127 8518 cmds=$archive_cmds
cannam@127 8519 fi
cannam@127 8520 fi
cannam@127 8521 fi
cannam@127 8522
cannam@127 8523 if test -n "$delfiles"; then
cannam@127 8524 # Append the command to remove temporary files to $cmds.
cannam@127 8525 eval cmds=\"\$cmds~\$RM $delfiles\"
cannam@127 8526 fi
cannam@127 8527
cannam@127 8528 # Add any objects from preloaded convenience libraries
cannam@127 8529 if test -n "$dlprefiles"; then
cannam@127 8530 gentop="$output_objdir/${outputname}x"
cannam@127 8531 func_append generated " $gentop"
cannam@127 8532
cannam@127 8533 func_extract_archives $gentop $dlprefiles
cannam@127 8534 func_append libobjs " $func_extract_archives_result"
cannam@127 8535 test "X$libobjs" = "X " && libobjs=
cannam@127 8536 fi
cannam@127 8537
cannam@127 8538 save_ifs="$IFS"; IFS='~'
cannam@127 8539 for cmd in $cmds; do
cannam@127 8540 IFS="$save_ifs"
cannam@127 8541 eval cmd=\"$cmd\"
cannam@127 8542 $opt_silent || {
cannam@127 8543 func_quote_for_expand "$cmd"
cannam@127 8544 eval "func_echo $func_quote_for_expand_result"
cannam@127 8545 }
cannam@127 8546 $opt_dry_run || eval "$cmd" || {
cannam@127 8547 lt_exit=$?
cannam@127 8548
cannam@127 8549 # Restore the uninstalled library and exit
cannam@127 8550 if test "$opt_mode" = relink; then
cannam@127 8551 ( cd "$output_objdir" && \
cannam@127 8552 $RM "${realname}T" && \
cannam@127 8553 $MV "${realname}U" "$realname" )
cannam@127 8554 fi
cannam@127 8555
cannam@127 8556 exit $lt_exit
cannam@127 8557 }
cannam@127 8558 done
cannam@127 8559 IFS="$save_ifs"
cannam@127 8560
cannam@127 8561 # Restore the uninstalled library and exit
cannam@127 8562 if test "$opt_mode" = relink; then
cannam@127 8563 $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $?
cannam@127 8564
cannam@127 8565 if test -n "$convenience"; then
cannam@127 8566 if test -z "$whole_archive_flag_spec"; then
cannam@127 8567 func_show_eval '${RM}r "$gentop"'
cannam@127 8568 fi
cannam@127 8569 fi
cannam@127 8570
cannam@127 8571 exit $EXIT_SUCCESS
cannam@127 8572 fi
cannam@127 8573
cannam@127 8574 # Create links to the real library.
cannam@127 8575 for linkname in $linknames; do
cannam@127 8576 if test "$realname" != "$linkname"; then
cannam@127 8577 func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?'
cannam@127 8578 fi
cannam@127 8579 done
cannam@127 8580
cannam@127 8581 # If -module or -export-dynamic was specified, set the dlname.
cannam@127 8582 if test "$module" = yes || test "$export_dynamic" = yes; then
cannam@127 8583 # On all known operating systems, these are identical.
cannam@127 8584 dlname="$soname"
cannam@127 8585 fi
cannam@127 8586 fi
cannam@127 8587 ;;
cannam@127 8588
cannam@127 8589 obj)
cannam@127 8590 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@127 8591 func_warning "\`-dlopen' is ignored for objects"
cannam@127 8592 fi
cannam@127 8593
cannam@127 8594 case " $deplibs" in
cannam@127 8595 *\ -l* | *\ -L*)
cannam@127 8596 func_warning "\`-l' and \`-L' are ignored for objects" ;;
cannam@127 8597 esac
cannam@127 8598
cannam@127 8599 test -n "$rpath" && \
cannam@127 8600 func_warning "\`-rpath' is ignored for objects"
cannam@127 8601
cannam@127 8602 test -n "$xrpath" && \
cannam@127 8603 func_warning "\`-R' is ignored for objects"
cannam@127 8604
cannam@127 8605 test -n "$vinfo" && \
cannam@127 8606 func_warning "\`-version-info' is ignored for objects"
cannam@127 8607
cannam@127 8608 test -n "$release" && \
cannam@127 8609 func_warning "\`-release' is ignored for objects"
cannam@127 8610
cannam@127 8611 case $output in
cannam@127 8612 *.lo)
cannam@127 8613 test -n "$objs$old_deplibs" && \
cannam@127 8614 func_fatal_error "cannot build library object \`$output' from non-libtool objects"
cannam@127 8615
cannam@127 8616 libobj=$output
cannam@127 8617 func_lo2o "$libobj"
cannam@127 8618 obj=$func_lo2o_result
cannam@127 8619 ;;
cannam@127 8620 *)
cannam@127 8621 libobj=
cannam@127 8622 obj="$output"
cannam@127 8623 ;;
cannam@127 8624 esac
cannam@127 8625
cannam@127 8626 # Delete the old objects.
cannam@127 8627 $opt_dry_run || $RM $obj $libobj
cannam@127 8628
cannam@127 8629 # Objects from convenience libraries. This assumes
cannam@127 8630 # single-version convenience libraries. Whenever we create
cannam@127 8631 # different ones for PIC/non-PIC, this we'll have to duplicate
cannam@127 8632 # the extraction.
cannam@127 8633 reload_conv_objs=
cannam@127 8634 gentop=
cannam@127 8635 # reload_cmds runs $LD directly, so let us get rid of
cannam@127 8636 # -Wl from whole_archive_flag_spec and hope we can get by with
cannam@127 8637 # turning comma into space..
cannam@127 8638 wl=
cannam@127 8639
cannam@127 8640 if test -n "$convenience"; then
cannam@127 8641 if test -n "$whole_archive_flag_spec"; then
cannam@127 8642 eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\"
cannam@127 8643 reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'`
cannam@127 8644 else
cannam@127 8645 gentop="$output_objdir/${obj}x"
cannam@127 8646 func_append generated " $gentop"
cannam@127 8647
cannam@127 8648 func_extract_archives $gentop $convenience
cannam@127 8649 reload_conv_objs="$reload_objs $func_extract_archives_result"
cannam@127 8650 fi
cannam@127 8651 fi
cannam@127 8652
cannam@127 8653 # If we're not building shared, we need to use non_pic_objs
cannam@127 8654 test "$build_libtool_libs" != yes && libobjs="$non_pic_objects"
cannam@127 8655
cannam@127 8656 # Create the old-style object.
cannam@127 8657 reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test
cannam@127 8658
cannam@127 8659 output="$obj"
cannam@127 8660 func_execute_cmds "$reload_cmds" 'exit $?'
cannam@127 8661
cannam@127 8662 # Exit if we aren't doing a library object file.
cannam@127 8663 if test -z "$libobj"; then
cannam@127 8664 if test -n "$gentop"; then
cannam@127 8665 func_show_eval '${RM}r "$gentop"'
cannam@127 8666 fi
cannam@127 8667
cannam@127 8668 exit $EXIT_SUCCESS
cannam@127 8669 fi
cannam@127 8670
cannam@127 8671 if test "$build_libtool_libs" != yes; then
cannam@127 8672 if test -n "$gentop"; then
cannam@127 8673 func_show_eval '${RM}r "$gentop"'
cannam@127 8674 fi
cannam@127 8675
cannam@127 8676 # Create an invalid libtool object if no PIC, so that we don't
cannam@127 8677 # accidentally link it into a program.
cannam@127 8678 # $show "echo timestamp > $libobj"
cannam@127 8679 # $opt_dry_run || eval "echo timestamp > $libobj" || exit $?
cannam@127 8680 exit $EXIT_SUCCESS
cannam@127 8681 fi
cannam@127 8682
cannam@127 8683 if test -n "$pic_flag" || test "$pic_mode" != default; then
cannam@127 8684 # Only do commands if we really have different PIC objects.
cannam@127 8685 reload_objs="$libobjs $reload_conv_objs"
cannam@127 8686 output="$libobj"
cannam@127 8687 func_execute_cmds "$reload_cmds" 'exit $?'
cannam@127 8688 fi
cannam@127 8689
cannam@127 8690 if test -n "$gentop"; then
cannam@127 8691 func_show_eval '${RM}r "$gentop"'
cannam@127 8692 fi
cannam@127 8693
cannam@127 8694 exit $EXIT_SUCCESS
cannam@127 8695 ;;
cannam@127 8696
cannam@127 8697 prog)
cannam@127 8698 case $host in
cannam@127 8699 *cygwin*) func_stripname '' '.exe' "$output"
cannam@127 8700 output=$func_stripname_result.exe;;
cannam@127 8701 esac
cannam@127 8702 test -n "$vinfo" && \
cannam@127 8703 func_warning "\`-version-info' is ignored for programs"
cannam@127 8704
cannam@127 8705 test -n "$release" && \
cannam@127 8706 func_warning "\`-release' is ignored for programs"
cannam@127 8707
cannam@127 8708 test "$preload" = yes \
cannam@127 8709 && test "$dlopen_support" = unknown \
cannam@127 8710 && test "$dlopen_self" = unknown \
cannam@127 8711 && test "$dlopen_self_static" = unknown && \
cannam@127 8712 func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support."
cannam@127 8713
cannam@127 8714 case $host in
cannam@127 8715 *-*-rhapsody* | *-*-darwin1.[012])
cannam@127 8716 # On Rhapsody replace the C library is the System framework
cannam@127 8717 compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'`
cannam@127 8718 finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'`
cannam@127 8719 ;;
cannam@127 8720 esac
cannam@127 8721
cannam@127 8722 case $host in
cannam@127 8723 *-*-darwin*)
cannam@127 8724 # Don't allow lazy linking, it breaks C++ global constructors
cannam@127 8725 # But is supposedly fixed on 10.4 or later (yay!).
cannam@127 8726 if test "$tagname" = CXX ; then
cannam@127 8727 case ${MACOSX_DEPLOYMENT_TARGET-10.0} in
cannam@127 8728 10.[0123])
cannam@127 8729 func_append compile_command " ${wl}-bind_at_load"
cannam@127 8730 func_append finalize_command " ${wl}-bind_at_load"
cannam@127 8731 ;;
cannam@127 8732 esac
cannam@127 8733 fi
cannam@127 8734 # Time to change all our "foo.ltframework" stuff back to "-framework foo"
cannam@127 8735 compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@127 8736 finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@127 8737 ;;
cannam@127 8738 esac
cannam@127 8739
cannam@127 8740
cannam@127 8741 # move library search paths that coincide with paths to not yet
cannam@127 8742 # installed libraries to the beginning of the library search list
cannam@127 8743 new_libs=
cannam@127 8744 for path in $notinst_path; do
cannam@127 8745 case " $new_libs " in
cannam@127 8746 *" -L$path/$objdir "*) ;;
cannam@127 8747 *)
cannam@127 8748 case " $compile_deplibs " in
cannam@127 8749 *" -L$path/$objdir "*)
cannam@127 8750 func_append new_libs " -L$path/$objdir" ;;
cannam@127 8751 esac
cannam@127 8752 ;;
cannam@127 8753 esac
cannam@127 8754 done
cannam@127 8755 for deplib in $compile_deplibs; do
cannam@127 8756 case $deplib in
cannam@127 8757 -L*)
cannam@127 8758 case " $new_libs " in
cannam@127 8759 *" $deplib "*) ;;
cannam@127 8760 *) func_append new_libs " $deplib" ;;
cannam@127 8761 esac
cannam@127 8762 ;;
cannam@127 8763 *) func_append new_libs " $deplib" ;;
cannam@127 8764 esac
cannam@127 8765 done
cannam@127 8766 compile_deplibs="$new_libs"
cannam@127 8767
cannam@127 8768
cannam@127 8769 func_append compile_command " $compile_deplibs"
cannam@127 8770 func_append finalize_command " $finalize_deplibs"
cannam@127 8771
cannam@127 8772 if test -n "$rpath$xrpath"; then
cannam@127 8773 # If the user specified any rpath flags, then add them.
cannam@127 8774 for libdir in $rpath $xrpath; do
cannam@127 8775 # This is the magic to use -rpath.
cannam@127 8776 case "$finalize_rpath " in
cannam@127 8777 *" $libdir "*) ;;
cannam@127 8778 *) func_append finalize_rpath " $libdir" ;;
cannam@127 8779 esac
cannam@127 8780 done
cannam@127 8781 fi
cannam@127 8782
cannam@127 8783 # Now hardcode the library paths
cannam@127 8784 rpath=
cannam@127 8785 hardcode_libdirs=
cannam@127 8786 for libdir in $compile_rpath $finalize_rpath; do
cannam@127 8787 if test -n "$hardcode_libdir_flag_spec"; then
cannam@127 8788 if test -n "$hardcode_libdir_separator"; then
cannam@127 8789 if test -z "$hardcode_libdirs"; then
cannam@127 8790 hardcode_libdirs="$libdir"
cannam@127 8791 else
cannam@127 8792 # Just accumulate the unique libdirs.
cannam@127 8793 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@127 8794 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@127 8795 ;;
cannam@127 8796 *)
cannam@127 8797 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
cannam@127 8798 ;;
cannam@127 8799 esac
cannam@127 8800 fi
cannam@127 8801 else
cannam@127 8802 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@127 8803 func_append rpath " $flag"
cannam@127 8804 fi
cannam@127 8805 elif test -n "$runpath_var"; then
cannam@127 8806 case "$perm_rpath " in
cannam@127 8807 *" $libdir "*) ;;
cannam@127 8808 *) func_append perm_rpath " $libdir" ;;
cannam@127 8809 esac
cannam@127 8810 fi
cannam@127 8811 case $host in
cannam@127 8812 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
cannam@127 8813 testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'`
cannam@127 8814 case :$dllsearchpath: in
cannam@127 8815 *":$libdir:"*) ;;
cannam@127 8816 ::) dllsearchpath=$libdir;;
cannam@127 8817 *) func_append dllsearchpath ":$libdir";;
cannam@127 8818 esac
cannam@127 8819 case :$dllsearchpath: in
cannam@127 8820 *":$testbindir:"*) ;;
cannam@127 8821 ::) dllsearchpath=$testbindir;;
cannam@127 8822 *) func_append dllsearchpath ":$testbindir";;
cannam@127 8823 esac
cannam@127 8824 ;;
cannam@127 8825 esac
cannam@127 8826 done
cannam@127 8827 # Substitute the hardcoded libdirs into the rpath.
cannam@127 8828 if test -n "$hardcode_libdir_separator" &&
cannam@127 8829 test -n "$hardcode_libdirs"; then
cannam@127 8830 libdir="$hardcode_libdirs"
cannam@127 8831 eval rpath=\" $hardcode_libdir_flag_spec\"
cannam@127 8832 fi
cannam@127 8833 compile_rpath="$rpath"
cannam@127 8834
cannam@127 8835 rpath=
cannam@127 8836 hardcode_libdirs=
cannam@127 8837 for libdir in $finalize_rpath; do
cannam@127 8838 if test -n "$hardcode_libdir_flag_spec"; then
cannam@127 8839 if test -n "$hardcode_libdir_separator"; then
cannam@127 8840 if test -z "$hardcode_libdirs"; then
cannam@127 8841 hardcode_libdirs="$libdir"
cannam@127 8842 else
cannam@127 8843 # Just accumulate the unique libdirs.
cannam@127 8844 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@127 8845 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@127 8846 ;;
cannam@127 8847 *)
cannam@127 8848 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
cannam@127 8849 ;;
cannam@127 8850 esac
cannam@127 8851 fi
cannam@127 8852 else
cannam@127 8853 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@127 8854 func_append rpath " $flag"
cannam@127 8855 fi
cannam@127 8856 elif test -n "$runpath_var"; then
cannam@127 8857 case "$finalize_perm_rpath " in
cannam@127 8858 *" $libdir "*) ;;
cannam@127 8859 *) func_append finalize_perm_rpath " $libdir" ;;
cannam@127 8860 esac
cannam@127 8861 fi
cannam@127 8862 done
cannam@127 8863 # Substitute the hardcoded libdirs into the rpath.
cannam@127 8864 if test -n "$hardcode_libdir_separator" &&
cannam@127 8865 test -n "$hardcode_libdirs"; then
cannam@127 8866 libdir="$hardcode_libdirs"
cannam@127 8867 eval rpath=\" $hardcode_libdir_flag_spec\"
cannam@127 8868 fi
cannam@127 8869 finalize_rpath="$rpath"
cannam@127 8870
cannam@127 8871 if test -n "$libobjs" && test "$build_old_libs" = yes; then
cannam@127 8872 # Transform all the library objects into standard objects.
cannam@127 8873 compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@127 8874 finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@127 8875 fi
cannam@127 8876
cannam@127 8877 func_generate_dlsyms "$outputname" "@PROGRAM@" "no"
cannam@127 8878
cannam@127 8879 # template prelinking step
cannam@127 8880 if test -n "$prelink_cmds"; then
cannam@127 8881 func_execute_cmds "$prelink_cmds" 'exit $?'
cannam@127 8882 fi
cannam@127 8883
cannam@127 8884 wrappers_required=yes
cannam@127 8885 case $host in
cannam@127 8886 *cegcc* | *mingw32ce*)
cannam@127 8887 # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway.
cannam@127 8888 wrappers_required=no
cannam@127 8889 ;;
cannam@127 8890 *cygwin* | *mingw* )
cannam@127 8891 if test "$build_libtool_libs" != yes; then
cannam@127 8892 wrappers_required=no
cannam@127 8893 fi
cannam@127 8894 ;;
cannam@127 8895 *)
cannam@127 8896 if test "$need_relink" = no || test "$build_libtool_libs" != yes; then
cannam@127 8897 wrappers_required=no
cannam@127 8898 fi
cannam@127 8899 ;;
cannam@127 8900 esac
cannam@127 8901 if test "$wrappers_required" = no; then
cannam@127 8902 # Replace the output file specification.
cannam@127 8903 compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'`
cannam@127 8904 link_command="$compile_command$compile_rpath"
cannam@127 8905
cannam@127 8906 # We have no uninstalled library dependencies, so finalize right now.
cannam@127 8907 exit_status=0
cannam@127 8908 func_show_eval "$link_command" 'exit_status=$?'
cannam@127 8909
cannam@127 8910 if test -n "$postlink_cmds"; then
cannam@127 8911 func_to_tool_file "$output"
cannam@127 8912 postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'`
cannam@127 8913 func_execute_cmds "$postlink_cmds" 'exit $?'
cannam@127 8914 fi
cannam@127 8915
cannam@127 8916 # Delete the generated files.
cannam@127 8917 if test -f "$output_objdir/${outputname}S.${objext}"; then
cannam@127 8918 func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"'
cannam@127 8919 fi
cannam@127 8920
cannam@127 8921 exit $exit_status
cannam@127 8922 fi
cannam@127 8923
cannam@127 8924 if test -n "$compile_shlibpath$finalize_shlibpath"; then
cannam@127 8925 compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command"
cannam@127 8926 fi
cannam@127 8927 if test -n "$finalize_shlibpath"; then
cannam@127 8928 finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
cannam@127 8929 fi
cannam@127 8930
cannam@127 8931 compile_var=
cannam@127 8932 finalize_var=
cannam@127 8933 if test -n "$runpath_var"; then
cannam@127 8934 if test -n "$perm_rpath"; then
cannam@127 8935 # We should set the runpath_var.
cannam@127 8936 rpath=
cannam@127 8937 for dir in $perm_rpath; do
cannam@127 8938 func_append rpath "$dir:"
cannam@127 8939 done
cannam@127 8940 compile_var="$runpath_var=\"$rpath\$$runpath_var\" "
cannam@127 8941 fi
cannam@127 8942 if test -n "$finalize_perm_rpath"; then
cannam@127 8943 # We should set the runpath_var.
cannam@127 8944 rpath=
cannam@127 8945 for dir in $finalize_perm_rpath; do
cannam@127 8946 func_append rpath "$dir:"
cannam@127 8947 done
cannam@127 8948 finalize_var="$runpath_var=\"$rpath\$$runpath_var\" "
cannam@127 8949 fi
cannam@127 8950 fi
cannam@127 8951
cannam@127 8952 if test "$no_install" = yes; then
cannam@127 8953 # We don't need to create a wrapper script.
cannam@127 8954 link_command="$compile_var$compile_command$compile_rpath"
cannam@127 8955 # Replace the output file specification.
cannam@127 8956 link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'`
cannam@127 8957 # Delete the old output file.
cannam@127 8958 $opt_dry_run || $RM $output
cannam@127 8959 # Link the executable and exit
cannam@127 8960 func_show_eval "$link_command" 'exit $?'
cannam@127 8961
cannam@127 8962 if test -n "$postlink_cmds"; then
cannam@127 8963 func_to_tool_file "$output"
cannam@127 8964 postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'`
cannam@127 8965 func_execute_cmds "$postlink_cmds" 'exit $?'
cannam@127 8966 fi
cannam@127 8967
cannam@127 8968 exit $EXIT_SUCCESS
cannam@127 8969 fi
cannam@127 8970
cannam@127 8971 if test "$hardcode_action" = relink; then
cannam@127 8972 # Fast installation is not supported
cannam@127 8973 link_command="$compile_var$compile_command$compile_rpath"
cannam@127 8974 relink_command="$finalize_var$finalize_command$finalize_rpath"
cannam@127 8975
cannam@127 8976 func_warning "this platform does not like uninstalled shared libraries"
cannam@127 8977 func_warning "\`$output' will be relinked during installation"
cannam@127 8978 else
cannam@127 8979 if test "$fast_install" != no; then
cannam@127 8980 link_command="$finalize_var$compile_command$finalize_rpath"
cannam@127 8981 if test "$fast_install" = yes; then
cannam@127 8982 relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'`
cannam@127 8983 else
cannam@127 8984 # fast_install is set to needless
cannam@127 8985 relink_command=
cannam@127 8986 fi
cannam@127 8987 else
cannam@127 8988 link_command="$compile_var$compile_command$compile_rpath"
cannam@127 8989 relink_command="$finalize_var$finalize_command$finalize_rpath"
cannam@127 8990 fi
cannam@127 8991 fi
cannam@127 8992
cannam@127 8993 # Replace the output file specification.
cannam@127 8994 link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
cannam@127 8995
cannam@127 8996 # Delete the old output files.
cannam@127 8997 $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname
cannam@127 8998
cannam@127 8999 func_show_eval "$link_command" 'exit $?'
cannam@127 9000
cannam@127 9001 if test -n "$postlink_cmds"; then
cannam@127 9002 func_to_tool_file "$output_objdir/$outputname"
cannam@127 9003 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@127 9004 func_execute_cmds "$postlink_cmds" 'exit $?'
cannam@127 9005 fi
cannam@127 9006
cannam@127 9007 # Now create the wrapper script.
cannam@127 9008 func_verbose "creating $output"
cannam@127 9009
cannam@127 9010 # Quote the relink command for shipping.
cannam@127 9011 if test -n "$relink_command"; then
cannam@127 9012 # Preserve any variables that may affect compiler behavior
cannam@127 9013 for var in $variables_saved_for_relink; do
cannam@127 9014 if eval test -z \"\${$var+set}\"; then
cannam@127 9015 relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
cannam@127 9016 elif eval var_value=\$$var; test -z "$var_value"; then
cannam@127 9017 relink_command="$var=; export $var; $relink_command"
cannam@127 9018 else
cannam@127 9019 func_quote_for_eval "$var_value"
cannam@127 9020 relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
cannam@127 9021 fi
cannam@127 9022 done
cannam@127 9023 relink_command="(cd `pwd`; $relink_command)"
cannam@127 9024 relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"`
cannam@127 9025 fi
cannam@127 9026
cannam@127 9027 # Only actually do things if not in dry run mode.
cannam@127 9028 $opt_dry_run || {
cannam@127 9029 # win32 will think the script is a binary if it has
cannam@127 9030 # a .exe suffix, so we strip it off here.
cannam@127 9031 case $output in
cannam@127 9032 *.exe) func_stripname '' '.exe' "$output"
cannam@127 9033 output=$func_stripname_result ;;
cannam@127 9034 esac
cannam@127 9035 # test for cygwin because mv fails w/o .exe extensions
cannam@127 9036 case $host in
cannam@127 9037 *cygwin*)
cannam@127 9038 exeext=.exe
cannam@127 9039 func_stripname '' '.exe' "$outputname"
cannam@127 9040 outputname=$func_stripname_result ;;
cannam@127 9041 *) exeext= ;;
cannam@127 9042 esac
cannam@127 9043 case $host in
cannam@127 9044 *cygwin* | *mingw* )
cannam@127 9045 func_dirname_and_basename "$output" "" "."
cannam@127 9046 output_name=$func_basename_result
cannam@127 9047 output_path=$func_dirname_result
cannam@127 9048 cwrappersource="$output_path/$objdir/lt-$output_name.c"
cannam@127 9049 cwrapper="$output_path/$output_name.exe"
cannam@127 9050 $RM $cwrappersource $cwrapper
cannam@127 9051 trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
cannam@127 9052
cannam@127 9053 func_emit_cwrapperexe_src > $cwrappersource
cannam@127 9054
cannam@127 9055 # The wrapper executable is built using the $host compiler,
cannam@127 9056 # because it contains $host paths and files. If cross-
cannam@127 9057 # compiling, it, like the target executable, must be
cannam@127 9058 # executed on the $host or under an emulation environment.
cannam@127 9059 $opt_dry_run || {
cannam@127 9060 $LTCC $LTCFLAGS -o $cwrapper $cwrappersource
cannam@127 9061 $STRIP $cwrapper
cannam@127 9062 }
cannam@127 9063
cannam@127 9064 # Now, create the wrapper script for func_source use:
cannam@127 9065 func_ltwrapper_scriptname $cwrapper
cannam@127 9066 $RM $func_ltwrapper_scriptname_result
cannam@127 9067 trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15
cannam@127 9068 $opt_dry_run || {
cannam@127 9069 # note: this script will not be executed, so do not chmod.
cannam@127 9070 if test "x$build" = "x$host" ; then
cannam@127 9071 $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result
cannam@127 9072 else
cannam@127 9073 func_emit_wrapper no > $func_ltwrapper_scriptname_result
cannam@127 9074 fi
cannam@127 9075 }
cannam@127 9076 ;;
cannam@127 9077 * )
cannam@127 9078 $RM $output
cannam@127 9079 trap "$RM $output; exit $EXIT_FAILURE" 1 2 15
cannam@127 9080
cannam@127 9081 func_emit_wrapper no > $output
cannam@127 9082 chmod +x $output
cannam@127 9083 ;;
cannam@127 9084 esac
cannam@127 9085 }
cannam@127 9086 exit $EXIT_SUCCESS
cannam@127 9087 ;;
cannam@127 9088 esac
cannam@127 9089
cannam@127 9090 # See if we need to build an old-fashioned archive.
cannam@127 9091 for oldlib in $oldlibs; do
cannam@127 9092
cannam@127 9093 if test "$build_libtool_libs" = convenience; then
cannam@127 9094 oldobjs="$libobjs_save $symfileobj"
cannam@127 9095 addlibs="$convenience"
cannam@127 9096 build_libtool_libs=no
cannam@127 9097 else
cannam@127 9098 if test "$build_libtool_libs" = module; then
cannam@127 9099 oldobjs="$libobjs_save"
cannam@127 9100 build_libtool_libs=no
cannam@127 9101 else
cannam@127 9102 oldobjs="$old_deplibs $non_pic_objects"
cannam@127 9103 if test "$preload" = yes && test -f "$symfileobj"; then
cannam@127 9104 func_append oldobjs " $symfileobj"
cannam@127 9105 fi
cannam@127 9106 fi
cannam@127 9107 addlibs="$old_convenience"
cannam@127 9108 fi
cannam@127 9109
cannam@127 9110 if test -n "$addlibs"; then
cannam@127 9111 gentop="$output_objdir/${outputname}x"
cannam@127 9112 func_append generated " $gentop"
cannam@127 9113
cannam@127 9114 func_extract_archives $gentop $addlibs
cannam@127 9115 func_append oldobjs " $func_extract_archives_result"
cannam@127 9116 fi
cannam@127 9117
cannam@127 9118 # Do each command in the archive commands.
cannam@127 9119 if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
cannam@127 9120 cmds=$old_archive_from_new_cmds
cannam@127 9121 else
cannam@127 9122
cannam@127 9123 # Add any objects from preloaded convenience libraries
cannam@127 9124 if test -n "$dlprefiles"; then
cannam@127 9125 gentop="$output_objdir/${outputname}x"
cannam@127 9126 func_append generated " $gentop"
cannam@127 9127
cannam@127 9128 func_extract_archives $gentop $dlprefiles
cannam@127 9129 func_append oldobjs " $func_extract_archives_result"
cannam@127 9130 fi
cannam@127 9131
cannam@127 9132 # POSIX demands no paths to be encoded in archives. We have
cannam@127 9133 # to avoid creating archives with duplicate basenames if we
cannam@127 9134 # might have to extract them afterwards, e.g., when creating a
cannam@127 9135 # static archive out of a convenience library, or when linking
cannam@127 9136 # the entirety of a libtool archive into another (currently
cannam@127 9137 # not supported by libtool).
cannam@127 9138 if (for obj in $oldobjs
cannam@127 9139 do
cannam@127 9140 func_basename "$obj"
cannam@127 9141 $ECHO "$func_basename_result"
cannam@127 9142 done | sort | sort -uc >/dev/null 2>&1); then
cannam@127 9143 :
cannam@127 9144 else
cannam@127 9145 echo "copying selected object files to avoid basename conflicts..."
cannam@127 9146 gentop="$output_objdir/${outputname}x"
cannam@127 9147 func_append generated " $gentop"
cannam@127 9148 func_mkdir_p "$gentop"
cannam@127 9149 save_oldobjs=$oldobjs
cannam@127 9150 oldobjs=
cannam@127 9151 counter=1
cannam@127 9152 for obj in $save_oldobjs
cannam@127 9153 do
cannam@127 9154 func_basename "$obj"
cannam@127 9155 objbase="$func_basename_result"
cannam@127 9156 case " $oldobjs " in
cannam@127 9157 " ") oldobjs=$obj ;;
cannam@127 9158 *[\ /]"$objbase "*)
cannam@127 9159 while :; do
cannam@127 9160 # Make sure we don't pick an alternate name that also
cannam@127 9161 # overlaps.
cannam@127 9162 newobj=lt$counter-$objbase
cannam@127 9163 func_arith $counter + 1
cannam@127 9164 counter=$func_arith_result
cannam@127 9165 case " $oldobjs " in
cannam@127 9166 *[\ /]"$newobj "*) ;;
cannam@127 9167 *) if test ! -f "$gentop/$newobj"; then break; fi ;;
cannam@127 9168 esac
cannam@127 9169 done
cannam@127 9170 func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj"
cannam@127 9171 func_append oldobjs " $gentop/$newobj"
cannam@127 9172 ;;
cannam@127 9173 *) func_append oldobjs " $obj" ;;
cannam@127 9174 esac
cannam@127 9175 done
cannam@127 9176 fi
cannam@127 9177 func_to_tool_file "$oldlib" func_convert_file_msys_to_w32
cannam@127 9178 tool_oldlib=$func_to_tool_file_result
cannam@127 9179 eval cmds=\"$old_archive_cmds\"
cannam@127 9180
cannam@127 9181 func_len " $cmds"
cannam@127 9182 len=$func_len_result
cannam@127 9183 if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
cannam@127 9184 cmds=$old_archive_cmds
cannam@127 9185 elif test -n "$archiver_list_spec"; then
cannam@127 9186 func_verbose "using command file archive linking..."
cannam@127 9187 for obj in $oldobjs
cannam@127 9188 do
cannam@127 9189 func_to_tool_file "$obj"
cannam@127 9190 $ECHO "$func_to_tool_file_result"
cannam@127 9191 done > $output_objdir/$libname.libcmd
cannam@127 9192 func_to_tool_file "$output_objdir/$libname.libcmd"
cannam@127 9193 oldobjs=" $archiver_list_spec$func_to_tool_file_result"
cannam@127 9194 cmds=$old_archive_cmds
cannam@127 9195 else
cannam@127 9196 # the command line is too long to link in one step, link in parts
cannam@127 9197 func_verbose "using piecewise archive linking..."
cannam@127 9198 save_RANLIB=$RANLIB
cannam@127 9199 RANLIB=:
cannam@127 9200 objlist=
cannam@127 9201 concat_cmds=
cannam@127 9202 save_oldobjs=$oldobjs
cannam@127 9203 oldobjs=
cannam@127 9204 # Is there a better way of finding the last object in the list?
cannam@127 9205 for obj in $save_oldobjs
cannam@127 9206 do
cannam@127 9207 last_oldobj=$obj
cannam@127 9208 done
cannam@127 9209 eval test_cmds=\"$old_archive_cmds\"
cannam@127 9210 func_len " $test_cmds"
cannam@127 9211 len0=$func_len_result
cannam@127 9212 len=$len0
cannam@127 9213 for obj in $save_oldobjs
cannam@127 9214 do
cannam@127 9215 func_len " $obj"
cannam@127 9216 func_arith $len + $func_len_result
cannam@127 9217 len=$func_arith_result
cannam@127 9218 func_append objlist " $obj"
cannam@127 9219 if test "$len" -lt "$max_cmd_len"; then
cannam@127 9220 :
cannam@127 9221 else
cannam@127 9222 # the above command should be used before it gets too long
cannam@127 9223 oldobjs=$objlist
cannam@127 9224 if test "$obj" = "$last_oldobj" ; then
cannam@127 9225 RANLIB=$save_RANLIB
cannam@127 9226 fi
cannam@127 9227 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
cannam@127 9228 eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\"
cannam@127 9229 objlist=
cannam@127 9230 len=$len0
cannam@127 9231 fi
cannam@127 9232 done
cannam@127 9233 RANLIB=$save_RANLIB
cannam@127 9234 oldobjs=$objlist
cannam@127 9235 if test "X$oldobjs" = "X" ; then
cannam@127 9236 eval cmds=\"\$concat_cmds\"
cannam@127 9237 else
cannam@127 9238 eval cmds=\"\$concat_cmds~\$old_archive_cmds\"
cannam@127 9239 fi
cannam@127 9240 fi
cannam@127 9241 fi
cannam@127 9242 func_execute_cmds "$cmds" 'exit $?'
cannam@127 9243 done
cannam@127 9244
cannam@127 9245 test -n "$generated" && \
cannam@127 9246 func_show_eval "${RM}r$generated"
cannam@127 9247
cannam@127 9248 # Now create the libtool archive.
cannam@127 9249 case $output in
cannam@127 9250 *.la)
cannam@127 9251 old_library=
cannam@127 9252 test "$build_old_libs" = yes && old_library="$libname.$libext"
cannam@127 9253 func_verbose "creating $output"
cannam@127 9254
cannam@127 9255 # Preserve any variables that may affect compiler behavior
cannam@127 9256 for var in $variables_saved_for_relink; do
cannam@127 9257 if eval test -z \"\${$var+set}\"; then
cannam@127 9258 relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
cannam@127 9259 elif eval var_value=\$$var; test -z "$var_value"; then
cannam@127 9260 relink_command="$var=; export $var; $relink_command"
cannam@127 9261 else
cannam@127 9262 func_quote_for_eval "$var_value"
cannam@127 9263 relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
cannam@127 9264 fi
cannam@127 9265 done
cannam@127 9266 # Quote the link command for shipping.
cannam@127 9267 relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
cannam@127 9268 relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"`
cannam@127 9269 if test "$hardcode_automatic" = yes ; then
cannam@127 9270 relink_command=
cannam@127 9271 fi
cannam@127 9272
cannam@127 9273 # Only create the output if not a dry run.
cannam@127 9274 $opt_dry_run || {
cannam@127 9275 for installed in no yes; do
cannam@127 9276 if test "$installed" = yes; then
cannam@127 9277 if test -z "$install_libdir"; then
cannam@127 9278 break
cannam@127 9279 fi
cannam@127 9280 output="$output_objdir/$outputname"i
cannam@127 9281 # Replace all uninstalled libtool libraries with the installed ones
cannam@127 9282 newdependency_libs=
cannam@127 9283 for deplib in $dependency_libs; do
cannam@127 9284 case $deplib in
cannam@127 9285 *.la)
cannam@127 9286 func_basename "$deplib"
cannam@127 9287 name="$func_basename_result"
cannam@127 9288 func_resolve_sysroot "$deplib"
cannam@127 9289 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result`
cannam@127 9290 test -z "$libdir" && \
cannam@127 9291 func_fatal_error "\`$deplib' is not a valid libtool archive"
cannam@127 9292 func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name"
cannam@127 9293 ;;
cannam@127 9294 -L*)
cannam@127 9295 func_stripname -L '' "$deplib"
cannam@127 9296 func_replace_sysroot "$func_stripname_result"
cannam@127 9297 func_append newdependency_libs " -L$func_replace_sysroot_result"
cannam@127 9298 ;;
cannam@127 9299 -R*)
cannam@127 9300 func_stripname -R '' "$deplib"
cannam@127 9301 func_replace_sysroot "$func_stripname_result"
cannam@127 9302 func_append newdependency_libs " -R$func_replace_sysroot_result"
cannam@127 9303 ;;
cannam@127 9304 *) func_append newdependency_libs " $deplib" ;;
cannam@127 9305 esac
cannam@127 9306 done
cannam@127 9307 dependency_libs="$newdependency_libs"
cannam@127 9308 newdlfiles=
cannam@127 9309
cannam@127 9310 for lib in $dlfiles; do
cannam@127 9311 case $lib in
cannam@127 9312 *.la)
cannam@127 9313 func_basename "$lib"
cannam@127 9314 name="$func_basename_result"
cannam@127 9315 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
cannam@127 9316 test -z "$libdir" && \
cannam@127 9317 func_fatal_error "\`$lib' is not a valid libtool archive"
cannam@127 9318 func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name"
cannam@127 9319 ;;
cannam@127 9320 *) func_append newdlfiles " $lib" ;;
cannam@127 9321 esac
cannam@127 9322 done
cannam@127 9323 dlfiles="$newdlfiles"
cannam@127 9324 newdlprefiles=
cannam@127 9325 for lib in $dlprefiles; do
cannam@127 9326 case $lib in
cannam@127 9327 *.la)
cannam@127 9328 # Only pass preopened files to the pseudo-archive (for
cannam@127 9329 # eventual linking with the app. that links it) if we
cannam@127 9330 # didn't already link the preopened objects directly into
cannam@127 9331 # the library:
cannam@127 9332 func_basename "$lib"
cannam@127 9333 name="$func_basename_result"
cannam@127 9334 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
cannam@127 9335 test -z "$libdir" && \
cannam@127 9336 func_fatal_error "\`$lib' is not a valid libtool archive"
cannam@127 9337 func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name"
cannam@127 9338 ;;
cannam@127 9339 esac
cannam@127 9340 done
cannam@127 9341 dlprefiles="$newdlprefiles"
cannam@127 9342 else
cannam@127 9343 newdlfiles=
cannam@127 9344 for lib in $dlfiles; do
cannam@127 9345 case $lib in
cannam@127 9346 [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
cannam@127 9347 *) abs=`pwd`"/$lib" ;;
cannam@127 9348 esac
cannam@127 9349 func_append newdlfiles " $abs"
cannam@127 9350 done
cannam@127 9351 dlfiles="$newdlfiles"
cannam@127 9352 newdlprefiles=
cannam@127 9353 for lib in $dlprefiles; do
cannam@127 9354 case $lib in
cannam@127 9355 [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
cannam@127 9356 *) abs=`pwd`"/$lib" ;;
cannam@127 9357 esac
cannam@127 9358 func_append newdlprefiles " $abs"
cannam@127 9359 done
cannam@127 9360 dlprefiles="$newdlprefiles"
cannam@127 9361 fi
cannam@127 9362 $RM $output
cannam@127 9363 # place dlname in correct position for cygwin
cannam@127 9364 # In fact, it would be nice if we could use this code for all target
cannam@127 9365 # systems that can't hard-code library paths into their executables
cannam@127 9366 # and that have no shared library path variable independent of PATH,
cannam@127 9367 # but it turns out we can't easily determine that from inspecting
cannam@127 9368 # libtool variables, so we have to hard-code the OSs to which it
cannam@127 9369 # applies here; at the moment, that means platforms that use the PE
cannam@127 9370 # object format with DLL files. See the long comment at the top of
cannam@127 9371 # tests/bindir.at for full details.
cannam@127 9372 tdlname=$dlname
cannam@127 9373 case $host,$output,$installed,$module,$dlname in
cannam@127 9374 *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll)
cannam@127 9375 # If a -bindir argument was supplied, place the dll there.
cannam@127 9376 if test "x$bindir" != x ;
cannam@127 9377 then
cannam@127 9378 func_relative_path "$install_libdir" "$bindir"
cannam@127 9379 tdlname=$func_relative_path_result$dlname
cannam@127 9380 else
cannam@127 9381 # Otherwise fall back on heuristic.
cannam@127 9382 tdlname=../bin/$dlname
cannam@127 9383 fi
cannam@127 9384 ;;
cannam@127 9385 esac
cannam@127 9386 $ECHO > $output "\
cannam@127 9387 # $outputname - a libtool library file
cannam@127 9388 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@127 9389 #
cannam@127 9390 # Please DO NOT delete this file!
cannam@127 9391 # It is necessary for linking the library.
cannam@127 9392
cannam@127 9393 # The name that we can dlopen(3).
cannam@127 9394 dlname='$tdlname'
cannam@127 9395
cannam@127 9396 # Names of this library.
cannam@127 9397 library_names='$library_names'
cannam@127 9398
cannam@127 9399 # The name of the static archive.
cannam@127 9400 old_library='$old_library'
cannam@127 9401
cannam@127 9402 # Linker flags that can not go in dependency_libs.
cannam@127 9403 inherited_linker_flags='$new_inherited_linker_flags'
cannam@127 9404
cannam@127 9405 # Libraries that this one depends upon.
cannam@127 9406 dependency_libs='$dependency_libs'
cannam@127 9407
cannam@127 9408 # Names of additional weak libraries provided by this library
cannam@127 9409 weak_library_names='$weak_libs'
cannam@127 9410
cannam@127 9411 # Version information for $libname.
cannam@127 9412 current=$current
cannam@127 9413 age=$age
cannam@127 9414 revision=$revision
cannam@127 9415
cannam@127 9416 # Is this an already installed library?
cannam@127 9417 installed=$installed
cannam@127 9418
cannam@127 9419 # Should we warn about portability when linking against -modules?
cannam@127 9420 shouldnotlink=$module
cannam@127 9421
cannam@127 9422 # Files to dlopen/dlpreopen
cannam@127 9423 dlopen='$dlfiles'
cannam@127 9424 dlpreopen='$dlprefiles'
cannam@127 9425
cannam@127 9426 # Directory that this library needs to be installed in:
cannam@127 9427 libdir='$install_libdir'"
cannam@127 9428 if test "$installed" = no && test "$need_relink" = yes; then
cannam@127 9429 $ECHO >> $output "\
cannam@127 9430 relink_command=\"$relink_command\""
cannam@127 9431 fi
cannam@127 9432 done
cannam@127 9433 }
cannam@127 9434
cannam@127 9435 # Do a symbolic link so that the libtool archive can be found in
cannam@127 9436 # LD_LIBRARY_PATH before the program is installed.
cannam@127 9437 func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?'
cannam@127 9438 ;;
cannam@127 9439 esac
cannam@127 9440 exit $EXIT_SUCCESS
cannam@127 9441 }
cannam@127 9442
cannam@127 9443 { test "$opt_mode" = link || test "$opt_mode" = relink; } &&
cannam@127 9444 func_mode_link ${1+"$@"}
cannam@127 9445
cannam@127 9446
cannam@127 9447 # func_mode_uninstall arg...
cannam@127 9448 func_mode_uninstall ()
cannam@127 9449 {
cannam@127 9450 $opt_debug
cannam@127 9451 RM="$nonopt"
cannam@127 9452 files=
cannam@127 9453 rmforce=
cannam@127 9454 exit_status=0
cannam@127 9455
cannam@127 9456 # This variable tells wrapper scripts just to set variables rather
cannam@127 9457 # than running their programs.
cannam@127 9458 libtool_install_magic="$magic"
cannam@127 9459
cannam@127 9460 for arg
cannam@127 9461 do
cannam@127 9462 case $arg in
cannam@127 9463 -f) func_append RM " $arg"; rmforce=yes ;;
cannam@127 9464 -*) func_append RM " $arg" ;;
cannam@127 9465 *) func_append files " $arg" ;;
cannam@127 9466 esac
cannam@127 9467 done
cannam@127 9468
cannam@127 9469 test -z "$RM" && \
cannam@127 9470 func_fatal_help "you must specify an RM program"
cannam@127 9471
cannam@127 9472 rmdirs=
cannam@127 9473
cannam@127 9474 for file in $files; do
cannam@127 9475 func_dirname "$file" "" "."
cannam@127 9476 dir="$func_dirname_result"
cannam@127 9477 if test "X$dir" = X.; then
cannam@127 9478 odir="$objdir"
cannam@127 9479 else
cannam@127 9480 odir="$dir/$objdir"
cannam@127 9481 fi
cannam@127 9482 func_basename "$file"
cannam@127 9483 name="$func_basename_result"
cannam@127 9484 test "$opt_mode" = uninstall && odir="$dir"
cannam@127 9485
cannam@127 9486 # Remember odir for removal later, being careful to avoid duplicates
cannam@127 9487 if test "$opt_mode" = clean; then
cannam@127 9488 case " $rmdirs " in
cannam@127 9489 *" $odir "*) ;;
cannam@127 9490 *) func_append rmdirs " $odir" ;;
cannam@127 9491 esac
cannam@127 9492 fi
cannam@127 9493
cannam@127 9494 # Don't error if the file doesn't exist and rm -f was used.
cannam@127 9495 if { test -L "$file"; } >/dev/null 2>&1 ||
cannam@127 9496 { test -h "$file"; } >/dev/null 2>&1 ||
cannam@127 9497 test -f "$file"; then
cannam@127 9498 :
cannam@127 9499 elif test -d "$file"; then
cannam@127 9500 exit_status=1
cannam@127 9501 continue
cannam@127 9502 elif test "$rmforce" = yes; then
cannam@127 9503 continue
cannam@127 9504 fi
cannam@127 9505
cannam@127 9506 rmfiles="$file"
cannam@127 9507
cannam@127 9508 case $name in
cannam@127 9509 *.la)
cannam@127 9510 # Possibly a libtool archive, so verify it.
cannam@127 9511 if func_lalib_p "$file"; then
cannam@127 9512 func_source $dir/$name
cannam@127 9513
cannam@127 9514 # Delete the libtool libraries and symlinks.
cannam@127 9515 for n in $library_names; do
cannam@127 9516 func_append rmfiles " $odir/$n"
cannam@127 9517 done
cannam@127 9518 test -n "$old_library" && func_append rmfiles " $odir/$old_library"
cannam@127 9519
cannam@127 9520 case "$opt_mode" in
cannam@127 9521 clean)
cannam@127 9522 case " $library_names " in
cannam@127 9523 *" $dlname "*) ;;
cannam@127 9524 *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;;
cannam@127 9525 esac
cannam@127 9526 test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i"
cannam@127 9527 ;;
cannam@127 9528 uninstall)
cannam@127 9529 if test -n "$library_names"; then
cannam@127 9530 # Do each command in the postuninstall commands.
cannam@127 9531 func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
cannam@127 9532 fi
cannam@127 9533
cannam@127 9534 if test -n "$old_library"; then
cannam@127 9535 # Do each command in the old_postuninstall commands.
cannam@127 9536 func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
cannam@127 9537 fi
cannam@127 9538 # FIXME: should reinstall the best remaining shared library.
cannam@127 9539 ;;
cannam@127 9540 esac
cannam@127 9541 fi
cannam@127 9542 ;;
cannam@127 9543
cannam@127 9544 *.lo)
cannam@127 9545 # Possibly a libtool object, so verify it.
cannam@127 9546 if func_lalib_p "$file"; then
cannam@127 9547
cannam@127 9548 # Read the .lo file
cannam@127 9549 func_source $dir/$name
cannam@127 9550
cannam@127 9551 # Add PIC object to the list of files to remove.
cannam@127 9552 if test -n "$pic_object" &&
cannam@127 9553 test "$pic_object" != none; then
cannam@127 9554 func_append rmfiles " $dir/$pic_object"
cannam@127 9555 fi
cannam@127 9556
cannam@127 9557 # Add non-PIC object to the list of files to remove.
cannam@127 9558 if test -n "$non_pic_object" &&
cannam@127 9559 test "$non_pic_object" != none; then
cannam@127 9560 func_append rmfiles " $dir/$non_pic_object"
cannam@127 9561 fi
cannam@127 9562 fi
cannam@127 9563 ;;
cannam@127 9564
cannam@127 9565 *)
cannam@127 9566 if test "$opt_mode" = clean ; then
cannam@127 9567 noexename=$name
cannam@127 9568 case $file in
cannam@127 9569 *.exe)
cannam@127 9570 func_stripname '' '.exe' "$file"
cannam@127 9571 file=$func_stripname_result
cannam@127 9572 func_stripname '' '.exe' "$name"
cannam@127 9573 noexename=$func_stripname_result
cannam@127 9574 # $file with .exe has already been added to rmfiles,
cannam@127 9575 # add $file without .exe
cannam@127 9576 func_append rmfiles " $file"
cannam@127 9577 ;;
cannam@127 9578 esac
cannam@127 9579 # Do a test to see if this is a libtool program.
cannam@127 9580 if func_ltwrapper_p "$file"; then
cannam@127 9581 if func_ltwrapper_executable_p "$file"; then
cannam@127 9582 func_ltwrapper_scriptname "$file"
cannam@127 9583 relink_command=
cannam@127 9584 func_source $func_ltwrapper_scriptname_result
cannam@127 9585 func_append rmfiles " $func_ltwrapper_scriptname_result"
cannam@127 9586 else
cannam@127 9587 relink_command=
cannam@127 9588 func_source $dir/$noexename
cannam@127 9589 fi
cannam@127 9590
cannam@127 9591 # note $name still contains .exe if it was in $file originally
cannam@127 9592 # as does the version of $file that was added into $rmfiles
cannam@127 9593 func_append rmfiles " $odir/$name $odir/${name}S.${objext}"
cannam@127 9594 if test "$fast_install" = yes && test -n "$relink_command"; then
cannam@127 9595 func_append rmfiles " $odir/lt-$name"
cannam@127 9596 fi
cannam@127 9597 if test "X$noexename" != "X$name" ; then
cannam@127 9598 func_append rmfiles " $odir/lt-${noexename}.c"
cannam@127 9599 fi
cannam@127 9600 fi
cannam@127 9601 fi
cannam@127 9602 ;;
cannam@127 9603 esac
cannam@127 9604 func_show_eval "$RM $rmfiles" 'exit_status=1'
cannam@127 9605 done
cannam@127 9606
cannam@127 9607 # Try to remove the ${objdir}s in the directories where we deleted files
cannam@127 9608 for dir in $rmdirs; do
cannam@127 9609 if test -d "$dir"; then
cannam@127 9610 func_show_eval "rmdir $dir >/dev/null 2>&1"
cannam@127 9611 fi
cannam@127 9612 done
cannam@127 9613
cannam@127 9614 exit $exit_status
cannam@127 9615 }
cannam@127 9616
cannam@127 9617 { test "$opt_mode" = uninstall || test "$opt_mode" = clean; } &&
cannam@127 9618 func_mode_uninstall ${1+"$@"}
cannam@127 9619
cannam@127 9620 test -z "$opt_mode" && {
cannam@127 9621 help="$generic_help"
cannam@127 9622 func_fatal_help "you must specify a MODE"
cannam@127 9623 }
cannam@127 9624
cannam@127 9625 test -z "$exec_cmd" && \
cannam@127 9626 func_fatal_help "invalid operation mode \`$opt_mode'"
cannam@127 9627
cannam@127 9628 if test -n "$exec_cmd"; then
cannam@127 9629 eval exec "$exec_cmd"
cannam@127 9630 exit $EXIT_FAILURE
cannam@127 9631 fi
cannam@127 9632
cannam@127 9633 exit $exit_status
cannam@127 9634
cannam@127 9635
cannam@127 9636 # The TAGs below are defined such that we never get into a situation
cannam@127 9637 # in which we disable both kinds of libraries. Given conflicting
cannam@127 9638 # choices, we go for a static library, that is the most portable,
cannam@127 9639 # since we can't tell whether shared libraries were disabled because
cannam@127 9640 # the user asked for that or because the platform doesn't support
cannam@127 9641 # them. This is particularly important on AIX, because we don't
cannam@127 9642 # support having both static and shared libraries enabled at the same
cannam@127 9643 # time on that platform, so we default to a shared-only configuration.
cannam@127 9644 # If a disable-shared tag is given, we'll fallback to a static-only
cannam@127 9645 # configuration. But we'll never go from static-only to shared-only.
cannam@127 9646
cannam@127 9647 # ### BEGIN LIBTOOL TAG CONFIG: disable-shared
cannam@127 9648 build_libtool_libs=no
cannam@127 9649 build_old_libs=yes
cannam@127 9650 # ### END LIBTOOL TAG CONFIG: disable-shared
cannam@127 9651
cannam@127 9652 # ### BEGIN LIBTOOL TAG CONFIG: disable-static
cannam@127 9653 build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`
cannam@127 9654 # ### END LIBTOOL TAG CONFIG: disable-static
cannam@127 9655
cannam@127 9656 # Local Variables:
cannam@127 9657 # mode:shell-script
cannam@127 9658 # sh-indentation:2
cannam@127 9659 # End:
cannam@127 9660 # vi:sw=2
cannam@127 9661