annotate src/fftw-3.3.3/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 89f5e221ed7b
children
rev   line source
cannam@95 1
cannam@95 2 # libtool (GNU libtool) 2.4.2
cannam@95 3 # Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
cannam@95 4
cannam@95 5 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006,
cannam@95 6 # 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
cannam@95 7 # This is free software; see the source for copying conditions. There is NO
cannam@95 8 # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
cannam@95 9
cannam@95 10 # GNU Libtool is free software; you can redistribute it and/or modify
cannam@95 11 # it under the terms of the GNU General Public License as published by
cannam@95 12 # the Free Software Foundation; either version 2 of the License, or
cannam@95 13 # (at your option) any later version.
cannam@95 14 #
cannam@95 15 # As a special exception to the GNU General Public License,
cannam@95 16 # if you distribute this file as part of a program or library that
cannam@95 17 # is built using GNU Libtool, you may include this file under the
cannam@95 18 # same distribution terms that you use for the rest of that program.
cannam@95 19 #
cannam@95 20 # GNU Libtool is distributed in the hope that it will be useful, but
cannam@95 21 # WITHOUT ANY WARRANTY; without even the implied warranty of
cannam@95 22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
cannam@95 23 # General Public License for more details.
cannam@95 24 #
cannam@95 25 # You should have received a copy of the GNU General Public License
cannam@95 26 # along with GNU Libtool; see the file COPYING. If not, a copy
cannam@95 27 # can be downloaded from http://www.gnu.org/licenses/gpl.html,
cannam@95 28 # or obtained by writing to the Free Software Foundation, Inc.,
cannam@95 29 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
cannam@95 30
cannam@95 31 # Usage: $progname [OPTION]... [MODE-ARG]...
cannam@95 32 #
cannam@95 33 # Provide generalized library-building support services.
cannam@95 34 #
cannam@95 35 # --config show all configuration variables
cannam@95 36 # --debug enable verbose shell tracing
cannam@95 37 # -n, --dry-run display commands without modifying any files
cannam@95 38 # --features display basic configuration information and exit
cannam@95 39 # --mode=MODE use operation mode MODE
cannam@95 40 # --preserve-dup-deps don't remove duplicate dependency libraries
cannam@95 41 # --quiet, --silent don't print informational messages
cannam@95 42 # --no-quiet, --no-silent
cannam@95 43 # print informational messages (default)
cannam@95 44 # --no-warn don't display warning messages
cannam@95 45 # --tag=TAG use configuration variables from tag TAG
cannam@95 46 # -v, --verbose print more informational messages than default
cannam@95 47 # --no-verbose don't print the extra informational messages
cannam@95 48 # --version print version information
cannam@95 49 # -h, --help, --help-all print short, long, or detailed help message
cannam@95 50 #
cannam@95 51 # MODE must be one of the following:
cannam@95 52 #
cannam@95 53 # clean remove files from the build directory
cannam@95 54 # compile compile a source file into a libtool object
cannam@95 55 # execute automatically set library path, then run a program
cannam@95 56 # finish complete the installation of libtool libraries
cannam@95 57 # install install libraries or executables
cannam@95 58 # link create a library or an executable
cannam@95 59 # uninstall remove libraries from an installed directory
cannam@95 60 #
cannam@95 61 # MODE-ARGS vary depending on the MODE. When passed as first option,
cannam@95 62 # `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that.
cannam@95 63 # Try `$progname --help --mode=MODE' for a more detailed description of MODE.
cannam@95 64 #
cannam@95 65 # When reporting a bug, please describe a test case to reproduce it and
cannam@95 66 # include the following information:
cannam@95 67 #
cannam@95 68 # host-triplet: $host
cannam@95 69 # shell: $SHELL
cannam@95 70 # compiler: $LTCC
cannam@95 71 # compiler flags: $LTCFLAGS
cannam@95 72 # linker: $LD (gnu? $with_gnu_ld)
cannam@95 73 # $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.1
cannam@95 74 # automake: $automake_version
cannam@95 75 # autoconf: $autoconf_version
cannam@95 76 #
cannam@95 77 # Report bugs to <bug-libtool@gnu.org>.
cannam@95 78 # GNU libtool home page: <http://www.gnu.org/software/libtool/>.
cannam@95 79 # General help using GNU software: <http://www.gnu.org/gethelp/>.
cannam@95 80
cannam@95 81 PROGRAM=libtool
cannam@95 82 PACKAGE=libtool
cannam@95 83 VERSION="2.4.2 Debian-2.4.2-1.1"
cannam@95 84 TIMESTAMP=""
cannam@95 85 package_revision=1.3337
cannam@95 86
cannam@95 87 # Be Bourne compatible
cannam@95 88 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
cannam@95 89 emulate sh
cannam@95 90 NULLCMD=:
cannam@95 91 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
cannam@95 92 # is contrary to our usage. Disable this feature.
cannam@95 93 alias -g '${1+"$@"}'='"$@"'
cannam@95 94 setopt NO_GLOB_SUBST
cannam@95 95 else
cannam@95 96 case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
cannam@95 97 fi
cannam@95 98 BIN_SH=xpg4; export BIN_SH # for Tru64
cannam@95 99 DUALCASE=1; export DUALCASE # for MKS sh
cannam@95 100
cannam@95 101 # A function that is used when there is no print builtin or printf.
cannam@95 102 func_fallback_echo ()
cannam@95 103 {
cannam@95 104 eval 'cat <<_LTECHO_EOF
cannam@95 105 $1
cannam@95 106 _LTECHO_EOF'
cannam@95 107 }
cannam@95 108
cannam@95 109 # NLS nuisances: We save the old values to restore during execute mode.
cannam@95 110 lt_user_locale=
cannam@95 111 lt_safe_locale=
cannam@95 112 for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
cannam@95 113 do
cannam@95 114 eval "if test \"\${$lt_var+set}\" = set; then
cannam@95 115 save_$lt_var=\$$lt_var
cannam@95 116 $lt_var=C
cannam@95 117 export $lt_var
cannam@95 118 lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\"
cannam@95 119 lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\"
cannam@95 120 fi"
cannam@95 121 done
cannam@95 122 LC_ALL=C
cannam@95 123 LANGUAGE=C
cannam@95 124 export LANGUAGE LC_ALL
cannam@95 125
cannam@95 126 $lt_unset CDPATH
cannam@95 127
cannam@95 128
cannam@95 129 # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
cannam@95 130 # is ksh but when the shell is invoked as "sh" and the current value of
cannam@95 131 # the _XPG environment variable is not equal to 1 (one), the special
cannam@95 132 # positional parameter $0, within a function call, is the name of the
cannam@95 133 # function.
cannam@95 134 progpath="$0"
cannam@95 135
cannam@95 136
cannam@95 137
cannam@95 138 : ${CP="cp -f"}
cannam@95 139 test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'}
cannam@95 140 : ${MAKE="make"}
cannam@95 141 : ${MKDIR="mkdir"}
cannam@95 142 : ${MV="mv -f"}
cannam@95 143 : ${RM="rm -f"}
cannam@95 144 : ${SHELL="${CONFIG_SHELL-/bin/sh}"}
cannam@95 145 : ${Xsed="$SED -e 1s/^X//"}
cannam@95 146
cannam@95 147 # Global variables:
cannam@95 148 EXIT_SUCCESS=0
cannam@95 149 EXIT_FAILURE=1
cannam@95 150 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing.
cannam@95 151 EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake.
cannam@95 152
cannam@95 153 exit_status=$EXIT_SUCCESS
cannam@95 154
cannam@95 155 # Make sure IFS has a sensible default
cannam@95 156 lt_nl='
cannam@95 157 '
cannam@95 158 IFS=" $lt_nl"
cannam@95 159
cannam@95 160 dirname="s,/[^/]*$,,"
cannam@95 161 basename="s,^.*/,,"
cannam@95 162
cannam@95 163 # func_dirname file append nondir_replacement
cannam@95 164 # Compute the dirname of FILE. If nonempty, add APPEND to the result,
cannam@95 165 # otherwise set result to NONDIR_REPLACEMENT.
cannam@95 166 func_dirname ()
cannam@95 167 {
cannam@95 168 func_dirname_result=`$ECHO "${1}" | $SED "$dirname"`
cannam@95 169 if test "X$func_dirname_result" = "X${1}"; then
cannam@95 170 func_dirname_result="${3}"
cannam@95 171 else
cannam@95 172 func_dirname_result="$func_dirname_result${2}"
cannam@95 173 fi
cannam@95 174 } # func_dirname may be replaced by extended shell implementation
cannam@95 175
cannam@95 176
cannam@95 177 # func_basename file
cannam@95 178 func_basename ()
cannam@95 179 {
cannam@95 180 func_basename_result=`$ECHO "${1}" | $SED "$basename"`
cannam@95 181 } # func_basename may be replaced by extended shell implementation
cannam@95 182
cannam@95 183
cannam@95 184 # func_dirname_and_basename file append nondir_replacement
cannam@95 185 # perform func_basename and func_dirname in a single function
cannam@95 186 # call:
cannam@95 187 # dirname: Compute the dirname of FILE. If nonempty,
cannam@95 188 # add APPEND to the result, otherwise set result
cannam@95 189 # to NONDIR_REPLACEMENT.
cannam@95 190 # value returned in "$func_dirname_result"
cannam@95 191 # basename: Compute filename of FILE.
cannam@95 192 # value retuned in "$func_basename_result"
cannam@95 193 # Implementation must be kept synchronized with func_dirname
cannam@95 194 # and func_basename. For efficiency, we do not delegate to
cannam@95 195 # those functions but instead duplicate the functionality here.
cannam@95 196 func_dirname_and_basename ()
cannam@95 197 {
cannam@95 198 # Extract subdirectory from the argument.
cannam@95 199 func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"`
cannam@95 200 if test "X$func_dirname_result" = "X${1}"; then
cannam@95 201 func_dirname_result="${3}"
cannam@95 202 else
cannam@95 203 func_dirname_result="$func_dirname_result${2}"
cannam@95 204 fi
cannam@95 205 func_basename_result=`$ECHO "${1}" | $SED -e "$basename"`
cannam@95 206 } # func_dirname_and_basename may be replaced by extended shell implementation
cannam@95 207
cannam@95 208
cannam@95 209 # func_stripname prefix suffix name
cannam@95 210 # strip PREFIX and SUFFIX off of NAME.
cannam@95 211 # PREFIX and SUFFIX must not contain globbing or regex special
cannam@95 212 # characters, hashes, percent signs, but SUFFIX may contain a leading
cannam@95 213 # dot (in which case that matches only a dot).
cannam@95 214 # func_strip_suffix prefix name
cannam@95 215 func_stripname ()
cannam@95 216 {
cannam@95 217 case ${2} in
cannam@95 218 .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;;
cannam@95 219 *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;;
cannam@95 220 esac
cannam@95 221 } # func_stripname may be replaced by extended shell implementation
cannam@95 222
cannam@95 223
cannam@95 224 # These SED scripts presuppose an absolute path with a trailing slash.
cannam@95 225 pathcar='s,^/\([^/]*\).*$,\1,'
cannam@95 226 pathcdr='s,^/[^/]*,,'
cannam@95 227 removedotparts=':dotsl
cannam@95 228 s@/\./@/@g
cannam@95 229 t dotsl
cannam@95 230 s,/\.$,/,'
cannam@95 231 collapseslashes='s@/\{1,\}@/@g'
cannam@95 232 finalslash='s,/*$,/,'
cannam@95 233
cannam@95 234 # func_normal_abspath PATH
cannam@95 235 # Remove doubled-up and trailing slashes, "." path components,
cannam@95 236 # and cancel out any ".." path components in PATH after making
cannam@95 237 # it an absolute path.
cannam@95 238 # value returned in "$func_normal_abspath_result"
cannam@95 239 func_normal_abspath ()
cannam@95 240 {
cannam@95 241 # Start from root dir and reassemble the path.
cannam@95 242 func_normal_abspath_result=
cannam@95 243 func_normal_abspath_tpath=$1
cannam@95 244 func_normal_abspath_altnamespace=
cannam@95 245 case $func_normal_abspath_tpath in
cannam@95 246 "")
cannam@95 247 # Empty path, that just means $cwd.
cannam@95 248 func_stripname '' '/' "`pwd`"
cannam@95 249 func_normal_abspath_result=$func_stripname_result
cannam@95 250 return
cannam@95 251 ;;
cannam@95 252 # The next three entries are used to spot a run of precisely
cannam@95 253 # two leading slashes without using negated character classes;
cannam@95 254 # we take advantage of case's first-match behaviour.
cannam@95 255 ///*)
cannam@95 256 # Unusual form of absolute path, do nothing.
cannam@95 257 ;;
cannam@95 258 //*)
cannam@95 259 # Not necessarily an ordinary path; POSIX reserves leading '//'
cannam@95 260 # and for example Cygwin uses it to access remote file shares
cannam@95 261 # over CIFS/SMB, so we conserve a leading double slash if found.
cannam@95 262 func_normal_abspath_altnamespace=/
cannam@95 263 ;;
cannam@95 264 /*)
cannam@95 265 # Absolute path, do nothing.
cannam@95 266 ;;
cannam@95 267 *)
cannam@95 268 # Relative path, prepend $cwd.
cannam@95 269 func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath
cannam@95 270 ;;
cannam@95 271 esac
cannam@95 272 # Cancel out all the simple stuff to save iterations. We also want
cannam@95 273 # the path to end with a slash for ease of parsing, so make sure
cannam@95 274 # there is one (and only one) here.
cannam@95 275 func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
cannam@95 276 -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"`
cannam@95 277 while :; do
cannam@95 278 # Processed it all yet?
cannam@95 279 if test "$func_normal_abspath_tpath" = / ; then
cannam@95 280 # If we ascended to the root using ".." the result may be empty now.
cannam@95 281 if test -z "$func_normal_abspath_result" ; then
cannam@95 282 func_normal_abspath_result=/
cannam@95 283 fi
cannam@95 284 break
cannam@95 285 fi
cannam@95 286 func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \
cannam@95 287 -e "$pathcar"`
cannam@95 288 func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \
cannam@95 289 -e "$pathcdr"`
cannam@95 290 # Figure out what to do with it
cannam@95 291 case $func_normal_abspath_tcomponent in
cannam@95 292 "")
cannam@95 293 # Trailing empty path component, ignore it.
cannam@95 294 ;;
cannam@95 295 ..)
cannam@95 296 # Parent dir; strip last assembled component from result.
cannam@95 297 func_dirname "$func_normal_abspath_result"
cannam@95 298 func_normal_abspath_result=$func_dirname_result
cannam@95 299 ;;
cannam@95 300 *)
cannam@95 301 # Actual path component, append it.
cannam@95 302 func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent
cannam@95 303 ;;
cannam@95 304 esac
cannam@95 305 done
cannam@95 306 # Restore leading double-slash if one was found on entry.
cannam@95 307 func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result
cannam@95 308 }
cannam@95 309
cannam@95 310 # func_relative_path SRCDIR DSTDIR
cannam@95 311 # generates a relative path from SRCDIR to DSTDIR, with a trailing
cannam@95 312 # slash if non-empty, suitable for immediately appending a filename
cannam@95 313 # without needing to append a separator.
cannam@95 314 # value returned in "$func_relative_path_result"
cannam@95 315 func_relative_path ()
cannam@95 316 {
cannam@95 317 func_relative_path_result=
cannam@95 318 func_normal_abspath "$1"
cannam@95 319 func_relative_path_tlibdir=$func_normal_abspath_result
cannam@95 320 func_normal_abspath "$2"
cannam@95 321 func_relative_path_tbindir=$func_normal_abspath_result
cannam@95 322
cannam@95 323 # Ascend the tree starting from libdir
cannam@95 324 while :; do
cannam@95 325 # check if we have found a prefix of bindir
cannam@95 326 case $func_relative_path_tbindir in
cannam@95 327 $func_relative_path_tlibdir)
cannam@95 328 # found an exact match
cannam@95 329 func_relative_path_tcancelled=
cannam@95 330 break
cannam@95 331 ;;
cannam@95 332 $func_relative_path_tlibdir*)
cannam@95 333 # found a matching prefix
cannam@95 334 func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir"
cannam@95 335 func_relative_path_tcancelled=$func_stripname_result
cannam@95 336 if test -z "$func_relative_path_result"; then
cannam@95 337 func_relative_path_result=.
cannam@95 338 fi
cannam@95 339 break
cannam@95 340 ;;
cannam@95 341 *)
cannam@95 342 func_dirname $func_relative_path_tlibdir
cannam@95 343 func_relative_path_tlibdir=${func_dirname_result}
cannam@95 344 if test "x$func_relative_path_tlibdir" = x ; then
cannam@95 345 # Have to descend all the way to the root!
cannam@95 346 func_relative_path_result=../$func_relative_path_result
cannam@95 347 func_relative_path_tcancelled=$func_relative_path_tbindir
cannam@95 348 break
cannam@95 349 fi
cannam@95 350 func_relative_path_result=../$func_relative_path_result
cannam@95 351 ;;
cannam@95 352 esac
cannam@95 353 done
cannam@95 354
cannam@95 355 # Now calculate path; take care to avoid doubling-up slashes.
cannam@95 356 func_stripname '' '/' "$func_relative_path_result"
cannam@95 357 func_relative_path_result=$func_stripname_result
cannam@95 358 func_stripname '/' '/' "$func_relative_path_tcancelled"
cannam@95 359 if test "x$func_stripname_result" != x ; then
cannam@95 360 func_relative_path_result=${func_relative_path_result}/${func_stripname_result}
cannam@95 361 fi
cannam@95 362
cannam@95 363 # Normalisation. If bindir is libdir, return empty string,
cannam@95 364 # else relative path ending with a slash; either way, target
cannam@95 365 # file name can be directly appended.
cannam@95 366 if test ! -z "$func_relative_path_result"; then
cannam@95 367 func_stripname './' '' "$func_relative_path_result/"
cannam@95 368 func_relative_path_result=$func_stripname_result
cannam@95 369 fi
cannam@95 370 }
cannam@95 371
cannam@95 372 # The name of this program:
cannam@95 373 func_dirname_and_basename "$progpath"
cannam@95 374 progname=$func_basename_result
cannam@95 375
cannam@95 376 # Make sure we have an absolute path for reexecution:
cannam@95 377 case $progpath in
cannam@95 378 [\\/]*|[A-Za-z]:\\*) ;;
cannam@95 379 *[\\/]*)
cannam@95 380 progdir=$func_dirname_result
cannam@95 381 progdir=`cd "$progdir" && pwd`
cannam@95 382 progpath="$progdir/$progname"
cannam@95 383 ;;
cannam@95 384 *)
cannam@95 385 save_IFS="$IFS"
cannam@95 386 IFS=${PATH_SEPARATOR-:}
cannam@95 387 for progdir in $PATH; do
cannam@95 388 IFS="$save_IFS"
cannam@95 389 test -x "$progdir/$progname" && break
cannam@95 390 done
cannam@95 391 IFS="$save_IFS"
cannam@95 392 test -n "$progdir" || progdir=`pwd`
cannam@95 393 progpath="$progdir/$progname"
cannam@95 394 ;;
cannam@95 395 esac
cannam@95 396
cannam@95 397 # Sed substitution that helps us do robust quoting. It backslashifies
cannam@95 398 # metacharacters that are still active within double-quoted strings.
cannam@95 399 Xsed="${SED}"' -e 1s/^X//'
cannam@95 400 sed_quote_subst='s/\([`"$\\]\)/\\\1/g'
cannam@95 401
cannam@95 402 # Same as above, but do not quote variable references.
cannam@95 403 double_quote_subst='s/\(["`\\]\)/\\\1/g'
cannam@95 404
cannam@95 405 # Sed substitution that turns a string into a regex matching for the
cannam@95 406 # string literally.
cannam@95 407 sed_make_literal_regex='s,[].[^$\\*\/],\\&,g'
cannam@95 408
cannam@95 409 # Sed substitution that converts a w32 file name or path
cannam@95 410 # which contains forward slashes, into one that contains
cannam@95 411 # (escaped) backslashes. A very naive implementation.
cannam@95 412 lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g'
cannam@95 413
cannam@95 414 # Re-`\' parameter expansions in output of double_quote_subst that were
cannam@95 415 # `\'-ed in input to the same. If an odd number of `\' preceded a '$'
cannam@95 416 # in input to double_quote_subst, that '$' was protected from expansion.
cannam@95 417 # Since each input `\' is now two `\'s, look for any number of runs of
cannam@95 418 # four `\'s followed by two `\'s and then a '$'. `\' that '$'.
cannam@95 419 bs='\\'
cannam@95 420 bs2='\\\\'
cannam@95 421 bs4='\\\\\\\\'
cannam@95 422 dollar='\$'
cannam@95 423 sed_double_backslash="\
cannam@95 424 s/$bs4/&\\
cannam@95 425 /g
cannam@95 426 s/^$bs2$dollar/$bs&/
cannam@95 427 s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g
cannam@95 428 s/\n//g"
cannam@95 429
cannam@95 430 # Standard options:
cannam@95 431 opt_dry_run=false
cannam@95 432 opt_help=false
cannam@95 433 opt_quiet=false
cannam@95 434 opt_verbose=false
cannam@95 435 opt_warning=:
cannam@95 436
cannam@95 437 # func_echo arg...
cannam@95 438 # Echo program name prefixed message, along with the current mode
cannam@95 439 # name if it has been set yet.
cannam@95 440 func_echo ()
cannam@95 441 {
cannam@95 442 $ECHO "$progname: ${opt_mode+$opt_mode: }$*"
cannam@95 443 }
cannam@95 444
cannam@95 445 # func_verbose arg...
cannam@95 446 # Echo program name prefixed message in verbose mode only.
cannam@95 447 func_verbose ()
cannam@95 448 {
cannam@95 449 $opt_verbose && func_echo ${1+"$@"}
cannam@95 450
cannam@95 451 # A bug in bash halts the script if the last line of a function
cannam@95 452 # fails when set -e is in force, so we need another command to
cannam@95 453 # work around that:
cannam@95 454 :
cannam@95 455 }
cannam@95 456
cannam@95 457 # func_echo_all arg...
cannam@95 458 # Invoke $ECHO with all args, space-separated.
cannam@95 459 func_echo_all ()
cannam@95 460 {
cannam@95 461 $ECHO "$*"
cannam@95 462 }
cannam@95 463
cannam@95 464 # func_error arg...
cannam@95 465 # Echo program name prefixed message to standard error.
cannam@95 466 func_error ()
cannam@95 467 {
cannam@95 468 $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2
cannam@95 469 }
cannam@95 470
cannam@95 471 # func_warning arg...
cannam@95 472 # Echo program name prefixed warning message to standard error.
cannam@95 473 func_warning ()
cannam@95 474 {
cannam@95 475 $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2
cannam@95 476
cannam@95 477 # bash bug again:
cannam@95 478 :
cannam@95 479 }
cannam@95 480
cannam@95 481 # func_fatal_error arg...
cannam@95 482 # Echo program name prefixed message to standard error, and exit.
cannam@95 483 func_fatal_error ()
cannam@95 484 {
cannam@95 485 func_error ${1+"$@"}
cannam@95 486 exit $EXIT_FAILURE
cannam@95 487 }
cannam@95 488
cannam@95 489 # func_fatal_help arg...
cannam@95 490 # Echo program name prefixed message to standard error, followed by
cannam@95 491 # a help hint, and exit.
cannam@95 492 func_fatal_help ()
cannam@95 493 {
cannam@95 494 func_error ${1+"$@"}
cannam@95 495 func_fatal_error "$help"
cannam@95 496 }
cannam@95 497 help="Try \`$progname --help' for more information." ## default
cannam@95 498
cannam@95 499
cannam@95 500 # func_grep expression filename
cannam@95 501 # Check whether EXPRESSION matches any line of FILENAME, without output.
cannam@95 502 func_grep ()
cannam@95 503 {
cannam@95 504 $GREP "$1" "$2" >/dev/null 2>&1
cannam@95 505 }
cannam@95 506
cannam@95 507
cannam@95 508 # func_mkdir_p directory-path
cannam@95 509 # Make sure the entire path to DIRECTORY-PATH is available.
cannam@95 510 func_mkdir_p ()
cannam@95 511 {
cannam@95 512 my_directory_path="$1"
cannam@95 513 my_dir_list=
cannam@95 514
cannam@95 515 if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then
cannam@95 516
cannam@95 517 # Protect directory names starting with `-'
cannam@95 518 case $my_directory_path in
cannam@95 519 -*) my_directory_path="./$my_directory_path" ;;
cannam@95 520 esac
cannam@95 521
cannam@95 522 # While some portion of DIR does not yet exist...
cannam@95 523 while test ! -d "$my_directory_path"; do
cannam@95 524 # ...make a list in topmost first order. Use a colon delimited
cannam@95 525 # list incase some portion of path contains whitespace.
cannam@95 526 my_dir_list="$my_directory_path:$my_dir_list"
cannam@95 527
cannam@95 528 # If the last portion added has no slash in it, the list is done
cannam@95 529 case $my_directory_path in */*) ;; *) break ;; esac
cannam@95 530
cannam@95 531 # ...otherwise throw away the child directory and loop
cannam@95 532 my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"`
cannam@95 533 done
cannam@95 534 my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'`
cannam@95 535
cannam@95 536 save_mkdir_p_IFS="$IFS"; IFS=':'
cannam@95 537 for my_dir in $my_dir_list; do
cannam@95 538 IFS="$save_mkdir_p_IFS"
cannam@95 539 # mkdir can fail with a `File exist' error if two processes
cannam@95 540 # try to create one of the directories concurrently. Don't
cannam@95 541 # stop in that case!
cannam@95 542 $MKDIR "$my_dir" 2>/dev/null || :
cannam@95 543 done
cannam@95 544 IFS="$save_mkdir_p_IFS"
cannam@95 545
cannam@95 546 # Bail out if we (or some other process) failed to create a directory.
cannam@95 547 test -d "$my_directory_path" || \
cannam@95 548 func_fatal_error "Failed to create \`$1'"
cannam@95 549 fi
cannam@95 550 }
cannam@95 551
cannam@95 552
cannam@95 553 # func_mktempdir [string]
cannam@95 554 # Make a temporary directory that won't clash with other running
cannam@95 555 # libtool processes, and avoids race conditions if possible. If
cannam@95 556 # given, STRING is the basename for that directory.
cannam@95 557 func_mktempdir ()
cannam@95 558 {
cannam@95 559 my_template="${TMPDIR-/tmp}/${1-$progname}"
cannam@95 560
cannam@95 561 if test "$opt_dry_run" = ":"; then
cannam@95 562 # Return a directory name, but don't create it in dry-run mode
cannam@95 563 my_tmpdir="${my_template}-$$"
cannam@95 564 else
cannam@95 565
cannam@95 566 # If mktemp works, use that first and foremost
cannam@95 567 my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null`
cannam@95 568
cannam@95 569 if test ! -d "$my_tmpdir"; then
cannam@95 570 # Failing that, at least try and use $RANDOM to avoid a race
cannam@95 571 my_tmpdir="${my_template}-${RANDOM-0}$$"
cannam@95 572
cannam@95 573 save_mktempdir_umask=`umask`
cannam@95 574 umask 0077
cannam@95 575 $MKDIR "$my_tmpdir"
cannam@95 576 umask $save_mktempdir_umask
cannam@95 577 fi
cannam@95 578
cannam@95 579 # If we're not in dry-run mode, bomb out on failure
cannam@95 580 test -d "$my_tmpdir" || \
cannam@95 581 func_fatal_error "cannot create temporary directory \`$my_tmpdir'"
cannam@95 582 fi
cannam@95 583
cannam@95 584 $ECHO "$my_tmpdir"
cannam@95 585 }
cannam@95 586
cannam@95 587
cannam@95 588 # func_quote_for_eval arg
cannam@95 589 # Aesthetically quote ARG to be evaled later.
cannam@95 590 # This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT
cannam@95 591 # is double-quoted, suitable for a subsequent eval, whereas
cannam@95 592 # FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters
cannam@95 593 # which are still active within double quotes backslashified.
cannam@95 594 func_quote_for_eval ()
cannam@95 595 {
cannam@95 596 case $1 in
cannam@95 597 *[\\\`\"\$]*)
cannam@95 598 func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;;
cannam@95 599 *)
cannam@95 600 func_quote_for_eval_unquoted_result="$1" ;;
cannam@95 601 esac
cannam@95 602
cannam@95 603 case $func_quote_for_eval_unquoted_result in
cannam@95 604 # Double-quote args containing shell metacharacters to delay
cannam@95 605 # word splitting, command substitution and and variable
cannam@95 606 # expansion for a subsequent eval.
cannam@95 607 # Many Bourne shells cannot handle close brackets correctly
cannam@95 608 # in scan sets, so we specify it separately.
cannam@95 609 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
cannam@95 610 func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\""
cannam@95 611 ;;
cannam@95 612 *)
cannam@95 613 func_quote_for_eval_result="$func_quote_for_eval_unquoted_result"
cannam@95 614 esac
cannam@95 615 }
cannam@95 616
cannam@95 617
cannam@95 618 # func_quote_for_expand arg
cannam@95 619 # Aesthetically quote ARG to be evaled later; same as above,
cannam@95 620 # but do not quote variable references.
cannam@95 621 func_quote_for_expand ()
cannam@95 622 {
cannam@95 623 case $1 in
cannam@95 624 *[\\\`\"]*)
cannam@95 625 my_arg=`$ECHO "$1" | $SED \
cannam@95 626 -e "$double_quote_subst" -e "$sed_double_backslash"` ;;
cannam@95 627 *)
cannam@95 628 my_arg="$1" ;;
cannam@95 629 esac
cannam@95 630
cannam@95 631 case $my_arg in
cannam@95 632 # Double-quote args containing shell metacharacters to delay
cannam@95 633 # word splitting and command substitution for a subsequent eval.
cannam@95 634 # Many Bourne shells cannot handle close brackets correctly
cannam@95 635 # in scan sets, so we specify it separately.
cannam@95 636 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
cannam@95 637 my_arg="\"$my_arg\""
cannam@95 638 ;;
cannam@95 639 esac
cannam@95 640
cannam@95 641 func_quote_for_expand_result="$my_arg"
cannam@95 642 }
cannam@95 643
cannam@95 644
cannam@95 645 # func_show_eval cmd [fail_exp]
cannam@95 646 # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is
cannam@95 647 # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP
cannam@95 648 # is given, then evaluate it.
cannam@95 649 func_show_eval ()
cannam@95 650 {
cannam@95 651 my_cmd="$1"
cannam@95 652 my_fail_exp="${2-:}"
cannam@95 653
cannam@95 654 ${opt_silent-false} || {
cannam@95 655 func_quote_for_expand "$my_cmd"
cannam@95 656 eval "func_echo $func_quote_for_expand_result"
cannam@95 657 }
cannam@95 658
cannam@95 659 if ${opt_dry_run-false}; then :; else
cannam@95 660 eval "$my_cmd"
cannam@95 661 my_status=$?
cannam@95 662 if test "$my_status" -eq 0; then :; else
cannam@95 663 eval "(exit $my_status); $my_fail_exp"
cannam@95 664 fi
cannam@95 665 fi
cannam@95 666 }
cannam@95 667
cannam@95 668
cannam@95 669 # func_show_eval_locale cmd [fail_exp]
cannam@95 670 # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is
cannam@95 671 # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP
cannam@95 672 # is given, then evaluate it. Use the saved locale for evaluation.
cannam@95 673 func_show_eval_locale ()
cannam@95 674 {
cannam@95 675 my_cmd="$1"
cannam@95 676 my_fail_exp="${2-:}"
cannam@95 677
cannam@95 678 ${opt_silent-false} || {
cannam@95 679 func_quote_for_expand "$my_cmd"
cannam@95 680 eval "func_echo $func_quote_for_expand_result"
cannam@95 681 }
cannam@95 682
cannam@95 683 if ${opt_dry_run-false}; then :; else
cannam@95 684 eval "$lt_user_locale
cannam@95 685 $my_cmd"
cannam@95 686 my_status=$?
cannam@95 687 eval "$lt_safe_locale"
cannam@95 688 if test "$my_status" -eq 0; then :; else
cannam@95 689 eval "(exit $my_status); $my_fail_exp"
cannam@95 690 fi
cannam@95 691 fi
cannam@95 692 }
cannam@95 693
cannam@95 694 # func_tr_sh
cannam@95 695 # Turn $1 into a string suitable for a shell variable name.
cannam@95 696 # Result is stored in $func_tr_sh_result. All characters
cannam@95 697 # not in the set a-zA-Z0-9_ are replaced with '_'. Further,
cannam@95 698 # if $1 begins with a digit, a '_' is prepended as well.
cannam@95 699 func_tr_sh ()
cannam@95 700 {
cannam@95 701 case $1 in
cannam@95 702 [0-9]* | *[!a-zA-Z0-9_]*)
cannam@95 703 func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'`
cannam@95 704 ;;
cannam@95 705 * )
cannam@95 706 func_tr_sh_result=$1
cannam@95 707 ;;
cannam@95 708 esac
cannam@95 709 }
cannam@95 710
cannam@95 711
cannam@95 712 # func_version
cannam@95 713 # Echo version message to standard output and exit.
cannam@95 714 func_version ()
cannam@95 715 {
cannam@95 716 $opt_debug
cannam@95 717
cannam@95 718 $SED -n '/(C)/!b go
cannam@95 719 :more
cannam@95 720 /\./!{
cannam@95 721 N
cannam@95 722 s/\n# / /
cannam@95 723 b more
cannam@95 724 }
cannam@95 725 :go
cannam@95 726 /^# '$PROGRAM' (GNU /,/# warranty; / {
cannam@95 727 s/^# //
cannam@95 728 s/^# *$//
cannam@95 729 s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/
cannam@95 730 p
cannam@95 731 }' < "$progpath"
cannam@95 732 exit $?
cannam@95 733 }
cannam@95 734
cannam@95 735 # func_usage
cannam@95 736 # Echo short help message to standard output and exit.
cannam@95 737 func_usage ()
cannam@95 738 {
cannam@95 739 $opt_debug
cannam@95 740
cannam@95 741 $SED -n '/^# Usage:/,/^# *.*--help/ {
cannam@95 742 s/^# //
cannam@95 743 s/^# *$//
cannam@95 744 s/\$progname/'$progname'/
cannam@95 745 p
cannam@95 746 }' < "$progpath"
cannam@95 747 echo
cannam@95 748 $ECHO "run \`$progname --help | more' for full usage"
cannam@95 749 exit $?
cannam@95 750 }
cannam@95 751
cannam@95 752 # func_help [NOEXIT]
cannam@95 753 # Echo long help message to standard output and exit,
cannam@95 754 # unless 'noexit' is passed as argument.
cannam@95 755 func_help ()
cannam@95 756 {
cannam@95 757 $opt_debug
cannam@95 758
cannam@95 759 $SED -n '/^# Usage:/,/# Report bugs to/ {
cannam@95 760 :print
cannam@95 761 s/^# //
cannam@95 762 s/^# *$//
cannam@95 763 s*\$progname*'$progname'*
cannam@95 764 s*\$host*'"$host"'*
cannam@95 765 s*\$SHELL*'"$SHELL"'*
cannam@95 766 s*\$LTCC*'"$LTCC"'*
cannam@95 767 s*\$LTCFLAGS*'"$LTCFLAGS"'*
cannam@95 768 s*\$LD*'"$LD"'*
cannam@95 769 s/\$with_gnu_ld/'"$with_gnu_ld"'/
cannam@95 770 s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/
cannam@95 771 s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/
cannam@95 772 p
cannam@95 773 d
cannam@95 774 }
cannam@95 775 /^# .* home page:/b print
cannam@95 776 /^# General help using/b print
cannam@95 777 ' < "$progpath"
cannam@95 778 ret=$?
cannam@95 779 if test -z "$1"; then
cannam@95 780 exit $ret
cannam@95 781 fi
cannam@95 782 }
cannam@95 783
cannam@95 784 # func_missing_arg argname
cannam@95 785 # Echo program name prefixed message to standard error and set global
cannam@95 786 # exit_cmd.
cannam@95 787 func_missing_arg ()
cannam@95 788 {
cannam@95 789 $opt_debug
cannam@95 790
cannam@95 791 func_error "missing argument for $1."
cannam@95 792 exit_cmd=exit
cannam@95 793 }
cannam@95 794
cannam@95 795
cannam@95 796 # func_split_short_opt shortopt
cannam@95 797 # Set func_split_short_opt_name and func_split_short_opt_arg shell
cannam@95 798 # variables after splitting SHORTOPT after the 2nd character.
cannam@95 799 func_split_short_opt ()
cannam@95 800 {
cannam@95 801 my_sed_short_opt='1s/^\(..\).*$/\1/;q'
cannam@95 802 my_sed_short_rest='1s/^..\(.*\)$/\1/;q'
cannam@95 803
cannam@95 804 func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"`
cannam@95 805 func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"`
cannam@95 806 } # func_split_short_opt may be replaced by extended shell implementation
cannam@95 807
cannam@95 808
cannam@95 809 # func_split_long_opt longopt
cannam@95 810 # Set func_split_long_opt_name and func_split_long_opt_arg shell
cannam@95 811 # variables after splitting LONGOPT at the `=' sign.
cannam@95 812 func_split_long_opt ()
cannam@95 813 {
cannam@95 814 my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q'
cannam@95 815 my_sed_long_arg='1s/^--[^=]*=//'
cannam@95 816
cannam@95 817 func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"`
cannam@95 818 func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"`
cannam@95 819 } # func_split_long_opt may be replaced by extended shell implementation
cannam@95 820
cannam@95 821 exit_cmd=:
cannam@95 822
cannam@95 823
cannam@95 824
cannam@95 825
cannam@95 826
cannam@95 827 magic="%%%MAGIC variable%%%"
cannam@95 828 magic_exe="%%%MAGIC EXE variable%%%"
cannam@95 829
cannam@95 830 # Global variables.
cannam@95 831 nonopt=
cannam@95 832 preserve_args=
cannam@95 833 lo2o="s/\\.lo\$/.${objext}/"
cannam@95 834 o2lo="s/\\.${objext}\$/.lo/"
cannam@95 835 extracted_archives=
cannam@95 836 extracted_serial=0
cannam@95 837
cannam@95 838 # If this variable is set in any of the actions, the command in it
cannam@95 839 # will be execed at the end. This prevents here-documents from being
cannam@95 840 # left over by shells.
cannam@95 841 exec_cmd=
cannam@95 842
cannam@95 843 # func_append var value
cannam@95 844 # Append VALUE to the end of shell variable VAR.
cannam@95 845 func_append ()
cannam@95 846 {
cannam@95 847 eval "${1}=\$${1}\${2}"
cannam@95 848 } # func_append may be replaced by extended shell implementation
cannam@95 849
cannam@95 850 # func_append_quoted var value
cannam@95 851 # Quote VALUE and append to the end of shell variable VAR, separated
cannam@95 852 # by a space.
cannam@95 853 func_append_quoted ()
cannam@95 854 {
cannam@95 855 func_quote_for_eval "${2}"
cannam@95 856 eval "${1}=\$${1}\\ \$func_quote_for_eval_result"
cannam@95 857 } # func_append_quoted may be replaced by extended shell implementation
cannam@95 858
cannam@95 859
cannam@95 860 # func_arith arithmetic-term...
cannam@95 861 func_arith ()
cannam@95 862 {
cannam@95 863 func_arith_result=`expr "${@}"`
cannam@95 864 } # func_arith may be replaced by extended shell implementation
cannam@95 865
cannam@95 866
cannam@95 867 # func_len string
cannam@95 868 # STRING may not start with a hyphen.
cannam@95 869 func_len ()
cannam@95 870 {
cannam@95 871 func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len`
cannam@95 872 } # func_len may be replaced by extended shell implementation
cannam@95 873
cannam@95 874
cannam@95 875 # func_lo2o object
cannam@95 876 func_lo2o ()
cannam@95 877 {
cannam@95 878 func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"`
cannam@95 879 } # func_lo2o may be replaced by extended shell implementation
cannam@95 880
cannam@95 881
cannam@95 882 # func_xform libobj-or-source
cannam@95 883 func_xform ()
cannam@95 884 {
cannam@95 885 func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'`
cannam@95 886 } # func_xform may be replaced by extended shell implementation
cannam@95 887
cannam@95 888
cannam@95 889 # func_fatal_configuration arg...
cannam@95 890 # Echo program name prefixed message to standard error, followed by
cannam@95 891 # a configuration failure hint, and exit.
cannam@95 892 func_fatal_configuration ()
cannam@95 893 {
cannam@95 894 func_error ${1+"$@"}
cannam@95 895 func_error "See the $PACKAGE documentation for more information."
cannam@95 896 func_fatal_error "Fatal configuration error."
cannam@95 897 }
cannam@95 898
cannam@95 899
cannam@95 900 # func_config
cannam@95 901 # Display the configuration for all the tags in this script.
cannam@95 902 func_config ()
cannam@95 903 {
cannam@95 904 re_begincf='^# ### BEGIN LIBTOOL'
cannam@95 905 re_endcf='^# ### END LIBTOOL'
cannam@95 906
cannam@95 907 # Default configuration.
cannam@95 908 $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath"
cannam@95 909
cannam@95 910 # Now print the configurations for the tags.
cannam@95 911 for tagname in $taglist; do
cannam@95 912 $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath"
cannam@95 913 done
cannam@95 914
cannam@95 915 exit $?
cannam@95 916 }
cannam@95 917
cannam@95 918 # func_features
cannam@95 919 # Display the features supported by this script.
cannam@95 920 func_features ()
cannam@95 921 {
cannam@95 922 echo "host: $host"
cannam@95 923 if test "$build_libtool_libs" = yes; then
cannam@95 924 echo "enable shared libraries"
cannam@95 925 else
cannam@95 926 echo "disable shared libraries"
cannam@95 927 fi
cannam@95 928 if test "$build_old_libs" = yes; then
cannam@95 929 echo "enable static libraries"
cannam@95 930 else
cannam@95 931 echo "disable static libraries"
cannam@95 932 fi
cannam@95 933
cannam@95 934 exit $?
cannam@95 935 }
cannam@95 936
cannam@95 937 # func_enable_tag tagname
cannam@95 938 # Verify that TAGNAME is valid, and either flag an error and exit, or
cannam@95 939 # enable the TAGNAME tag. We also add TAGNAME to the global $taglist
cannam@95 940 # variable here.
cannam@95 941 func_enable_tag ()
cannam@95 942 {
cannam@95 943 # Global variable:
cannam@95 944 tagname="$1"
cannam@95 945
cannam@95 946 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$"
cannam@95 947 re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$"
cannam@95 948 sed_extractcf="/$re_begincf/,/$re_endcf/p"
cannam@95 949
cannam@95 950 # Validate tagname.
cannam@95 951 case $tagname in
cannam@95 952 *[!-_A-Za-z0-9,/]*)
cannam@95 953 func_fatal_error "invalid tag name: $tagname"
cannam@95 954 ;;
cannam@95 955 esac
cannam@95 956
cannam@95 957 # Don't test for the "default" C tag, as we know it's
cannam@95 958 # there but not specially marked.
cannam@95 959 case $tagname in
cannam@95 960 CC) ;;
cannam@95 961 *)
cannam@95 962 if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then
cannam@95 963 taglist="$taglist $tagname"
cannam@95 964
cannam@95 965 # Evaluate the configuration. Be careful to quote the path
cannam@95 966 # and the sed script, to avoid splitting on whitespace, but
cannam@95 967 # also don't use non-portable quotes within backquotes within
cannam@95 968 # quotes we have to do it in 2 steps:
cannam@95 969 extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"`
cannam@95 970 eval "$extractedcf"
cannam@95 971 else
cannam@95 972 func_error "ignoring unknown tag $tagname"
cannam@95 973 fi
cannam@95 974 ;;
cannam@95 975 esac
cannam@95 976 }
cannam@95 977
cannam@95 978 # func_check_version_match
cannam@95 979 # Ensure that we are using m4 macros, and libtool script from the same
cannam@95 980 # release of libtool.
cannam@95 981 func_check_version_match ()
cannam@95 982 {
cannam@95 983 if test "$package_revision" != "$macro_revision"; then
cannam@95 984 if test "$VERSION" != "$macro_version"; then
cannam@95 985 if test -z "$macro_version"; then
cannam@95 986 cat >&2 <<_LT_EOF
cannam@95 987 $progname: Version mismatch error. This is $PACKAGE $VERSION, but the
cannam@95 988 $progname: definition of this LT_INIT comes from an older release.
cannam@95 989 $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
cannam@95 990 $progname: and run autoconf again.
cannam@95 991 _LT_EOF
cannam@95 992 else
cannam@95 993 cat >&2 <<_LT_EOF
cannam@95 994 $progname: Version mismatch error. This is $PACKAGE $VERSION, but the
cannam@95 995 $progname: definition of this LT_INIT comes from $PACKAGE $macro_version.
cannam@95 996 $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION
cannam@95 997 $progname: and run autoconf again.
cannam@95 998 _LT_EOF
cannam@95 999 fi
cannam@95 1000 else
cannam@95 1001 cat >&2 <<_LT_EOF
cannam@95 1002 $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision,
cannam@95 1003 $progname: but the definition of this LT_INIT comes from revision $macro_revision.
cannam@95 1004 $progname: You should recreate aclocal.m4 with macros from revision $package_revision
cannam@95 1005 $progname: of $PACKAGE $VERSION and run autoconf again.
cannam@95 1006 _LT_EOF
cannam@95 1007 fi
cannam@95 1008
cannam@95 1009 exit $EXIT_MISMATCH
cannam@95 1010 fi
cannam@95 1011 }
cannam@95 1012
cannam@95 1013
cannam@95 1014 # Shorthand for --mode=foo, only valid as the first argument
cannam@95 1015 case $1 in
cannam@95 1016 clean|clea|cle|cl)
cannam@95 1017 shift; set dummy --mode clean ${1+"$@"}; shift
cannam@95 1018 ;;
cannam@95 1019 compile|compil|compi|comp|com|co|c)
cannam@95 1020 shift; set dummy --mode compile ${1+"$@"}; shift
cannam@95 1021 ;;
cannam@95 1022 execute|execut|execu|exec|exe|ex|e)
cannam@95 1023 shift; set dummy --mode execute ${1+"$@"}; shift
cannam@95 1024 ;;
cannam@95 1025 finish|finis|fini|fin|fi|f)
cannam@95 1026 shift; set dummy --mode finish ${1+"$@"}; shift
cannam@95 1027 ;;
cannam@95 1028 install|instal|insta|inst|ins|in|i)
cannam@95 1029 shift; set dummy --mode install ${1+"$@"}; shift
cannam@95 1030 ;;
cannam@95 1031 link|lin|li|l)
cannam@95 1032 shift; set dummy --mode link ${1+"$@"}; shift
cannam@95 1033 ;;
cannam@95 1034 uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)
cannam@95 1035 shift; set dummy --mode uninstall ${1+"$@"}; shift
cannam@95 1036 ;;
cannam@95 1037 esac
cannam@95 1038
cannam@95 1039
cannam@95 1040
cannam@95 1041 # Option defaults:
cannam@95 1042 opt_debug=:
cannam@95 1043 opt_dry_run=false
cannam@95 1044 opt_config=false
cannam@95 1045 opt_preserve_dup_deps=false
cannam@95 1046 opt_features=false
cannam@95 1047 opt_finish=false
cannam@95 1048 opt_help=false
cannam@95 1049 opt_help_all=false
cannam@95 1050 opt_silent=:
cannam@95 1051 opt_warning=:
cannam@95 1052 opt_verbose=:
cannam@95 1053 opt_silent=false
cannam@95 1054 opt_verbose=false
cannam@95 1055
cannam@95 1056
cannam@95 1057 # Parse options once, thoroughly. This comes as soon as possible in the
cannam@95 1058 # script to make things like `--version' happen as quickly as we can.
cannam@95 1059 {
cannam@95 1060 # this just eases exit handling
cannam@95 1061 while test $# -gt 0; do
cannam@95 1062 opt="$1"
cannam@95 1063 shift
cannam@95 1064 case $opt in
cannam@95 1065 --debug|-x) opt_debug='set -x'
cannam@95 1066 func_echo "enabling shell trace mode"
cannam@95 1067 $opt_debug
cannam@95 1068 ;;
cannam@95 1069 --dry-run|--dryrun|-n)
cannam@95 1070 opt_dry_run=:
cannam@95 1071 ;;
cannam@95 1072 --config)
cannam@95 1073 opt_config=:
cannam@95 1074 func_config
cannam@95 1075 ;;
cannam@95 1076 --dlopen|-dlopen)
cannam@95 1077 optarg="$1"
cannam@95 1078 opt_dlopen="${opt_dlopen+$opt_dlopen
cannam@95 1079 }$optarg"
cannam@95 1080 shift
cannam@95 1081 ;;
cannam@95 1082 --preserve-dup-deps)
cannam@95 1083 opt_preserve_dup_deps=:
cannam@95 1084 ;;
cannam@95 1085 --features)
cannam@95 1086 opt_features=:
cannam@95 1087 func_features
cannam@95 1088 ;;
cannam@95 1089 --finish)
cannam@95 1090 opt_finish=:
cannam@95 1091 set dummy --mode finish ${1+"$@"}; shift
cannam@95 1092 ;;
cannam@95 1093 --help)
cannam@95 1094 opt_help=:
cannam@95 1095 ;;
cannam@95 1096 --help-all)
cannam@95 1097 opt_help_all=:
cannam@95 1098 opt_help=': help-all'
cannam@95 1099 ;;
cannam@95 1100 --mode)
cannam@95 1101 test $# = 0 && func_missing_arg $opt && break
cannam@95 1102 optarg="$1"
cannam@95 1103 opt_mode="$optarg"
cannam@95 1104 case $optarg in
cannam@95 1105 # Valid mode arguments:
cannam@95 1106 clean|compile|execute|finish|install|link|relink|uninstall) ;;
cannam@95 1107
cannam@95 1108 # Catch anything else as an error
cannam@95 1109 *) func_error "invalid argument for $opt"
cannam@95 1110 exit_cmd=exit
cannam@95 1111 break
cannam@95 1112 ;;
cannam@95 1113 esac
cannam@95 1114 shift
cannam@95 1115 ;;
cannam@95 1116 --no-silent|--no-quiet)
cannam@95 1117 opt_silent=false
cannam@95 1118 func_append preserve_args " $opt"
cannam@95 1119 ;;
cannam@95 1120 --no-warning|--no-warn)
cannam@95 1121 opt_warning=false
cannam@95 1122 func_append preserve_args " $opt"
cannam@95 1123 ;;
cannam@95 1124 --no-verbose)
cannam@95 1125 opt_verbose=false
cannam@95 1126 func_append preserve_args " $opt"
cannam@95 1127 ;;
cannam@95 1128 --silent|--quiet)
cannam@95 1129 opt_silent=:
cannam@95 1130 func_append preserve_args " $opt"
cannam@95 1131 opt_verbose=false
cannam@95 1132 ;;
cannam@95 1133 --verbose|-v)
cannam@95 1134 opt_verbose=:
cannam@95 1135 func_append preserve_args " $opt"
cannam@95 1136 opt_silent=false
cannam@95 1137 ;;
cannam@95 1138 --tag)
cannam@95 1139 test $# = 0 && func_missing_arg $opt && break
cannam@95 1140 optarg="$1"
cannam@95 1141 opt_tag="$optarg"
cannam@95 1142 func_append preserve_args " $opt $optarg"
cannam@95 1143 func_enable_tag "$optarg"
cannam@95 1144 shift
cannam@95 1145 ;;
cannam@95 1146
cannam@95 1147 -\?|-h) func_usage ;;
cannam@95 1148 --help) func_help ;;
cannam@95 1149 --version) func_version ;;
cannam@95 1150
cannam@95 1151 # Separate optargs to long options:
cannam@95 1152 --*=*)
cannam@95 1153 func_split_long_opt "$opt"
cannam@95 1154 set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"}
cannam@95 1155 shift
cannam@95 1156 ;;
cannam@95 1157
cannam@95 1158 # Separate non-argument short options:
cannam@95 1159 -\?*|-h*|-n*|-v*)
cannam@95 1160 func_split_short_opt "$opt"
cannam@95 1161 set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"}
cannam@95 1162 shift
cannam@95 1163 ;;
cannam@95 1164
cannam@95 1165 --) break ;;
cannam@95 1166 -*) func_fatal_help "unrecognized option \`$opt'" ;;
cannam@95 1167 *) set dummy "$opt" ${1+"$@"}; shift; break ;;
cannam@95 1168 esac
cannam@95 1169 done
cannam@95 1170
cannam@95 1171 # Validate options:
cannam@95 1172
cannam@95 1173 # save first non-option argument
cannam@95 1174 if test "$#" -gt 0; then
cannam@95 1175 nonopt="$opt"
cannam@95 1176 shift
cannam@95 1177 fi
cannam@95 1178
cannam@95 1179 # preserve --debug
cannam@95 1180 test "$opt_debug" = : || func_append preserve_args " --debug"
cannam@95 1181
cannam@95 1182 case $host in
cannam@95 1183 *cygwin* | *mingw* | *pw32* | *cegcc*)
cannam@95 1184 # don't eliminate duplications in $postdeps and $predeps
cannam@95 1185 opt_duplicate_compiler_generated_deps=:
cannam@95 1186 ;;
cannam@95 1187 *)
cannam@95 1188 opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps
cannam@95 1189 ;;
cannam@95 1190 esac
cannam@95 1191
cannam@95 1192 $opt_help || {
cannam@95 1193 # Sanity checks first:
cannam@95 1194 func_check_version_match
cannam@95 1195
cannam@95 1196 if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
cannam@95 1197 func_fatal_configuration "not configured to build any kind of library"
cannam@95 1198 fi
cannam@95 1199
cannam@95 1200 # Darwin sucks
cannam@95 1201 eval std_shrext=\"$shrext_cmds\"
cannam@95 1202
cannam@95 1203 # Only execute mode is allowed to have -dlopen flags.
cannam@95 1204 if test -n "$opt_dlopen" && test "$opt_mode" != execute; then
cannam@95 1205 func_error "unrecognized option \`-dlopen'"
cannam@95 1206 $ECHO "$help" 1>&2
cannam@95 1207 exit $EXIT_FAILURE
cannam@95 1208 fi
cannam@95 1209
cannam@95 1210 # Change the help message to a mode-specific one.
cannam@95 1211 generic_help="$help"
cannam@95 1212 help="Try \`$progname --help --mode=$opt_mode' for more information."
cannam@95 1213 }
cannam@95 1214
cannam@95 1215
cannam@95 1216 # Bail if the options were screwed
cannam@95 1217 $exit_cmd $EXIT_FAILURE
cannam@95 1218 }
cannam@95 1219
cannam@95 1220
cannam@95 1221
cannam@95 1222
cannam@95 1223 ## ----------- ##
cannam@95 1224 ## Main. ##
cannam@95 1225 ## ----------- ##
cannam@95 1226
cannam@95 1227 # func_lalib_p file
cannam@95 1228 # True iff FILE is a libtool `.la' library or `.lo' object file.
cannam@95 1229 # This function is only a basic sanity check; it will hardly flush out
cannam@95 1230 # determined imposters.
cannam@95 1231 func_lalib_p ()
cannam@95 1232 {
cannam@95 1233 test -f "$1" &&
cannam@95 1234 $SED -e 4q "$1" 2>/dev/null \
cannam@95 1235 | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1
cannam@95 1236 }
cannam@95 1237
cannam@95 1238 # func_lalib_unsafe_p file
cannam@95 1239 # True iff FILE is a libtool `.la' library or `.lo' object file.
cannam@95 1240 # This function implements the same check as func_lalib_p without
cannam@95 1241 # resorting to external programs. To this end, it redirects stdin and
cannam@95 1242 # closes it afterwards, without saving the original file descriptor.
cannam@95 1243 # As a safety measure, use it only where a negative result would be
cannam@95 1244 # fatal anyway. Works if `file' does not exist.
cannam@95 1245 func_lalib_unsafe_p ()
cannam@95 1246 {
cannam@95 1247 lalib_p=no
cannam@95 1248 if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then
cannam@95 1249 for lalib_p_l in 1 2 3 4
cannam@95 1250 do
cannam@95 1251 read lalib_p_line
cannam@95 1252 case "$lalib_p_line" in
cannam@95 1253 \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;;
cannam@95 1254 esac
cannam@95 1255 done
cannam@95 1256 exec 0<&5 5<&-
cannam@95 1257 fi
cannam@95 1258 test "$lalib_p" = yes
cannam@95 1259 }
cannam@95 1260
cannam@95 1261 # func_ltwrapper_script_p file
cannam@95 1262 # True iff FILE is a libtool wrapper script
cannam@95 1263 # This function is only a basic sanity check; it will hardly flush out
cannam@95 1264 # determined imposters.
cannam@95 1265 func_ltwrapper_script_p ()
cannam@95 1266 {
cannam@95 1267 func_lalib_p "$1"
cannam@95 1268 }
cannam@95 1269
cannam@95 1270 # func_ltwrapper_executable_p file
cannam@95 1271 # True iff FILE is a libtool wrapper executable
cannam@95 1272 # This function is only a basic sanity check; it will hardly flush out
cannam@95 1273 # determined imposters.
cannam@95 1274 func_ltwrapper_executable_p ()
cannam@95 1275 {
cannam@95 1276 func_ltwrapper_exec_suffix=
cannam@95 1277 case $1 in
cannam@95 1278 *.exe) ;;
cannam@95 1279 *) func_ltwrapper_exec_suffix=.exe ;;
cannam@95 1280 esac
cannam@95 1281 $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1
cannam@95 1282 }
cannam@95 1283
cannam@95 1284 # func_ltwrapper_scriptname file
cannam@95 1285 # Assumes file is an ltwrapper_executable
cannam@95 1286 # uses $file to determine the appropriate filename for a
cannam@95 1287 # temporary ltwrapper_script.
cannam@95 1288 func_ltwrapper_scriptname ()
cannam@95 1289 {
cannam@95 1290 func_dirname_and_basename "$1" "" "."
cannam@95 1291 func_stripname '' '.exe' "$func_basename_result"
cannam@95 1292 func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper"
cannam@95 1293 }
cannam@95 1294
cannam@95 1295 # func_ltwrapper_p file
cannam@95 1296 # True iff FILE is a libtool wrapper script or wrapper executable
cannam@95 1297 # This function is only a basic sanity check; it will hardly flush out
cannam@95 1298 # determined imposters.
cannam@95 1299 func_ltwrapper_p ()
cannam@95 1300 {
cannam@95 1301 func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1"
cannam@95 1302 }
cannam@95 1303
cannam@95 1304
cannam@95 1305 # func_execute_cmds commands fail_cmd
cannam@95 1306 # Execute tilde-delimited COMMANDS.
cannam@95 1307 # If FAIL_CMD is given, eval that upon failure.
cannam@95 1308 # FAIL_CMD may read-access the current command in variable CMD!
cannam@95 1309 func_execute_cmds ()
cannam@95 1310 {
cannam@95 1311 $opt_debug
cannam@95 1312 save_ifs=$IFS; IFS='~'
cannam@95 1313 for cmd in $1; do
cannam@95 1314 IFS=$save_ifs
cannam@95 1315 eval cmd=\"$cmd\"
cannam@95 1316 func_show_eval "$cmd" "${2-:}"
cannam@95 1317 done
cannam@95 1318 IFS=$save_ifs
cannam@95 1319 }
cannam@95 1320
cannam@95 1321
cannam@95 1322 # func_source file
cannam@95 1323 # Source FILE, adding directory component if necessary.
cannam@95 1324 # Note that it is not necessary on cygwin/mingw to append a dot to
cannam@95 1325 # FILE even if both FILE and FILE.exe exist: automatic-append-.exe
cannam@95 1326 # behavior happens only for exec(3), not for open(2)! Also, sourcing
cannam@95 1327 # `FILE.' does not work on cygwin managed mounts.
cannam@95 1328 func_source ()
cannam@95 1329 {
cannam@95 1330 $opt_debug
cannam@95 1331 case $1 in
cannam@95 1332 */* | *\\*) . "$1" ;;
cannam@95 1333 *) . "./$1" ;;
cannam@95 1334 esac
cannam@95 1335 }
cannam@95 1336
cannam@95 1337
cannam@95 1338 # func_resolve_sysroot PATH
cannam@95 1339 # Replace a leading = in PATH with a sysroot. Store the result into
cannam@95 1340 # func_resolve_sysroot_result
cannam@95 1341 func_resolve_sysroot ()
cannam@95 1342 {
cannam@95 1343 func_resolve_sysroot_result=$1
cannam@95 1344 case $func_resolve_sysroot_result in
cannam@95 1345 =*)
cannam@95 1346 func_stripname '=' '' "$func_resolve_sysroot_result"
cannam@95 1347 func_resolve_sysroot_result=$lt_sysroot$func_stripname_result
cannam@95 1348 ;;
cannam@95 1349 esac
cannam@95 1350 }
cannam@95 1351
cannam@95 1352 # func_replace_sysroot PATH
cannam@95 1353 # If PATH begins with the sysroot, replace it with = and
cannam@95 1354 # store the result into func_replace_sysroot_result.
cannam@95 1355 func_replace_sysroot ()
cannam@95 1356 {
cannam@95 1357 case "$lt_sysroot:$1" in
cannam@95 1358 ?*:"$lt_sysroot"*)
cannam@95 1359 func_stripname "$lt_sysroot" '' "$1"
cannam@95 1360 func_replace_sysroot_result="=$func_stripname_result"
cannam@95 1361 ;;
cannam@95 1362 *)
cannam@95 1363 # Including no sysroot.
cannam@95 1364 func_replace_sysroot_result=$1
cannam@95 1365 ;;
cannam@95 1366 esac
cannam@95 1367 }
cannam@95 1368
cannam@95 1369 # func_infer_tag arg
cannam@95 1370 # Infer tagged configuration to use if any are available and
cannam@95 1371 # if one wasn't chosen via the "--tag" command line option.
cannam@95 1372 # Only attempt this if the compiler in the base compile
cannam@95 1373 # command doesn't match the default compiler.
cannam@95 1374 # arg is usually of the form 'gcc ...'
cannam@95 1375 func_infer_tag ()
cannam@95 1376 {
cannam@95 1377 $opt_debug
cannam@95 1378 if test -n "$available_tags" && test -z "$tagname"; then
cannam@95 1379 CC_quoted=
cannam@95 1380 for arg in $CC; do
cannam@95 1381 func_append_quoted CC_quoted "$arg"
cannam@95 1382 done
cannam@95 1383 CC_expanded=`func_echo_all $CC`
cannam@95 1384 CC_quoted_expanded=`func_echo_all $CC_quoted`
cannam@95 1385 case $@ in
cannam@95 1386 # Blanks in the command may have been stripped by the calling shell,
cannam@95 1387 # but not from the CC environment variable when configure was run.
cannam@95 1388 " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \
cannam@95 1389 " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;;
cannam@95 1390 # Blanks at the start of $base_compile will cause this to fail
cannam@95 1391 # if we don't check for them as well.
cannam@95 1392 *)
cannam@95 1393 for z in $available_tags; do
cannam@95 1394 if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then
cannam@95 1395 # Evaluate the configuration.
cannam@95 1396 eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
cannam@95 1397 CC_quoted=
cannam@95 1398 for arg in $CC; do
cannam@95 1399 # Double-quote args containing other shell metacharacters.
cannam@95 1400 func_append_quoted CC_quoted "$arg"
cannam@95 1401 done
cannam@95 1402 CC_expanded=`func_echo_all $CC`
cannam@95 1403 CC_quoted_expanded=`func_echo_all $CC_quoted`
cannam@95 1404 case "$@ " in
cannam@95 1405 " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \
cannam@95 1406 " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*)
cannam@95 1407 # The compiler in the base compile command matches
cannam@95 1408 # the one in the tagged configuration.
cannam@95 1409 # Assume this is the tagged configuration we want.
cannam@95 1410 tagname=$z
cannam@95 1411 break
cannam@95 1412 ;;
cannam@95 1413 esac
cannam@95 1414 fi
cannam@95 1415 done
cannam@95 1416 # If $tagname still isn't set, then no tagged configuration
cannam@95 1417 # was found and let the user know that the "--tag" command
cannam@95 1418 # line option must be used.
cannam@95 1419 if test -z "$tagname"; then
cannam@95 1420 func_echo "unable to infer tagged configuration"
cannam@95 1421 func_fatal_error "specify a tag with \`--tag'"
cannam@95 1422 # else
cannam@95 1423 # func_verbose "using $tagname tagged configuration"
cannam@95 1424 fi
cannam@95 1425 ;;
cannam@95 1426 esac
cannam@95 1427 fi
cannam@95 1428 }
cannam@95 1429
cannam@95 1430
cannam@95 1431
cannam@95 1432 # func_write_libtool_object output_name pic_name nonpic_name
cannam@95 1433 # Create a libtool object file (analogous to a ".la" file),
cannam@95 1434 # but don't create it if we're doing a dry run.
cannam@95 1435 func_write_libtool_object ()
cannam@95 1436 {
cannam@95 1437 write_libobj=${1}
cannam@95 1438 if test "$build_libtool_libs" = yes; then
cannam@95 1439 write_lobj=\'${2}\'
cannam@95 1440 else
cannam@95 1441 write_lobj=none
cannam@95 1442 fi
cannam@95 1443
cannam@95 1444 if test "$build_old_libs" = yes; then
cannam@95 1445 write_oldobj=\'${3}\'
cannam@95 1446 else
cannam@95 1447 write_oldobj=none
cannam@95 1448 fi
cannam@95 1449
cannam@95 1450 $opt_dry_run || {
cannam@95 1451 cat >${write_libobj}T <<EOF
cannam@95 1452 # $write_libobj - a libtool object file
cannam@95 1453 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@95 1454 #
cannam@95 1455 # Please DO NOT delete this file!
cannam@95 1456 # It is necessary for linking the library.
cannam@95 1457
cannam@95 1458 # Name of the PIC object.
cannam@95 1459 pic_object=$write_lobj
cannam@95 1460
cannam@95 1461 # Name of the non-PIC object
cannam@95 1462 non_pic_object=$write_oldobj
cannam@95 1463
cannam@95 1464 EOF
cannam@95 1465 $MV "${write_libobj}T" "${write_libobj}"
cannam@95 1466 }
cannam@95 1467 }
cannam@95 1468
cannam@95 1469
cannam@95 1470 ##################################################
cannam@95 1471 # FILE NAME AND PATH CONVERSION HELPER FUNCTIONS #
cannam@95 1472 ##################################################
cannam@95 1473
cannam@95 1474 # func_convert_core_file_wine_to_w32 ARG
cannam@95 1475 # Helper function used by file name conversion functions when $build is *nix,
cannam@95 1476 # and $host is mingw, cygwin, or some other w32 environment. Relies on a
cannam@95 1477 # correctly configured wine environment available, with the winepath program
cannam@95 1478 # in $build's $PATH.
cannam@95 1479 #
cannam@95 1480 # ARG is the $build file name to be converted to w32 format.
cannam@95 1481 # Result is available in $func_convert_core_file_wine_to_w32_result, and will
cannam@95 1482 # be empty on error (or when ARG is empty)
cannam@95 1483 func_convert_core_file_wine_to_w32 ()
cannam@95 1484 {
cannam@95 1485 $opt_debug
cannam@95 1486 func_convert_core_file_wine_to_w32_result="$1"
cannam@95 1487 if test -n "$1"; then
cannam@95 1488 # Unfortunately, winepath does not exit with a non-zero error code, so we
cannam@95 1489 # are forced to check the contents of stdout. On the other hand, if the
cannam@95 1490 # command is not found, the shell will set an exit code of 127 and print
cannam@95 1491 # *an error message* to stdout. So we must check for both error code of
cannam@95 1492 # zero AND non-empty stdout, which explains the odd construction:
cannam@95 1493 func_convert_core_file_wine_to_w32_tmp=`winepath -w "$1" 2>/dev/null`
cannam@95 1494 if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then
cannam@95 1495 func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" |
cannam@95 1496 $SED -e "$lt_sed_naive_backslashify"`
cannam@95 1497 else
cannam@95 1498 func_convert_core_file_wine_to_w32_result=
cannam@95 1499 fi
cannam@95 1500 fi
cannam@95 1501 }
cannam@95 1502 # end: func_convert_core_file_wine_to_w32
cannam@95 1503
cannam@95 1504
cannam@95 1505 # func_convert_core_path_wine_to_w32 ARG
cannam@95 1506 # Helper function used by path conversion functions when $build is *nix, and
cannam@95 1507 # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly
cannam@95 1508 # configured wine environment available, with the winepath program in $build's
cannam@95 1509 # $PATH. Assumes ARG has no leading or trailing path separator characters.
cannam@95 1510 #
cannam@95 1511 # ARG is path to be converted from $build format to win32.
cannam@95 1512 # Result is available in $func_convert_core_path_wine_to_w32_result.
cannam@95 1513 # Unconvertible file (directory) names in ARG are skipped; if no directory names
cannam@95 1514 # are convertible, then the result may be empty.
cannam@95 1515 func_convert_core_path_wine_to_w32 ()
cannam@95 1516 {
cannam@95 1517 $opt_debug
cannam@95 1518 # unfortunately, winepath doesn't convert paths, only file names
cannam@95 1519 func_convert_core_path_wine_to_w32_result=""
cannam@95 1520 if test -n "$1"; then
cannam@95 1521 oldIFS=$IFS
cannam@95 1522 IFS=:
cannam@95 1523 for func_convert_core_path_wine_to_w32_f in $1; do
cannam@95 1524 IFS=$oldIFS
cannam@95 1525 func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f"
cannam@95 1526 if test -n "$func_convert_core_file_wine_to_w32_result" ; then
cannam@95 1527 if test -z "$func_convert_core_path_wine_to_w32_result"; then
cannam@95 1528 func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result"
cannam@95 1529 else
cannam@95 1530 func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result"
cannam@95 1531 fi
cannam@95 1532 fi
cannam@95 1533 done
cannam@95 1534 IFS=$oldIFS
cannam@95 1535 fi
cannam@95 1536 }
cannam@95 1537 # end: func_convert_core_path_wine_to_w32
cannam@95 1538
cannam@95 1539
cannam@95 1540 # func_cygpath ARGS...
cannam@95 1541 # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when
cannam@95 1542 # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2)
cannam@95 1543 # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or
cannam@95 1544 # (2), returns the Cygwin file name or path in func_cygpath_result (input
cannam@95 1545 # file name or path is assumed to be in w32 format, as previously converted
cannam@95 1546 # from $build's *nix or MSYS format). In case (3), returns the w32 file name
cannam@95 1547 # or path in func_cygpath_result (input file name or path is assumed to be in
cannam@95 1548 # Cygwin format). Returns an empty string on error.
cannam@95 1549 #
cannam@95 1550 # ARGS are passed to cygpath, with the last one being the file name or path to
cannam@95 1551 # be converted.
cannam@95 1552 #
cannam@95 1553 # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH
cannam@95 1554 # environment variable; do not put it in $PATH.
cannam@95 1555 func_cygpath ()
cannam@95 1556 {
cannam@95 1557 $opt_debug
cannam@95 1558 if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then
cannam@95 1559 func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null`
cannam@95 1560 if test "$?" -ne 0; then
cannam@95 1561 # on failure, ensure result is empty
cannam@95 1562 func_cygpath_result=
cannam@95 1563 fi
cannam@95 1564 else
cannam@95 1565 func_cygpath_result=
cannam@95 1566 func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'"
cannam@95 1567 fi
cannam@95 1568 }
cannam@95 1569 #end: func_cygpath
cannam@95 1570
cannam@95 1571
cannam@95 1572 # func_convert_core_msys_to_w32 ARG
cannam@95 1573 # Convert file name or path ARG from MSYS format to w32 format. Return
cannam@95 1574 # result in func_convert_core_msys_to_w32_result.
cannam@95 1575 func_convert_core_msys_to_w32 ()
cannam@95 1576 {
cannam@95 1577 $opt_debug
cannam@95 1578 # awkward: cmd appends spaces to result
cannam@95 1579 func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null |
cannam@95 1580 $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"`
cannam@95 1581 }
cannam@95 1582 #end: func_convert_core_msys_to_w32
cannam@95 1583
cannam@95 1584
cannam@95 1585 # func_convert_file_check ARG1 ARG2
cannam@95 1586 # Verify that ARG1 (a file name in $build format) was converted to $host
cannam@95 1587 # format in ARG2. Otherwise, emit an error message, but continue (resetting
cannam@95 1588 # func_to_host_file_result to ARG1).
cannam@95 1589 func_convert_file_check ()
cannam@95 1590 {
cannam@95 1591 $opt_debug
cannam@95 1592 if test -z "$2" && test -n "$1" ; then
cannam@95 1593 func_error "Could not determine host file name corresponding to"
cannam@95 1594 func_error " \`$1'"
cannam@95 1595 func_error "Continuing, but uninstalled executables may not work."
cannam@95 1596 # Fallback:
cannam@95 1597 func_to_host_file_result="$1"
cannam@95 1598 fi
cannam@95 1599 }
cannam@95 1600 # end func_convert_file_check
cannam@95 1601
cannam@95 1602
cannam@95 1603 # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH
cannam@95 1604 # Verify that FROM_PATH (a path in $build format) was converted to $host
cannam@95 1605 # format in TO_PATH. Otherwise, emit an error message, but continue, resetting
cannam@95 1606 # func_to_host_file_result to a simplistic fallback value (see below).
cannam@95 1607 func_convert_path_check ()
cannam@95 1608 {
cannam@95 1609 $opt_debug
cannam@95 1610 if test -z "$4" && test -n "$3"; then
cannam@95 1611 func_error "Could not determine the host path corresponding to"
cannam@95 1612 func_error " \`$3'"
cannam@95 1613 func_error "Continuing, but uninstalled executables may not work."
cannam@95 1614 # Fallback. This is a deliberately simplistic "conversion" and
cannam@95 1615 # should not be "improved". See libtool.info.
cannam@95 1616 if test "x$1" != "x$2"; then
cannam@95 1617 lt_replace_pathsep_chars="s|$1|$2|g"
cannam@95 1618 func_to_host_path_result=`echo "$3" |
cannam@95 1619 $SED -e "$lt_replace_pathsep_chars"`
cannam@95 1620 else
cannam@95 1621 func_to_host_path_result="$3"
cannam@95 1622 fi
cannam@95 1623 fi
cannam@95 1624 }
cannam@95 1625 # end func_convert_path_check
cannam@95 1626
cannam@95 1627
cannam@95 1628 # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG
cannam@95 1629 # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT
cannam@95 1630 # and appending REPL if ORIG matches BACKPAT.
cannam@95 1631 func_convert_path_front_back_pathsep ()
cannam@95 1632 {
cannam@95 1633 $opt_debug
cannam@95 1634 case $4 in
cannam@95 1635 $1 ) func_to_host_path_result="$3$func_to_host_path_result"
cannam@95 1636 ;;
cannam@95 1637 esac
cannam@95 1638 case $4 in
cannam@95 1639 $2 ) func_append func_to_host_path_result "$3"
cannam@95 1640 ;;
cannam@95 1641 esac
cannam@95 1642 }
cannam@95 1643 # end func_convert_path_front_back_pathsep
cannam@95 1644
cannam@95 1645
cannam@95 1646 ##################################################
cannam@95 1647 # $build to $host FILE NAME CONVERSION FUNCTIONS #
cannam@95 1648 ##################################################
cannam@95 1649 # invoked via `$to_host_file_cmd ARG'
cannam@95 1650 #
cannam@95 1651 # In each case, ARG is the path to be converted from $build to $host format.
cannam@95 1652 # Result will be available in $func_to_host_file_result.
cannam@95 1653
cannam@95 1654
cannam@95 1655 # func_to_host_file ARG
cannam@95 1656 # Converts the file name ARG from $build format to $host format. Return result
cannam@95 1657 # in func_to_host_file_result.
cannam@95 1658 func_to_host_file ()
cannam@95 1659 {
cannam@95 1660 $opt_debug
cannam@95 1661 $to_host_file_cmd "$1"
cannam@95 1662 }
cannam@95 1663 # end func_to_host_file
cannam@95 1664
cannam@95 1665
cannam@95 1666 # func_to_tool_file ARG LAZY
cannam@95 1667 # converts the file name ARG from $build format to toolchain format. Return
cannam@95 1668 # result in func_to_tool_file_result. If the conversion in use is listed
cannam@95 1669 # in (the comma separated) LAZY, no conversion takes place.
cannam@95 1670 func_to_tool_file ()
cannam@95 1671 {
cannam@95 1672 $opt_debug
cannam@95 1673 case ,$2, in
cannam@95 1674 *,"$to_tool_file_cmd",*)
cannam@95 1675 func_to_tool_file_result=$1
cannam@95 1676 ;;
cannam@95 1677 *)
cannam@95 1678 $to_tool_file_cmd "$1"
cannam@95 1679 func_to_tool_file_result=$func_to_host_file_result
cannam@95 1680 ;;
cannam@95 1681 esac
cannam@95 1682 }
cannam@95 1683 # end func_to_tool_file
cannam@95 1684
cannam@95 1685
cannam@95 1686 # func_convert_file_noop ARG
cannam@95 1687 # Copy ARG to func_to_host_file_result.
cannam@95 1688 func_convert_file_noop ()
cannam@95 1689 {
cannam@95 1690 func_to_host_file_result="$1"
cannam@95 1691 }
cannam@95 1692 # end func_convert_file_noop
cannam@95 1693
cannam@95 1694
cannam@95 1695 # func_convert_file_msys_to_w32 ARG
cannam@95 1696 # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic
cannam@95 1697 # conversion to w32 is not available inside the cwrapper. Returns result in
cannam@95 1698 # func_to_host_file_result.
cannam@95 1699 func_convert_file_msys_to_w32 ()
cannam@95 1700 {
cannam@95 1701 $opt_debug
cannam@95 1702 func_to_host_file_result="$1"
cannam@95 1703 if test -n "$1"; then
cannam@95 1704 func_convert_core_msys_to_w32 "$1"
cannam@95 1705 func_to_host_file_result="$func_convert_core_msys_to_w32_result"
cannam@95 1706 fi
cannam@95 1707 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@95 1708 }
cannam@95 1709 # end func_convert_file_msys_to_w32
cannam@95 1710
cannam@95 1711
cannam@95 1712 # func_convert_file_cygwin_to_w32 ARG
cannam@95 1713 # Convert file name ARG from Cygwin to w32 format. Returns result in
cannam@95 1714 # func_to_host_file_result.
cannam@95 1715 func_convert_file_cygwin_to_w32 ()
cannam@95 1716 {
cannam@95 1717 $opt_debug
cannam@95 1718 func_to_host_file_result="$1"
cannam@95 1719 if test -n "$1"; then
cannam@95 1720 # because $build is cygwin, we call "the" cygpath in $PATH; no need to use
cannam@95 1721 # LT_CYGPATH in this case.
cannam@95 1722 func_to_host_file_result=`cygpath -m "$1"`
cannam@95 1723 fi
cannam@95 1724 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@95 1725 }
cannam@95 1726 # end func_convert_file_cygwin_to_w32
cannam@95 1727
cannam@95 1728
cannam@95 1729 # func_convert_file_nix_to_w32 ARG
cannam@95 1730 # Convert file name ARG from *nix to w32 format. Requires a wine environment
cannam@95 1731 # and a working winepath. Returns result in func_to_host_file_result.
cannam@95 1732 func_convert_file_nix_to_w32 ()
cannam@95 1733 {
cannam@95 1734 $opt_debug
cannam@95 1735 func_to_host_file_result="$1"
cannam@95 1736 if test -n "$1"; then
cannam@95 1737 func_convert_core_file_wine_to_w32 "$1"
cannam@95 1738 func_to_host_file_result="$func_convert_core_file_wine_to_w32_result"
cannam@95 1739 fi
cannam@95 1740 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@95 1741 }
cannam@95 1742 # end func_convert_file_nix_to_w32
cannam@95 1743
cannam@95 1744
cannam@95 1745 # func_convert_file_msys_to_cygwin ARG
cannam@95 1746 # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set.
cannam@95 1747 # Returns result in func_to_host_file_result.
cannam@95 1748 func_convert_file_msys_to_cygwin ()
cannam@95 1749 {
cannam@95 1750 $opt_debug
cannam@95 1751 func_to_host_file_result="$1"
cannam@95 1752 if test -n "$1"; then
cannam@95 1753 func_convert_core_msys_to_w32 "$1"
cannam@95 1754 func_cygpath -u "$func_convert_core_msys_to_w32_result"
cannam@95 1755 func_to_host_file_result="$func_cygpath_result"
cannam@95 1756 fi
cannam@95 1757 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@95 1758 }
cannam@95 1759 # end func_convert_file_msys_to_cygwin
cannam@95 1760
cannam@95 1761
cannam@95 1762 # func_convert_file_nix_to_cygwin ARG
cannam@95 1763 # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed
cannam@95 1764 # in a wine environment, working winepath, and LT_CYGPATH set. Returns result
cannam@95 1765 # in func_to_host_file_result.
cannam@95 1766 func_convert_file_nix_to_cygwin ()
cannam@95 1767 {
cannam@95 1768 $opt_debug
cannam@95 1769 func_to_host_file_result="$1"
cannam@95 1770 if test -n "$1"; then
cannam@95 1771 # convert from *nix to w32, then use cygpath to convert from w32 to cygwin.
cannam@95 1772 func_convert_core_file_wine_to_w32 "$1"
cannam@95 1773 func_cygpath -u "$func_convert_core_file_wine_to_w32_result"
cannam@95 1774 func_to_host_file_result="$func_cygpath_result"
cannam@95 1775 fi
cannam@95 1776 func_convert_file_check "$1" "$func_to_host_file_result"
cannam@95 1777 }
cannam@95 1778 # end func_convert_file_nix_to_cygwin
cannam@95 1779
cannam@95 1780
cannam@95 1781 #############################################
cannam@95 1782 # $build to $host PATH CONVERSION FUNCTIONS #
cannam@95 1783 #############################################
cannam@95 1784 # invoked via `$to_host_path_cmd ARG'
cannam@95 1785 #
cannam@95 1786 # In each case, ARG is the path to be converted from $build to $host format.
cannam@95 1787 # The result will be available in $func_to_host_path_result.
cannam@95 1788 #
cannam@95 1789 # Path separators are also converted from $build format to $host format. If
cannam@95 1790 # ARG begins or ends with a path separator character, it is preserved (but
cannam@95 1791 # converted to $host format) on output.
cannam@95 1792 #
cannam@95 1793 # All path conversion functions are named using the following convention:
cannam@95 1794 # file name conversion function : func_convert_file_X_to_Y ()
cannam@95 1795 # path conversion function : func_convert_path_X_to_Y ()
cannam@95 1796 # where, for any given $build/$host combination the 'X_to_Y' value is the
cannam@95 1797 # same. If conversion functions are added for new $build/$host combinations,
cannam@95 1798 # the two new functions must follow this pattern, or func_init_to_host_path_cmd
cannam@95 1799 # will break.
cannam@95 1800
cannam@95 1801
cannam@95 1802 # func_init_to_host_path_cmd
cannam@95 1803 # Ensures that function "pointer" variable $to_host_path_cmd is set to the
cannam@95 1804 # appropriate value, based on the value of $to_host_file_cmd.
cannam@95 1805 to_host_path_cmd=
cannam@95 1806 func_init_to_host_path_cmd ()
cannam@95 1807 {
cannam@95 1808 $opt_debug
cannam@95 1809 if test -z "$to_host_path_cmd"; then
cannam@95 1810 func_stripname 'func_convert_file_' '' "$to_host_file_cmd"
cannam@95 1811 to_host_path_cmd="func_convert_path_${func_stripname_result}"
cannam@95 1812 fi
cannam@95 1813 }
cannam@95 1814
cannam@95 1815
cannam@95 1816 # func_to_host_path ARG
cannam@95 1817 # Converts the path ARG from $build format to $host format. Return result
cannam@95 1818 # in func_to_host_path_result.
cannam@95 1819 func_to_host_path ()
cannam@95 1820 {
cannam@95 1821 $opt_debug
cannam@95 1822 func_init_to_host_path_cmd
cannam@95 1823 $to_host_path_cmd "$1"
cannam@95 1824 }
cannam@95 1825 # end func_to_host_path
cannam@95 1826
cannam@95 1827
cannam@95 1828 # func_convert_path_noop ARG
cannam@95 1829 # Copy ARG to func_to_host_path_result.
cannam@95 1830 func_convert_path_noop ()
cannam@95 1831 {
cannam@95 1832 func_to_host_path_result="$1"
cannam@95 1833 }
cannam@95 1834 # end func_convert_path_noop
cannam@95 1835
cannam@95 1836
cannam@95 1837 # func_convert_path_msys_to_w32 ARG
cannam@95 1838 # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic
cannam@95 1839 # conversion to w32 is not available inside the cwrapper. Returns result in
cannam@95 1840 # func_to_host_path_result.
cannam@95 1841 func_convert_path_msys_to_w32 ()
cannam@95 1842 {
cannam@95 1843 $opt_debug
cannam@95 1844 func_to_host_path_result="$1"
cannam@95 1845 if test -n "$1"; then
cannam@95 1846 # Remove leading and trailing path separator characters from ARG. MSYS
cannam@95 1847 # behavior is inconsistent here; cygpath turns them into '.;' and ';.';
cannam@95 1848 # and winepath ignores them completely.
cannam@95 1849 func_stripname : : "$1"
cannam@95 1850 func_to_host_path_tmp1=$func_stripname_result
cannam@95 1851 func_convert_core_msys_to_w32 "$func_to_host_path_tmp1"
cannam@95 1852 func_to_host_path_result="$func_convert_core_msys_to_w32_result"
cannam@95 1853 func_convert_path_check : ";" \
cannam@95 1854 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@95 1855 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
cannam@95 1856 fi
cannam@95 1857 }
cannam@95 1858 # end func_convert_path_msys_to_w32
cannam@95 1859
cannam@95 1860
cannam@95 1861 # func_convert_path_cygwin_to_w32 ARG
cannam@95 1862 # Convert path ARG from Cygwin to w32 format. Returns result in
cannam@95 1863 # func_to_host_file_result.
cannam@95 1864 func_convert_path_cygwin_to_w32 ()
cannam@95 1865 {
cannam@95 1866 $opt_debug
cannam@95 1867 func_to_host_path_result="$1"
cannam@95 1868 if test -n "$1"; then
cannam@95 1869 # See func_convert_path_msys_to_w32:
cannam@95 1870 func_stripname : : "$1"
cannam@95 1871 func_to_host_path_tmp1=$func_stripname_result
cannam@95 1872 func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"`
cannam@95 1873 func_convert_path_check : ";" \
cannam@95 1874 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@95 1875 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
cannam@95 1876 fi
cannam@95 1877 }
cannam@95 1878 # end func_convert_path_cygwin_to_w32
cannam@95 1879
cannam@95 1880
cannam@95 1881 # func_convert_path_nix_to_w32 ARG
cannam@95 1882 # Convert path ARG from *nix to w32 format. Requires a wine environment and
cannam@95 1883 # a working winepath. Returns result in func_to_host_file_result.
cannam@95 1884 func_convert_path_nix_to_w32 ()
cannam@95 1885 {
cannam@95 1886 $opt_debug
cannam@95 1887 func_to_host_path_result="$1"
cannam@95 1888 if test -n "$1"; then
cannam@95 1889 # See func_convert_path_msys_to_w32:
cannam@95 1890 func_stripname : : "$1"
cannam@95 1891 func_to_host_path_tmp1=$func_stripname_result
cannam@95 1892 func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1"
cannam@95 1893 func_to_host_path_result="$func_convert_core_path_wine_to_w32_result"
cannam@95 1894 func_convert_path_check : ";" \
cannam@95 1895 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@95 1896 func_convert_path_front_back_pathsep ":*" "*:" ";" "$1"
cannam@95 1897 fi
cannam@95 1898 }
cannam@95 1899 # end func_convert_path_nix_to_w32
cannam@95 1900
cannam@95 1901
cannam@95 1902 # func_convert_path_msys_to_cygwin ARG
cannam@95 1903 # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set.
cannam@95 1904 # Returns result in func_to_host_file_result.
cannam@95 1905 func_convert_path_msys_to_cygwin ()
cannam@95 1906 {
cannam@95 1907 $opt_debug
cannam@95 1908 func_to_host_path_result="$1"
cannam@95 1909 if test -n "$1"; then
cannam@95 1910 # See func_convert_path_msys_to_w32:
cannam@95 1911 func_stripname : : "$1"
cannam@95 1912 func_to_host_path_tmp1=$func_stripname_result
cannam@95 1913 func_convert_core_msys_to_w32 "$func_to_host_path_tmp1"
cannam@95 1914 func_cygpath -u -p "$func_convert_core_msys_to_w32_result"
cannam@95 1915 func_to_host_path_result="$func_cygpath_result"
cannam@95 1916 func_convert_path_check : : \
cannam@95 1917 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@95 1918 func_convert_path_front_back_pathsep ":*" "*:" : "$1"
cannam@95 1919 fi
cannam@95 1920 }
cannam@95 1921 # end func_convert_path_msys_to_cygwin
cannam@95 1922
cannam@95 1923
cannam@95 1924 # func_convert_path_nix_to_cygwin ARG
cannam@95 1925 # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a
cannam@95 1926 # a wine environment, working winepath, and LT_CYGPATH set. Returns result in
cannam@95 1927 # func_to_host_file_result.
cannam@95 1928 func_convert_path_nix_to_cygwin ()
cannam@95 1929 {
cannam@95 1930 $opt_debug
cannam@95 1931 func_to_host_path_result="$1"
cannam@95 1932 if test -n "$1"; then
cannam@95 1933 # Remove leading and trailing path separator characters from
cannam@95 1934 # ARG. msys behavior is inconsistent here, cygpath turns them
cannam@95 1935 # into '.;' and ';.', and winepath ignores them completely.
cannam@95 1936 func_stripname : : "$1"
cannam@95 1937 func_to_host_path_tmp1=$func_stripname_result
cannam@95 1938 func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1"
cannam@95 1939 func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result"
cannam@95 1940 func_to_host_path_result="$func_cygpath_result"
cannam@95 1941 func_convert_path_check : : \
cannam@95 1942 "$func_to_host_path_tmp1" "$func_to_host_path_result"
cannam@95 1943 func_convert_path_front_back_pathsep ":*" "*:" : "$1"
cannam@95 1944 fi
cannam@95 1945 }
cannam@95 1946 # end func_convert_path_nix_to_cygwin
cannam@95 1947
cannam@95 1948
cannam@95 1949 # func_mode_compile arg...
cannam@95 1950 func_mode_compile ()
cannam@95 1951 {
cannam@95 1952 $opt_debug
cannam@95 1953 # Get the compilation command and the source file.
cannam@95 1954 base_compile=
cannam@95 1955 srcfile="$nonopt" # always keep a non-empty value in "srcfile"
cannam@95 1956 suppress_opt=yes
cannam@95 1957 suppress_output=
cannam@95 1958 arg_mode=normal
cannam@95 1959 libobj=
cannam@95 1960 later=
cannam@95 1961 pie_flag=
cannam@95 1962
cannam@95 1963 for arg
cannam@95 1964 do
cannam@95 1965 case $arg_mode in
cannam@95 1966 arg )
cannam@95 1967 # do not "continue". Instead, add this to base_compile
cannam@95 1968 lastarg="$arg"
cannam@95 1969 arg_mode=normal
cannam@95 1970 ;;
cannam@95 1971
cannam@95 1972 target )
cannam@95 1973 libobj="$arg"
cannam@95 1974 arg_mode=normal
cannam@95 1975 continue
cannam@95 1976 ;;
cannam@95 1977
cannam@95 1978 normal )
cannam@95 1979 # Accept any command-line options.
cannam@95 1980 case $arg in
cannam@95 1981 -o)
cannam@95 1982 test -n "$libobj" && \
cannam@95 1983 func_fatal_error "you cannot specify \`-o' more than once"
cannam@95 1984 arg_mode=target
cannam@95 1985 continue
cannam@95 1986 ;;
cannam@95 1987
cannam@95 1988 -pie | -fpie | -fPIE)
cannam@95 1989 func_append pie_flag " $arg"
cannam@95 1990 continue
cannam@95 1991 ;;
cannam@95 1992
cannam@95 1993 -shared | -static | -prefer-pic | -prefer-non-pic)
cannam@95 1994 func_append later " $arg"
cannam@95 1995 continue
cannam@95 1996 ;;
cannam@95 1997
cannam@95 1998 -no-suppress)
cannam@95 1999 suppress_opt=no
cannam@95 2000 continue
cannam@95 2001 ;;
cannam@95 2002
cannam@95 2003 -Xcompiler)
cannam@95 2004 arg_mode=arg # the next one goes into the "base_compile" arg list
cannam@95 2005 continue # The current "srcfile" will either be retained or
cannam@95 2006 ;; # replaced later. I would guess that would be a bug.
cannam@95 2007
cannam@95 2008 -Wc,*)
cannam@95 2009 func_stripname '-Wc,' '' "$arg"
cannam@95 2010 args=$func_stripname_result
cannam@95 2011 lastarg=
cannam@95 2012 save_ifs="$IFS"; IFS=','
cannam@95 2013 for arg in $args; do
cannam@95 2014 IFS="$save_ifs"
cannam@95 2015 func_append_quoted lastarg "$arg"
cannam@95 2016 done
cannam@95 2017 IFS="$save_ifs"
cannam@95 2018 func_stripname ' ' '' "$lastarg"
cannam@95 2019 lastarg=$func_stripname_result
cannam@95 2020
cannam@95 2021 # Add the arguments to base_compile.
cannam@95 2022 func_append base_compile " $lastarg"
cannam@95 2023 continue
cannam@95 2024 ;;
cannam@95 2025
cannam@95 2026 *)
cannam@95 2027 # Accept the current argument as the source file.
cannam@95 2028 # The previous "srcfile" becomes the current argument.
cannam@95 2029 #
cannam@95 2030 lastarg="$srcfile"
cannam@95 2031 srcfile="$arg"
cannam@95 2032 ;;
cannam@95 2033 esac # case $arg
cannam@95 2034 ;;
cannam@95 2035 esac # case $arg_mode
cannam@95 2036
cannam@95 2037 # Aesthetically quote the previous argument.
cannam@95 2038 func_append_quoted base_compile "$lastarg"
cannam@95 2039 done # for arg
cannam@95 2040
cannam@95 2041 case $arg_mode in
cannam@95 2042 arg)
cannam@95 2043 func_fatal_error "you must specify an argument for -Xcompile"
cannam@95 2044 ;;
cannam@95 2045 target)
cannam@95 2046 func_fatal_error "you must specify a target with \`-o'"
cannam@95 2047 ;;
cannam@95 2048 *)
cannam@95 2049 # Get the name of the library object.
cannam@95 2050 test -z "$libobj" && {
cannam@95 2051 func_basename "$srcfile"
cannam@95 2052 libobj="$func_basename_result"
cannam@95 2053 }
cannam@95 2054 ;;
cannam@95 2055 esac
cannam@95 2056
cannam@95 2057 # Recognize several different file suffixes.
cannam@95 2058 # If the user specifies -o file.o, it is replaced with file.lo
cannam@95 2059 case $libobj in
cannam@95 2060 *.[cCFSifmso] | \
cannam@95 2061 *.ada | *.adb | *.ads | *.asm | \
cannam@95 2062 *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \
cannam@95 2063 *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup)
cannam@95 2064 func_xform "$libobj"
cannam@95 2065 libobj=$func_xform_result
cannam@95 2066 ;;
cannam@95 2067 esac
cannam@95 2068
cannam@95 2069 case $libobj in
cannam@95 2070 *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;;
cannam@95 2071 *)
cannam@95 2072 func_fatal_error "cannot determine name of library object from \`$libobj'"
cannam@95 2073 ;;
cannam@95 2074 esac
cannam@95 2075
cannam@95 2076 func_infer_tag $base_compile
cannam@95 2077
cannam@95 2078 for arg in $later; do
cannam@95 2079 case $arg in
cannam@95 2080 -shared)
cannam@95 2081 test "$build_libtool_libs" != yes && \
cannam@95 2082 func_fatal_configuration "can not build a shared library"
cannam@95 2083 build_old_libs=no
cannam@95 2084 continue
cannam@95 2085 ;;
cannam@95 2086
cannam@95 2087 -static)
cannam@95 2088 build_libtool_libs=no
cannam@95 2089 build_old_libs=yes
cannam@95 2090 continue
cannam@95 2091 ;;
cannam@95 2092
cannam@95 2093 -prefer-pic)
cannam@95 2094 pic_mode=yes
cannam@95 2095 continue
cannam@95 2096 ;;
cannam@95 2097
cannam@95 2098 -prefer-non-pic)
cannam@95 2099 pic_mode=no
cannam@95 2100 continue
cannam@95 2101 ;;
cannam@95 2102 esac
cannam@95 2103 done
cannam@95 2104
cannam@95 2105 func_quote_for_eval "$libobj"
cannam@95 2106 test "X$libobj" != "X$func_quote_for_eval_result" \
cannam@95 2107 && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \
cannam@95 2108 && func_warning "libobj name \`$libobj' may not contain shell special characters."
cannam@95 2109 func_dirname_and_basename "$obj" "/" ""
cannam@95 2110 objname="$func_basename_result"
cannam@95 2111 xdir="$func_dirname_result"
cannam@95 2112 lobj=${xdir}$objdir/$objname
cannam@95 2113
cannam@95 2114 test -z "$base_compile" && \
cannam@95 2115 func_fatal_help "you must specify a compilation command"
cannam@95 2116
cannam@95 2117 # Delete any leftover library objects.
cannam@95 2118 if test "$build_old_libs" = yes; then
cannam@95 2119 removelist="$obj $lobj $libobj ${libobj}T"
cannam@95 2120 else
cannam@95 2121 removelist="$lobj $libobj ${libobj}T"
cannam@95 2122 fi
cannam@95 2123
cannam@95 2124 # On Cygwin there's no "real" PIC flag so we must build both object types
cannam@95 2125 case $host_os in
cannam@95 2126 cygwin* | mingw* | pw32* | os2* | cegcc*)
cannam@95 2127 pic_mode=default
cannam@95 2128 ;;
cannam@95 2129 esac
cannam@95 2130 if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then
cannam@95 2131 # non-PIC code in shared libraries is not supported
cannam@95 2132 pic_mode=default
cannam@95 2133 fi
cannam@95 2134
cannam@95 2135 # Calculate the filename of the output object if compiler does
cannam@95 2136 # not support -o with -c
cannam@95 2137 if test "$compiler_c_o" = no; then
cannam@95 2138 output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext}
cannam@95 2139 lockfile="$output_obj.lock"
cannam@95 2140 else
cannam@95 2141 output_obj=
cannam@95 2142 need_locks=no
cannam@95 2143 lockfile=
cannam@95 2144 fi
cannam@95 2145
cannam@95 2146 # Lock this critical section if it is needed
cannam@95 2147 # We use this script file to make the link, it avoids creating a new file
cannam@95 2148 if test "$need_locks" = yes; then
cannam@95 2149 until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do
cannam@95 2150 func_echo "Waiting for $lockfile to be removed"
cannam@95 2151 sleep 2
cannam@95 2152 done
cannam@95 2153 elif test "$need_locks" = warn; then
cannam@95 2154 if test -f "$lockfile"; then
cannam@95 2155 $ECHO "\
cannam@95 2156 *** ERROR, $lockfile exists and contains:
cannam@95 2157 `cat $lockfile 2>/dev/null`
cannam@95 2158
cannam@95 2159 This indicates that another process is trying to use the same
cannam@95 2160 temporary object file, and libtool could not work around it because
cannam@95 2161 your compiler does not support \`-c' and \`-o' together. If you
cannam@95 2162 repeat this compilation, it may succeed, by chance, but you had better
cannam@95 2163 avoid parallel builds (make -j) in this platform, or get a better
cannam@95 2164 compiler."
cannam@95 2165
cannam@95 2166 $opt_dry_run || $RM $removelist
cannam@95 2167 exit $EXIT_FAILURE
cannam@95 2168 fi
cannam@95 2169 func_append removelist " $output_obj"
cannam@95 2170 $ECHO "$srcfile" > "$lockfile"
cannam@95 2171 fi
cannam@95 2172
cannam@95 2173 $opt_dry_run || $RM $removelist
cannam@95 2174 func_append removelist " $lockfile"
cannam@95 2175 trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15
cannam@95 2176
cannam@95 2177 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32
cannam@95 2178 srcfile=$func_to_tool_file_result
cannam@95 2179 func_quote_for_eval "$srcfile"
cannam@95 2180 qsrcfile=$func_quote_for_eval_result
cannam@95 2181
cannam@95 2182 # Only build a PIC object if we are building libtool libraries.
cannam@95 2183 if test "$build_libtool_libs" = yes; then
cannam@95 2184 # Without this assignment, base_compile gets emptied.
cannam@95 2185 fbsd_hideous_sh_bug=$base_compile
cannam@95 2186
cannam@95 2187 if test "$pic_mode" != no; then
cannam@95 2188 command="$base_compile $qsrcfile $pic_flag"
cannam@95 2189 else
cannam@95 2190 # Don't build PIC code
cannam@95 2191 command="$base_compile $qsrcfile"
cannam@95 2192 fi
cannam@95 2193
cannam@95 2194 func_mkdir_p "$xdir$objdir"
cannam@95 2195
cannam@95 2196 if test -z "$output_obj"; then
cannam@95 2197 # Place PIC objects in $objdir
cannam@95 2198 func_append command " -o $lobj"
cannam@95 2199 fi
cannam@95 2200
cannam@95 2201 func_show_eval_locale "$command" \
cannam@95 2202 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE'
cannam@95 2203
cannam@95 2204 if test "$need_locks" = warn &&
cannam@95 2205 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
cannam@95 2206 $ECHO "\
cannam@95 2207 *** ERROR, $lockfile contains:
cannam@95 2208 `cat $lockfile 2>/dev/null`
cannam@95 2209
cannam@95 2210 but it should contain:
cannam@95 2211 $srcfile
cannam@95 2212
cannam@95 2213 This indicates that another process is trying to use the same
cannam@95 2214 temporary object file, and libtool could not work around it because
cannam@95 2215 your compiler does not support \`-c' and \`-o' together. If you
cannam@95 2216 repeat this compilation, it may succeed, by chance, but you had better
cannam@95 2217 avoid parallel builds (make -j) in this platform, or get a better
cannam@95 2218 compiler."
cannam@95 2219
cannam@95 2220 $opt_dry_run || $RM $removelist
cannam@95 2221 exit $EXIT_FAILURE
cannam@95 2222 fi
cannam@95 2223
cannam@95 2224 # Just move the object if needed, then go on to compile the next one
cannam@95 2225 if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then
cannam@95 2226 func_show_eval '$MV "$output_obj" "$lobj"' \
cannam@95 2227 'error=$?; $opt_dry_run || $RM $removelist; exit $error'
cannam@95 2228 fi
cannam@95 2229
cannam@95 2230 # Allow error messages only from the first compilation.
cannam@95 2231 if test "$suppress_opt" = yes; then
cannam@95 2232 suppress_output=' >/dev/null 2>&1'
cannam@95 2233 fi
cannam@95 2234 fi
cannam@95 2235
cannam@95 2236 # Only build a position-dependent object if we build old libraries.
cannam@95 2237 if test "$build_old_libs" = yes; then
cannam@95 2238 if test "$pic_mode" != yes; then
cannam@95 2239 # Don't build PIC code
cannam@95 2240 command="$base_compile $qsrcfile$pie_flag"
cannam@95 2241 else
cannam@95 2242 command="$base_compile $qsrcfile $pic_flag"
cannam@95 2243 fi
cannam@95 2244 if test "$compiler_c_o" = yes; then
cannam@95 2245 func_append command " -o $obj"
cannam@95 2246 fi
cannam@95 2247
cannam@95 2248 # Suppress compiler output if we already did a PIC compilation.
cannam@95 2249 func_append command "$suppress_output"
cannam@95 2250 func_show_eval_locale "$command" \
cannam@95 2251 '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE'
cannam@95 2252
cannam@95 2253 if test "$need_locks" = warn &&
cannam@95 2254 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
cannam@95 2255 $ECHO "\
cannam@95 2256 *** ERROR, $lockfile contains:
cannam@95 2257 `cat $lockfile 2>/dev/null`
cannam@95 2258
cannam@95 2259 but it should contain:
cannam@95 2260 $srcfile
cannam@95 2261
cannam@95 2262 This indicates that another process is trying to use the same
cannam@95 2263 temporary object file, and libtool could not work around it because
cannam@95 2264 your compiler does not support \`-c' and \`-o' together. If you
cannam@95 2265 repeat this compilation, it may succeed, by chance, but you had better
cannam@95 2266 avoid parallel builds (make -j) in this platform, or get a better
cannam@95 2267 compiler."
cannam@95 2268
cannam@95 2269 $opt_dry_run || $RM $removelist
cannam@95 2270 exit $EXIT_FAILURE
cannam@95 2271 fi
cannam@95 2272
cannam@95 2273 # Just move the object if needed
cannam@95 2274 if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then
cannam@95 2275 func_show_eval '$MV "$output_obj" "$obj"' \
cannam@95 2276 'error=$?; $opt_dry_run || $RM $removelist; exit $error'
cannam@95 2277 fi
cannam@95 2278 fi
cannam@95 2279
cannam@95 2280 $opt_dry_run || {
cannam@95 2281 func_write_libtool_object "$libobj" "$objdir/$objname" "$objname"
cannam@95 2282
cannam@95 2283 # Unlock the critical section if it was locked
cannam@95 2284 if test "$need_locks" != no; then
cannam@95 2285 removelist=$lockfile
cannam@95 2286 $RM "$lockfile"
cannam@95 2287 fi
cannam@95 2288 }
cannam@95 2289
cannam@95 2290 exit $EXIT_SUCCESS
cannam@95 2291 }
cannam@95 2292
cannam@95 2293 $opt_help || {
cannam@95 2294 test "$opt_mode" = compile && func_mode_compile ${1+"$@"}
cannam@95 2295 }
cannam@95 2296
cannam@95 2297 func_mode_help ()
cannam@95 2298 {
cannam@95 2299 # We need to display help for each of the modes.
cannam@95 2300 case $opt_mode in
cannam@95 2301 "")
cannam@95 2302 # Generic help is extracted from the usage comments
cannam@95 2303 # at the start of this file.
cannam@95 2304 func_help
cannam@95 2305 ;;
cannam@95 2306
cannam@95 2307 clean)
cannam@95 2308 $ECHO \
cannam@95 2309 "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
cannam@95 2310
cannam@95 2311 Remove files from the build directory.
cannam@95 2312
cannam@95 2313 RM is the name of the program to use to delete files associated with each FILE
cannam@95 2314 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
cannam@95 2315 to RM.
cannam@95 2316
cannam@95 2317 If FILE is a libtool library, object or program, all the files associated
cannam@95 2318 with it are deleted. Otherwise, only FILE itself is deleted using RM."
cannam@95 2319 ;;
cannam@95 2320
cannam@95 2321 compile)
cannam@95 2322 $ECHO \
cannam@95 2323 "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
cannam@95 2324
cannam@95 2325 Compile a source file into a libtool library object.
cannam@95 2326
cannam@95 2327 This mode accepts the following additional options:
cannam@95 2328
cannam@95 2329 -o OUTPUT-FILE set the output file name to OUTPUT-FILE
cannam@95 2330 -no-suppress do not suppress compiler output for multiple passes
cannam@95 2331 -prefer-pic try to build PIC objects only
cannam@95 2332 -prefer-non-pic try to build non-PIC objects only
cannam@95 2333 -shared do not build a \`.o' file suitable for static linking
cannam@95 2334 -static only build a \`.o' file suitable for static linking
cannam@95 2335 -Wc,FLAG pass FLAG directly to the compiler
cannam@95 2336
cannam@95 2337 COMPILE-COMMAND is a command to be used in creating a \`standard' object file
cannam@95 2338 from the given SOURCEFILE.
cannam@95 2339
cannam@95 2340 The output file name is determined by removing the directory component from
cannam@95 2341 SOURCEFILE, then substituting the C source code suffix \`.c' with the
cannam@95 2342 library object suffix, \`.lo'."
cannam@95 2343 ;;
cannam@95 2344
cannam@95 2345 execute)
cannam@95 2346 $ECHO \
cannam@95 2347 "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]...
cannam@95 2348
cannam@95 2349 Automatically set library path, then run a program.
cannam@95 2350
cannam@95 2351 This mode accepts the following additional options:
cannam@95 2352
cannam@95 2353 -dlopen FILE add the directory containing FILE to the library path
cannam@95 2354
cannam@95 2355 This mode sets the library path environment variable according to \`-dlopen'
cannam@95 2356 flags.
cannam@95 2357
cannam@95 2358 If any of the ARGS are libtool executable wrappers, then they are translated
cannam@95 2359 into their corresponding uninstalled binary, and any of their required library
cannam@95 2360 directories are added to the library path.
cannam@95 2361
cannam@95 2362 Then, COMMAND is executed, with ARGS as arguments."
cannam@95 2363 ;;
cannam@95 2364
cannam@95 2365 finish)
cannam@95 2366 $ECHO \
cannam@95 2367 "Usage: $progname [OPTION]... --mode=finish [LIBDIR]...
cannam@95 2368
cannam@95 2369 Complete the installation of libtool libraries.
cannam@95 2370
cannam@95 2371 Each LIBDIR is a directory that contains libtool libraries.
cannam@95 2372
cannam@95 2373 The commands that this mode executes may require superuser privileges. Use
cannam@95 2374 the \`--dry-run' option if you just want to see what would be executed."
cannam@95 2375 ;;
cannam@95 2376
cannam@95 2377 install)
cannam@95 2378 $ECHO \
cannam@95 2379 "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND...
cannam@95 2380
cannam@95 2381 Install executables or libraries.
cannam@95 2382
cannam@95 2383 INSTALL-COMMAND is the installation command. The first component should be
cannam@95 2384 either the \`install' or \`cp' program.
cannam@95 2385
cannam@95 2386 The following components of INSTALL-COMMAND are treated specially:
cannam@95 2387
cannam@95 2388 -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation
cannam@95 2389
cannam@95 2390 The rest of the components are interpreted as arguments to that command (only
cannam@95 2391 BSD-compatible install options are recognized)."
cannam@95 2392 ;;
cannam@95 2393
cannam@95 2394 link)
cannam@95 2395 $ECHO \
cannam@95 2396 "Usage: $progname [OPTION]... --mode=link LINK-COMMAND...
cannam@95 2397
cannam@95 2398 Link object files or libraries together to form another library, or to
cannam@95 2399 create an executable program.
cannam@95 2400
cannam@95 2401 LINK-COMMAND is a command using the C compiler that you would use to create
cannam@95 2402 a program from several object files.
cannam@95 2403
cannam@95 2404 The following components of LINK-COMMAND are treated specially:
cannam@95 2405
cannam@95 2406 -all-static do not do any dynamic linking at all
cannam@95 2407 -avoid-version do not add a version suffix if possible
cannam@95 2408 -bindir BINDIR specify path to binaries directory (for systems where
cannam@95 2409 libraries must be found in the PATH setting at runtime)
cannam@95 2410 -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
cannam@95 2411 -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols
cannam@95 2412 -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
cannam@95 2413 -export-symbols SYMFILE
cannam@95 2414 try to export only the symbols listed in SYMFILE
cannam@95 2415 -export-symbols-regex REGEX
cannam@95 2416 try to export only the symbols matching REGEX
cannam@95 2417 -LLIBDIR search LIBDIR for required installed libraries
cannam@95 2418 -lNAME OUTPUT-FILE requires the installed library libNAME
cannam@95 2419 -module build a library that can dlopened
cannam@95 2420 -no-fast-install disable the fast-install mode
cannam@95 2421 -no-install link a not-installable executable
cannam@95 2422 -no-undefined declare that a library does not refer to external symbols
cannam@95 2423 -o OUTPUT-FILE create OUTPUT-FILE from the specified objects
cannam@95 2424 -objectlist FILE Use a list of object files found in FILE to specify objects
cannam@95 2425 -precious-files-regex REGEX
cannam@95 2426 don't remove output files matching REGEX
cannam@95 2427 -release RELEASE specify package release information
cannam@95 2428 -rpath LIBDIR the created library will eventually be installed in LIBDIR
cannam@95 2429 -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries
cannam@95 2430 -shared only do dynamic linking of libtool libraries
cannam@95 2431 -shrext SUFFIX override the standard shared library file extension
cannam@95 2432 -static do not do any dynamic linking of uninstalled libtool libraries
cannam@95 2433 -static-libtool-libs
cannam@95 2434 do not do any dynamic linking of libtool libraries
cannam@95 2435 -version-info CURRENT[:REVISION[:AGE]]
cannam@95 2436 specify library version info [each variable defaults to 0]
cannam@95 2437 -weak LIBNAME declare that the target provides the LIBNAME interface
cannam@95 2438 -Wc,FLAG
cannam@95 2439 -Xcompiler FLAG pass linker-specific FLAG directly to the compiler
cannam@95 2440 -Wl,FLAG
cannam@95 2441 -Xlinker FLAG pass linker-specific FLAG directly to the linker
cannam@95 2442 -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC)
cannam@95 2443
cannam@95 2444 All other options (arguments beginning with \`-') are ignored.
cannam@95 2445
cannam@95 2446 Every other argument is treated as a filename. Files ending in \`.la' are
cannam@95 2447 treated as uninstalled libtool libraries, other files are standard or library
cannam@95 2448 object files.
cannam@95 2449
cannam@95 2450 If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
cannam@95 2451 only library objects (\`.lo' files) may be specified, and \`-rpath' is
cannam@95 2452 required, except when creating a convenience library.
cannam@95 2453
cannam@95 2454 If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
cannam@95 2455 using \`ar' and \`ranlib', or on Windows using \`lib'.
cannam@95 2456
cannam@95 2457 If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
cannam@95 2458 is created, otherwise an executable program is created."
cannam@95 2459 ;;
cannam@95 2460
cannam@95 2461 uninstall)
cannam@95 2462 $ECHO \
cannam@95 2463 "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
cannam@95 2464
cannam@95 2465 Remove libraries from an installation directory.
cannam@95 2466
cannam@95 2467 RM is the name of the program to use to delete files associated with each FILE
cannam@95 2468 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
cannam@95 2469 to RM.
cannam@95 2470
cannam@95 2471 If FILE is a libtool library, all the files associated with it are deleted.
cannam@95 2472 Otherwise, only FILE itself is deleted using RM."
cannam@95 2473 ;;
cannam@95 2474
cannam@95 2475 *)
cannam@95 2476 func_fatal_help "invalid operation mode \`$opt_mode'"
cannam@95 2477 ;;
cannam@95 2478 esac
cannam@95 2479
cannam@95 2480 echo
cannam@95 2481 $ECHO "Try \`$progname --help' for more information about other modes."
cannam@95 2482 }
cannam@95 2483
cannam@95 2484 # Now that we've collected a possible --mode arg, show help if necessary
cannam@95 2485 if $opt_help; then
cannam@95 2486 if test "$opt_help" = :; then
cannam@95 2487 func_mode_help
cannam@95 2488 else
cannam@95 2489 {
cannam@95 2490 func_help noexit
cannam@95 2491 for opt_mode in compile link execute install finish uninstall clean; do
cannam@95 2492 func_mode_help
cannam@95 2493 done
cannam@95 2494 } | sed -n '1p; 2,$s/^Usage:/ or: /p'
cannam@95 2495 {
cannam@95 2496 func_help noexit
cannam@95 2497 for opt_mode in compile link execute install finish uninstall clean; do
cannam@95 2498 echo
cannam@95 2499 func_mode_help
cannam@95 2500 done
cannam@95 2501 } |
cannam@95 2502 sed '1d
cannam@95 2503 /^When reporting/,/^Report/{
cannam@95 2504 H
cannam@95 2505 d
cannam@95 2506 }
cannam@95 2507 $x
cannam@95 2508 /information about other modes/d
cannam@95 2509 /more detailed .*MODE/d
cannam@95 2510 s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/'
cannam@95 2511 fi
cannam@95 2512 exit $?
cannam@95 2513 fi
cannam@95 2514
cannam@95 2515
cannam@95 2516 # func_mode_execute arg...
cannam@95 2517 func_mode_execute ()
cannam@95 2518 {
cannam@95 2519 $opt_debug
cannam@95 2520 # The first argument is the command name.
cannam@95 2521 cmd="$nonopt"
cannam@95 2522 test -z "$cmd" && \
cannam@95 2523 func_fatal_help "you must specify a COMMAND"
cannam@95 2524
cannam@95 2525 # Handle -dlopen flags immediately.
cannam@95 2526 for file in $opt_dlopen; do
cannam@95 2527 test -f "$file" \
cannam@95 2528 || func_fatal_help "\`$file' is not a file"
cannam@95 2529
cannam@95 2530 dir=
cannam@95 2531 case $file in
cannam@95 2532 *.la)
cannam@95 2533 func_resolve_sysroot "$file"
cannam@95 2534 file=$func_resolve_sysroot_result
cannam@95 2535
cannam@95 2536 # Check to see that this really is a libtool archive.
cannam@95 2537 func_lalib_unsafe_p "$file" \
cannam@95 2538 || func_fatal_help "\`$lib' is not a valid libtool archive"
cannam@95 2539
cannam@95 2540 # Read the libtool library.
cannam@95 2541 dlname=
cannam@95 2542 library_names=
cannam@95 2543 func_source "$file"
cannam@95 2544
cannam@95 2545 # Skip this library if it cannot be dlopened.
cannam@95 2546 if test -z "$dlname"; then
cannam@95 2547 # Warn if it was a shared library.
cannam@95 2548 test -n "$library_names" && \
cannam@95 2549 func_warning "\`$file' was not linked with \`-export-dynamic'"
cannam@95 2550 continue
cannam@95 2551 fi
cannam@95 2552
cannam@95 2553 func_dirname "$file" "" "."
cannam@95 2554 dir="$func_dirname_result"
cannam@95 2555
cannam@95 2556 if test -f "$dir/$objdir/$dlname"; then
cannam@95 2557 func_append dir "/$objdir"
cannam@95 2558 else
cannam@95 2559 if test ! -f "$dir/$dlname"; then
cannam@95 2560 func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'"
cannam@95 2561 fi
cannam@95 2562 fi
cannam@95 2563 ;;
cannam@95 2564
cannam@95 2565 *.lo)
cannam@95 2566 # Just add the directory containing the .lo file.
cannam@95 2567 func_dirname "$file" "" "."
cannam@95 2568 dir="$func_dirname_result"
cannam@95 2569 ;;
cannam@95 2570
cannam@95 2571 *)
cannam@95 2572 func_warning "\`-dlopen' is ignored for non-libtool libraries and objects"
cannam@95 2573 continue
cannam@95 2574 ;;
cannam@95 2575 esac
cannam@95 2576
cannam@95 2577 # Get the absolute pathname.
cannam@95 2578 absdir=`cd "$dir" && pwd`
cannam@95 2579 test -n "$absdir" && dir="$absdir"
cannam@95 2580
cannam@95 2581 # Now add the directory to shlibpath_var.
cannam@95 2582 if eval "test -z \"\$$shlibpath_var\""; then
cannam@95 2583 eval "$shlibpath_var=\"\$dir\""
cannam@95 2584 else
cannam@95 2585 eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
cannam@95 2586 fi
cannam@95 2587 done
cannam@95 2588
cannam@95 2589 # This variable tells wrapper scripts just to set shlibpath_var
cannam@95 2590 # rather than running their programs.
cannam@95 2591 libtool_execute_magic="$magic"
cannam@95 2592
cannam@95 2593 # Check if any of the arguments is a wrapper script.
cannam@95 2594 args=
cannam@95 2595 for file
cannam@95 2596 do
cannam@95 2597 case $file in
cannam@95 2598 -* | *.la | *.lo ) ;;
cannam@95 2599 *)
cannam@95 2600 # Do a test to see if this is really a libtool program.
cannam@95 2601 if func_ltwrapper_script_p "$file"; then
cannam@95 2602 func_source "$file"
cannam@95 2603 # Transform arg to wrapped name.
cannam@95 2604 file="$progdir/$program"
cannam@95 2605 elif func_ltwrapper_executable_p "$file"; then
cannam@95 2606 func_ltwrapper_scriptname "$file"
cannam@95 2607 func_source "$func_ltwrapper_scriptname_result"
cannam@95 2608 # Transform arg to wrapped name.
cannam@95 2609 file="$progdir/$program"
cannam@95 2610 fi
cannam@95 2611 ;;
cannam@95 2612 esac
cannam@95 2613 # Quote arguments (to preserve shell metacharacters).
cannam@95 2614 func_append_quoted args "$file"
cannam@95 2615 done
cannam@95 2616
cannam@95 2617 if test "X$opt_dry_run" = Xfalse; then
cannam@95 2618 if test -n "$shlibpath_var"; then
cannam@95 2619 # Export the shlibpath_var.
cannam@95 2620 eval "export $shlibpath_var"
cannam@95 2621 fi
cannam@95 2622
cannam@95 2623 # Restore saved environment variables
cannam@95 2624 for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES
cannam@95 2625 do
cannam@95 2626 eval "if test \"\${save_$lt_var+set}\" = set; then
cannam@95 2627 $lt_var=\$save_$lt_var; export $lt_var
cannam@95 2628 else
cannam@95 2629 $lt_unset $lt_var
cannam@95 2630 fi"
cannam@95 2631 done
cannam@95 2632
cannam@95 2633 # Now prepare to actually exec the command.
cannam@95 2634 exec_cmd="\$cmd$args"
cannam@95 2635 else
cannam@95 2636 # Display what would be done.
cannam@95 2637 if test -n "$shlibpath_var"; then
cannam@95 2638 eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\""
cannam@95 2639 echo "export $shlibpath_var"
cannam@95 2640 fi
cannam@95 2641 $ECHO "$cmd$args"
cannam@95 2642 exit $EXIT_SUCCESS
cannam@95 2643 fi
cannam@95 2644 }
cannam@95 2645
cannam@95 2646 test "$opt_mode" = execute && func_mode_execute ${1+"$@"}
cannam@95 2647
cannam@95 2648
cannam@95 2649 # func_mode_finish arg...
cannam@95 2650 func_mode_finish ()
cannam@95 2651 {
cannam@95 2652 $opt_debug
cannam@95 2653 libs=
cannam@95 2654 libdirs=
cannam@95 2655 admincmds=
cannam@95 2656
cannam@95 2657 for opt in "$nonopt" ${1+"$@"}
cannam@95 2658 do
cannam@95 2659 if test -d "$opt"; then
cannam@95 2660 func_append libdirs " $opt"
cannam@95 2661
cannam@95 2662 elif test -f "$opt"; then
cannam@95 2663 if func_lalib_unsafe_p "$opt"; then
cannam@95 2664 func_append libs " $opt"
cannam@95 2665 else
cannam@95 2666 func_warning "\`$opt' is not a valid libtool archive"
cannam@95 2667 fi
cannam@95 2668
cannam@95 2669 else
cannam@95 2670 func_fatal_error "invalid argument \`$opt'"
cannam@95 2671 fi
cannam@95 2672 done
cannam@95 2673
cannam@95 2674 if test -n "$libs"; then
cannam@95 2675 if test -n "$lt_sysroot"; then
cannam@95 2676 sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"`
cannam@95 2677 sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;"
cannam@95 2678 else
cannam@95 2679 sysroot_cmd=
cannam@95 2680 fi
cannam@95 2681
cannam@95 2682 # Remove sysroot references
cannam@95 2683 if $opt_dry_run; then
cannam@95 2684 for lib in $libs; do
cannam@95 2685 echo "removing references to $lt_sysroot and \`=' prefixes from $lib"
cannam@95 2686 done
cannam@95 2687 else
cannam@95 2688 tmpdir=`func_mktempdir`
cannam@95 2689 for lib in $libs; do
cannam@95 2690 sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \
cannam@95 2691 > $tmpdir/tmp-la
cannam@95 2692 mv -f $tmpdir/tmp-la $lib
cannam@95 2693 done
cannam@95 2694 ${RM}r "$tmpdir"
cannam@95 2695 fi
cannam@95 2696 fi
cannam@95 2697
cannam@95 2698 if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
cannam@95 2699 for libdir in $libdirs; do
cannam@95 2700 if test -n "$finish_cmds"; then
cannam@95 2701 # Do each command in the finish commands.
cannam@95 2702 func_execute_cmds "$finish_cmds" 'admincmds="$admincmds
cannam@95 2703 '"$cmd"'"'
cannam@95 2704 fi
cannam@95 2705 if test -n "$finish_eval"; then
cannam@95 2706 # Do the single finish_eval.
cannam@95 2707 eval cmds=\"$finish_eval\"
cannam@95 2708 $opt_dry_run || eval "$cmds" || func_append admincmds "
cannam@95 2709 $cmds"
cannam@95 2710 fi
cannam@95 2711 done
cannam@95 2712 fi
cannam@95 2713
cannam@95 2714 # Exit here if they wanted silent mode.
cannam@95 2715 $opt_silent && exit $EXIT_SUCCESS
cannam@95 2716
cannam@95 2717 if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
cannam@95 2718 echo "----------------------------------------------------------------------"
cannam@95 2719 echo "Libraries have been installed in:"
cannam@95 2720 for libdir in $libdirs; do
cannam@95 2721 $ECHO " $libdir"
cannam@95 2722 done
cannam@95 2723 echo
cannam@95 2724 echo "If you ever happen to want to link against installed libraries"
cannam@95 2725 echo "in a given directory, LIBDIR, you must either use libtool, and"
cannam@95 2726 echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
cannam@95 2727 echo "flag during linking and do at least one of the following:"
cannam@95 2728 if test -n "$shlibpath_var"; then
cannam@95 2729 echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
cannam@95 2730 echo " during execution"
cannam@95 2731 fi
cannam@95 2732 if test -n "$runpath_var"; then
cannam@95 2733 echo " - add LIBDIR to the \`$runpath_var' environment variable"
cannam@95 2734 echo " during linking"
cannam@95 2735 fi
cannam@95 2736 if test -n "$hardcode_libdir_flag_spec"; then
cannam@95 2737 libdir=LIBDIR
cannam@95 2738 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@95 2739
cannam@95 2740 $ECHO " - use the \`$flag' linker flag"
cannam@95 2741 fi
cannam@95 2742 if test -n "$admincmds"; then
cannam@95 2743 $ECHO " - have your system administrator run these commands:$admincmds"
cannam@95 2744 fi
cannam@95 2745 if test -f /etc/ld.so.conf; then
cannam@95 2746 echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
cannam@95 2747 fi
cannam@95 2748 echo
cannam@95 2749
cannam@95 2750 echo "See any operating system documentation about shared libraries for"
cannam@95 2751 case $host in
cannam@95 2752 solaris2.[6789]|solaris2.1[0-9])
cannam@95 2753 echo "more information, such as the ld(1), crle(1) and ld.so(8) manual"
cannam@95 2754 echo "pages."
cannam@95 2755 ;;
cannam@95 2756 *)
cannam@95 2757 echo "more information, such as the ld(1) and ld.so(8) manual pages."
cannam@95 2758 ;;
cannam@95 2759 esac
cannam@95 2760 echo "----------------------------------------------------------------------"
cannam@95 2761 fi
cannam@95 2762 exit $EXIT_SUCCESS
cannam@95 2763 }
cannam@95 2764
cannam@95 2765 test "$opt_mode" = finish && func_mode_finish ${1+"$@"}
cannam@95 2766
cannam@95 2767
cannam@95 2768 # func_mode_install arg...
cannam@95 2769 func_mode_install ()
cannam@95 2770 {
cannam@95 2771 $opt_debug
cannam@95 2772 # There may be an optional sh(1) argument at the beginning of
cannam@95 2773 # install_prog (especially on Windows NT).
cannam@95 2774 if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
cannam@95 2775 # Allow the use of GNU shtool's install command.
cannam@95 2776 case $nonopt in *shtool*) :;; *) false;; esac; then
cannam@95 2777 # Aesthetically quote it.
cannam@95 2778 func_quote_for_eval "$nonopt"
cannam@95 2779 install_prog="$func_quote_for_eval_result "
cannam@95 2780 arg=$1
cannam@95 2781 shift
cannam@95 2782 else
cannam@95 2783 install_prog=
cannam@95 2784 arg=$nonopt
cannam@95 2785 fi
cannam@95 2786
cannam@95 2787 # The real first argument should be the name of the installation program.
cannam@95 2788 # Aesthetically quote it.
cannam@95 2789 func_quote_for_eval "$arg"
cannam@95 2790 func_append install_prog "$func_quote_for_eval_result"
cannam@95 2791 install_shared_prog=$install_prog
cannam@95 2792 case " $install_prog " in
cannam@95 2793 *[\\\ /]cp\ *) install_cp=: ;;
cannam@95 2794 *) install_cp=false ;;
cannam@95 2795 esac
cannam@95 2796
cannam@95 2797 # We need to accept at least all the BSD install flags.
cannam@95 2798 dest=
cannam@95 2799 files=
cannam@95 2800 opts=
cannam@95 2801 prev=
cannam@95 2802 install_type=
cannam@95 2803 isdir=no
cannam@95 2804 stripme=
cannam@95 2805 no_mode=:
cannam@95 2806 for arg
cannam@95 2807 do
cannam@95 2808 arg2=
cannam@95 2809 if test -n "$dest"; then
cannam@95 2810 func_append files " $dest"
cannam@95 2811 dest=$arg
cannam@95 2812 continue
cannam@95 2813 fi
cannam@95 2814
cannam@95 2815 case $arg in
cannam@95 2816 -d) isdir=yes ;;
cannam@95 2817 -f)
cannam@95 2818 if $install_cp; then :; else
cannam@95 2819 prev=$arg
cannam@95 2820 fi
cannam@95 2821 ;;
cannam@95 2822 -g | -m | -o)
cannam@95 2823 prev=$arg
cannam@95 2824 ;;
cannam@95 2825 -s)
cannam@95 2826 stripme=" -s"
cannam@95 2827 continue
cannam@95 2828 ;;
cannam@95 2829 -*)
cannam@95 2830 ;;
cannam@95 2831 *)
cannam@95 2832 # If the previous option needed an argument, then skip it.
cannam@95 2833 if test -n "$prev"; then
cannam@95 2834 if test "x$prev" = x-m && test -n "$install_override_mode"; then
cannam@95 2835 arg2=$install_override_mode
cannam@95 2836 no_mode=false
cannam@95 2837 fi
cannam@95 2838 prev=
cannam@95 2839 else
cannam@95 2840 dest=$arg
cannam@95 2841 continue
cannam@95 2842 fi
cannam@95 2843 ;;
cannam@95 2844 esac
cannam@95 2845
cannam@95 2846 # Aesthetically quote the argument.
cannam@95 2847 func_quote_for_eval "$arg"
cannam@95 2848 func_append install_prog " $func_quote_for_eval_result"
cannam@95 2849 if test -n "$arg2"; then
cannam@95 2850 func_quote_for_eval "$arg2"
cannam@95 2851 fi
cannam@95 2852 func_append install_shared_prog " $func_quote_for_eval_result"
cannam@95 2853 done
cannam@95 2854
cannam@95 2855 test -z "$install_prog" && \
cannam@95 2856 func_fatal_help "you must specify an install program"
cannam@95 2857
cannam@95 2858 test -n "$prev" && \
cannam@95 2859 func_fatal_help "the \`$prev' option requires an argument"
cannam@95 2860
cannam@95 2861 if test -n "$install_override_mode" && $no_mode; then
cannam@95 2862 if $install_cp; then :; else
cannam@95 2863 func_quote_for_eval "$install_override_mode"
cannam@95 2864 func_append install_shared_prog " -m $func_quote_for_eval_result"
cannam@95 2865 fi
cannam@95 2866 fi
cannam@95 2867
cannam@95 2868 if test -z "$files"; then
cannam@95 2869 if test -z "$dest"; then
cannam@95 2870 func_fatal_help "no file or destination specified"
cannam@95 2871 else
cannam@95 2872 func_fatal_help "you must specify a destination"
cannam@95 2873 fi
cannam@95 2874 fi
cannam@95 2875
cannam@95 2876 # Strip any trailing slash from the destination.
cannam@95 2877 func_stripname '' '/' "$dest"
cannam@95 2878 dest=$func_stripname_result
cannam@95 2879
cannam@95 2880 # Check to see that the destination is a directory.
cannam@95 2881 test -d "$dest" && isdir=yes
cannam@95 2882 if test "$isdir" = yes; then
cannam@95 2883 destdir="$dest"
cannam@95 2884 destname=
cannam@95 2885 else
cannam@95 2886 func_dirname_and_basename "$dest" "" "."
cannam@95 2887 destdir="$func_dirname_result"
cannam@95 2888 destname="$func_basename_result"
cannam@95 2889
cannam@95 2890 # Not a directory, so check to see that there is only one file specified.
cannam@95 2891 set dummy $files; shift
cannam@95 2892 test "$#" -gt 1 && \
cannam@95 2893 func_fatal_help "\`$dest' is not a directory"
cannam@95 2894 fi
cannam@95 2895 case $destdir in
cannam@95 2896 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@95 2897 *)
cannam@95 2898 for file in $files; do
cannam@95 2899 case $file in
cannam@95 2900 *.lo) ;;
cannam@95 2901 *)
cannam@95 2902 func_fatal_help "\`$destdir' must be an absolute directory name"
cannam@95 2903 ;;
cannam@95 2904 esac
cannam@95 2905 done
cannam@95 2906 ;;
cannam@95 2907 esac
cannam@95 2908
cannam@95 2909 # This variable tells wrapper scripts just to set variables rather
cannam@95 2910 # than running their programs.
cannam@95 2911 libtool_install_magic="$magic"
cannam@95 2912
cannam@95 2913 staticlibs=
cannam@95 2914 future_libdirs=
cannam@95 2915 current_libdirs=
cannam@95 2916 for file in $files; do
cannam@95 2917
cannam@95 2918 # Do each installation.
cannam@95 2919 case $file in
cannam@95 2920 *.$libext)
cannam@95 2921 # Do the static libraries later.
cannam@95 2922 func_append staticlibs " $file"
cannam@95 2923 ;;
cannam@95 2924
cannam@95 2925 *.la)
cannam@95 2926 func_resolve_sysroot "$file"
cannam@95 2927 file=$func_resolve_sysroot_result
cannam@95 2928
cannam@95 2929 # Check to see that this really is a libtool archive.
cannam@95 2930 func_lalib_unsafe_p "$file" \
cannam@95 2931 || func_fatal_help "\`$file' is not a valid libtool archive"
cannam@95 2932
cannam@95 2933 library_names=
cannam@95 2934 old_library=
cannam@95 2935 relink_command=
cannam@95 2936 func_source "$file"
cannam@95 2937
cannam@95 2938 # Add the libdir to current_libdirs if it is the destination.
cannam@95 2939 if test "X$destdir" = "X$libdir"; then
cannam@95 2940 case "$current_libdirs " in
cannam@95 2941 *" $libdir "*) ;;
cannam@95 2942 *) func_append current_libdirs " $libdir" ;;
cannam@95 2943 esac
cannam@95 2944 else
cannam@95 2945 # Note the libdir as a future libdir.
cannam@95 2946 case "$future_libdirs " in
cannam@95 2947 *" $libdir "*) ;;
cannam@95 2948 *) func_append future_libdirs " $libdir" ;;
cannam@95 2949 esac
cannam@95 2950 fi
cannam@95 2951
cannam@95 2952 func_dirname "$file" "/" ""
cannam@95 2953 dir="$func_dirname_result"
cannam@95 2954 func_append dir "$objdir"
cannam@95 2955
cannam@95 2956 if test -n "$relink_command"; then
cannam@95 2957 # Determine the prefix the user has applied to our future dir.
cannam@95 2958 inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"`
cannam@95 2959
cannam@95 2960 # Don't allow the user to place us outside of our expected
cannam@95 2961 # location b/c this prevents finding dependent libraries that
cannam@95 2962 # are installed to the same prefix.
cannam@95 2963 # At present, this check doesn't affect windows .dll's that
cannam@95 2964 # are installed into $libdir/../bin (currently, that works fine)
cannam@95 2965 # but it's something to keep an eye on.
cannam@95 2966 test "$inst_prefix_dir" = "$destdir" && \
cannam@95 2967 func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir"
cannam@95 2968
cannam@95 2969 if test -n "$inst_prefix_dir"; then
cannam@95 2970 # Stick the inst_prefix_dir data into the link command.
cannam@95 2971 relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
cannam@95 2972 else
cannam@95 2973 relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
cannam@95 2974 fi
cannam@95 2975
cannam@95 2976 func_warning "relinking \`$file'"
cannam@95 2977 func_show_eval "$relink_command" \
cannam@95 2978 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"'
cannam@95 2979 fi
cannam@95 2980
cannam@95 2981 # See the names of the shared library.
cannam@95 2982 set dummy $library_names; shift
cannam@95 2983 if test -n "$1"; then
cannam@95 2984 realname="$1"
cannam@95 2985 shift
cannam@95 2986
cannam@95 2987 srcname="$realname"
cannam@95 2988 test -n "$relink_command" && srcname="$realname"T
cannam@95 2989
cannam@95 2990 # Install the shared library and build the symlinks.
cannam@95 2991 func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \
cannam@95 2992 'exit $?'
cannam@95 2993 tstripme="$stripme"
cannam@95 2994 case $host_os in
cannam@95 2995 cygwin* | mingw* | pw32* | cegcc*)
cannam@95 2996 case $realname in
cannam@95 2997 *.dll.a)
cannam@95 2998 tstripme=""
cannam@95 2999 ;;
cannam@95 3000 esac
cannam@95 3001 ;;
cannam@95 3002 esac
cannam@95 3003 if test -n "$tstripme" && test -n "$striplib"; then
cannam@95 3004 func_show_eval "$striplib $destdir/$realname" 'exit $?'
cannam@95 3005 fi
cannam@95 3006
cannam@95 3007 if test "$#" -gt 0; then
cannam@95 3008 # Delete the old symlinks, and create new ones.
cannam@95 3009 # Try `ln -sf' first, because the `ln' binary might depend on
cannam@95 3010 # the symlink we replace! Solaris /bin/ln does not understand -f,
cannam@95 3011 # so we also need to try rm && ln -s.
cannam@95 3012 for linkname
cannam@95 3013 do
cannam@95 3014 test "$linkname" != "$realname" \
cannam@95 3015 && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })"
cannam@95 3016 done
cannam@95 3017 fi
cannam@95 3018
cannam@95 3019 # Do each command in the postinstall commands.
cannam@95 3020 lib="$destdir/$realname"
cannam@95 3021 func_execute_cmds "$postinstall_cmds" 'exit $?'
cannam@95 3022 fi
cannam@95 3023
cannam@95 3024 # Install the pseudo-library for information purposes.
cannam@95 3025 func_basename "$file"
cannam@95 3026 name="$func_basename_result"
cannam@95 3027 instname="$dir/$name"i
cannam@95 3028 func_show_eval "$install_prog $instname $destdir/$name" 'exit $?'
cannam@95 3029
cannam@95 3030 # Maybe install the static library, too.
cannam@95 3031 test -n "$old_library" && func_append staticlibs " $dir/$old_library"
cannam@95 3032 ;;
cannam@95 3033
cannam@95 3034 *.lo)
cannam@95 3035 # Install (i.e. copy) a libtool object.
cannam@95 3036
cannam@95 3037 # Figure out destination file name, if it wasn't already specified.
cannam@95 3038 if test -n "$destname"; then
cannam@95 3039 destfile="$destdir/$destname"
cannam@95 3040 else
cannam@95 3041 func_basename "$file"
cannam@95 3042 destfile="$func_basename_result"
cannam@95 3043 destfile="$destdir/$destfile"
cannam@95 3044 fi
cannam@95 3045
cannam@95 3046 # Deduce the name of the destination old-style object file.
cannam@95 3047 case $destfile in
cannam@95 3048 *.lo)
cannam@95 3049 func_lo2o "$destfile"
cannam@95 3050 staticdest=$func_lo2o_result
cannam@95 3051 ;;
cannam@95 3052 *.$objext)
cannam@95 3053 staticdest="$destfile"
cannam@95 3054 destfile=
cannam@95 3055 ;;
cannam@95 3056 *)
cannam@95 3057 func_fatal_help "cannot copy a libtool object to \`$destfile'"
cannam@95 3058 ;;
cannam@95 3059 esac
cannam@95 3060
cannam@95 3061 # Install the libtool object if requested.
cannam@95 3062 test -n "$destfile" && \
cannam@95 3063 func_show_eval "$install_prog $file $destfile" 'exit $?'
cannam@95 3064
cannam@95 3065 # Install the old object if enabled.
cannam@95 3066 if test "$build_old_libs" = yes; then
cannam@95 3067 # Deduce the name of the old-style object file.
cannam@95 3068 func_lo2o "$file"
cannam@95 3069 staticobj=$func_lo2o_result
cannam@95 3070 func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?'
cannam@95 3071 fi
cannam@95 3072 exit $EXIT_SUCCESS
cannam@95 3073 ;;
cannam@95 3074
cannam@95 3075 *)
cannam@95 3076 # Figure out destination file name, if it wasn't already specified.
cannam@95 3077 if test -n "$destname"; then
cannam@95 3078 destfile="$destdir/$destname"
cannam@95 3079 else
cannam@95 3080 func_basename "$file"
cannam@95 3081 destfile="$func_basename_result"
cannam@95 3082 destfile="$destdir/$destfile"
cannam@95 3083 fi
cannam@95 3084
cannam@95 3085 # If the file is missing, and there is a .exe on the end, strip it
cannam@95 3086 # because it is most likely a libtool script we actually want to
cannam@95 3087 # install
cannam@95 3088 stripped_ext=""
cannam@95 3089 case $file in
cannam@95 3090 *.exe)
cannam@95 3091 if test ! -f "$file"; then
cannam@95 3092 func_stripname '' '.exe' "$file"
cannam@95 3093 file=$func_stripname_result
cannam@95 3094 stripped_ext=".exe"
cannam@95 3095 fi
cannam@95 3096 ;;
cannam@95 3097 esac
cannam@95 3098
cannam@95 3099 # Do a test to see if this is really a libtool program.
cannam@95 3100 case $host in
cannam@95 3101 *cygwin* | *mingw*)
cannam@95 3102 if func_ltwrapper_executable_p "$file"; then
cannam@95 3103 func_ltwrapper_scriptname "$file"
cannam@95 3104 wrapper=$func_ltwrapper_scriptname_result
cannam@95 3105 else
cannam@95 3106 func_stripname '' '.exe' "$file"
cannam@95 3107 wrapper=$func_stripname_result
cannam@95 3108 fi
cannam@95 3109 ;;
cannam@95 3110 *)
cannam@95 3111 wrapper=$file
cannam@95 3112 ;;
cannam@95 3113 esac
cannam@95 3114 if func_ltwrapper_script_p "$wrapper"; then
cannam@95 3115 notinst_deplibs=
cannam@95 3116 relink_command=
cannam@95 3117
cannam@95 3118 func_source "$wrapper"
cannam@95 3119
cannam@95 3120 # Check the variables that should have been set.
cannam@95 3121 test -z "$generated_by_libtool_version" && \
cannam@95 3122 func_fatal_error "invalid libtool wrapper script \`$wrapper'"
cannam@95 3123
cannam@95 3124 finalize=yes
cannam@95 3125 for lib in $notinst_deplibs; do
cannam@95 3126 # Check to see that each library is installed.
cannam@95 3127 libdir=
cannam@95 3128 if test -f "$lib"; then
cannam@95 3129 func_source "$lib"
cannam@95 3130 fi
cannam@95 3131 libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test
cannam@95 3132 if test -n "$libdir" && test ! -f "$libfile"; then
cannam@95 3133 func_warning "\`$lib' has not been installed in \`$libdir'"
cannam@95 3134 finalize=no
cannam@95 3135 fi
cannam@95 3136 done
cannam@95 3137
cannam@95 3138 relink_command=
cannam@95 3139 func_source "$wrapper"
cannam@95 3140
cannam@95 3141 outputname=
cannam@95 3142 if test "$fast_install" = no && test -n "$relink_command"; then
cannam@95 3143 $opt_dry_run || {
cannam@95 3144 if test "$finalize" = yes; then
cannam@95 3145 tmpdir=`func_mktempdir`
cannam@95 3146 func_basename "$file$stripped_ext"
cannam@95 3147 file="$func_basename_result"
cannam@95 3148 outputname="$tmpdir/$file"
cannam@95 3149 # Replace the output file specification.
cannam@95 3150 relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'`
cannam@95 3151
cannam@95 3152 $opt_silent || {
cannam@95 3153 func_quote_for_expand "$relink_command"
cannam@95 3154 eval "func_echo $func_quote_for_expand_result"
cannam@95 3155 }
cannam@95 3156 if eval "$relink_command"; then :
cannam@95 3157 else
cannam@95 3158 func_error "error: relink \`$file' with the above command before installing it"
cannam@95 3159 $opt_dry_run || ${RM}r "$tmpdir"
cannam@95 3160 continue
cannam@95 3161 fi
cannam@95 3162 file="$outputname"
cannam@95 3163 else
cannam@95 3164 func_warning "cannot relink \`$file'"
cannam@95 3165 fi
cannam@95 3166 }
cannam@95 3167 else
cannam@95 3168 # Install the binary that we compiled earlier.
cannam@95 3169 file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"`
cannam@95 3170 fi
cannam@95 3171 fi
cannam@95 3172
cannam@95 3173 # remove .exe since cygwin /usr/bin/install will append another
cannam@95 3174 # one anyway
cannam@95 3175 case $install_prog,$host in
cannam@95 3176 */usr/bin/install*,*cygwin*)
cannam@95 3177 case $file:$destfile in
cannam@95 3178 *.exe:*.exe)
cannam@95 3179 # this is ok
cannam@95 3180 ;;
cannam@95 3181 *.exe:*)
cannam@95 3182 destfile=$destfile.exe
cannam@95 3183 ;;
cannam@95 3184 *:*.exe)
cannam@95 3185 func_stripname '' '.exe' "$destfile"
cannam@95 3186 destfile=$func_stripname_result
cannam@95 3187 ;;
cannam@95 3188 esac
cannam@95 3189 ;;
cannam@95 3190 esac
cannam@95 3191 func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?'
cannam@95 3192 $opt_dry_run || if test -n "$outputname"; then
cannam@95 3193 ${RM}r "$tmpdir"
cannam@95 3194 fi
cannam@95 3195 ;;
cannam@95 3196 esac
cannam@95 3197 done
cannam@95 3198
cannam@95 3199 for file in $staticlibs; do
cannam@95 3200 func_basename "$file"
cannam@95 3201 name="$func_basename_result"
cannam@95 3202
cannam@95 3203 # Set up the ranlib parameters.
cannam@95 3204 oldlib="$destdir/$name"
cannam@95 3205 func_to_tool_file "$oldlib" func_convert_file_msys_to_w32
cannam@95 3206 tool_oldlib=$func_to_tool_file_result
cannam@95 3207
cannam@95 3208 func_show_eval "$install_prog \$file \$oldlib" 'exit $?'
cannam@95 3209
cannam@95 3210 if test -n "$stripme" && test -n "$old_striplib"; then
cannam@95 3211 func_show_eval "$old_striplib $tool_oldlib" 'exit $?'
cannam@95 3212 fi
cannam@95 3213
cannam@95 3214 # Do each command in the postinstall commands.
cannam@95 3215 func_execute_cmds "$old_postinstall_cmds" 'exit $?'
cannam@95 3216 done
cannam@95 3217
cannam@95 3218 test -n "$future_libdirs" && \
cannam@95 3219 func_warning "remember to run \`$progname --finish$future_libdirs'"
cannam@95 3220
cannam@95 3221 if test -n "$current_libdirs"; then
cannam@95 3222 # Maybe just do a dry run.
cannam@95 3223 $opt_dry_run && current_libdirs=" -n$current_libdirs"
cannam@95 3224 exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs'
cannam@95 3225 else
cannam@95 3226 exit $EXIT_SUCCESS
cannam@95 3227 fi
cannam@95 3228 }
cannam@95 3229
cannam@95 3230 test "$opt_mode" = install && func_mode_install ${1+"$@"}
cannam@95 3231
cannam@95 3232
cannam@95 3233 # func_generate_dlsyms outputname originator pic_p
cannam@95 3234 # Extract symbols from dlprefiles and create ${outputname}S.o with
cannam@95 3235 # a dlpreopen symbol table.
cannam@95 3236 func_generate_dlsyms ()
cannam@95 3237 {
cannam@95 3238 $opt_debug
cannam@95 3239 my_outputname="$1"
cannam@95 3240 my_originator="$2"
cannam@95 3241 my_pic_p="${3-no}"
cannam@95 3242 my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'`
cannam@95 3243 my_dlsyms=
cannam@95 3244
cannam@95 3245 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@95 3246 if test -n "$NM" && test -n "$global_symbol_pipe"; then
cannam@95 3247 my_dlsyms="${my_outputname}S.c"
cannam@95 3248 else
cannam@95 3249 func_error "not configured to extract global symbols from dlpreopened files"
cannam@95 3250 fi
cannam@95 3251 fi
cannam@95 3252
cannam@95 3253 if test -n "$my_dlsyms"; then
cannam@95 3254 case $my_dlsyms in
cannam@95 3255 "") ;;
cannam@95 3256 *.c)
cannam@95 3257 # Discover the nlist of each of the dlfiles.
cannam@95 3258 nlist="$output_objdir/${my_outputname}.nm"
cannam@95 3259
cannam@95 3260 func_show_eval "$RM $nlist ${nlist}S ${nlist}T"
cannam@95 3261
cannam@95 3262 # Parse the name list into a source file.
cannam@95 3263 func_verbose "creating $output_objdir/$my_dlsyms"
cannam@95 3264
cannam@95 3265 $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\
cannam@95 3266 /* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */
cannam@95 3267 /* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */
cannam@95 3268
cannam@95 3269 #ifdef __cplusplus
cannam@95 3270 extern \"C\" {
cannam@95 3271 #endif
cannam@95 3272
cannam@95 3273 #if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4))
cannam@95 3274 #pragma GCC diagnostic ignored \"-Wstrict-prototypes\"
cannam@95 3275 #endif
cannam@95 3276
cannam@95 3277 /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */
cannam@95 3278 #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE)
cannam@95 3279 /* DATA imports from DLLs on WIN32 con't be const, because runtime
cannam@95 3280 relocations are performed -- see ld's documentation on pseudo-relocs. */
cannam@95 3281 # define LT_DLSYM_CONST
cannam@95 3282 #elif defined(__osf__)
cannam@95 3283 /* This system does not cope well with relocations in const data. */
cannam@95 3284 # define LT_DLSYM_CONST
cannam@95 3285 #else
cannam@95 3286 # define LT_DLSYM_CONST const
cannam@95 3287 #endif
cannam@95 3288
cannam@95 3289 /* External symbol declarations for the compiler. */\
cannam@95 3290 "
cannam@95 3291
cannam@95 3292 if test "$dlself" = yes; then
cannam@95 3293 func_verbose "generating symbol list for \`$output'"
cannam@95 3294
cannam@95 3295 $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist"
cannam@95 3296
cannam@95 3297 # Add our own program objects to the symbol list.
cannam@95 3298 progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@95 3299 for progfile in $progfiles; do
cannam@95 3300 func_to_tool_file "$progfile" func_convert_file_msys_to_w32
cannam@95 3301 func_verbose "extracting global C symbols from \`$func_to_tool_file_result'"
cannam@95 3302 $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'"
cannam@95 3303 done
cannam@95 3304
cannam@95 3305 if test -n "$exclude_expsyms"; then
cannam@95 3306 $opt_dry_run || {
cannam@95 3307 eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
cannam@95 3308 eval '$MV "$nlist"T "$nlist"'
cannam@95 3309 }
cannam@95 3310 fi
cannam@95 3311
cannam@95 3312 if test -n "$export_symbols_regex"; then
cannam@95 3313 $opt_dry_run || {
cannam@95 3314 eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T'
cannam@95 3315 eval '$MV "$nlist"T "$nlist"'
cannam@95 3316 }
cannam@95 3317 fi
cannam@95 3318
cannam@95 3319 # Prepare the list of exported symbols
cannam@95 3320 if test -z "$export_symbols"; then
cannam@95 3321 export_symbols="$output_objdir/$outputname.exp"
cannam@95 3322 $opt_dry_run || {
cannam@95 3323 $RM $export_symbols
cannam@95 3324 eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
cannam@95 3325 case $host in
cannam@95 3326 *cygwin* | *mingw* | *cegcc* )
cannam@95 3327 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
cannam@95 3328 eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"'
cannam@95 3329 ;;
cannam@95 3330 esac
cannam@95 3331 }
cannam@95 3332 else
cannam@95 3333 $opt_dry_run || {
cannam@95 3334 eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"'
cannam@95 3335 eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T'
cannam@95 3336 eval '$MV "$nlist"T "$nlist"'
cannam@95 3337 case $host in
cannam@95 3338 *cygwin* | *mingw* | *cegcc* )
cannam@95 3339 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
cannam@95 3340 eval 'cat "$nlist" >> "$output_objdir/$outputname.def"'
cannam@95 3341 ;;
cannam@95 3342 esac
cannam@95 3343 }
cannam@95 3344 fi
cannam@95 3345 fi
cannam@95 3346
cannam@95 3347 for dlprefile in $dlprefiles; do
cannam@95 3348 func_verbose "extracting global C symbols from \`$dlprefile'"
cannam@95 3349 func_basename "$dlprefile"
cannam@95 3350 name="$func_basename_result"
cannam@95 3351 case $host in
cannam@95 3352 *cygwin* | *mingw* | *cegcc* )
cannam@95 3353 # if an import library, we need to obtain dlname
cannam@95 3354 if func_win32_import_lib_p "$dlprefile"; then
cannam@95 3355 func_tr_sh "$dlprefile"
cannam@95 3356 eval "curr_lafile=\$libfile_$func_tr_sh_result"
cannam@95 3357 dlprefile_dlbasename=""
cannam@95 3358 if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then
cannam@95 3359 # Use subshell, to avoid clobbering current variable values
cannam@95 3360 dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"`
cannam@95 3361 if test -n "$dlprefile_dlname" ; then
cannam@95 3362 func_basename "$dlprefile_dlname"
cannam@95 3363 dlprefile_dlbasename="$func_basename_result"
cannam@95 3364 else
cannam@95 3365 # no lafile. user explicitly requested -dlpreopen <import library>.
cannam@95 3366 $sharedlib_from_linklib_cmd "$dlprefile"
cannam@95 3367 dlprefile_dlbasename=$sharedlib_from_linklib_result
cannam@95 3368 fi
cannam@95 3369 fi
cannam@95 3370 $opt_dry_run || {
cannam@95 3371 if test -n "$dlprefile_dlbasename" ; then
cannam@95 3372 eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"'
cannam@95 3373 else
cannam@95 3374 func_warning "Could not compute DLL name from $name"
cannam@95 3375 eval '$ECHO ": $name " >> "$nlist"'
cannam@95 3376 fi
cannam@95 3377 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
cannam@95 3378 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe |
cannam@95 3379 $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'"
cannam@95 3380 }
cannam@95 3381 else # not an import lib
cannam@95 3382 $opt_dry_run || {
cannam@95 3383 eval '$ECHO ": $name " >> "$nlist"'
cannam@95 3384 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
cannam@95 3385 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
cannam@95 3386 }
cannam@95 3387 fi
cannam@95 3388 ;;
cannam@95 3389 *)
cannam@95 3390 $opt_dry_run || {
cannam@95 3391 eval '$ECHO ": $name " >> "$nlist"'
cannam@95 3392 func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32
cannam@95 3393 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'"
cannam@95 3394 }
cannam@95 3395 ;;
cannam@95 3396 esac
cannam@95 3397 done
cannam@95 3398
cannam@95 3399 $opt_dry_run || {
cannam@95 3400 # Make sure we have at least an empty file.
cannam@95 3401 test -f "$nlist" || : > "$nlist"
cannam@95 3402
cannam@95 3403 if test -n "$exclude_expsyms"; then
cannam@95 3404 $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
cannam@95 3405 $MV "$nlist"T "$nlist"
cannam@95 3406 fi
cannam@95 3407
cannam@95 3408 # Try sorting and uniquifying the output.
cannam@95 3409 if $GREP -v "^: " < "$nlist" |
cannam@95 3410 if sort -k 3 </dev/null >/dev/null 2>&1; then
cannam@95 3411 sort -k 3
cannam@95 3412 else
cannam@95 3413 sort +2
cannam@95 3414 fi |
cannam@95 3415 uniq > "$nlist"S; then
cannam@95 3416 :
cannam@95 3417 else
cannam@95 3418 $GREP -v "^: " < "$nlist" > "$nlist"S
cannam@95 3419 fi
cannam@95 3420
cannam@95 3421 if test -f "$nlist"S; then
cannam@95 3422 eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"'
cannam@95 3423 else
cannam@95 3424 echo '/* NONE */' >> "$output_objdir/$my_dlsyms"
cannam@95 3425 fi
cannam@95 3426
cannam@95 3427 echo >> "$output_objdir/$my_dlsyms" "\
cannam@95 3428
cannam@95 3429 /* The mapping between symbol names and symbols. */
cannam@95 3430 typedef struct {
cannam@95 3431 const char *name;
cannam@95 3432 void *address;
cannam@95 3433 } lt_dlsymlist;
cannam@95 3434 extern LT_DLSYM_CONST lt_dlsymlist
cannam@95 3435 lt_${my_prefix}_LTX_preloaded_symbols[];
cannam@95 3436 LT_DLSYM_CONST lt_dlsymlist
cannam@95 3437 lt_${my_prefix}_LTX_preloaded_symbols[] =
cannam@95 3438 {\
cannam@95 3439 { \"$my_originator\", (void *) 0 },"
cannam@95 3440
cannam@95 3441 case $need_lib_prefix in
cannam@95 3442 no)
cannam@95 3443 eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms"
cannam@95 3444 ;;
cannam@95 3445 *)
cannam@95 3446 eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms"
cannam@95 3447 ;;
cannam@95 3448 esac
cannam@95 3449 echo >> "$output_objdir/$my_dlsyms" "\
cannam@95 3450 {0, (void *) 0}
cannam@95 3451 };
cannam@95 3452
cannam@95 3453 /* This works around a problem in FreeBSD linker */
cannam@95 3454 #ifdef FREEBSD_WORKAROUND
cannam@95 3455 static const void *lt_preloaded_setup() {
cannam@95 3456 return lt_${my_prefix}_LTX_preloaded_symbols;
cannam@95 3457 }
cannam@95 3458 #endif
cannam@95 3459
cannam@95 3460 #ifdef __cplusplus
cannam@95 3461 }
cannam@95 3462 #endif\
cannam@95 3463 "
cannam@95 3464 } # !$opt_dry_run
cannam@95 3465
cannam@95 3466 pic_flag_for_symtable=
cannam@95 3467 case "$compile_command " in
cannam@95 3468 *" -static "*) ;;
cannam@95 3469 *)
cannam@95 3470 case $host in
cannam@95 3471 # compiling the symbol table file with pic_flag works around
cannam@95 3472 # a FreeBSD bug that causes programs to crash when -lm is
cannam@95 3473 # linked before any other PIC object. But we must not use
cannam@95 3474 # pic_flag when linking with -static. The problem exists in
cannam@95 3475 # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
cannam@95 3476 *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
cannam@95 3477 pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;;
cannam@95 3478 *-*-hpux*)
cannam@95 3479 pic_flag_for_symtable=" $pic_flag" ;;
cannam@95 3480 *)
cannam@95 3481 if test "X$my_pic_p" != Xno; then
cannam@95 3482 pic_flag_for_symtable=" $pic_flag"
cannam@95 3483 fi
cannam@95 3484 ;;
cannam@95 3485 esac
cannam@95 3486 ;;
cannam@95 3487 esac
cannam@95 3488 symtab_cflags=
cannam@95 3489 for arg in $LTCFLAGS; do
cannam@95 3490 case $arg in
cannam@95 3491 -pie | -fpie | -fPIE) ;;
cannam@95 3492 *) func_append symtab_cflags " $arg" ;;
cannam@95 3493 esac
cannam@95 3494 done
cannam@95 3495
cannam@95 3496 # Now compile the dynamic symbol file.
cannam@95 3497 func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?'
cannam@95 3498
cannam@95 3499 # Clean up the generated files.
cannam@95 3500 func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"'
cannam@95 3501
cannam@95 3502 # Transform the symbol file into the correct name.
cannam@95 3503 symfileobj="$output_objdir/${my_outputname}S.$objext"
cannam@95 3504 case $host in
cannam@95 3505 *cygwin* | *mingw* | *cegcc* )
cannam@95 3506 if test -f "$output_objdir/$my_outputname.def"; then
cannam@95 3507 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
cannam@95 3508 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
cannam@95 3509 else
cannam@95 3510 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@95 3511 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@95 3512 fi
cannam@95 3513 ;;
cannam@95 3514 *)
cannam@95 3515 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@95 3516 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"`
cannam@95 3517 ;;
cannam@95 3518 esac
cannam@95 3519 ;;
cannam@95 3520 *)
cannam@95 3521 func_fatal_error "unknown suffix for \`$my_dlsyms'"
cannam@95 3522 ;;
cannam@95 3523 esac
cannam@95 3524 else
cannam@95 3525 # We keep going just in case the user didn't refer to
cannam@95 3526 # lt_preloaded_symbols. The linker will fail if global_symbol_pipe
cannam@95 3527 # really was required.
cannam@95 3528
cannam@95 3529 # Nullify the symbol file.
cannam@95 3530 compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"`
cannam@95 3531 finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"`
cannam@95 3532 fi
cannam@95 3533 }
cannam@95 3534
cannam@95 3535 # func_win32_libid arg
cannam@95 3536 # return the library type of file 'arg'
cannam@95 3537 #
cannam@95 3538 # Need a lot of goo to handle *both* DLLs and import libs
cannam@95 3539 # Has to be a shell function in order to 'eat' the argument
cannam@95 3540 # that is supplied when $file_magic_command is called.
cannam@95 3541 # Despite the name, also deal with 64 bit binaries.
cannam@95 3542 func_win32_libid ()
cannam@95 3543 {
cannam@95 3544 $opt_debug
cannam@95 3545 win32_libid_type="unknown"
cannam@95 3546 win32_fileres=`file -L $1 2>/dev/null`
cannam@95 3547 case $win32_fileres in
cannam@95 3548 *ar\ archive\ import\ library*) # definitely import
cannam@95 3549 win32_libid_type="x86 archive import"
cannam@95 3550 ;;
cannam@95 3551 *ar\ archive*) # could be an import, or static
cannam@95 3552 # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD.
cannam@95 3553 if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null |
cannam@95 3554 $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then
cannam@95 3555 func_to_tool_file "$1" func_convert_file_msys_to_w32
cannam@95 3556 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" |
cannam@95 3557 $SED -n -e '
cannam@95 3558 1,100{
cannam@95 3559 / I /{
cannam@95 3560 s,.*,import,
cannam@95 3561 p
cannam@95 3562 q
cannam@95 3563 }
cannam@95 3564 }'`
cannam@95 3565 case $win32_nmres in
cannam@95 3566 import*) win32_libid_type="x86 archive import";;
cannam@95 3567 *) win32_libid_type="x86 archive static";;
cannam@95 3568 esac
cannam@95 3569 fi
cannam@95 3570 ;;
cannam@95 3571 *DLL*)
cannam@95 3572 win32_libid_type="x86 DLL"
cannam@95 3573 ;;
cannam@95 3574 *executable*) # but shell scripts are "executable" too...
cannam@95 3575 case $win32_fileres in
cannam@95 3576 *MS\ Windows\ PE\ Intel*)
cannam@95 3577 win32_libid_type="x86 DLL"
cannam@95 3578 ;;
cannam@95 3579 esac
cannam@95 3580 ;;
cannam@95 3581 esac
cannam@95 3582 $ECHO "$win32_libid_type"
cannam@95 3583 }
cannam@95 3584
cannam@95 3585 # func_cygming_dll_for_implib ARG
cannam@95 3586 #
cannam@95 3587 # Platform-specific function to extract the
cannam@95 3588 # name of the DLL associated with the specified
cannam@95 3589 # import library ARG.
cannam@95 3590 # Invoked by eval'ing the libtool variable
cannam@95 3591 # $sharedlib_from_linklib_cmd
cannam@95 3592 # Result is available in the variable
cannam@95 3593 # $sharedlib_from_linklib_result
cannam@95 3594 func_cygming_dll_for_implib ()
cannam@95 3595 {
cannam@95 3596 $opt_debug
cannam@95 3597 sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"`
cannam@95 3598 }
cannam@95 3599
cannam@95 3600 # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs
cannam@95 3601 #
cannam@95 3602 # The is the core of a fallback implementation of a
cannam@95 3603 # platform-specific function to extract the name of the
cannam@95 3604 # DLL associated with the specified import library LIBNAME.
cannam@95 3605 #
cannam@95 3606 # SECTION_NAME is either .idata$6 or .idata$7, depending
cannam@95 3607 # on the platform and compiler that created the implib.
cannam@95 3608 #
cannam@95 3609 # Echos the name of the DLL associated with the
cannam@95 3610 # specified import library.
cannam@95 3611 func_cygming_dll_for_implib_fallback_core ()
cannam@95 3612 {
cannam@95 3613 $opt_debug
cannam@95 3614 match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"`
cannam@95 3615 $OBJDUMP -s --section "$1" "$2" 2>/dev/null |
cannam@95 3616 $SED '/^Contents of section '"$match_literal"':/{
cannam@95 3617 # Place marker at beginning of archive member dllname section
cannam@95 3618 s/.*/====MARK====/
cannam@95 3619 p
cannam@95 3620 d
cannam@95 3621 }
cannam@95 3622 # These lines can sometimes be longer than 43 characters, but
cannam@95 3623 # are always uninteresting
cannam@95 3624 /:[ ]*file format pe[i]\{,1\}-/d
cannam@95 3625 /^In archive [^:]*:/d
cannam@95 3626 # Ensure marker is printed
cannam@95 3627 /^====MARK====/p
cannam@95 3628 # Remove all lines with less than 43 characters
cannam@95 3629 /^.\{43\}/!d
cannam@95 3630 # From remaining lines, remove first 43 characters
cannam@95 3631 s/^.\{43\}//' |
cannam@95 3632 $SED -n '
cannam@95 3633 # Join marker and all lines until next marker into a single line
cannam@95 3634 /^====MARK====/ b para
cannam@95 3635 H
cannam@95 3636 $ b para
cannam@95 3637 b
cannam@95 3638 :para
cannam@95 3639 x
cannam@95 3640 s/\n//g
cannam@95 3641 # Remove the marker
cannam@95 3642 s/^====MARK====//
cannam@95 3643 # Remove trailing dots and whitespace
cannam@95 3644 s/[\. \t]*$//
cannam@95 3645 # Print
cannam@95 3646 /./p' |
cannam@95 3647 # we now have a list, one entry per line, of the stringified
cannam@95 3648 # contents of the appropriate section of all members of the
cannam@95 3649 # archive which possess that section. Heuristic: eliminate
cannam@95 3650 # all those which have a first or second character that is
cannam@95 3651 # a '.' (that is, objdump's representation of an unprintable
cannam@95 3652 # character.) This should work for all archives with less than
cannam@95 3653 # 0x302f exports -- but will fail for DLLs whose name actually
cannam@95 3654 # begins with a literal '.' or a single character followed by
cannam@95 3655 # a '.'.
cannam@95 3656 #
cannam@95 3657 # Of those that remain, print the first one.
cannam@95 3658 $SED -e '/^\./d;/^.\./d;q'
cannam@95 3659 }
cannam@95 3660
cannam@95 3661 # func_cygming_gnu_implib_p ARG
cannam@95 3662 # This predicate returns with zero status (TRUE) if
cannam@95 3663 # ARG is a GNU/binutils-style import library. Returns
cannam@95 3664 # with nonzero status (FALSE) otherwise.
cannam@95 3665 func_cygming_gnu_implib_p ()
cannam@95 3666 {
cannam@95 3667 $opt_debug
cannam@95 3668 func_to_tool_file "$1" func_convert_file_msys_to_w32
cannam@95 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@95 3670 test -n "$func_cygming_gnu_implib_tmp"
cannam@95 3671 }
cannam@95 3672
cannam@95 3673 # func_cygming_ms_implib_p ARG
cannam@95 3674 # This predicate returns with zero status (TRUE) if
cannam@95 3675 # ARG is an MS-style import library. Returns
cannam@95 3676 # with nonzero status (FALSE) otherwise.
cannam@95 3677 func_cygming_ms_implib_p ()
cannam@95 3678 {
cannam@95 3679 $opt_debug
cannam@95 3680 func_to_tool_file "$1" func_convert_file_msys_to_w32
cannam@95 3681 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'`
cannam@95 3682 test -n "$func_cygming_ms_implib_tmp"
cannam@95 3683 }
cannam@95 3684
cannam@95 3685 # func_cygming_dll_for_implib_fallback ARG
cannam@95 3686 # Platform-specific function to extract the
cannam@95 3687 # name of the DLL associated with the specified
cannam@95 3688 # import library ARG.
cannam@95 3689 #
cannam@95 3690 # This fallback implementation is for use when $DLLTOOL
cannam@95 3691 # does not support the --identify-strict option.
cannam@95 3692 # Invoked by eval'ing the libtool variable
cannam@95 3693 # $sharedlib_from_linklib_cmd
cannam@95 3694 # Result is available in the variable
cannam@95 3695 # $sharedlib_from_linklib_result
cannam@95 3696 func_cygming_dll_for_implib_fallback ()
cannam@95 3697 {
cannam@95 3698 $opt_debug
cannam@95 3699 if func_cygming_gnu_implib_p "$1" ; then
cannam@95 3700 # binutils import library
cannam@95 3701 sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"`
cannam@95 3702 elif func_cygming_ms_implib_p "$1" ; then
cannam@95 3703 # ms-generated import library
cannam@95 3704 sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"`
cannam@95 3705 else
cannam@95 3706 # unknown
cannam@95 3707 sharedlib_from_linklib_result=""
cannam@95 3708 fi
cannam@95 3709 }
cannam@95 3710
cannam@95 3711
cannam@95 3712 # func_extract_an_archive dir oldlib
cannam@95 3713 func_extract_an_archive ()
cannam@95 3714 {
cannam@95 3715 $opt_debug
cannam@95 3716 f_ex_an_ar_dir="$1"; shift
cannam@95 3717 f_ex_an_ar_oldlib="$1"
cannam@95 3718 if test "$lock_old_archive_extraction" = yes; then
cannam@95 3719 lockfile=$f_ex_an_ar_oldlib.lock
cannam@95 3720 until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do
cannam@95 3721 func_echo "Waiting for $lockfile to be removed"
cannam@95 3722 sleep 2
cannam@95 3723 done
cannam@95 3724 fi
cannam@95 3725 func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \
cannam@95 3726 'stat=$?; rm -f "$lockfile"; exit $stat'
cannam@95 3727 if test "$lock_old_archive_extraction" = yes; then
cannam@95 3728 $opt_dry_run || rm -f "$lockfile"
cannam@95 3729 fi
cannam@95 3730 if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
cannam@95 3731 :
cannam@95 3732 else
cannam@95 3733 func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib"
cannam@95 3734 fi
cannam@95 3735 }
cannam@95 3736
cannam@95 3737
cannam@95 3738 # func_extract_archives gentop oldlib ...
cannam@95 3739 func_extract_archives ()
cannam@95 3740 {
cannam@95 3741 $opt_debug
cannam@95 3742 my_gentop="$1"; shift
cannam@95 3743 my_oldlibs=${1+"$@"}
cannam@95 3744 my_oldobjs=""
cannam@95 3745 my_xlib=""
cannam@95 3746 my_xabs=""
cannam@95 3747 my_xdir=""
cannam@95 3748
cannam@95 3749 for my_xlib in $my_oldlibs; do
cannam@95 3750 # Extract the objects.
cannam@95 3751 case $my_xlib in
cannam@95 3752 [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;;
cannam@95 3753 *) my_xabs=`pwd`"/$my_xlib" ;;
cannam@95 3754 esac
cannam@95 3755 func_basename "$my_xlib"
cannam@95 3756 my_xlib="$func_basename_result"
cannam@95 3757 my_xlib_u=$my_xlib
cannam@95 3758 while :; do
cannam@95 3759 case " $extracted_archives " in
cannam@95 3760 *" $my_xlib_u "*)
cannam@95 3761 func_arith $extracted_serial + 1
cannam@95 3762 extracted_serial=$func_arith_result
cannam@95 3763 my_xlib_u=lt$extracted_serial-$my_xlib ;;
cannam@95 3764 *) break ;;
cannam@95 3765 esac
cannam@95 3766 done
cannam@95 3767 extracted_archives="$extracted_archives $my_xlib_u"
cannam@95 3768 my_xdir="$my_gentop/$my_xlib_u"
cannam@95 3769
cannam@95 3770 func_mkdir_p "$my_xdir"
cannam@95 3771
cannam@95 3772 case $host in
cannam@95 3773 *-darwin*)
cannam@95 3774 func_verbose "Extracting $my_xabs"
cannam@95 3775 # Do not bother doing anything if just a dry run
cannam@95 3776 $opt_dry_run || {
cannam@95 3777 darwin_orig_dir=`pwd`
cannam@95 3778 cd $my_xdir || exit $?
cannam@95 3779 darwin_archive=$my_xabs
cannam@95 3780 darwin_curdir=`pwd`
cannam@95 3781 darwin_base_archive=`basename "$darwin_archive"`
cannam@95 3782 darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true`
cannam@95 3783 if test -n "$darwin_arches"; then
cannam@95 3784 darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'`
cannam@95 3785 darwin_arch=
cannam@95 3786 func_verbose "$darwin_base_archive has multiple architectures $darwin_arches"
cannam@95 3787 for darwin_arch in $darwin_arches ; do
cannam@95 3788 func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}"
cannam@95 3789 $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}"
cannam@95 3790 cd "unfat-$$/${darwin_base_archive}-${darwin_arch}"
cannam@95 3791 func_extract_an_archive "`pwd`" "${darwin_base_archive}"
cannam@95 3792 cd "$darwin_curdir"
cannam@95 3793 $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}"
cannam@95 3794 done # $darwin_arches
cannam@95 3795 ## Okay now we've a bunch of thin objects, gotta fatten them up :)
cannam@95 3796 darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u`
cannam@95 3797 darwin_file=
cannam@95 3798 darwin_files=
cannam@95 3799 for darwin_file in $darwin_filelist; do
cannam@95 3800 darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP`
cannam@95 3801 $LIPO -create -output "$darwin_file" $darwin_files
cannam@95 3802 done # $darwin_filelist
cannam@95 3803 $RM -rf unfat-$$
cannam@95 3804 cd "$darwin_orig_dir"
cannam@95 3805 else
cannam@95 3806 cd $darwin_orig_dir
cannam@95 3807 func_extract_an_archive "$my_xdir" "$my_xabs"
cannam@95 3808 fi # $darwin_arches
cannam@95 3809 } # !$opt_dry_run
cannam@95 3810 ;;
cannam@95 3811 *)
cannam@95 3812 func_extract_an_archive "$my_xdir" "$my_xabs"
cannam@95 3813 ;;
cannam@95 3814 esac
cannam@95 3815 my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP`
cannam@95 3816 done
cannam@95 3817
cannam@95 3818 func_extract_archives_result="$my_oldobjs"
cannam@95 3819 }
cannam@95 3820
cannam@95 3821
cannam@95 3822 # func_emit_wrapper [arg=no]
cannam@95 3823 #
cannam@95 3824 # Emit a libtool wrapper script on stdout.
cannam@95 3825 # Don't directly open a file because we may want to
cannam@95 3826 # incorporate the script contents within a cygwin/mingw
cannam@95 3827 # wrapper executable. Must ONLY be called from within
cannam@95 3828 # func_mode_link because it depends on a number of variables
cannam@95 3829 # set therein.
cannam@95 3830 #
cannam@95 3831 # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR
cannam@95 3832 # variable will take. If 'yes', then the emitted script
cannam@95 3833 # will assume that the directory in which it is stored is
cannam@95 3834 # the $objdir directory. This is a cygwin/mingw-specific
cannam@95 3835 # behavior.
cannam@95 3836 func_emit_wrapper ()
cannam@95 3837 {
cannam@95 3838 func_emit_wrapper_arg1=${1-no}
cannam@95 3839
cannam@95 3840 $ECHO "\
cannam@95 3841 #! $SHELL
cannam@95 3842
cannam@95 3843 # $output - temporary wrapper script for $objdir/$outputname
cannam@95 3844 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@95 3845 #
cannam@95 3846 # The $output program cannot be directly executed until all the libtool
cannam@95 3847 # libraries that it depends on are installed.
cannam@95 3848 #
cannam@95 3849 # This wrapper script should never be moved out of the build directory.
cannam@95 3850 # If it is, it will not operate correctly.
cannam@95 3851
cannam@95 3852 # Sed substitution that helps us do robust quoting. It backslashifies
cannam@95 3853 # metacharacters that are still active within double-quoted strings.
cannam@95 3854 sed_quote_subst='$sed_quote_subst'
cannam@95 3855
cannam@95 3856 # Be Bourne compatible
cannam@95 3857 if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then
cannam@95 3858 emulate sh
cannam@95 3859 NULLCMD=:
cannam@95 3860 # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which
cannam@95 3861 # is contrary to our usage. Disable this feature.
cannam@95 3862 alias -g '\${1+\"\$@\"}'='\"\$@\"'
cannam@95 3863 setopt NO_GLOB_SUBST
cannam@95 3864 else
cannam@95 3865 case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac
cannam@95 3866 fi
cannam@95 3867 BIN_SH=xpg4; export BIN_SH # for Tru64
cannam@95 3868 DUALCASE=1; export DUALCASE # for MKS sh
cannam@95 3869
cannam@95 3870 # The HP-UX ksh and POSIX shell print the target directory to stdout
cannam@95 3871 # if CDPATH is set.
cannam@95 3872 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
cannam@95 3873
cannam@95 3874 relink_command=\"$relink_command\"
cannam@95 3875
cannam@95 3876 # This environment variable determines our operation mode.
cannam@95 3877 if test \"\$libtool_install_magic\" = \"$magic\"; then
cannam@95 3878 # install mode needs the following variables:
cannam@95 3879 generated_by_libtool_version='$macro_version'
cannam@95 3880 notinst_deplibs='$notinst_deplibs'
cannam@95 3881 else
cannam@95 3882 # When we are sourced in execute mode, \$file and \$ECHO are already set.
cannam@95 3883 if test \"\$libtool_execute_magic\" != \"$magic\"; then
cannam@95 3884 file=\"\$0\""
cannam@95 3885
cannam@95 3886 qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"`
cannam@95 3887 $ECHO "\
cannam@95 3888
cannam@95 3889 # A function that is used when there is no print builtin or printf.
cannam@95 3890 func_fallback_echo ()
cannam@95 3891 {
cannam@95 3892 eval 'cat <<_LTECHO_EOF
cannam@95 3893 \$1
cannam@95 3894 _LTECHO_EOF'
cannam@95 3895 }
cannam@95 3896 ECHO=\"$qECHO\"
cannam@95 3897 fi
cannam@95 3898
cannam@95 3899 # Very basic option parsing. These options are (a) specific to
cannam@95 3900 # the libtool wrapper, (b) are identical between the wrapper
cannam@95 3901 # /script/ and the wrapper /executable/ which is used only on
cannam@95 3902 # windows platforms, and (c) all begin with the string "--lt-"
cannam@95 3903 # (application programs are unlikely to have options which match
cannam@95 3904 # this pattern).
cannam@95 3905 #
cannam@95 3906 # There are only two supported options: --lt-debug and
cannam@95 3907 # --lt-dump-script. There is, deliberately, no --lt-help.
cannam@95 3908 #
cannam@95 3909 # The first argument to this parsing function should be the
cannam@95 3910 # script's $0 value, followed by "$@".
cannam@95 3911 lt_option_debug=
cannam@95 3912 func_parse_lt_options ()
cannam@95 3913 {
cannam@95 3914 lt_script_arg0=\$0
cannam@95 3915 shift
cannam@95 3916 for lt_opt
cannam@95 3917 do
cannam@95 3918 case \"\$lt_opt\" in
cannam@95 3919 --lt-debug) lt_option_debug=1 ;;
cannam@95 3920 --lt-dump-script)
cannam@95 3921 lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\`
cannam@95 3922 test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=.
cannam@95 3923 lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\`
cannam@95 3924 cat \"\$lt_dump_D/\$lt_dump_F\"
cannam@95 3925 exit 0
cannam@95 3926 ;;
cannam@95 3927 --lt-*)
cannam@95 3928 \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2
cannam@95 3929 exit 1
cannam@95 3930 ;;
cannam@95 3931 esac
cannam@95 3932 done
cannam@95 3933
cannam@95 3934 # Print the debug banner immediately:
cannam@95 3935 if test -n \"\$lt_option_debug\"; then
cannam@95 3936 echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2
cannam@95 3937 fi
cannam@95 3938 }
cannam@95 3939
cannam@95 3940 # Used when --lt-debug. Prints its arguments to stdout
cannam@95 3941 # (redirection is the responsibility of the caller)
cannam@95 3942 func_lt_dump_args ()
cannam@95 3943 {
cannam@95 3944 lt_dump_args_N=1;
cannam@95 3945 for lt_arg
cannam@95 3946 do
cannam@95 3947 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\"
cannam@95 3948 lt_dump_args_N=\`expr \$lt_dump_args_N + 1\`
cannam@95 3949 done
cannam@95 3950 }
cannam@95 3951
cannam@95 3952 # Core function for launching the target application
cannam@95 3953 func_exec_program_core ()
cannam@95 3954 {
cannam@95 3955 "
cannam@95 3956 case $host in
cannam@95 3957 # Backslashes separate directories on plain windows
cannam@95 3958 *-*-mingw | *-*-os2* | *-cegcc*)
cannam@95 3959 $ECHO "\
cannam@95 3960 if test -n \"\$lt_option_debug\"; then
cannam@95 3961 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2
cannam@95 3962 func_lt_dump_args \${1+\"\$@\"} 1>&2
cannam@95 3963 fi
cannam@95 3964 exec \"\$progdir\\\\\$program\" \${1+\"\$@\"}
cannam@95 3965 "
cannam@95 3966 ;;
cannam@95 3967
cannam@95 3968 *)
cannam@95 3969 $ECHO "\
cannam@95 3970 if test -n \"\$lt_option_debug\"; then
cannam@95 3971 \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2
cannam@95 3972 func_lt_dump_args \${1+\"\$@\"} 1>&2
cannam@95 3973 fi
cannam@95 3974 exec \"\$progdir/\$program\" \${1+\"\$@\"}
cannam@95 3975 "
cannam@95 3976 ;;
cannam@95 3977 esac
cannam@95 3978 $ECHO "\
cannam@95 3979 \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2
cannam@95 3980 exit 1
cannam@95 3981 }
cannam@95 3982
cannam@95 3983 # A function to encapsulate launching the target application
cannam@95 3984 # Strips options in the --lt-* namespace from \$@ and
cannam@95 3985 # launches target application with the remaining arguments.
cannam@95 3986 func_exec_program ()
cannam@95 3987 {
cannam@95 3988 case \" \$* \" in
cannam@95 3989 *\\ --lt-*)
cannam@95 3990 for lt_wr_arg
cannam@95 3991 do
cannam@95 3992 case \$lt_wr_arg in
cannam@95 3993 --lt-*) ;;
cannam@95 3994 *) set x \"\$@\" \"\$lt_wr_arg\"; shift;;
cannam@95 3995 esac
cannam@95 3996 shift
cannam@95 3997 done ;;
cannam@95 3998 esac
cannam@95 3999 func_exec_program_core \${1+\"\$@\"}
cannam@95 4000 }
cannam@95 4001
cannam@95 4002 # Parse options
cannam@95 4003 func_parse_lt_options \"\$0\" \${1+\"\$@\"}
cannam@95 4004
cannam@95 4005 # Find the directory that this script lives in.
cannam@95 4006 thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\`
cannam@95 4007 test \"x\$thisdir\" = \"x\$file\" && thisdir=.
cannam@95 4008
cannam@95 4009 # Follow symbolic links until we get to the real thisdir.
cannam@95 4010 file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\`
cannam@95 4011 while test -n \"\$file\"; do
cannam@95 4012 destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\`
cannam@95 4013
cannam@95 4014 # If there was a directory component, then change thisdir.
cannam@95 4015 if test \"x\$destdir\" != \"x\$file\"; then
cannam@95 4016 case \"\$destdir\" in
cannam@95 4017 [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
cannam@95 4018 *) thisdir=\"\$thisdir/\$destdir\" ;;
cannam@95 4019 esac
cannam@95 4020 fi
cannam@95 4021
cannam@95 4022 file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\`
cannam@95 4023 file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\`
cannam@95 4024 done
cannam@95 4025
cannam@95 4026 # Usually 'no', except on cygwin/mingw when embedded into
cannam@95 4027 # the cwrapper.
cannam@95 4028 WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1
cannam@95 4029 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then
cannam@95 4030 # special case for '.'
cannam@95 4031 if test \"\$thisdir\" = \".\"; then
cannam@95 4032 thisdir=\`pwd\`
cannam@95 4033 fi
cannam@95 4034 # remove .libs from thisdir
cannam@95 4035 case \"\$thisdir\" in
cannam@95 4036 *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;;
cannam@95 4037 $objdir ) thisdir=. ;;
cannam@95 4038 esac
cannam@95 4039 fi
cannam@95 4040
cannam@95 4041 # Try to get the absolute directory name.
cannam@95 4042 absdir=\`cd \"\$thisdir\" && pwd\`
cannam@95 4043 test -n \"\$absdir\" && thisdir=\"\$absdir\"
cannam@95 4044 "
cannam@95 4045
cannam@95 4046 if test "$fast_install" = yes; then
cannam@95 4047 $ECHO "\
cannam@95 4048 program=lt-'$outputname'$exeext
cannam@95 4049 progdir=\"\$thisdir/$objdir\"
cannam@95 4050
cannam@95 4051 if test ! -f \"\$progdir/\$program\" ||
cannam@95 4052 { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\
cannam@95 4053 test \"X\$file\" != \"X\$progdir/\$program\"; }; then
cannam@95 4054
cannam@95 4055 file=\"\$\$-\$program\"
cannam@95 4056
cannam@95 4057 if test ! -d \"\$progdir\"; then
cannam@95 4058 $MKDIR \"\$progdir\"
cannam@95 4059 else
cannam@95 4060 $RM \"\$progdir/\$file\"
cannam@95 4061 fi"
cannam@95 4062
cannam@95 4063 $ECHO "\
cannam@95 4064
cannam@95 4065 # relink executable if necessary
cannam@95 4066 if test -n \"\$relink_command\"; then
cannam@95 4067 if relink_command_output=\`eval \$relink_command 2>&1\`; then :
cannam@95 4068 else
cannam@95 4069 $ECHO \"\$relink_command_output\" >&2
cannam@95 4070 $RM \"\$progdir/\$file\"
cannam@95 4071 exit 1
cannam@95 4072 fi
cannam@95 4073 fi
cannam@95 4074
cannam@95 4075 $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
cannam@95 4076 { $RM \"\$progdir/\$program\";
cannam@95 4077 $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; }
cannam@95 4078 $RM \"\$progdir/\$file\"
cannam@95 4079 fi"
cannam@95 4080 else
cannam@95 4081 $ECHO "\
cannam@95 4082 program='$outputname'
cannam@95 4083 progdir=\"\$thisdir/$objdir\"
cannam@95 4084 "
cannam@95 4085 fi
cannam@95 4086
cannam@95 4087 $ECHO "\
cannam@95 4088
cannam@95 4089 if test -f \"\$progdir/\$program\"; then"
cannam@95 4090
cannam@95 4091 # fixup the dll searchpath if we need to.
cannam@95 4092 #
cannam@95 4093 # Fix the DLL searchpath if we need to. Do this before prepending
cannam@95 4094 # to shlibpath, because on Windows, both are PATH and uninstalled
cannam@95 4095 # libraries must come first.
cannam@95 4096 if test -n "$dllsearchpath"; then
cannam@95 4097 $ECHO "\
cannam@95 4098 # Add the dll search path components to the executable PATH
cannam@95 4099 PATH=$dllsearchpath:\$PATH
cannam@95 4100 "
cannam@95 4101 fi
cannam@95 4102
cannam@95 4103 # Export our shlibpath_var if we have one.
cannam@95 4104 if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
cannam@95 4105 $ECHO "\
cannam@95 4106 # Add our own library path to $shlibpath_var
cannam@95 4107 $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
cannam@95 4108
cannam@95 4109 # Some systems cannot cope with colon-terminated $shlibpath_var
cannam@95 4110 # The second colon is a workaround for a bug in BeOS R4 sed
cannam@95 4111 $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\`
cannam@95 4112
cannam@95 4113 export $shlibpath_var
cannam@95 4114 "
cannam@95 4115 fi
cannam@95 4116
cannam@95 4117 $ECHO "\
cannam@95 4118 if test \"\$libtool_execute_magic\" != \"$magic\"; then
cannam@95 4119 # Run the actual program with our arguments.
cannam@95 4120 func_exec_program \${1+\"\$@\"}
cannam@95 4121 fi
cannam@95 4122 else
cannam@95 4123 # The program doesn't exist.
cannam@95 4124 \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2
cannam@95 4125 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2
cannam@95 4126 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2
cannam@95 4127 exit 1
cannam@95 4128 fi
cannam@95 4129 fi\
cannam@95 4130 "
cannam@95 4131 }
cannam@95 4132
cannam@95 4133
cannam@95 4134 # func_emit_cwrapperexe_src
cannam@95 4135 # emit the source code for a wrapper executable on stdout
cannam@95 4136 # Must ONLY be called from within func_mode_link because
cannam@95 4137 # it depends on a number of variable set therein.
cannam@95 4138 func_emit_cwrapperexe_src ()
cannam@95 4139 {
cannam@95 4140 cat <<EOF
cannam@95 4141
cannam@95 4142 /* $cwrappersource - temporary wrapper executable for $objdir/$outputname
cannam@95 4143 Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@95 4144
cannam@95 4145 The $output program cannot be directly executed until all the libtool
cannam@95 4146 libraries that it depends on are installed.
cannam@95 4147
cannam@95 4148 This wrapper executable should never be moved out of the build directory.
cannam@95 4149 If it is, it will not operate correctly.
cannam@95 4150 */
cannam@95 4151 EOF
cannam@95 4152 cat <<"EOF"
cannam@95 4153 #ifdef _MSC_VER
cannam@95 4154 # define _CRT_SECURE_NO_DEPRECATE 1
cannam@95 4155 #endif
cannam@95 4156 #include <stdio.h>
cannam@95 4157 #include <stdlib.h>
cannam@95 4158 #ifdef _MSC_VER
cannam@95 4159 # include <direct.h>
cannam@95 4160 # include <process.h>
cannam@95 4161 # include <io.h>
cannam@95 4162 #else
cannam@95 4163 # include <unistd.h>
cannam@95 4164 # include <stdint.h>
cannam@95 4165 # ifdef __CYGWIN__
cannam@95 4166 # include <io.h>
cannam@95 4167 # endif
cannam@95 4168 #endif
cannam@95 4169 #include <malloc.h>
cannam@95 4170 #include <stdarg.h>
cannam@95 4171 #include <assert.h>
cannam@95 4172 #include <string.h>
cannam@95 4173 #include <ctype.h>
cannam@95 4174 #include <errno.h>
cannam@95 4175 #include <fcntl.h>
cannam@95 4176 #include <sys/stat.h>
cannam@95 4177
cannam@95 4178 /* declarations of non-ANSI functions */
cannam@95 4179 #if defined(__MINGW32__)
cannam@95 4180 # ifdef __STRICT_ANSI__
cannam@95 4181 int _putenv (const char *);
cannam@95 4182 # endif
cannam@95 4183 #elif defined(__CYGWIN__)
cannam@95 4184 # ifdef __STRICT_ANSI__
cannam@95 4185 char *realpath (const char *, char *);
cannam@95 4186 int putenv (char *);
cannam@95 4187 int setenv (const char *, const char *, int);
cannam@95 4188 # endif
cannam@95 4189 /* #elif defined (other platforms) ... */
cannam@95 4190 #endif
cannam@95 4191
cannam@95 4192 /* portability defines, excluding path handling macros */
cannam@95 4193 #if defined(_MSC_VER)
cannam@95 4194 # define setmode _setmode
cannam@95 4195 # define stat _stat
cannam@95 4196 # define chmod _chmod
cannam@95 4197 # define getcwd _getcwd
cannam@95 4198 # define putenv _putenv
cannam@95 4199 # define S_IXUSR _S_IEXEC
cannam@95 4200 # ifndef _INTPTR_T_DEFINED
cannam@95 4201 # define _INTPTR_T_DEFINED
cannam@95 4202 # define intptr_t int
cannam@95 4203 # endif
cannam@95 4204 #elif defined(__MINGW32__)
cannam@95 4205 # define setmode _setmode
cannam@95 4206 # define stat _stat
cannam@95 4207 # define chmod _chmod
cannam@95 4208 # define getcwd _getcwd
cannam@95 4209 # define putenv _putenv
cannam@95 4210 #elif defined(__CYGWIN__)
cannam@95 4211 # define HAVE_SETENV
cannam@95 4212 # define FOPEN_WB "wb"
cannam@95 4213 /* #elif defined (other platforms) ... */
cannam@95 4214 #endif
cannam@95 4215
cannam@95 4216 #if defined(PATH_MAX)
cannam@95 4217 # define LT_PATHMAX PATH_MAX
cannam@95 4218 #elif defined(MAXPATHLEN)
cannam@95 4219 # define LT_PATHMAX MAXPATHLEN
cannam@95 4220 #else
cannam@95 4221 # define LT_PATHMAX 1024
cannam@95 4222 #endif
cannam@95 4223
cannam@95 4224 #ifndef S_IXOTH
cannam@95 4225 # define S_IXOTH 0
cannam@95 4226 #endif
cannam@95 4227 #ifndef S_IXGRP
cannam@95 4228 # define S_IXGRP 0
cannam@95 4229 #endif
cannam@95 4230
cannam@95 4231 /* path handling portability macros */
cannam@95 4232 #ifndef DIR_SEPARATOR
cannam@95 4233 # define DIR_SEPARATOR '/'
cannam@95 4234 # define PATH_SEPARATOR ':'
cannam@95 4235 #endif
cannam@95 4236
cannam@95 4237 #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \
cannam@95 4238 defined (__OS2__)
cannam@95 4239 # define HAVE_DOS_BASED_FILE_SYSTEM
cannam@95 4240 # define FOPEN_WB "wb"
cannam@95 4241 # ifndef DIR_SEPARATOR_2
cannam@95 4242 # define DIR_SEPARATOR_2 '\\'
cannam@95 4243 # endif
cannam@95 4244 # ifndef PATH_SEPARATOR_2
cannam@95 4245 # define PATH_SEPARATOR_2 ';'
cannam@95 4246 # endif
cannam@95 4247 #endif
cannam@95 4248
cannam@95 4249 #ifndef DIR_SEPARATOR_2
cannam@95 4250 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
cannam@95 4251 #else /* DIR_SEPARATOR_2 */
cannam@95 4252 # define IS_DIR_SEPARATOR(ch) \
cannam@95 4253 (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
cannam@95 4254 #endif /* DIR_SEPARATOR_2 */
cannam@95 4255
cannam@95 4256 #ifndef PATH_SEPARATOR_2
cannam@95 4257 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR)
cannam@95 4258 #else /* PATH_SEPARATOR_2 */
cannam@95 4259 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2)
cannam@95 4260 #endif /* PATH_SEPARATOR_2 */
cannam@95 4261
cannam@95 4262 #ifndef FOPEN_WB
cannam@95 4263 # define FOPEN_WB "w"
cannam@95 4264 #endif
cannam@95 4265 #ifndef _O_BINARY
cannam@95 4266 # define _O_BINARY 0
cannam@95 4267 #endif
cannam@95 4268
cannam@95 4269 #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type)))
cannam@95 4270 #define XFREE(stale) do { \
cannam@95 4271 if (stale) { free ((void *) stale); stale = 0; } \
cannam@95 4272 } while (0)
cannam@95 4273
cannam@95 4274 #if defined(LT_DEBUGWRAPPER)
cannam@95 4275 static int lt_debug = 1;
cannam@95 4276 #else
cannam@95 4277 static int lt_debug = 0;
cannam@95 4278 #endif
cannam@95 4279
cannam@95 4280 const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */
cannam@95 4281
cannam@95 4282 void *xmalloc (size_t num);
cannam@95 4283 char *xstrdup (const char *string);
cannam@95 4284 const char *base_name (const char *name);
cannam@95 4285 char *find_executable (const char *wrapper);
cannam@95 4286 char *chase_symlinks (const char *pathspec);
cannam@95 4287 int make_executable (const char *path);
cannam@95 4288 int check_executable (const char *path);
cannam@95 4289 char *strendzap (char *str, const char *pat);
cannam@95 4290 void lt_debugprintf (const char *file, int line, const char *fmt, ...);
cannam@95 4291 void lt_fatal (const char *file, int line, const char *message, ...);
cannam@95 4292 static const char *nonnull (const char *s);
cannam@95 4293 static const char *nonempty (const char *s);
cannam@95 4294 void lt_setenv (const char *name, const char *value);
cannam@95 4295 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
cannam@95 4296 void lt_update_exe_path (const char *name, const char *value);
cannam@95 4297 void lt_update_lib_path (const char *name, const char *value);
cannam@95 4298 char **prepare_spawn (char **argv);
cannam@95 4299 void lt_dump_script (FILE *f);
cannam@95 4300 EOF
cannam@95 4301
cannam@95 4302 cat <<EOF
cannam@95 4303 volatile const char * MAGIC_EXE = "$magic_exe";
cannam@95 4304 const char * LIB_PATH_VARNAME = "$shlibpath_var";
cannam@95 4305 EOF
cannam@95 4306
cannam@95 4307 if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
cannam@95 4308 func_to_host_path "$temp_rpath"
cannam@95 4309 cat <<EOF
cannam@95 4310 const char * LIB_PATH_VALUE = "$func_to_host_path_result";
cannam@95 4311 EOF
cannam@95 4312 else
cannam@95 4313 cat <<"EOF"
cannam@95 4314 const char * LIB_PATH_VALUE = "";
cannam@95 4315 EOF
cannam@95 4316 fi
cannam@95 4317
cannam@95 4318 if test -n "$dllsearchpath"; then
cannam@95 4319 func_to_host_path "$dllsearchpath:"
cannam@95 4320 cat <<EOF
cannam@95 4321 const char * EXE_PATH_VARNAME = "PATH";
cannam@95 4322 const char * EXE_PATH_VALUE = "$func_to_host_path_result";
cannam@95 4323 EOF
cannam@95 4324 else
cannam@95 4325 cat <<"EOF"
cannam@95 4326 const char * EXE_PATH_VARNAME = "";
cannam@95 4327 const char * EXE_PATH_VALUE = "";
cannam@95 4328 EOF
cannam@95 4329 fi
cannam@95 4330
cannam@95 4331 if test "$fast_install" = yes; then
cannam@95 4332 cat <<EOF
cannam@95 4333 const char * TARGET_PROGRAM_NAME = "lt-$outputname"; /* hopefully, no .exe */
cannam@95 4334 EOF
cannam@95 4335 else
cannam@95 4336 cat <<EOF
cannam@95 4337 const char * TARGET_PROGRAM_NAME = "$outputname"; /* hopefully, no .exe */
cannam@95 4338 EOF
cannam@95 4339 fi
cannam@95 4340
cannam@95 4341
cannam@95 4342 cat <<"EOF"
cannam@95 4343
cannam@95 4344 #define LTWRAPPER_OPTION_PREFIX "--lt-"
cannam@95 4345
cannam@95 4346 static const char *ltwrapper_option_prefix = LTWRAPPER_OPTION_PREFIX;
cannam@95 4347 static const char *dumpscript_opt = LTWRAPPER_OPTION_PREFIX "dump-script";
cannam@95 4348 static const char *debug_opt = LTWRAPPER_OPTION_PREFIX "debug";
cannam@95 4349
cannam@95 4350 int
cannam@95 4351 main (int argc, char *argv[])
cannam@95 4352 {
cannam@95 4353 char **newargz;
cannam@95 4354 int newargc;
cannam@95 4355 char *tmp_pathspec;
cannam@95 4356 char *actual_cwrapper_path;
cannam@95 4357 char *actual_cwrapper_name;
cannam@95 4358 char *target_name;
cannam@95 4359 char *lt_argv_zero;
cannam@95 4360 intptr_t rval = 127;
cannam@95 4361
cannam@95 4362 int i;
cannam@95 4363
cannam@95 4364 program_name = (char *) xstrdup (base_name (argv[0]));
cannam@95 4365 newargz = XMALLOC (char *, argc + 1);
cannam@95 4366
cannam@95 4367 /* very simple arg parsing; don't want to rely on getopt
cannam@95 4368 * also, copy all non cwrapper options to newargz, except
cannam@95 4369 * argz[0], which is handled differently
cannam@95 4370 */
cannam@95 4371 newargc=0;
cannam@95 4372 for (i = 1; i < argc; i++)
cannam@95 4373 {
cannam@95 4374 if (strcmp (argv[i], dumpscript_opt) == 0)
cannam@95 4375 {
cannam@95 4376 EOF
cannam@95 4377 case "$host" in
cannam@95 4378 *mingw* | *cygwin* )
cannam@95 4379 # make stdout use "unix" line endings
cannam@95 4380 echo " setmode(1,_O_BINARY);"
cannam@95 4381 ;;
cannam@95 4382 esac
cannam@95 4383
cannam@95 4384 cat <<"EOF"
cannam@95 4385 lt_dump_script (stdout);
cannam@95 4386 return 0;
cannam@95 4387 }
cannam@95 4388 if (strcmp (argv[i], debug_opt) == 0)
cannam@95 4389 {
cannam@95 4390 lt_debug = 1;
cannam@95 4391 continue;
cannam@95 4392 }
cannam@95 4393 if (strcmp (argv[i], ltwrapper_option_prefix) == 0)
cannam@95 4394 {
cannam@95 4395 /* however, if there is an option in the LTWRAPPER_OPTION_PREFIX
cannam@95 4396 namespace, but it is not one of the ones we know about and
cannam@95 4397 have already dealt with, above (inluding dump-script), then
cannam@95 4398 report an error. Otherwise, targets might begin to believe
cannam@95 4399 they are allowed to use options in the LTWRAPPER_OPTION_PREFIX
cannam@95 4400 namespace. The first time any user complains about this, we'll
cannam@95 4401 need to make LTWRAPPER_OPTION_PREFIX a configure-time option
cannam@95 4402 or a configure.ac-settable value.
cannam@95 4403 */
cannam@95 4404 lt_fatal (__FILE__, __LINE__,
cannam@95 4405 "unrecognized %s option: '%s'",
cannam@95 4406 ltwrapper_option_prefix, argv[i]);
cannam@95 4407 }
cannam@95 4408 /* otherwise ... */
cannam@95 4409 newargz[++newargc] = xstrdup (argv[i]);
cannam@95 4410 }
cannam@95 4411 newargz[++newargc] = NULL;
cannam@95 4412
cannam@95 4413 EOF
cannam@95 4414 cat <<EOF
cannam@95 4415 /* The GNU banner must be the first non-error debug message */
cannam@95 4416 lt_debugprintf (__FILE__, __LINE__, "libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\n");
cannam@95 4417 EOF
cannam@95 4418 cat <<"EOF"
cannam@95 4419 lt_debugprintf (__FILE__, __LINE__, "(main) argv[0]: %s\n", argv[0]);
cannam@95 4420 lt_debugprintf (__FILE__, __LINE__, "(main) program_name: %s\n", program_name);
cannam@95 4421
cannam@95 4422 tmp_pathspec = find_executable (argv[0]);
cannam@95 4423 if (tmp_pathspec == NULL)
cannam@95 4424 lt_fatal (__FILE__, __LINE__, "couldn't find %s", argv[0]);
cannam@95 4425 lt_debugprintf (__FILE__, __LINE__,
cannam@95 4426 "(main) found exe (before symlink chase) at: %s\n",
cannam@95 4427 tmp_pathspec);
cannam@95 4428
cannam@95 4429 actual_cwrapper_path = chase_symlinks (tmp_pathspec);
cannam@95 4430 lt_debugprintf (__FILE__, __LINE__,
cannam@95 4431 "(main) found exe (after symlink chase) at: %s\n",
cannam@95 4432 actual_cwrapper_path);
cannam@95 4433 XFREE (tmp_pathspec);
cannam@95 4434
cannam@95 4435 actual_cwrapper_name = xstrdup (base_name (actual_cwrapper_path));
cannam@95 4436 strendzap (actual_cwrapper_path, actual_cwrapper_name);
cannam@95 4437
cannam@95 4438 /* wrapper name transforms */
cannam@95 4439 strendzap (actual_cwrapper_name, ".exe");
cannam@95 4440 tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
cannam@95 4441 XFREE (actual_cwrapper_name);
cannam@95 4442 actual_cwrapper_name = tmp_pathspec;
cannam@95 4443 tmp_pathspec = 0;
cannam@95 4444
cannam@95 4445 /* target_name transforms -- use actual target program name; might have lt- prefix */
cannam@95 4446 target_name = xstrdup (base_name (TARGET_PROGRAM_NAME));
cannam@95 4447 strendzap (target_name, ".exe");
cannam@95 4448 tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
cannam@95 4449 XFREE (target_name);
cannam@95 4450 target_name = tmp_pathspec;
cannam@95 4451 tmp_pathspec = 0;
cannam@95 4452
cannam@95 4453 lt_debugprintf (__FILE__, __LINE__,
cannam@95 4454 "(main) libtool target name: %s\n",
cannam@95 4455 target_name);
cannam@95 4456 EOF
cannam@95 4457
cannam@95 4458 cat <<EOF
cannam@95 4459 newargz[0] =
cannam@95 4460 XMALLOC (char, (strlen (actual_cwrapper_path) +
cannam@95 4461 strlen ("$objdir") + 1 + strlen (actual_cwrapper_name) + 1));
cannam@95 4462 strcpy (newargz[0], actual_cwrapper_path);
cannam@95 4463 strcat (newargz[0], "$objdir");
cannam@95 4464 strcat (newargz[0], "/");
cannam@95 4465 EOF
cannam@95 4466
cannam@95 4467 cat <<"EOF"
cannam@95 4468 /* stop here, and copy so we don't have to do this twice */
cannam@95 4469 tmp_pathspec = xstrdup (newargz[0]);
cannam@95 4470
cannam@95 4471 /* do NOT want the lt- prefix here, so use actual_cwrapper_name */
cannam@95 4472 strcat (newargz[0], actual_cwrapper_name);
cannam@95 4473
cannam@95 4474 /* DO want the lt- prefix here if it exists, so use target_name */
cannam@95 4475 lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
cannam@95 4476 XFREE (tmp_pathspec);
cannam@95 4477 tmp_pathspec = NULL;
cannam@95 4478 EOF
cannam@95 4479
cannam@95 4480 case $host_os in
cannam@95 4481 mingw*)
cannam@95 4482 cat <<"EOF"
cannam@95 4483 {
cannam@95 4484 char* p;
cannam@95 4485 while ((p = strchr (newargz[0], '\\')) != NULL)
cannam@95 4486 {
cannam@95 4487 *p = '/';
cannam@95 4488 }
cannam@95 4489 while ((p = strchr (lt_argv_zero, '\\')) != NULL)
cannam@95 4490 {
cannam@95 4491 *p = '/';
cannam@95 4492 }
cannam@95 4493 }
cannam@95 4494 EOF
cannam@95 4495 ;;
cannam@95 4496 esac
cannam@95 4497
cannam@95 4498 cat <<"EOF"
cannam@95 4499 XFREE (target_name);
cannam@95 4500 XFREE (actual_cwrapper_path);
cannam@95 4501 XFREE (actual_cwrapper_name);
cannam@95 4502
cannam@95 4503 lt_setenv ("BIN_SH", "xpg4"); /* for Tru64 */
cannam@95 4504 lt_setenv ("DUALCASE", "1"); /* for MSK sh */
cannam@95 4505 /* Update the DLL searchpath. EXE_PATH_VALUE ($dllsearchpath) must
cannam@95 4506 be prepended before (that is, appear after) LIB_PATH_VALUE ($temp_rpath)
cannam@95 4507 because on Windows, both *_VARNAMEs are PATH but uninstalled
cannam@95 4508 libraries must come first. */
cannam@95 4509 lt_update_exe_path (EXE_PATH_VARNAME, EXE_PATH_VALUE);
cannam@95 4510 lt_update_lib_path (LIB_PATH_VARNAME, LIB_PATH_VALUE);
cannam@95 4511
cannam@95 4512 lt_debugprintf (__FILE__, __LINE__, "(main) lt_argv_zero: %s\n",
cannam@95 4513 nonnull (lt_argv_zero));
cannam@95 4514 for (i = 0; i < newargc; i++)
cannam@95 4515 {
cannam@95 4516 lt_debugprintf (__FILE__, __LINE__, "(main) newargz[%d]: %s\n",
cannam@95 4517 i, nonnull (newargz[i]));
cannam@95 4518 }
cannam@95 4519
cannam@95 4520 EOF
cannam@95 4521
cannam@95 4522 case $host_os in
cannam@95 4523 mingw*)
cannam@95 4524 cat <<"EOF"
cannam@95 4525 /* execv doesn't actually work on mingw as expected on unix */
cannam@95 4526 newargz = prepare_spawn (newargz);
cannam@95 4527 rval = _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz);
cannam@95 4528 if (rval == -1)
cannam@95 4529 {
cannam@95 4530 /* failed to start process */
cannam@95 4531 lt_debugprintf (__FILE__, __LINE__,
cannam@95 4532 "(main) failed to launch target \"%s\": %s\n",
cannam@95 4533 lt_argv_zero, nonnull (strerror (errno)));
cannam@95 4534 return 127;
cannam@95 4535 }
cannam@95 4536 return rval;
cannam@95 4537 EOF
cannam@95 4538 ;;
cannam@95 4539 *)
cannam@95 4540 cat <<"EOF"
cannam@95 4541 execv (lt_argv_zero, newargz);
cannam@95 4542 return rval; /* =127, but avoids unused variable warning */
cannam@95 4543 EOF
cannam@95 4544 ;;
cannam@95 4545 esac
cannam@95 4546
cannam@95 4547 cat <<"EOF"
cannam@95 4548 }
cannam@95 4549
cannam@95 4550 void *
cannam@95 4551 xmalloc (size_t num)
cannam@95 4552 {
cannam@95 4553 void *p = (void *) malloc (num);
cannam@95 4554 if (!p)
cannam@95 4555 lt_fatal (__FILE__, __LINE__, "memory exhausted");
cannam@95 4556
cannam@95 4557 return p;
cannam@95 4558 }
cannam@95 4559
cannam@95 4560 char *
cannam@95 4561 xstrdup (const char *string)
cannam@95 4562 {
cannam@95 4563 return string ? strcpy ((char *) xmalloc (strlen (string) + 1),
cannam@95 4564 string) : NULL;
cannam@95 4565 }
cannam@95 4566
cannam@95 4567 const char *
cannam@95 4568 base_name (const char *name)
cannam@95 4569 {
cannam@95 4570 const char *base;
cannam@95 4571
cannam@95 4572 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
cannam@95 4573 /* Skip over the disk name in MSDOS pathnames. */
cannam@95 4574 if (isalpha ((unsigned char) name[0]) && name[1] == ':')
cannam@95 4575 name += 2;
cannam@95 4576 #endif
cannam@95 4577
cannam@95 4578 for (base = name; *name; name++)
cannam@95 4579 if (IS_DIR_SEPARATOR (*name))
cannam@95 4580 base = name + 1;
cannam@95 4581 return base;
cannam@95 4582 }
cannam@95 4583
cannam@95 4584 int
cannam@95 4585 check_executable (const char *path)
cannam@95 4586 {
cannam@95 4587 struct stat st;
cannam@95 4588
cannam@95 4589 lt_debugprintf (__FILE__, __LINE__, "(check_executable): %s\n",
cannam@95 4590 nonempty (path));
cannam@95 4591 if ((!path) || (!*path))
cannam@95 4592 return 0;
cannam@95 4593
cannam@95 4594 if ((stat (path, &st) >= 0)
cannam@95 4595 && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
cannam@95 4596 return 1;
cannam@95 4597 else
cannam@95 4598 return 0;
cannam@95 4599 }
cannam@95 4600
cannam@95 4601 int
cannam@95 4602 make_executable (const char *path)
cannam@95 4603 {
cannam@95 4604 int rval = 0;
cannam@95 4605 struct stat st;
cannam@95 4606
cannam@95 4607 lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n",
cannam@95 4608 nonempty (path));
cannam@95 4609 if ((!path) || (!*path))
cannam@95 4610 return 0;
cannam@95 4611
cannam@95 4612 if (stat (path, &st) >= 0)
cannam@95 4613 {
cannam@95 4614 rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR);
cannam@95 4615 }
cannam@95 4616 return rval;
cannam@95 4617 }
cannam@95 4618
cannam@95 4619 /* Searches for the full path of the wrapper. Returns
cannam@95 4620 newly allocated full path name if found, NULL otherwise
cannam@95 4621 Does not chase symlinks, even on platforms that support them.
cannam@95 4622 */
cannam@95 4623 char *
cannam@95 4624 find_executable (const char *wrapper)
cannam@95 4625 {
cannam@95 4626 int has_slash = 0;
cannam@95 4627 const char *p;
cannam@95 4628 const char *p_next;
cannam@95 4629 /* static buffer for getcwd */
cannam@95 4630 char tmp[LT_PATHMAX + 1];
cannam@95 4631 int tmp_len;
cannam@95 4632 char *concat_name;
cannam@95 4633
cannam@95 4634 lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n",
cannam@95 4635 nonempty (wrapper));
cannam@95 4636
cannam@95 4637 if ((wrapper == NULL) || (*wrapper == '\0'))
cannam@95 4638 return NULL;
cannam@95 4639
cannam@95 4640 /* Absolute path? */
cannam@95 4641 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
cannam@95 4642 if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':')
cannam@95 4643 {
cannam@95 4644 concat_name = xstrdup (wrapper);
cannam@95 4645 if (check_executable (concat_name))
cannam@95 4646 return concat_name;
cannam@95 4647 XFREE (concat_name);
cannam@95 4648 }
cannam@95 4649 else
cannam@95 4650 {
cannam@95 4651 #endif
cannam@95 4652 if (IS_DIR_SEPARATOR (wrapper[0]))
cannam@95 4653 {
cannam@95 4654 concat_name = xstrdup (wrapper);
cannam@95 4655 if (check_executable (concat_name))
cannam@95 4656 return concat_name;
cannam@95 4657 XFREE (concat_name);
cannam@95 4658 }
cannam@95 4659 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
cannam@95 4660 }
cannam@95 4661 #endif
cannam@95 4662
cannam@95 4663 for (p = wrapper; *p; p++)
cannam@95 4664 if (*p == '/')
cannam@95 4665 {
cannam@95 4666 has_slash = 1;
cannam@95 4667 break;
cannam@95 4668 }
cannam@95 4669 if (!has_slash)
cannam@95 4670 {
cannam@95 4671 /* no slashes; search PATH */
cannam@95 4672 const char *path = getenv ("PATH");
cannam@95 4673 if (path != NULL)
cannam@95 4674 {
cannam@95 4675 for (p = path; *p; p = p_next)
cannam@95 4676 {
cannam@95 4677 const char *q;
cannam@95 4678 size_t p_len;
cannam@95 4679 for (q = p; *q; q++)
cannam@95 4680 if (IS_PATH_SEPARATOR (*q))
cannam@95 4681 break;
cannam@95 4682 p_len = q - p;
cannam@95 4683 p_next = (*q == '\0' ? q : q + 1);
cannam@95 4684 if (p_len == 0)
cannam@95 4685 {
cannam@95 4686 /* empty path: current directory */
cannam@95 4687 if (getcwd (tmp, LT_PATHMAX) == NULL)
cannam@95 4688 lt_fatal (__FILE__, __LINE__, "getcwd failed: %s",
cannam@95 4689 nonnull (strerror (errno)));
cannam@95 4690 tmp_len = strlen (tmp);
cannam@95 4691 concat_name =
cannam@95 4692 XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
cannam@95 4693 memcpy (concat_name, tmp, tmp_len);
cannam@95 4694 concat_name[tmp_len] = '/';
cannam@95 4695 strcpy (concat_name + tmp_len + 1, wrapper);
cannam@95 4696 }
cannam@95 4697 else
cannam@95 4698 {
cannam@95 4699 concat_name =
cannam@95 4700 XMALLOC (char, p_len + 1 + strlen (wrapper) + 1);
cannam@95 4701 memcpy (concat_name, p, p_len);
cannam@95 4702 concat_name[p_len] = '/';
cannam@95 4703 strcpy (concat_name + p_len + 1, wrapper);
cannam@95 4704 }
cannam@95 4705 if (check_executable (concat_name))
cannam@95 4706 return concat_name;
cannam@95 4707 XFREE (concat_name);
cannam@95 4708 }
cannam@95 4709 }
cannam@95 4710 /* not found in PATH; assume curdir */
cannam@95 4711 }
cannam@95 4712 /* Relative path | not found in path: prepend cwd */
cannam@95 4713 if (getcwd (tmp, LT_PATHMAX) == NULL)
cannam@95 4714 lt_fatal (__FILE__, __LINE__, "getcwd failed: %s",
cannam@95 4715 nonnull (strerror (errno)));
cannam@95 4716 tmp_len = strlen (tmp);
cannam@95 4717 concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
cannam@95 4718 memcpy (concat_name, tmp, tmp_len);
cannam@95 4719 concat_name[tmp_len] = '/';
cannam@95 4720 strcpy (concat_name + tmp_len + 1, wrapper);
cannam@95 4721
cannam@95 4722 if (check_executable (concat_name))
cannam@95 4723 return concat_name;
cannam@95 4724 XFREE (concat_name);
cannam@95 4725 return NULL;
cannam@95 4726 }
cannam@95 4727
cannam@95 4728 char *
cannam@95 4729 chase_symlinks (const char *pathspec)
cannam@95 4730 {
cannam@95 4731 #ifndef S_ISLNK
cannam@95 4732 return xstrdup (pathspec);
cannam@95 4733 #else
cannam@95 4734 char buf[LT_PATHMAX];
cannam@95 4735 struct stat s;
cannam@95 4736 char *tmp_pathspec = xstrdup (pathspec);
cannam@95 4737 char *p;
cannam@95 4738 int has_symlinks = 0;
cannam@95 4739 while (strlen (tmp_pathspec) && !has_symlinks)
cannam@95 4740 {
cannam@95 4741 lt_debugprintf (__FILE__, __LINE__,
cannam@95 4742 "checking path component for symlinks: %s\n",
cannam@95 4743 tmp_pathspec);
cannam@95 4744 if (lstat (tmp_pathspec, &s) == 0)
cannam@95 4745 {
cannam@95 4746 if (S_ISLNK (s.st_mode) != 0)
cannam@95 4747 {
cannam@95 4748 has_symlinks = 1;
cannam@95 4749 break;
cannam@95 4750 }
cannam@95 4751
cannam@95 4752 /* search backwards for last DIR_SEPARATOR */
cannam@95 4753 p = tmp_pathspec + strlen (tmp_pathspec) - 1;
cannam@95 4754 while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
cannam@95 4755 p--;
cannam@95 4756 if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
cannam@95 4757 {
cannam@95 4758 /* no more DIR_SEPARATORS left */
cannam@95 4759 break;
cannam@95 4760 }
cannam@95 4761 *p = '\0';
cannam@95 4762 }
cannam@95 4763 else
cannam@95 4764 {
cannam@95 4765 lt_fatal (__FILE__, __LINE__,
cannam@95 4766 "error accessing file \"%s\": %s",
cannam@95 4767 tmp_pathspec, nonnull (strerror (errno)));
cannam@95 4768 }
cannam@95 4769 }
cannam@95 4770 XFREE (tmp_pathspec);
cannam@95 4771
cannam@95 4772 if (!has_symlinks)
cannam@95 4773 {
cannam@95 4774 return xstrdup (pathspec);
cannam@95 4775 }
cannam@95 4776
cannam@95 4777 tmp_pathspec = realpath (pathspec, buf);
cannam@95 4778 if (tmp_pathspec == 0)
cannam@95 4779 {
cannam@95 4780 lt_fatal (__FILE__, __LINE__,
cannam@95 4781 "could not follow symlinks for %s", pathspec);
cannam@95 4782 }
cannam@95 4783 return xstrdup (tmp_pathspec);
cannam@95 4784 #endif
cannam@95 4785 }
cannam@95 4786
cannam@95 4787 char *
cannam@95 4788 strendzap (char *str, const char *pat)
cannam@95 4789 {
cannam@95 4790 size_t len, patlen;
cannam@95 4791
cannam@95 4792 assert (str != NULL);
cannam@95 4793 assert (pat != NULL);
cannam@95 4794
cannam@95 4795 len = strlen (str);
cannam@95 4796 patlen = strlen (pat);
cannam@95 4797
cannam@95 4798 if (patlen <= len)
cannam@95 4799 {
cannam@95 4800 str += len - patlen;
cannam@95 4801 if (strcmp (str, pat) == 0)
cannam@95 4802 *str = '\0';
cannam@95 4803 }
cannam@95 4804 return str;
cannam@95 4805 }
cannam@95 4806
cannam@95 4807 void
cannam@95 4808 lt_debugprintf (const char *file, int line, const char *fmt, ...)
cannam@95 4809 {
cannam@95 4810 va_list args;
cannam@95 4811 if (lt_debug)
cannam@95 4812 {
cannam@95 4813 (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line);
cannam@95 4814 va_start (args, fmt);
cannam@95 4815 (void) vfprintf (stderr, fmt, args);
cannam@95 4816 va_end (args);
cannam@95 4817 }
cannam@95 4818 }
cannam@95 4819
cannam@95 4820 static void
cannam@95 4821 lt_error_core (int exit_status, const char *file,
cannam@95 4822 int line, const char *mode,
cannam@95 4823 const char *message, va_list ap)
cannam@95 4824 {
cannam@95 4825 fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode);
cannam@95 4826 vfprintf (stderr, message, ap);
cannam@95 4827 fprintf (stderr, ".\n");
cannam@95 4828
cannam@95 4829 if (exit_status >= 0)
cannam@95 4830 exit (exit_status);
cannam@95 4831 }
cannam@95 4832
cannam@95 4833 void
cannam@95 4834 lt_fatal (const char *file, int line, const char *message, ...)
cannam@95 4835 {
cannam@95 4836 va_list ap;
cannam@95 4837 va_start (ap, message);
cannam@95 4838 lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap);
cannam@95 4839 va_end (ap);
cannam@95 4840 }
cannam@95 4841
cannam@95 4842 static const char *
cannam@95 4843 nonnull (const char *s)
cannam@95 4844 {
cannam@95 4845 return s ? s : "(null)";
cannam@95 4846 }
cannam@95 4847
cannam@95 4848 static const char *
cannam@95 4849 nonempty (const char *s)
cannam@95 4850 {
cannam@95 4851 return (s && !*s) ? "(empty)" : nonnull (s);
cannam@95 4852 }
cannam@95 4853
cannam@95 4854 void
cannam@95 4855 lt_setenv (const char *name, const char *value)
cannam@95 4856 {
cannam@95 4857 lt_debugprintf (__FILE__, __LINE__,
cannam@95 4858 "(lt_setenv) setting '%s' to '%s'\n",
cannam@95 4859 nonnull (name), nonnull (value));
cannam@95 4860 {
cannam@95 4861 #ifdef HAVE_SETENV
cannam@95 4862 /* always make a copy, for consistency with !HAVE_SETENV */
cannam@95 4863 char *str = xstrdup (value);
cannam@95 4864 setenv (name, str, 1);
cannam@95 4865 #else
cannam@95 4866 int len = strlen (name) + 1 + strlen (value) + 1;
cannam@95 4867 char *str = XMALLOC (char, len);
cannam@95 4868 sprintf (str, "%s=%s", name, value);
cannam@95 4869 if (putenv (str) != EXIT_SUCCESS)
cannam@95 4870 {
cannam@95 4871 XFREE (str);
cannam@95 4872 }
cannam@95 4873 #endif
cannam@95 4874 }
cannam@95 4875 }
cannam@95 4876
cannam@95 4877 char *
cannam@95 4878 lt_extend_str (const char *orig_value, const char *add, int to_end)
cannam@95 4879 {
cannam@95 4880 char *new_value;
cannam@95 4881 if (orig_value && *orig_value)
cannam@95 4882 {
cannam@95 4883 int orig_value_len = strlen (orig_value);
cannam@95 4884 int add_len = strlen (add);
cannam@95 4885 new_value = XMALLOC (char, add_len + orig_value_len + 1);
cannam@95 4886 if (to_end)
cannam@95 4887 {
cannam@95 4888 strcpy (new_value, orig_value);
cannam@95 4889 strcpy (new_value + orig_value_len, add);
cannam@95 4890 }
cannam@95 4891 else
cannam@95 4892 {
cannam@95 4893 strcpy (new_value, add);
cannam@95 4894 strcpy (new_value + add_len, orig_value);
cannam@95 4895 }
cannam@95 4896 }
cannam@95 4897 else
cannam@95 4898 {
cannam@95 4899 new_value = xstrdup (add);
cannam@95 4900 }
cannam@95 4901 return new_value;
cannam@95 4902 }
cannam@95 4903
cannam@95 4904 void
cannam@95 4905 lt_update_exe_path (const char *name, const char *value)
cannam@95 4906 {
cannam@95 4907 lt_debugprintf (__FILE__, __LINE__,
cannam@95 4908 "(lt_update_exe_path) modifying '%s' by prepending '%s'\n",
cannam@95 4909 nonnull (name), nonnull (value));
cannam@95 4910
cannam@95 4911 if (name && *name && value && *value)
cannam@95 4912 {
cannam@95 4913 char *new_value = lt_extend_str (getenv (name), value, 0);
cannam@95 4914 /* some systems can't cope with a ':'-terminated path #' */
cannam@95 4915 int len = strlen (new_value);
cannam@95 4916 while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1]))
cannam@95 4917 {
cannam@95 4918 new_value[len-1] = '\0';
cannam@95 4919 }
cannam@95 4920 lt_setenv (name, new_value);
cannam@95 4921 XFREE (new_value);
cannam@95 4922 }
cannam@95 4923 }
cannam@95 4924
cannam@95 4925 void
cannam@95 4926 lt_update_lib_path (const char *name, const char *value)
cannam@95 4927 {
cannam@95 4928 lt_debugprintf (__FILE__, __LINE__,
cannam@95 4929 "(lt_update_lib_path) modifying '%s' by prepending '%s'\n",
cannam@95 4930 nonnull (name), nonnull (value));
cannam@95 4931
cannam@95 4932 if (name && *name && value && *value)
cannam@95 4933 {
cannam@95 4934 char *new_value = lt_extend_str (getenv (name), value, 0);
cannam@95 4935 lt_setenv (name, new_value);
cannam@95 4936 XFREE (new_value);
cannam@95 4937 }
cannam@95 4938 }
cannam@95 4939
cannam@95 4940 EOF
cannam@95 4941 case $host_os in
cannam@95 4942 mingw*)
cannam@95 4943 cat <<"EOF"
cannam@95 4944
cannam@95 4945 /* Prepares an argument vector before calling spawn().
cannam@95 4946 Note that spawn() does not by itself call the command interpreter
cannam@95 4947 (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") :
cannam@95 4948 ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
cannam@95 4949 GetVersionEx(&v);
cannam@95 4950 v.dwPlatformId == VER_PLATFORM_WIN32_NT;
cannam@95 4951 }) ? "cmd.exe" : "command.com").
cannam@95 4952 Instead it simply concatenates the arguments, separated by ' ', and calls
cannam@95 4953 CreateProcess(). We must quote the arguments since Win32 CreateProcess()
cannam@95 4954 interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a
cannam@95 4955 special way:
cannam@95 4956 - Space and tab are interpreted as delimiters. They are not treated as
cannam@95 4957 delimiters if they are surrounded by double quotes: "...".
cannam@95 4958 - Unescaped double quotes are removed from the input. Their only effect is
cannam@95 4959 that within double quotes, space and tab are treated like normal
cannam@95 4960 characters.
cannam@95 4961 - Backslashes not followed by double quotes are not special.
cannam@95 4962 - But 2*n+1 backslashes followed by a double quote become
cannam@95 4963 n backslashes followed by a double quote (n >= 0):
cannam@95 4964 \" -> "
cannam@95 4965 \\\" -> \"
cannam@95 4966 \\\\\" -> \\"
cannam@95 4967 */
cannam@95 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@95 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@95 4970 char **
cannam@95 4971 prepare_spawn (char **argv)
cannam@95 4972 {
cannam@95 4973 size_t argc;
cannam@95 4974 char **new_argv;
cannam@95 4975 size_t i;
cannam@95 4976
cannam@95 4977 /* Count number of arguments. */
cannam@95 4978 for (argc = 0; argv[argc] != NULL; argc++)
cannam@95 4979 ;
cannam@95 4980
cannam@95 4981 /* Allocate new argument vector. */
cannam@95 4982 new_argv = XMALLOC (char *, argc + 1);
cannam@95 4983
cannam@95 4984 /* Put quoted arguments into the new argument vector. */
cannam@95 4985 for (i = 0; i < argc; i++)
cannam@95 4986 {
cannam@95 4987 const char *string = argv[i];
cannam@95 4988
cannam@95 4989 if (string[0] == '\0')
cannam@95 4990 new_argv[i] = xstrdup ("\"\"");
cannam@95 4991 else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL)
cannam@95 4992 {
cannam@95 4993 int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL);
cannam@95 4994 size_t length;
cannam@95 4995 unsigned int backslashes;
cannam@95 4996 const char *s;
cannam@95 4997 char *quoted_string;
cannam@95 4998 char *p;
cannam@95 4999
cannam@95 5000 length = 0;
cannam@95 5001 backslashes = 0;
cannam@95 5002 if (quote_around)
cannam@95 5003 length++;
cannam@95 5004 for (s = string; *s != '\0'; s++)
cannam@95 5005 {
cannam@95 5006 char c = *s;
cannam@95 5007 if (c == '"')
cannam@95 5008 length += backslashes + 1;
cannam@95 5009 length++;
cannam@95 5010 if (c == '\\')
cannam@95 5011 backslashes++;
cannam@95 5012 else
cannam@95 5013 backslashes = 0;
cannam@95 5014 }
cannam@95 5015 if (quote_around)
cannam@95 5016 length += backslashes + 1;
cannam@95 5017
cannam@95 5018 quoted_string = XMALLOC (char, length + 1);
cannam@95 5019
cannam@95 5020 p = quoted_string;
cannam@95 5021 backslashes = 0;
cannam@95 5022 if (quote_around)
cannam@95 5023 *p++ = '"';
cannam@95 5024 for (s = string; *s != '\0'; s++)
cannam@95 5025 {
cannam@95 5026 char c = *s;
cannam@95 5027 if (c == '"')
cannam@95 5028 {
cannam@95 5029 unsigned int j;
cannam@95 5030 for (j = backslashes + 1; j > 0; j--)
cannam@95 5031 *p++ = '\\';
cannam@95 5032 }
cannam@95 5033 *p++ = c;
cannam@95 5034 if (c == '\\')
cannam@95 5035 backslashes++;
cannam@95 5036 else
cannam@95 5037 backslashes = 0;
cannam@95 5038 }
cannam@95 5039 if (quote_around)
cannam@95 5040 {
cannam@95 5041 unsigned int j;
cannam@95 5042 for (j = backslashes; j > 0; j--)
cannam@95 5043 *p++ = '\\';
cannam@95 5044 *p++ = '"';
cannam@95 5045 }
cannam@95 5046 *p = '\0';
cannam@95 5047
cannam@95 5048 new_argv[i] = quoted_string;
cannam@95 5049 }
cannam@95 5050 else
cannam@95 5051 new_argv[i] = (char *) string;
cannam@95 5052 }
cannam@95 5053 new_argv[argc] = NULL;
cannam@95 5054
cannam@95 5055 return new_argv;
cannam@95 5056 }
cannam@95 5057 EOF
cannam@95 5058 ;;
cannam@95 5059 esac
cannam@95 5060
cannam@95 5061 cat <<"EOF"
cannam@95 5062 void lt_dump_script (FILE* f)
cannam@95 5063 {
cannam@95 5064 EOF
cannam@95 5065 func_emit_wrapper yes |
cannam@95 5066 $SED -n -e '
cannam@95 5067 s/^\(.\{79\}\)\(..*\)/\1\
cannam@95 5068 \2/
cannam@95 5069 h
cannam@95 5070 s/\([\\"]\)/\\\1/g
cannam@95 5071 s/$/\\n/
cannam@95 5072 s/\([^\n]*\).*/ fputs ("\1", f);/p
cannam@95 5073 g
cannam@95 5074 D'
cannam@95 5075 cat <<"EOF"
cannam@95 5076 }
cannam@95 5077 EOF
cannam@95 5078 }
cannam@95 5079 # end: func_emit_cwrapperexe_src
cannam@95 5080
cannam@95 5081 # func_win32_import_lib_p ARG
cannam@95 5082 # True if ARG is an import lib, as indicated by $file_magic_cmd
cannam@95 5083 func_win32_import_lib_p ()
cannam@95 5084 {
cannam@95 5085 $opt_debug
cannam@95 5086 case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in
cannam@95 5087 *import*) : ;;
cannam@95 5088 *) false ;;
cannam@95 5089 esac
cannam@95 5090 }
cannam@95 5091
cannam@95 5092 # func_mode_link arg...
cannam@95 5093 func_mode_link ()
cannam@95 5094 {
cannam@95 5095 $opt_debug
cannam@95 5096 case $host in
cannam@95 5097 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
cannam@95 5098 # It is impossible to link a dll without this setting, and
cannam@95 5099 # we shouldn't force the makefile maintainer to figure out
cannam@95 5100 # which system we are compiling for in order to pass an extra
cannam@95 5101 # flag for every libtool invocation.
cannam@95 5102 # allow_undefined=no
cannam@95 5103
cannam@95 5104 # FIXME: Unfortunately, there are problems with the above when trying
cannam@95 5105 # to make a dll which has undefined symbols, in which case not
cannam@95 5106 # even a static library is built. For now, we need to specify
cannam@95 5107 # -no-undefined on the libtool link line when we can be certain
cannam@95 5108 # that all symbols are satisfied, otherwise we get a static library.
cannam@95 5109 allow_undefined=yes
cannam@95 5110 ;;
cannam@95 5111 *)
cannam@95 5112 allow_undefined=yes
cannam@95 5113 ;;
cannam@95 5114 esac
cannam@95 5115 libtool_args=$nonopt
cannam@95 5116 base_compile="$nonopt $@"
cannam@95 5117 compile_command=$nonopt
cannam@95 5118 finalize_command=$nonopt
cannam@95 5119
cannam@95 5120 compile_rpath=
cannam@95 5121 finalize_rpath=
cannam@95 5122 compile_shlibpath=
cannam@95 5123 finalize_shlibpath=
cannam@95 5124 convenience=
cannam@95 5125 old_convenience=
cannam@95 5126 deplibs=
cannam@95 5127 old_deplibs=
cannam@95 5128 compiler_flags=
cannam@95 5129 linker_flags=
cannam@95 5130 dllsearchpath=
cannam@95 5131 lib_search_path=`pwd`
cannam@95 5132 inst_prefix_dir=
cannam@95 5133 new_inherited_linker_flags=
cannam@95 5134
cannam@95 5135 avoid_version=no
cannam@95 5136 bindir=
cannam@95 5137 dlfiles=
cannam@95 5138 dlprefiles=
cannam@95 5139 dlself=no
cannam@95 5140 export_dynamic=no
cannam@95 5141 export_symbols=
cannam@95 5142 export_symbols_regex=
cannam@95 5143 generated=
cannam@95 5144 libobjs=
cannam@95 5145 ltlibs=
cannam@95 5146 module=no
cannam@95 5147 no_install=no
cannam@95 5148 objs=
cannam@95 5149 non_pic_objects=
cannam@95 5150 precious_files_regex=
cannam@95 5151 prefer_static_libs=no
cannam@95 5152 preload=no
cannam@95 5153 prev=
cannam@95 5154 prevarg=
cannam@95 5155 release=
cannam@95 5156 rpath=
cannam@95 5157 xrpath=
cannam@95 5158 perm_rpath=
cannam@95 5159 temp_rpath=
cannam@95 5160 thread_safe=no
cannam@95 5161 vinfo=
cannam@95 5162 vinfo_number=no
cannam@95 5163 weak_libs=
cannam@95 5164 single_module="${wl}-single_module"
cannam@95 5165 func_infer_tag $base_compile
cannam@95 5166
cannam@95 5167 # We need to know -static, to get the right output filenames.
cannam@95 5168 for arg
cannam@95 5169 do
cannam@95 5170 case $arg in
cannam@95 5171 -shared)
cannam@95 5172 test "$build_libtool_libs" != yes && \
cannam@95 5173 func_fatal_configuration "can not build a shared library"
cannam@95 5174 build_old_libs=no
cannam@95 5175 break
cannam@95 5176 ;;
cannam@95 5177 -all-static | -static | -static-libtool-libs)
cannam@95 5178 case $arg in
cannam@95 5179 -all-static)
cannam@95 5180 if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
cannam@95 5181 func_warning "complete static linking is impossible in this configuration"
cannam@95 5182 fi
cannam@95 5183 if test -n "$link_static_flag"; then
cannam@95 5184 dlopen_self=$dlopen_self_static
cannam@95 5185 fi
cannam@95 5186 prefer_static_libs=yes
cannam@95 5187 ;;
cannam@95 5188 -static)
cannam@95 5189 if test -z "$pic_flag" && test -n "$link_static_flag"; then
cannam@95 5190 dlopen_self=$dlopen_self_static
cannam@95 5191 fi
cannam@95 5192 prefer_static_libs=built
cannam@95 5193 ;;
cannam@95 5194 -static-libtool-libs)
cannam@95 5195 if test -z "$pic_flag" && test -n "$link_static_flag"; then
cannam@95 5196 dlopen_self=$dlopen_self_static
cannam@95 5197 fi
cannam@95 5198 prefer_static_libs=yes
cannam@95 5199 ;;
cannam@95 5200 esac
cannam@95 5201 build_libtool_libs=no
cannam@95 5202 build_old_libs=yes
cannam@95 5203 break
cannam@95 5204 ;;
cannam@95 5205 esac
cannam@95 5206 done
cannam@95 5207
cannam@95 5208 # See if our shared archives depend on static archives.
cannam@95 5209 test -n "$old_archive_from_new_cmds" && build_old_libs=yes
cannam@95 5210
cannam@95 5211 # Go through the arguments, transforming them on the way.
cannam@95 5212 while test "$#" -gt 0; do
cannam@95 5213 arg="$1"
cannam@95 5214 shift
cannam@95 5215 func_quote_for_eval "$arg"
cannam@95 5216 qarg=$func_quote_for_eval_unquoted_result
cannam@95 5217 func_append libtool_args " $func_quote_for_eval_result"
cannam@95 5218
cannam@95 5219 # If the previous option needs an argument, assign it.
cannam@95 5220 if test -n "$prev"; then
cannam@95 5221 case $prev in
cannam@95 5222 output)
cannam@95 5223 func_append compile_command " @OUTPUT@"
cannam@95 5224 func_append finalize_command " @OUTPUT@"
cannam@95 5225 ;;
cannam@95 5226 esac
cannam@95 5227
cannam@95 5228 case $prev in
cannam@95 5229 bindir)
cannam@95 5230 bindir="$arg"
cannam@95 5231 prev=
cannam@95 5232 continue
cannam@95 5233 ;;
cannam@95 5234 dlfiles|dlprefiles)
cannam@95 5235 if test "$preload" = no; then
cannam@95 5236 # Add the symbol object into the linking commands.
cannam@95 5237 func_append compile_command " @SYMFILE@"
cannam@95 5238 func_append finalize_command " @SYMFILE@"
cannam@95 5239 preload=yes
cannam@95 5240 fi
cannam@95 5241 case $arg in
cannam@95 5242 *.la | *.lo) ;; # We handle these cases below.
cannam@95 5243 force)
cannam@95 5244 if test "$dlself" = no; then
cannam@95 5245 dlself=needless
cannam@95 5246 export_dynamic=yes
cannam@95 5247 fi
cannam@95 5248 prev=
cannam@95 5249 continue
cannam@95 5250 ;;
cannam@95 5251 self)
cannam@95 5252 if test "$prev" = dlprefiles; then
cannam@95 5253 dlself=yes
cannam@95 5254 elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
cannam@95 5255 dlself=yes
cannam@95 5256 else
cannam@95 5257 dlself=needless
cannam@95 5258 export_dynamic=yes
cannam@95 5259 fi
cannam@95 5260 prev=
cannam@95 5261 continue
cannam@95 5262 ;;
cannam@95 5263 *)
cannam@95 5264 if test "$prev" = dlfiles; then
cannam@95 5265 func_append dlfiles " $arg"
cannam@95 5266 else
cannam@95 5267 func_append dlprefiles " $arg"
cannam@95 5268 fi
cannam@95 5269 prev=
cannam@95 5270 continue
cannam@95 5271 ;;
cannam@95 5272 esac
cannam@95 5273 ;;
cannam@95 5274 expsyms)
cannam@95 5275 export_symbols="$arg"
cannam@95 5276 test -f "$arg" \
cannam@95 5277 || func_fatal_error "symbol file \`$arg' does not exist"
cannam@95 5278 prev=
cannam@95 5279 continue
cannam@95 5280 ;;
cannam@95 5281 expsyms_regex)
cannam@95 5282 export_symbols_regex="$arg"
cannam@95 5283 prev=
cannam@95 5284 continue
cannam@95 5285 ;;
cannam@95 5286 framework)
cannam@95 5287 case $host in
cannam@95 5288 *-*-darwin*)
cannam@95 5289 case "$deplibs " in
cannam@95 5290 *" $qarg.ltframework "*) ;;
cannam@95 5291 *) func_append deplibs " $qarg.ltframework" # this is fixed later
cannam@95 5292 ;;
cannam@95 5293 esac
cannam@95 5294 ;;
cannam@95 5295 esac
cannam@95 5296 prev=
cannam@95 5297 continue
cannam@95 5298 ;;
cannam@95 5299 inst_prefix)
cannam@95 5300 inst_prefix_dir="$arg"
cannam@95 5301 prev=
cannam@95 5302 continue
cannam@95 5303 ;;
cannam@95 5304 objectlist)
cannam@95 5305 if test -f "$arg"; then
cannam@95 5306 save_arg=$arg
cannam@95 5307 moreargs=
cannam@95 5308 for fil in `cat "$save_arg"`
cannam@95 5309 do
cannam@95 5310 # func_append moreargs " $fil"
cannam@95 5311 arg=$fil
cannam@95 5312 # A libtool-controlled object.
cannam@95 5313
cannam@95 5314 # Check to see that this really is a libtool object.
cannam@95 5315 if func_lalib_unsafe_p "$arg"; then
cannam@95 5316 pic_object=
cannam@95 5317 non_pic_object=
cannam@95 5318
cannam@95 5319 # Read the .lo file
cannam@95 5320 func_source "$arg"
cannam@95 5321
cannam@95 5322 if test -z "$pic_object" ||
cannam@95 5323 test -z "$non_pic_object" ||
cannam@95 5324 test "$pic_object" = none &&
cannam@95 5325 test "$non_pic_object" = none; then
cannam@95 5326 func_fatal_error "cannot find name of object for \`$arg'"
cannam@95 5327 fi
cannam@95 5328
cannam@95 5329 # Extract subdirectory from the argument.
cannam@95 5330 func_dirname "$arg" "/" ""
cannam@95 5331 xdir="$func_dirname_result"
cannam@95 5332
cannam@95 5333 if test "$pic_object" != none; then
cannam@95 5334 # Prepend the subdirectory the object is found in.
cannam@95 5335 pic_object="$xdir$pic_object"
cannam@95 5336
cannam@95 5337 if test "$prev" = dlfiles; then
cannam@95 5338 if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
cannam@95 5339 func_append dlfiles " $pic_object"
cannam@95 5340 prev=
cannam@95 5341 continue
cannam@95 5342 else
cannam@95 5343 # If libtool objects are unsupported, then we need to preload.
cannam@95 5344 prev=dlprefiles
cannam@95 5345 fi
cannam@95 5346 fi
cannam@95 5347
cannam@95 5348 # CHECK ME: I think I busted this. -Ossama
cannam@95 5349 if test "$prev" = dlprefiles; then
cannam@95 5350 # Preload the old-style object.
cannam@95 5351 func_append dlprefiles " $pic_object"
cannam@95 5352 prev=
cannam@95 5353 fi
cannam@95 5354
cannam@95 5355 # A PIC object.
cannam@95 5356 func_append libobjs " $pic_object"
cannam@95 5357 arg="$pic_object"
cannam@95 5358 fi
cannam@95 5359
cannam@95 5360 # Non-PIC object.
cannam@95 5361 if test "$non_pic_object" != none; then
cannam@95 5362 # Prepend the subdirectory the object is found in.
cannam@95 5363 non_pic_object="$xdir$non_pic_object"
cannam@95 5364
cannam@95 5365 # A standard non-PIC object
cannam@95 5366 func_append non_pic_objects " $non_pic_object"
cannam@95 5367 if test -z "$pic_object" || test "$pic_object" = none ; then
cannam@95 5368 arg="$non_pic_object"
cannam@95 5369 fi
cannam@95 5370 else
cannam@95 5371 # If the PIC object exists, use it instead.
cannam@95 5372 # $xdir was prepended to $pic_object above.
cannam@95 5373 non_pic_object="$pic_object"
cannam@95 5374 func_append non_pic_objects " $non_pic_object"
cannam@95 5375 fi
cannam@95 5376 else
cannam@95 5377 # Only an error if not doing a dry-run.
cannam@95 5378 if $opt_dry_run; then
cannam@95 5379 # Extract subdirectory from the argument.
cannam@95 5380 func_dirname "$arg" "/" ""
cannam@95 5381 xdir="$func_dirname_result"
cannam@95 5382
cannam@95 5383 func_lo2o "$arg"
cannam@95 5384 pic_object=$xdir$objdir/$func_lo2o_result
cannam@95 5385 non_pic_object=$xdir$func_lo2o_result
cannam@95 5386 func_append libobjs " $pic_object"
cannam@95 5387 func_append non_pic_objects " $non_pic_object"
cannam@95 5388 else
cannam@95 5389 func_fatal_error "\`$arg' is not a valid libtool object"
cannam@95 5390 fi
cannam@95 5391 fi
cannam@95 5392 done
cannam@95 5393 else
cannam@95 5394 func_fatal_error "link input file \`$arg' does not exist"
cannam@95 5395 fi
cannam@95 5396 arg=$save_arg
cannam@95 5397 prev=
cannam@95 5398 continue
cannam@95 5399 ;;
cannam@95 5400 precious_regex)
cannam@95 5401 precious_files_regex="$arg"
cannam@95 5402 prev=
cannam@95 5403 continue
cannam@95 5404 ;;
cannam@95 5405 release)
cannam@95 5406 release="-$arg"
cannam@95 5407 prev=
cannam@95 5408 continue
cannam@95 5409 ;;
cannam@95 5410 rpath | xrpath)
cannam@95 5411 # We need an absolute path.
cannam@95 5412 case $arg in
cannam@95 5413 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@95 5414 *)
cannam@95 5415 func_fatal_error "only absolute run-paths are allowed"
cannam@95 5416 ;;
cannam@95 5417 esac
cannam@95 5418 if test "$prev" = rpath; then
cannam@95 5419 case "$rpath " in
cannam@95 5420 *" $arg "*) ;;
cannam@95 5421 *) func_append rpath " $arg" ;;
cannam@95 5422 esac
cannam@95 5423 else
cannam@95 5424 case "$xrpath " in
cannam@95 5425 *" $arg "*) ;;
cannam@95 5426 *) func_append xrpath " $arg" ;;
cannam@95 5427 esac
cannam@95 5428 fi
cannam@95 5429 prev=
cannam@95 5430 continue
cannam@95 5431 ;;
cannam@95 5432 shrext)
cannam@95 5433 shrext_cmds="$arg"
cannam@95 5434 prev=
cannam@95 5435 continue
cannam@95 5436 ;;
cannam@95 5437 weak)
cannam@95 5438 func_append weak_libs " $arg"
cannam@95 5439 prev=
cannam@95 5440 continue
cannam@95 5441 ;;
cannam@95 5442 xcclinker)
cannam@95 5443 func_append linker_flags " $qarg"
cannam@95 5444 func_append compiler_flags " $qarg"
cannam@95 5445 prev=
cannam@95 5446 func_append compile_command " $qarg"
cannam@95 5447 func_append finalize_command " $qarg"
cannam@95 5448 continue
cannam@95 5449 ;;
cannam@95 5450 xcompiler)
cannam@95 5451 func_append compiler_flags " $qarg"
cannam@95 5452 prev=
cannam@95 5453 func_append compile_command " $qarg"
cannam@95 5454 func_append finalize_command " $qarg"
cannam@95 5455 continue
cannam@95 5456 ;;
cannam@95 5457 xlinker)
cannam@95 5458 func_append linker_flags " $qarg"
cannam@95 5459 func_append compiler_flags " $wl$qarg"
cannam@95 5460 prev=
cannam@95 5461 func_append compile_command " $wl$qarg"
cannam@95 5462 func_append finalize_command " $wl$qarg"
cannam@95 5463 continue
cannam@95 5464 ;;
cannam@95 5465 *)
cannam@95 5466 eval "$prev=\"\$arg\""
cannam@95 5467 prev=
cannam@95 5468 continue
cannam@95 5469 ;;
cannam@95 5470 esac
cannam@95 5471 fi # test -n "$prev"
cannam@95 5472
cannam@95 5473 prevarg="$arg"
cannam@95 5474
cannam@95 5475 case $arg in
cannam@95 5476 -all-static)
cannam@95 5477 if test -n "$link_static_flag"; then
cannam@95 5478 # See comment for -static flag below, for more details.
cannam@95 5479 func_append compile_command " $link_static_flag"
cannam@95 5480 func_append finalize_command " $link_static_flag"
cannam@95 5481 fi
cannam@95 5482 continue
cannam@95 5483 ;;
cannam@95 5484
cannam@95 5485 -allow-undefined)
cannam@95 5486 # FIXME: remove this flag sometime in the future.
cannam@95 5487 func_fatal_error "\`-allow-undefined' must not be used because it is the default"
cannam@95 5488 ;;
cannam@95 5489
cannam@95 5490 -avoid-version)
cannam@95 5491 avoid_version=yes
cannam@95 5492 continue
cannam@95 5493 ;;
cannam@95 5494
cannam@95 5495 -bindir)
cannam@95 5496 prev=bindir
cannam@95 5497 continue
cannam@95 5498 ;;
cannam@95 5499
cannam@95 5500 -dlopen)
cannam@95 5501 prev=dlfiles
cannam@95 5502 continue
cannam@95 5503 ;;
cannam@95 5504
cannam@95 5505 -dlpreopen)
cannam@95 5506 prev=dlprefiles
cannam@95 5507 continue
cannam@95 5508 ;;
cannam@95 5509
cannam@95 5510 -export-dynamic)
cannam@95 5511 export_dynamic=yes
cannam@95 5512 continue
cannam@95 5513 ;;
cannam@95 5514
cannam@95 5515 -export-symbols | -export-symbols-regex)
cannam@95 5516 if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
cannam@95 5517 func_fatal_error "more than one -exported-symbols argument is not allowed"
cannam@95 5518 fi
cannam@95 5519 if test "X$arg" = "X-export-symbols"; then
cannam@95 5520 prev=expsyms
cannam@95 5521 else
cannam@95 5522 prev=expsyms_regex
cannam@95 5523 fi
cannam@95 5524 continue
cannam@95 5525 ;;
cannam@95 5526
cannam@95 5527 -framework)
cannam@95 5528 prev=framework
cannam@95 5529 continue
cannam@95 5530 ;;
cannam@95 5531
cannam@95 5532 -inst-prefix-dir)
cannam@95 5533 prev=inst_prefix
cannam@95 5534 continue
cannam@95 5535 ;;
cannam@95 5536
cannam@95 5537 # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
cannam@95 5538 # so, if we see these flags be careful not to treat them like -L
cannam@95 5539 -L[A-Z][A-Z]*:*)
cannam@95 5540 case $with_gcc/$host in
cannam@95 5541 no/*-*-irix* | /*-*-irix*)
cannam@95 5542 func_append compile_command " $arg"
cannam@95 5543 func_append finalize_command " $arg"
cannam@95 5544 ;;
cannam@95 5545 esac
cannam@95 5546 continue
cannam@95 5547 ;;
cannam@95 5548
cannam@95 5549 -L*)
cannam@95 5550 func_stripname "-L" '' "$arg"
cannam@95 5551 if test -z "$func_stripname_result"; then
cannam@95 5552 if test "$#" -gt 0; then
cannam@95 5553 func_fatal_error "require no space between \`-L' and \`$1'"
cannam@95 5554 else
cannam@95 5555 func_fatal_error "need path for \`-L' option"
cannam@95 5556 fi
cannam@95 5557 fi
cannam@95 5558 func_resolve_sysroot "$func_stripname_result"
cannam@95 5559 dir=$func_resolve_sysroot_result
cannam@95 5560 # We need an absolute path.
cannam@95 5561 case $dir in
cannam@95 5562 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@95 5563 *)
cannam@95 5564 absdir=`cd "$dir" && pwd`
cannam@95 5565 test -z "$absdir" && \
cannam@95 5566 func_fatal_error "cannot determine absolute directory name of \`$dir'"
cannam@95 5567 dir="$absdir"
cannam@95 5568 ;;
cannam@95 5569 esac
cannam@95 5570 case "$deplibs " in
cannam@95 5571 *" -L$dir "* | *" $arg "*)
cannam@95 5572 # Will only happen for absolute or sysroot arguments
cannam@95 5573 ;;
cannam@95 5574 *)
cannam@95 5575 # Preserve sysroot, but never include relative directories
cannam@95 5576 case $dir in
cannam@95 5577 [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;;
cannam@95 5578 *) func_append deplibs " -L$dir" ;;
cannam@95 5579 esac
cannam@95 5580 func_append lib_search_path " $dir"
cannam@95 5581 ;;
cannam@95 5582 esac
cannam@95 5583 case $host in
cannam@95 5584 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
cannam@95 5585 testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'`
cannam@95 5586 case :$dllsearchpath: in
cannam@95 5587 *":$dir:"*) ;;
cannam@95 5588 ::) dllsearchpath=$dir;;
cannam@95 5589 *) func_append dllsearchpath ":$dir";;
cannam@95 5590 esac
cannam@95 5591 case :$dllsearchpath: in
cannam@95 5592 *":$testbindir:"*) ;;
cannam@95 5593 ::) dllsearchpath=$testbindir;;
cannam@95 5594 *) func_append dllsearchpath ":$testbindir";;
cannam@95 5595 esac
cannam@95 5596 ;;
cannam@95 5597 esac
cannam@95 5598 continue
cannam@95 5599 ;;
cannam@95 5600
cannam@95 5601 -l*)
cannam@95 5602 if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
cannam@95 5603 case $host in
cannam@95 5604 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*)
cannam@95 5605 # These systems don't actually have a C or math library (as such)
cannam@95 5606 continue
cannam@95 5607 ;;
cannam@95 5608 *-*-os2*)
cannam@95 5609 # These systems don't actually have a C library (as such)
cannam@95 5610 test "X$arg" = "X-lc" && continue
cannam@95 5611 ;;
cannam@95 5612 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@95 5613 # Do not include libc due to us having libc/libc_r.
cannam@95 5614 test "X$arg" = "X-lc" && continue
cannam@95 5615 ;;
cannam@95 5616 *-*-rhapsody* | *-*-darwin1.[012])
cannam@95 5617 # Rhapsody C and math libraries are in the System framework
cannam@95 5618 func_append deplibs " System.ltframework"
cannam@95 5619 continue
cannam@95 5620 ;;
cannam@95 5621 *-*-sco3.2v5* | *-*-sco5v6*)
cannam@95 5622 # Causes problems with __ctype
cannam@95 5623 test "X$arg" = "X-lc" && continue
cannam@95 5624 ;;
cannam@95 5625 *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
cannam@95 5626 # Compiler inserts libc in the correct place for threads to work
cannam@95 5627 test "X$arg" = "X-lc" && continue
cannam@95 5628 ;;
cannam@95 5629 esac
cannam@95 5630 elif test "X$arg" = "X-lc_r"; then
cannam@95 5631 case $host in
cannam@95 5632 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@95 5633 # Do not include libc_r directly, use -pthread flag.
cannam@95 5634 continue
cannam@95 5635 ;;
cannam@95 5636 esac
cannam@95 5637 fi
cannam@95 5638 func_append deplibs " $arg"
cannam@95 5639 continue
cannam@95 5640 ;;
cannam@95 5641
cannam@95 5642 -module)
cannam@95 5643 module=yes
cannam@95 5644 continue
cannam@95 5645 ;;
cannam@95 5646
cannam@95 5647 # Tru64 UNIX uses -model [arg] to determine the layout of C++
cannam@95 5648 # classes, name mangling, and exception handling.
cannam@95 5649 # Darwin uses the -arch flag to determine output architecture.
cannam@95 5650 -model|-arch|-isysroot|--sysroot)
cannam@95 5651 func_append compiler_flags " $arg"
cannam@95 5652 func_append compile_command " $arg"
cannam@95 5653 func_append finalize_command " $arg"
cannam@95 5654 prev=xcompiler
cannam@95 5655 continue
cannam@95 5656 ;;
cannam@95 5657
cannam@95 5658 -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \
cannam@95 5659 |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)
cannam@95 5660 func_append compiler_flags " $arg"
cannam@95 5661 func_append compile_command " $arg"
cannam@95 5662 func_append finalize_command " $arg"
cannam@95 5663 case "$new_inherited_linker_flags " in
cannam@95 5664 *" $arg "*) ;;
cannam@95 5665 * ) func_append new_inherited_linker_flags " $arg" ;;
cannam@95 5666 esac
cannam@95 5667 continue
cannam@95 5668 ;;
cannam@95 5669
cannam@95 5670 -multi_module)
cannam@95 5671 single_module="${wl}-multi_module"
cannam@95 5672 continue
cannam@95 5673 ;;
cannam@95 5674
cannam@95 5675 -no-fast-install)
cannam@95 5676 fast_install=no
cannam@95 5677 continue
cannam@95 5678 ;;
cannam@95 5679
cannam@95 5680 -no-install)
cannam@95 5681 case $host in
cannam@95 5682 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*)
cannam@95 5683 # The PATH hackery in wrapper scripts is required on Windows
cannam@95 5684 # and Darwin in order for the loader to find any dlls it needs.
cannam@95 5685 func_warning "\`-no-install' is ignored for $host"
cannam@95 5686 func_warning "assuming \`-no-fast-install' instead"
cannam@95 5687 fast_install=no
cannam@95 5688 ;;
cannam@95 5689 *) no_install=yes ;;
cannam@95 5690 esac
cannam@95 5691 continue
cannam@95 5692 ;;
cannam@95 5693
cannam@95 5694 -no-undefined)
cannam@95 5695 allow_undefined=no
cannam@95 5696 continue
cannam@95 5697 ;;
cannam@95 5698
cannam@95 5699 -objectlist)
cannam@95 5700 prev=objectlist
cannam@95 5701 continue
cannam@95 5702 ;;
cannam@95 5703
cannam@95 5704 -o) prev=output ;;
cannam@95 5705
cannam@95 5706 -precious-files-regex)
cannam@95 5707 prev=precious_regex
cannam@95 5708 continue
cannam@95 5709 ;;
cannam@95 5710
cannam@95 5711 -release)
cannam@95 5712 prev=release
cannam@95 5713 continue
cannam@95 5714 ;;
cannam@95 5715
cannam@95 5716 -rpath)
cannam@95 5717 prev=rpath
cannam@95 5718 continue
cannam@95 5719 ;;
cannam@95 5720
cannam@95 5721 -R)
cannam@95 5722 prev=xrpath
cannam@95 5723 continue
cannam@95 5724 ;;
cannam@95 5725
cannam@95 5726 -R*)
cannam@95 5727 func_stripname '-R' '' "$arg"
cannam@95 5728 dir=$func_stripname_result
cannam@95 5729 # We need an absolute path.
cannam@95 5730 case $dir in
cannam@95 5731 [\\/]* | [A-Za-z]:[\\/]*) ;;
cannam@95 5732 =*)
cannam@95 5733 func_stripname '=' '' "$dir"
cannam@95 5734 dir=$lt_sysroot$func_stripname_result
cannam@95 5735 ;;
cannam@95 5736 *)
cannam@95 5737 func_fatal_error "only absolute run-paths are allowed"
cannam@95 5738 ;;
cannam@95 5739 esac
cannam@95 5740 case "$xrpath " in
cannam@95 5741 *" $dir "*) ;;
cannam@95 5742 *) func_append xrpath " $dir" ;;
cannam@95 5743 esac
cannam@95 5744 continue
cannam@95 5745 ;;
cannam@95 5746
cannam@95 5747 -shared)
cannam@95 5748 # The effects of -shared are defined in a previous loop.
cannam@95 5749 continue
cannam@95 5750 ;;
cannam@95 5751
cannam@95 5752 -shrext)
cannam@95 5753 prev=shrext
cannam@95 5754 continue
cannam@95 5755 ;;
cannam@95 5756
cannam@95 5757 -static | -static-libtool-libs)
cannam@95 5758 # The effects of -static are defined in a previous loop.
cannam@95 5759 # We used to do the same as -all-static on platforms that
cannam@95 5760 # didn't have a PIC flag, but the assumption that the effects
cannam@95 5761 # would be equivalent was wrong. It would break on at least
cannam@95 5762 # Digital Unix and AIX.
cannam@95 5763 continue
cannam@95 5764 ;;
cannam@95 5765
cannam@95 5766 -thread-safe)
cannam@95 5767 thread_safe=yes
cannam@95 5768 continue
cannam@95 5769 ;;
cannam@95 5770
cannam@95 5771 -version-info)
cannam@95 5772 prev=vinfo
cannam@95 5773 continue
cannam@95 5774 ;;
cannam@95 5775
cannam@95 5776 -version-number)
cannam@95 5777 prev=vinfo
cannam@95 5778 vinfo_number=yes
cannam@95 5779 continue
cannam@95 5780 ;;
cannam@95 5781
cannam@95 5782 -weak)
cannam@95 5783 prev=weak
cannam@95 5784 continue
cannam@95 5785 ;;
cannam@95 5786
cannam@95 5787 -Wc,*)
cannam@95 5788 func_stripname '-Wc,' '' "$arg"
cannam@95 5789 args=$func_stripname_result
cannam@95 5790 arg=
cannam@95 5791 save_ifs="$IFS"; IFS=','
cannam@95 5792 for flag in $args; do
cannam@95 5793 IFS="$save_ifs"
cannam@95 5794 func_quote_for_eval "$flag"
cannam@95 5795 func_append arg " $func_quote_for_eval_result"
cannam@95 5796 func_append compiler_flags " $func_quote_for_eval_result"
cannam@95 5797 done
cannam@95 5798 IFS="$save_ifs"
cannam@95 5799 func_stripname ' ' '' "$arg"
cannam@95 5800 arg=$func_stripname_result
cannam@95 5801 ;;
cannam@95 5802
cannam@95 5803 -Wl,*)
cannam@95 5804 func_stripname '-Wl,' '' "$arg"
cannam@95 5805 args=$func_stripname_result
cannam@95 5806 arg=
cannam@95 5807 save_ifs="$IFS"; IFS=','
cannam@95 5808 for flag in $args; do
cannam@95 5809 IFS="$save_ifs"
cannam@95 5810 func_quote_for_eval "$flag"
cannam@95 5811 func_append arg " $wl$func_quote_for_eval_result"
cannam@95 5812 func_append compiler_flags " $wl$func_quote_for_eval_result"
cannam@95 5813 func_append linker_flags " $func_quote_for_eval_result"
cannam@95 5814 done
cannam@95 5815 IFS="$save_ifs"
cannam@95 5816 func_stripname ' ' '' "$arg"
cannam@95 5817 arg=$func_stripname_result
cannam@95 5818 ;;
cannam@95 5819
cannam@95 5820 -Xcompiler)
cannam@95 5821 prev=xcompiler
cannam@95 5822 continue
cannam@95 5823 ;;
cannam@95 5824
cannam@95 5825 -Xlinker)
cannam@95 5826 prev=xlinker
cannam@95 5827 continue
cannam@95 5828 ;;
cannam@95 5829
cannam@95 5830 -XCClinker)
cannam@95 5831 prev=xcclinker
cannam@95 5832 continue
cannam@95 5833 ;;
cannam@95 5834
cannam@95 5835 # -msg_* for osf cc
cannam@95 5836 -msg_*)
cannam@95 5837 func_quote_for_eval "$arg"
cannam@95 5838 arg="$func_quote_for_eval_result"
cannam@95 5839 ;;
cannam@95 5840
cannam@95 5841 # Flags to be passed through unchanged, with rationale:
cannam@95 5842 # -64, -mips[0-9] enable 64-bit mode for the SGI compiler
cannam@95 5843 # -r[0-9][0-9]* specify processor for the SGI compiler
cannam@95 5844 # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler
cannam@95 5845 # +DA*, +DD* enable 64-bit mode for the HP compiler
cannam@95 5846 # -q* compiler args for the IBM compiler
cannam@95 5847 # -m*, -t[45]*, -txscale* architecture-specific flags for GCC
cannam@95 5848 # -F/path path to uninstalled frameworks, gcc on darwin
cannam@95 5849 # -p, -pg, --coverage, -fprofile-* profiling flags for GCC
cannam@95 5850 # @file GCC response files
cannam@95 5851 # -tp=* Portland pgcc target processor selection
cannam@95 5852 # --sysroot=* for sysroot support
cannam@95 5853 # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization
cannam@95 5854 -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
cannam@95 5855 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
cannam@95 5856 -O*|-flto*|-fwhopr*|-fuse-linker-plugin)
cannam@95 5857 func_quote_for_eval "$arg"
cannam@95 5858 arg="$func_quote_for_eval_result"
cannam@95 5859 func_append compile_command " $arg"
cannam@95 5860 func_append finalize_command " $arg"
cannam@95 5861 func_append compiler_flags " $arg"
cannam@95 5862 continue
cannam@95 5863 ;;
cannam@95 5864
cannam@95 5865 # Some other compiler flag.
cannam@95 5866 -* | +*)
cannam@95 5867 func_quote_for_eval "$arg"
cannam@95 5868 arg="$func_quote_for_eval_result"
cannam@95 5869 ;;
cannam@95 5870
cannam@95 5871 *.$objext)
cannam@95 5872 # A standard object.
cannam@95 5873 func_append objs " $arg"
cannam@95 5874 ;;
cannam@95 5875
cannam@95 5876 *.lo)
cannam@95 5877 # A libtool-controlled object.
cannam@95 5878
cannam@95 5879 # Check to see that this really is a libtool object.
cannam@95 5880 if func_lalib_unsafe_p "$arg"; then
cannam@95 5881 pic_object=
cannam@95 5882 non_pic_object=
cannam@95 5883
cannam@95 5884 # Read the .lo file
cannam@95 5885 func_source "$arg"
cannam@95 5886
cannam@95 5887 if test -z "$pic_object" ||
cannam@95 5888 test -z "$non_pic_object" ||
cannam@95 5889 test "$pic_object" = none &&
cannam@95 5890 test "$non_pic_object" = none; then
cannam@95 5891 func_fatal_error "cannot find name of object for \`$arg'"
cannam@95 5892 fi
cannam@95 5893
cannam@95 5894 # Extract subdirectory from the argument.
cannam@95 5895 func_dirname "$arg" "/" ""
cannam@95 5896 xdir="$func_dirname_result"
cannam@95 5897
cannam@95 5898 if test "$pic_object" != none; then
cannam@95 5899 # Prepend the subdirectory the object is found in.
cannam@95 5900 pic_object="$xdir$pic_object"
cannam@95 5901
cannam@95 5902 if test "$prev" = dlfiles; then
cannam@95 5903 if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
cannam@95 5904 func_append dlfiles " $pic_object"
cannam@95 5905 prev=
cannam@95 5906 continue
cannam@95 5907 else
cannam@95 5908 # If libtool objects are unsupported, then we need to preload.
cannam@95 5909 prev=dlprefiles
cannam@95 5910 fi
cannam@95 5911 fi
cannam@95 5912
cannam@95 5913 # CHECK ME: I think I busted this. -Ossama
cannam@95 5914 if test "$prev" = dlprefiles; then
cannam@95 5915 # Preload the old-style object.
cannam@95 5916 func_append dlprefiles " $pic_object"
cannam@95 5917 prev=
cannam@95 5918 fi
cannam@95 5919
cannam@95 5920 # A PIC object.
cannam@95 5921 func_append libobjs " $pic_object"
cannam@95 5922 arg="$pic_object"
cannam@95 5923 fi
cannam@95 5924
cannam@95 5925 # Non-PIC object.
cannam@95 5926 if test "$non_pic_object" != none; then
cannam@95 5927 # Prepend the subdirectory the object is found in.
cannam@95 5928 non_pic_object="$xdir$non_pic_object"
cannam@95 5929
cannam@95 5930 # A standard non-PIC object
cannam@95 5931 func_append non_pic_objects " $non_pic_object"
cannam@95 5932 if test -z "$pic_object" || test "$pic_object" = none ; then
cannam@95 5933 arg="$non_pic_object"
cannam@95 5934 fi
cannam@95 5935 else
cannam@95 5936 # If the PIC object exists, use it instead.
cannam@95 5937 # $xdir was prepended to $pic_object above.
cannam@95 5938 non_pic_object="$pic_object"
cannam@95 5939 func_append non_pic_objects " $non_pic_object"
cannam@95 5940 fi
cannam@95 5941 else
cannam@95 5942 # Only an error if not doing a dry-run.
cannam@95 5943 if $opt_dry_run; then
cannam@95 5944 # Extract subdirectory from the argument.
cannam@95 5945 func_dirname "$arg" "/" ""
cannam@95 5946 xdir="$func_dirname_result"
cannam@95 5947
cannam@95 5948 func_lo2o "$arg"
cannam@95 5949 pic_object=$xdir$objdir/$func_lo2o_result
cannam@95 5950 non_pic_object=$xdir$func_lo2o_result
cannam@95 5951 func_append libobjs " $pic_object"
cannam@95 5952 func_append non_pic_objects " $non_pic_object"
cannam@95 5953 else
cannam@95 5954 func_fatal_error "\`$arg' is not a valid libtool object"
cannam@95 5955 fi
cannam@95 5956 fi
cannam@95 5957 ;;
cannam@95 5958
cannam@95 5959 *.$libext)
cannam@95 5960 # An archive.
cannam@95 5961 func_append deplibs " $arg"
cannam@95 5962 func_append old_deplibs " $arg"
cannam@95 5963 continue
cannam@95 5964 ;;
cannam@95 5965
cannam@95 5966 *.la)
cannam@95 5967 # A libtool-controlled library.
cannam@95 5968
cannam@95 5969 func_resolve_sysroot "$arg"
cannam@95 5970 if test "$prev" = dlfiles; then
cannam@95 5971 # This library was specified with -dlopen.
cannam@95 5972 func_append dlfiles " $func_resolve_sysroot_result"
cannam@95 5973 prev=
cannam@95 5974 elif test "$prev" = dlprefiles; then
cannam@95 5975 # The library was specified with -dlpreopen.
cannam@95 5976 func_append dlprefiles " $func_resolve_sysroot_result"
cannam@95 5977 prev=
cannam@95 5978 else
cannam@95 5979 func_append deplibs " $func_resolve_sysroot_result"
cannam@95 5980 fi
cannam@95 5981 continue
cannam@95 5982 ;;
cannam@95 5983
cannam@95 5984 # Some other compiler argument.
cannam@95 5985 *)
cannam@95 5986 # Unknown arguments in both finalize_command and compile_command need
cannam@95 5987 # to be aesthetically quoted because they are evaled later.
cannam@95 5988 func_quote_for_eval "$arg"
cannam@95 5989 arg="$func_quote_for_eval_result"
cannam@95 5990 ;;
cannam@95 5991 esac # arg
cannam@95 5992
cannam@95 5993 # Now actually substitute the argument into the commands.
cannam@95 5994 if test -n "$arg"; then
cannam@95 5995 func_append compile_command " $arg"
cannam@95 5996 func_append finalize_command " $arg"
cannam@95 5997 fi
cannam@95 5998 done # argument parsing loop
cannam@95 5999
cannam@95 6000 test -n "$prev" && \
cannam@95 6001 func_fatal_help "the \`$prevarg' option requires an argument"
cannam@95 6002
cannam@95 6003 if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
cannam@95 6004 eval arg=\"$export_dynamic_flag_spec\"
cannam@95 6005 func_append compile_command " $arg"
cannam@95 6006 func_append finalize_command " $arg"
cannam@95 6007 fi
cannam@95 6008
cannam@95 6009 oldlibs=
cannam@95 6010 # calculate the name of the file, without its directory
cannam@95 6011 func_basename "$output"
cannam@95 6012 outputname="$func_basename_result"
cannam@95 6013 libobjs_save="$libobjs"
cannam@95 6014
cannam@95 6015 if test -n "$shlibpath_var"; then
cannam@95 6016 # get the directories listed in $shlibpath_var
cannam@95 6017 eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\`
cannam@95 6018 else
cannam@95 6019 shlib_search_path=
cannam@95 6020 fi
cannam@95 6021 eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
cannam@95 6022 eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"
cannam@95 6023
cannam@95 6024 func_dirname "$output" "/" ""
cannam@95 6025 output_objdir="$func_dirname_result$objdir"
cannam@95 6026 func_to_tool_file "$output_objdir/"
cannam@95 6027 tool_output_objdir=$func_to_tool_file_result
cannam@95 6028 # Create the object directory.
cannam@95 6029 func_mkdir_p "$output_objdir"
cannam@95 6030
cannam@95 6031 # Determine the type of output
cannam@95 6032 case $output in
cannam@95 6033 "")
cannam@95 6034 func_fatal_help "you must specify an output file"
cannam@95 6035 ;;
cannam@95 6036 *.$libext) linkmode=oldlib ;;
cannam@95 6037 *.lo | *.$objext) linkmode=obj ;;
cannam@95 6038 *.la) linkmode=lib ;;
cannam@95 6039 *) linkmode=prog ;; # Anything else should be a program.
cannam@95 6040 esac
cannam@95 6041
cannam@95 6042 specialdeplibs=
cannam@95 6043
cannam@95 6044 libs=
cannam@95 6045 # Find all interdependent deplibs by searching for libraries
cannam@95 6046 # that are linked more than once (e.g. -la -lb -la)
cannam@95 6047 for deplib in $deplibs; do
cannam@95 6048 if $opt_preserve_dup_deps ; then
cannam@95 6049 case "$libs " in
cannam@95 6050 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
cannam@95 6051 esac
cannam@95 6052 fi
cannam@95 6053 func_append libs " $deplib"
cannam@95 6054 done
cannam@95 6055
cannam@95 6056 if test "$linkmode" = lib; then
cannam@95 6057 libs="$predeps $libs $compiler_lib_search_path $postdeps"
cannam@95 6058
cannam@95 6059 # Compute libraries that are listed more than once in $predeps
cannam@95 6060 # $postdeps and mark them as special (i.e., whose duplicates are
cannam@95 6061 # not to be eliminated).
cannam@95 6062 pre_post_deps=
cannam@95 6063 if $opt_duplicate_compiler_generated_deps; then
cannam@95 6064 for pre_post_dep in $predeps $postdeps; do
cannam@95 6065 case "$pre_post_deps " in
cannam@95 6066 *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;;
cannam@95 6067 esac
cannam@95 6068 func_append pre_post_deps " $pre_post_dep"
cannam@95 6069 done
cannam@95 6070 fi
cannam@95 6071 pre_post_deps=
cannam@95 6072 fi
cannam@95 6073
cannam@95 6074 deplibs=
cannam@95 6075 newdependency_libs=
cannam@95 6076 newlib_search_path=
cannam@95 6077 need_relink=no # whether we're linking any uninstalled libtool libraries
cannam@95 6078 notinst_deplibs= # not-installed libtool libraries
cannam@95 6079 notinst_path= # paths that contain not-installed libtool libraries
cannam@95 6080
cannam@95 6081 case $linkmode in
cannam@95 6082 lib)
cannam@95 6083 passes="conv dlpreopen link"
cannam@95 6084 for file in $dlfiles $dlprefiles; do
cannam@95 6085 case $file in
cannam@95 6086 *.la) ;;
cannam@95 6087 *)
cannam@95 6088 func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file"
cannam@95 6089 ;;
cannam@95 6090 esac
cannam@95 6091 done
cannam@95 6092 ;;
cannam@95 6093 prog)
cannam@95 6094 compile_deplibs=
cannam@95 6095 finalize_deplibs=
cannam@95 6096 alldeplibs=no
cannam@95 6097 newdlfiles=
cannam@95 6098 newdlprefiles=
cannam@95 6099 passes="conv scan dlopen dlpreopen link"
cannam@95 6100 ;;
cannam@95 6101 *) passes="conv"
cannam@95 6102 ;;
cannam@95 6103 esac
cannam@95 6104
cannam@95 6105 for pass in $passes; do
cannam@95 6106 # The preopen pass in lib mode reverses $deplibs; put it back here
cannam@95 6107 # so that -L comes before libs that need it for instance...
cannam@95 6108 if test "$linkmode,$pass" = "lib,link"; then
cannam@95 6109 ## FIXME: Find the place where the list is rebuilt in the wrong
cannam@95 6110 ## order, and fix it there properly
cannam@95 6111 tmp_deplibs=
cannam@95 6112 for deplib in $deplibs; do
cannam@95 6113 tmp_deplibs="$deplib $tmp_deplibs"
cannam@95 6114 done
cannam@95 6115 deplibs="$tmp_deplibs"
cannam@95 6116 fi
cannam@95 6117
cannam@95 6118 if test "$linkmode,$pass" = "lib,link" ||
cannam@95 6119 test "$linkmode,$pass" = "prog,scan"; then
cannam@95 6120 libs="$deplibs"
cannam@95 6121 deplibs=
cannam@95 6122 fi
cannam@95 6123 if test "$linkmode" = prog; then
cannam@95 6124 case $pass in
cannam@95 6125 dlopen) libs="$dlfiles" ;;
cannam@95 6126 dlpreopen) libs="$dlprefiles" ;;
cannam@95 6127 link)
cannam@95 6128 libs="$deplibs %DEPLIBS%"
cannam@95 6129 test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"
cannam@95 6130 ;;
cannam@95 6131 esac
cannam@95 6132 fi
cannam@95 6133 if test "$linkmode,$pass" = "lib,dlpreopen"; then
cannam@95 6134 # Collect and forward deplibs of preopened libtool libs
cannam@95 6135 for lib in $dlprefiles; do
cannam@95 6136 # Ignore non-libtool-libs
cannam@95 6137 dependency_libs=
cannam@95 6138 func_resolve_sysroot "$lib"
cannam@95 6139 case $lib in
cannam@95 6140 *.la) func_source "$func_resolve_sysroot_result" ;;
cannam@95 6141 esac
cannam@95 6142
cannam@95 6143 # Collect preopened libtool deplibs, except any this library
cannam@95 6144 # has declared as weak libs
cannam@95 6145 for deplib in $dependency_libs; do
cannam@95 6146 func_basename "$deplib"
cannam@95 6147 deplib_base=$func_basename_result
cannam@95 6148 case " $weak_libs " in
cannam@95 6149 *" $deplib_base "*) ;;
cannam@95 6150 *) func_append deplibs " $deplib" ;;
cannam@95 6151 esac
cannam@95 6152 done
cannam@95 6153 done
cannam@95 6154 libs="$dlprefiles"
cannam@95 6155 fi
cannam@95 6156 if test "$pass" = dlopen; then
cannam@95 6157 # Collect dlpreopened libraries
cannam@95 6158 save_deplibs="$deplibs"
cannam@95 6159 deplibs=
cannam@95 6160 fi
cannam@95 6161
cannam@95 6162 for deplib in $libs; do
cannam@95 6163 lib=
cannam@95 6164 found=no
cannam@95 6165 case $deplib in
cannam@95 6166 -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \
cannam@95 6167 |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)
cannam@95 6168 if test "$linkmode,$pass" = "prog,link"; then
cannam@95 6169 compile_deplibs="$deplib $compile_deplibs"
cannam@95 6170 finalize_deplibs="$deplib $finalize_deplibs"
cannam@95 6171 else
cannam@95 6172 func_append compiler_flags " $deplib"
cannam@95 6173 if test "$linkmode" = lib ; then
cannam@95 6174 case "$new_inherited_linker_flags " in
cannam@95 6175 *" $deplib "*) ;;
cannam@95 6176 * ) func_append new_inherited_linker_flags " $deplib" ;;
cannam@95 6177 esac
cannam@95 6178 fi
cannam@95 6179 fi
cannam@95 6180 continue
cannam@95 6181 ;;
cannam@95 6182 -l*)
cannam@95 6183 if test "$linkmode" != lib && test "$linkmode" != prog; then
cannam@95 6184 func_warning "\`-l' is ignored for archives/objects"
cannam@95 6185 continue
cannam@95 6186 fi
cannam@95 6187 func_stripname '-l' '' "$deplib"
cannam@95 6188 name=$func_stripname_result
cannam@95 6189 if test "$linkmode" = lib; then
cannam@95 6190 searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path"
cannam@95 6191 else
cannam@95 6192 searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path"
cannam@95 6193 fi
cannam@95 6194 for searchdir in $searchdirs; do
cannam@95 6195 for search_ext in .la $std_shrext .so .a; do
cannam@95 6196 # Search the libtool library
cannam@95 6197 lib="$searchdir/lib${name}${search_ext}"
cannam@95 6198 if test -f "$lib"; then
cannam@95 6199 if test "$search_ext" = ".la"; then
cannam@95 6200 found=yes
cannam@95 6201 else
cannam@95 6202 found=no
cannam@95 6203 fi
cannam@95 6204 break 2
cannam@95 6205 fi
cannam@95 6206 done
cannam@95 6207 done
cannam@95 6208 if test "$found" != yes; then
cannam@95 6209 # deplib doesn't seem to be a libtool library
cannam@95 6210 if test "$linkmode,$pass" = "prog,link"; then
cannam@95 6211 compile_deplibs="$deplib $compile_deplibs"
cannam@95 6212 finalize_deplibs="$deplib $finalize_deplibs"
cannam@95 6213 else
cannam@95 6214 deplibs="$deplib $deplibs"
cannam@95 6215 test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
cannam@95 6216 fi
cannam@95 6217 continue
cannam@95 6218 else # deplib is a libtool library
cannam@95 6219 # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,
cannam@95 6220 # We need to do some special things here, and not later.
cannam@95 6221 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@95 6222 case " $predeps $postdeps " in
cannam@95 6223 *" $deplib "*)
cannam@95 6224 if func_lalib_p "$lib"; then
cannam@95 6225 library_names=
cannam@95 6226 old_library=
cannam@95 6227 func_source "$lib"
cannam@95 6228 for l in $old_library $library_names; do
cannam@95 6229 ll="$l"
cannam@95 6230 done
cannam@95 6231 if test "X$ll" = "X$old_library" ; then # only static version available
cannam@95 6232 found=no
cannam@95 6233 func_dirname "$lib" "" "."
cannam@95 6234 ladir="$func_dirname_result"
cannam@95 6235 lib=$ladir/$old_library
cannam@95 6236 if test "$linkmode,$pass" = "prog,link"; then
cannam@95 6237 compile_deplibs="$deplib $compile_deplibs"
cannam@95 6238 finalize_deplibs="$deplib $finalize_deplibs"
cannam@95 6239 else
cannam@95 6240 deplibs="$deplib $deplibs"
cannam@95 6241 test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
cannam@95 6242 fi
cannam@95 6243 continue
cannam@95 6244 fi
cannam@95 6245 fi
cannam@95 6246 ;;
cannam@95 6247 *) ;;
cannam@95 6248 esac
cannam@95 6249 fi
cannam@95 6250 fi
cannam@95 6251 ;; # -l
cannam@95 6252 *.ltframework)
cannam@95 6253 if test "$linkmode,$pass" = "prog,link"; then
cannam@95 6254 compile_deplibs="$deplib $compile_deplibs"
cannam@95 6255 finalize_deplibs="$deplib $finalize_deplibs"
cannam@95 6256 else
cannam@95 6257 deplibs="$deplib $deplibs"
cannam@95 6258 if test "$linkmode" = lib ; then
cannam@95 6259 case "$new_inherited_linker_flags " in
cannam@95 6260 *" $deplib "*) ;;
cannam@95 6261 * ) func_append new_inherited_linker_flags " $deplib" ;;
cannam@95 6262 esac
cannam@95 6263 fi
cannam@95 6264 fi
cannam@95 6265 continue
cannam@95 6266 ;;
cannam@95 6267 -L*)
cannam@95 6268 case $linkmode in
cannam@95 6269 lib)
cannam@95 6270 deplibs="$deplib $deplibs"
cannam@95 6271 test "$pass" = conv && continue
cannam@95 6272 newdependency_libs="$deplib $newdependency_libs"
cannam@95 6273 func_stripname '-L' '' "$deplib"
cannam@95 6274 func_resolve_sysroot "$func_stripname_result"
cannam@95 6275 func_append newlib_search_path " $func_resolve_sysroot_result"
cannam@95 6276 ;;
cannam@95 6277 prog)
cannam@95 6278 if test "$pass" = conv; then
cannam@95 6279 deplibs="$deplib $deplibs"
cannam@95 6280 continue
cannam@95 6281 fi
cannam@95 6282 if test "$pass" = scan; then
cannam@95 6283 deplibs="$deplib $deplibs"
cannam@95 6284 else
cannam@95 6285 compile_deplibs="$deplib $compile_deplibs"
cannam@95 6286 finalize_deplibs="$deplib $finalize_deplibs"
cannam@95 6287 fi
cannam@95 6288 func_stripname '-L' '' "$deplib"
cannam@95 6289 func_resolve_sysroot "$func_stripname_result"
cannam@95 6290 func_append newlib_search_path " $func_resolve_sysroot_result"
cannam@95 6291 ;;
cannam@95 6292 *)
cannam@95 6293 func_warning "\`-L' is ignored for archives/objects"
cannam@95 6294 ;;
cannam@95 6295 esac # linkmode
cannam@95 6296 continue
cannam@95 6297 ;; # -L
cannam@95 6298 -R*)
cannam@95 6299 if test "$pass" = link; then
cannam@95 6300 func_stripname '-R' '' "$deplib"
cannam@95 6301 func_resolve_sysroot "$func_stripname_result"
cannam@95 6302 dir=$func_resolve_sysroot_result
cannam@95 6303 # Make sure the xrpath contains only unique directories.
cannam@95 6304 case "$xrpath " in
cannam@95 6305 *" $dir "*) ;;
cannam@95 6306 *) func_append xrpath " $dir" ;;
cannam@95 6307 esac
cannam@95 6308 fi
cannam@95 6309 deplibs="$deplib $deplibs"
cannam@95 6310 continue
cannam@95 6311 ;;
cannam@95 6312 *.la)
cannam@95 6313 func_resolve_sysroot "$deplib"
cannam@95 6314 lib=$func_resolve_sysroot_result
cannam@95 6315 ;;
cannam@95 6316 *.$libext)
cannam@95 6317 if test "$pass" = conv; then
cannam@95 6318 deplibs="$deplib $deplibs"
cannam@95 6319 continue
cannam@95 6320 fi
cannam@95 6321 case $linkmode in
cannam@95 6322 lib)
cannam@95 6323 # Linking convenience modules into shared libraries is allowed,
cannam@95 6324 # but linking other static libraries is non-portable.
cannam@95 6325 case " $dlpreconveniencelibs " in
cannam@95 6326 *" $deplib "*) ;;
cannam@95 6327 *)
cannam@95 6328 valid_a_lib=no
cannam@95 6329 case $deplibs_check_method in
cannam@95 6330 match_pattern*)
cannam@95 6331 set dummy $deplibs_check_method; shift
cannam@95 6332 match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
cannam@95 6333 if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \
cannam@95 6334 | $EGREP "$match_pattern_regex" > /dev/null; then
cannam@95 6335 valid_a_lib=yes
cannam@95 6336 fi
cannam@95 6337 ;;
cannam@95 6338 pass_all)
cannam@95 6339 valid_a_lib=yes
cannam@95 6340 ;;
cannam@95 6341 esac
cannam@95 6342 if test "$valid_a_lib" != yes; then
cannam@95 6343 echo
cannam@95 6344 $ECHO "*** Warning: Trying to link with static lib archive $deplib."
cannam@95 6345 echo "*** I have the capability to make that library automatically link in when"
cannam@95 6346 echo "*** you link to this library. But I can only do this if you have a"
cannam@95 6347 echo "*** shared version of the library, which you do not appear to have"
cannam@95 6348 echo "*** because the file extensions .$libext of this argument makes me believe"
cannam@95 6349 echo "*** that it is just a static archive that I should not use here."
cannam@95 6350 else
cannam@95 6351 echo
cannam@95 6352 $ECHO "*** Warning: Linking the shared library $output against the"
cannam@95 6353 $ECHO "*** static library $deplib is not portable!"
cannam@95 6354 deplibs="$deplib $deplibs"
cannam@95 6355 fi
cannam@95 6356 ;;
cannam@95 6357 esac
cannam@95 6358 continue
cannam@95 6359 ;;
cannam@95 6360 prog)
cannam@95 6361 if test "$pass" != link; then
cannam@95 6362 deplibs="$deplib $deplibs"
cannam@95 6363 else
cannam@95 6364 compile_deplibs="$deplib $compile_deplibs"
cannam@95 6365 finalize_deplibs="$deplib $finalize_deplibs"
cannam@95 6366 fi
cannam@95 6367 continue
cannam@95 6368 ;;
cannam@95 6369 esac # linkmode
cannam@95 6370 ;; # *.$libext
cannam@95 6371 *.lo | *.$objext)
cannam@95 6372 if test "$pass" = conv; then
cannam@95 6373 deplibs="$deplib $deplibs"
cannam@95 6374 elif test "$linkmode" = prog; then
cannam@95 6375 if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
cannam@95 6376 # If there is no dlopen support or we're linking statically,
cannam@95 6377 # we need to preload.
cannam@95 6378 func_append newdlprefiles " $deplib"
cannam@95 6379 compile_deplibs="$deplib $compile_deplibs"
cannam@95 6380 finalize_deplibs="$deplib $finalize_deplibs"
cannam@95 6381 else
cannam@95 6382 func_append newdlfiles " $deplib"
cannam@95 6383 fi
cannam@95 6384 fi
cannam@95 6385 continue
cannam@95 6386 ;;
cannam@95 6387 %DEPLIBS%)
cannam@95 6388 alldeplibs=yes
cannam@95 6389 continue
cannam@95 6390 ;;
cannam@95 6391 esac # case $deplib
cannam@95 6392
cannam@95 6393 if test "$found" = yes || test -f "$lib"; then :
cannam@95 6394 else
cannam@95 6395 func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'"
cannam@95 6396 fi
cannam@95 6397
cannam@95 6398 # Check to see that this really is a libtool archive.
cannam@95 6399 func_lalib_unsafe_p "$lib" \
cannam@95 6400 || func_fatal_error "\`$lib' is not a valid libtool archive"
cannam@95 6401
cannam@95 6402 func_dirname "$lib" "" "."
cannam@95 6403 ladir="$func_dirname_result"
cannam@95 6404
cannam@95 6405 dlname=
cannam@95 6406 dlopen=
cannam@95 6407 dlpreopen=
cannam@95 6408 libdir=
cannam@95 6409 library_names=
cannam@95 6410 old_library=
cannam@95 6411 inherited_linker_flags=
cannam@95 6412 # If the library was installed with an old release of libtool,
cannam@95 6413 # it will not redefine variables installed, or shouldnotlink
cannam@95 6414 installed=yes
cannam@95 6415 shouldnotlink=no
cannam@95 6416 avoidtemprpath=
cannam@95 6417
cannam@95 6418
cannam@95 6419 # Read the .la file
cannam@95 6420 func_source "$lib"
cannam@95 6421
cannam@95 6422 # Convert "-framework foo" to "foo.ltframework"
cannam@95 6423 if test -n "$inherited_linker_flags"; then
cannam@95 6424 tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'`
cannam@95 6425 for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do
cannam@95 6426 case " $new_inherited_linker_flags " in
cannam@95 6427 *" $tmp_inherited_linker_flag "*) ;;
cannam@95 6428 *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";;
cannam@95 6429 esac
cannam@95 6430 done
cannam@95 6431 fi
cannam@95 6432 dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@95 6433 if test "$linkmode,$pass" = "lib,link" ||
cannam@95 6434 test "$linkmode,$pass" = "prog,scan" ||
cannam@95 6435 { test "$linkmode" != prog && test "$linkmode" != lib; }; then
cannam@95 6436 test -n "$dlopen" && func_append dlfiles " $dlopen"
cannam@95 6437 test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen"
cannam@95 6438 fi
cannam@95 6439
cannam@95 6440 if test "$pass" = conv; then
cannam@95 6441 # Only check for convenience libraries
cannam@95 6442 deplibs="$lib $deplibs"
cannam@95 6443 if test -z "$libdir"; then
cannam@95 6444 if test -z "$old_library"; then
cannam@95 6445 func_fatal_error "cannot find name of link library for \`$lib'"
cannam@95 6446 fi
cannam@95 6447 # It is a libtool convenience library, so add in its objects.
cannam@95 6448 func_append convenience " $ladir/$objdir/$old_library"
cannam@95 6449 func_append old_convenience " $ladir/$objdir/$old_library"
cannam@95 6450 tmp_libs=
cannam@95 6451 for deplib in $dependency_libs; do
cannam@95 6452 deplibs="$deplib $deplibs"
cannam@95 6453 if $opt_preserve_dup_deps ; then
cannam@95 6454 case "$tmp_libs " in
cannam@95 6455 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
cannam@95 6456 esac
cannam@95 6457 fi
cannam@95 6458 func_append tmp_libs " $deplib"
cannam@95 6459 done
cannam@95 6460 elif test "$linkmode" != prog && test "$linkmode" != lib; then
cannam@95 6461 func_fatal_error "\`$lib' is not a convenience library"
cannam@95 6462 fi
cannam@95 6463 continue
cannam@95 6464 fi # $pass = conv
cannam@95 6465
cannam@95 6466
cannam@95 6467 # Get the name of the library we link against.
cannam@95 6468 linklib=
cannam@95 6469 if test -n "$old_library" &&
cannam@95 6470 { test "$prefer_static_libs" = yes ||
cannam@95 6471 test "$prefer_static_libs,$installed" = "built,no"; }; then
cannam@95 6472 linklib=$old_library
cannam@95 6473 else
cannam@95 6474 for l in $old_library $library_names; do
cannam@95 6475 linklib="$l"
cannam@95 6476 done
cannam@95 6477 fi
cannam@95 6478 if test -z "$linklib"; then
cannam@95 6479 func_fatal_error "cannot find name of link library for \`$lib'"
cannam@95 6480 fi
cannam@95 6481
cannam@95 6482 # This library was specified with -dlopen.
cannam@95 6483 if test "$pass" = dlopen; then
cannam@95 6484 if test -z "$libdir"; then
cannam@95 6485 func_fatal_error "cannot -dlopen a convenience library: \`$lib'"
cannam@95 6486 fi
cannam@95 6487 if test -z "$dlname" ||
cannam@95 6488 test "$dlopen_support" != yes ||
cannam@95 6489 test "$build_libtool_libs" = no; then
cannam@95 6490 # If there is no dlname, no dlopen support or we're linking
cannam@95 6491 # statically, we need to preload. We also need to preload any
cannam@95 6492 # dependent libraries so libltdl's deplib preloader doesn't
cannam@95 6493 # bomb out in the load deplibs phase.
cannam@95 6494 func_append dlprefiles " $lib $dependency_libs"
cannam@95 6495 else
cannam@95 6496 func_append newdlfiles " $lib"
cannam@95 6497 fi
cannam@95 6498 continue
cannam@95 6499 fi # $pass = dlopen
cannam@95 6500
cannam@95 6501 # We need an absolute path.
cannam@95 6502 case $ladir in
cannam@95 6503 [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;
cannam@95 6504 *)
cannam@95 6505 abs_ladir=`cd "$ladir" && pwd`
cannam@95 6506 if test -z "$abs_ladir"; then
cannam@95 6507 func_warning "cannot determine absolute directory name of \`$ladir'"
cannam@95 6508 func_warning "passing it literally to the linker, although it might fail"
cannam@95 6509 abs_ladir="$ladir"
cannam@95 6510 fi
cannam@95 6511 ;;
cannam@95 6512 esac
cannam@95 6513 func_basename "$lib"
cannam@95 6514 laname="$func_basename_result"
cannam@95 6515
cannam@95 6516 # Find the relevant object directory and library name.
cannam@95 6517 if test "X$installed" = Xyes; then
cannam@95 6518 if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
cannam@95 6519 func_warning "library \`$lib' was moved."
cannam@95 6520 dir="$ladir"
cannam@95 6521 absdir="$abs_ladir"
cannam@95 6522 libdir="$abs_ladir"
cannam@95 6523 else
cannam@95 6524 dir="$lt_sysroot$libdir"
cannam@95 6525 absdir="$lt_sysroot$libdir"
cannam@95 6526 fi
cannam@95 6527 test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes
cannam@95 6528 else
cannam@95 6529 if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then
cannam@95 6530 dir="$ladir"
cannam@95 6531 absdir="$abs_ladir"
cannam@95 6532 # Remove this search path later
cannam@95 6533 func_append notinst_path " $abs_ladir"
cannam@95 6534 else
cannam@95 6535 dir="$ladir/$objdir"
cannam@95 6536 absdir="$abs_ladir/$objdir"
cannam@95 6537 # Remove this search path later
cannam@95 6538 func_append notinst_path " $abs_ladir"
cannam@95 6539 fi
cannam@95 6540 fi # $installed = yes
cannam@95 6541 func_stripname 'lib' '.la' "$laname"
cannam@95 6542 name=$func_stripname_result
cannam@95 6543
cannam@95 6544 # This library was specified with -dlpreopen.
cannam@95 6545 if test "$pass" = dlpreopen; then
cannam@95 6546 if test -z "$libdir" && test "$linkmode" = prog; then
cannam@95 6547 func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'"
cannam@95 6548 fi
cannam@95 6549 case "$host" in
cannam@95 6550 # special handling for platforms with PE-DLLs.
cannam@95 6551 *cygwin* | *mingw* | *cegcc* )
cannam@95 6552 # Linker will automatically link against shared library if both
cannam@95 6553 # static and shared are present. Therefore, ensure we extract
cannam@95 6554 # symbols from the import library if a shared library is present
cannam@95 6555 # (otherwise, the dlopen module name will be incorrect). We do
cannam@95 6556 # this by putting the import library name into $newdlprefiles.
cannam@95 6557 # We recover the dlopen module name by 'saving' the la file
cannam@95 6558 # name in a special purpose variable, and (later) extracting the
cannam@95 6559 # dlname from the la file.
cannam@95 6560 if test -n "$dlname"; then
cannam@95 6561 func_tr_sh "$dir/$linklib"
cannam@95 6562 eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname"
cannam@95 6563 func_append newdlprefiles " $dir/$linklib"
cannam@95 6564 else
cannam@95 6565 func_append newdlprefiles " $dir/$old_library"
cannam@95 6566 # Keep a list of preopened convenience libraries to check
cannam@95 6567 # that they are being used correctly in the link pass.
cannam@95 6568 test -z "$libdir" && \
cannam@95 6569 func_append dlpreconveniencelibs " $dir/$old_library"
cannam@95 6570 fi
cannam@95 6571 ;;
cannam@95 6572 * )
cannam@95 6573 # Prefer using a static library (so that no silly _DYNAMIC symbols
cannam@95 6574 # are required to link).
cannam@95 6575 if test -n "$old_library"; then
cannam@95 6576 func_append newdlprefiles " $dir/$old_library"
cannam@95 6577 # Keep a list of preopened convenience libraries to check
cannam@95 6578 # that they are being used correctly in the link pass.
cannam@95 6579 test -z "$libdir" && \
cannam@95 6580 func_append dlpreconveniencelibs " $dir/$old_library"
cannam@95 6581 # Otherwise, use the dlname, so that lt_dlopen finds it.
cannam@95 6582 elif test -n "$dlname"; then
cannam@95 6583 func_append newdlprefiles " $dir/$dlname"
cannam@95 6584 else
cannam@95 6585 func_append newdlprefiles " $dir/$linklib"
cannam@95 6586 fi
cannam@95 6587 ;;
cannam@95 6588 esac
cannam@95 6589 fi # $pass = dlpreopen
cannam@95 6590
cannam@95 6591 if test -z "$libdir"; then
cannam@95 6592 # Link the convenience library
cannam@95 6593 if test "$linkmode" = lib; then
cannam@95 6594 deplibs="$dir/$old_library $deplibs"
cannam@95 6595 elif test "$linkmode,$pass" = "prog,link"; then
cannam@95 6596 compile_deplibs="$dir/$old_library $compile_deplibs"
cannam@95 6597 finalize_deplibs="$dir/$old_library $finalize_deplibs"
cannam@95 6598 else
cannam@95 6599 deplibs="$lib $deplibs" # used for prog,scan pass
cannam@95 6600 fi
cannam@95 6601 continue
cannam@95 6602 fi
cannam@95 6603
cannam@95 6604
cannam@95 6605 if test "$linkmode" = prog && test "$pass" != link; then
cannam@95 6606 func_append newlib_search_path " $ladir"
cannam@95 6607 deplibs="$lib $deplibs"
cannam@95 6608
cannam@95 6609 linkalldeplibs=no
cannam@95 6610 if test "$link_all_deplibs" != no || test -z "$library_names" ||
cannam@95 6611 test "$build_libtool_libs" = no; then
cannam@95 6612 linkalldeplibs=yes
cannam@95 6613 fi
cannam@95 6614
cannam@95 6615 tmp_libs=
cannam@95 6616 for deplib in $dependency_libs; do
cannam@95 6617 case $deplib in
cannam@95 6618 -L*) func_stripname '-L' '' "$deplib"
cannam@95 6619 func_resolve_sysroot "$func_stripname_result"
cannam@95 6620 func_append newlib_search_path " $func_resolve_sysroot_result"
cannam@95 6621 ;;
cannam@95 6622 esac
cannam@95 6623 # Need to link against all dependency_libs?
cannam@95 6624 if test "$linkalldeplibs" = yes; then
cannam@95 6625 deplibs="$deplib $deplibs"
cannam@95 6626 else
cannam@95 6627 # Need to hardcode shared library paths
cannam@95 6628 # or/and link against static libraries
cannam@95 6629 newdependency_libs="$deplib $newdependency_libs"
cannam@95 6630 fi
cannam@95 6631 if $opt_preserve_dup_deps ; then
cannam@95 6632 case "$tmp_libs " in
cannam@95 6633 *" $deplib "*) func_append specialdeplibs " $deplib" ;;
cannam@95 6634 esac
cannam@95 6635 fi
cannam@95 6636 func_append tmp_libs " $deplib"
cannam@95 6637 done # for deplib
cannam@95 6638 continue
cannam@95 6639 fi # $linkmode = prog...
cannam@95 6640
cannam@95 6641 if test "$linkmode,$pass" = "prog,link"; then
cannam@95 6642 if test -n "$library_names" &&
cannam@95 6643 { { test "$prefer_static_libs" = no ||
cannam@95 6644 test "$prefer_static_libs,$installed" = "built,yes"; } ||
cannam@95 6645 test -z "$old_library"; }; then
cannam@95 6646 # We need to hardcode the library path
cannam@95 6647 if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then
cannam@95 6648 # Make sure the rpath contains only unique directories.
cannam@95 6649 case "$temp_rpath:" in
cannam@95 6650 *"$absdir:"*) ;;
cannam@95 6651 *) func_append temp_rpath "$absdir:" ;;
cannam@95 6652 esac
cannam@95 6653 fi
cannam@95 6654
cannam@95 6655 # Hardcode the library path.
cannam@95 6656 # Skip directories that are in the system default run-time
cannam@95 6657 # search path.
cannam@95 6658 case " $sys_lib_dlsearch_path " in
cannam@95 6659 *" $absdir "*) ;;
cannam@95 6660 *)
cannam@95 6661 case "$compile_rpath " in
cannam@95 6662 *" $absdir "*) ;;
cannam@95 6663 *) func_append compile_rpath " $absdir" ;;
cannam@95 6664 esac
cannam@95 6665 ;;
cannam@95 6666 esac
cannam@95 6667 case " $sys_lib_dlsearch_path " in
cannam@95 6668 *" $libdir "*) ;;
cannam@95 6669 *)
cannam@95 6670 case "$finalize_rpath " in
cannam@95 6671 *" $libdir "*) ;;
cannam@95 6672 *) func_append finalize_rpath " $libdir" ;;
cannam@95 6673 esac
cannam@95 6674 ;;
cannam@95 6675 esac
cannam@95 6676 fi # $linkmode,$pass = prog,link...
cannam@95 6677
cannam@95 6678 if test "$alldeplibs" = yes &&
cannam@95 6679 { test "$deplibs_check_method" = pass_all ||
cannam@95 6680 { test "$build_libtool_libs" = yes &&
cannam@95 6681 test -n "$library_names"; }; }; then
cannam@95 6682 # We only need to search for static libraries
cannam@95 6683 continue
cannam@95 6684 fi
cannam@95 6685 fi
cannam@95 6686
cannam@95 6687 link_static=no # Whether the deplib will be linked statically
cannam@95 6688 use_static_libs=$prefer_static_libs
cannam@95 6689 if test "$use_static_libs" = built && test "$installed" = yes; then
cannam@95 6690 use_static_libs=no
cannam@95 6691 fi
cannam@95 6692 if test -n "$library_names" &&
cannam@95 6693 { test "$use_static_libs" = no || test -z "$old_library"; }; then
cannam@95 6694 case $host in
cannam@95 6695 *cygwin* | *mingw* | *cegcc*)
cannam@95 6696 # No point in relinking DLLs because paths are not encoded
cannam@95 6697 func_append notinst_deplibs " $lib"
cannam@95 6698 need_relink=no
cannam@95 6699 ;;
cannam@95 6700 *)
cannam@95 6701 if test "$installed" = no; then
cannam@95 6702 func_append notinst_deplibs " $lib"
cannam@95 6703 need_relink=yes
cannam@95 6704 fi
cannam@95 6705 ;;
cannam@95 6706 esac
cannam@95 6707 # This is a shared library
cannam@95 6708
cannam@95 6709 # Warn about portability, can't link against -module's on some
cannam@95 6710 # systems (darwin). Don't bleat about dlopened modules though!
cannam@95 6711 dlopenmodule=""
cannam@95 6712 for dlpremoduletest in $dlprefiles; do
cannam@95 6713 if test "X$dlpremoduletest" = "X$lib"; then
cannam@95 6714 dlopenmodule="$dlpremoduletest"
cannam@95 6715 break
cannam@95 6716 fi
cannam@95 6717 done
cannam@95 6718 if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then
cannam@95 6719 echo
cannam@95 6720 if test "$linkmode" = prog; then
cannam@95 6721 $ECHO "*** Warning: Linking the executable $output against the loadable module"
cannam@95 6722 else
cannam@95 6723 $ECHO "*** Warning: Linking the shared library $output against the loadable module"
cannam@95 6724 fi
cannam@95 6725 $ECHO "*** $linklib is not portable!"
cannam@95 6726 fi
cannam@95 6727 if test "$linkmode" = lib &&
cannam@95 6728 test "$hardcode_into_libs" = yes; then
cannam@95 6729 # Hardcode the library path.
cannam@95 6730 # Skip directories that are in the system default run-time
cannam@95 6731 # search path.
cannam@95 6732 case " $sys_lib_dlsearch_path " in
cannam@95 6733 *" $absdir "*) ;;
cannam@95 6734 *)
cannam@95 6735 case "$compile_rpath " in
cannam@95 6736 *" $absdir "*) ;;
cannam@95 6737 *) func_append compile_rpath " $absdir" ;;
cannam@95 6738 esac
cannam@95 6739 ;;
cannam@95 6740 esac
cannam@95 6741 case " $sys_lib_dlsearch_path " in
cannam@95 6742 *" $libdir "*) ;;
cannam@95 6743 *)
cannam@95 6744 case "$finalize_rpath " in
cannam@95 6745 *" $libdir "*) ;;
cannam@95 6746 *) func_append finalize_rpath " $libdir" ;;
cannam@95 6747 esac
cannam@95 6748 ;;
cannam@95 6749 esac
cannam@95 6750 fi
cannam@95 6751
cannam@95 6752 if test -n "$old_archive_from_expsyms_cmds"; then
cannam@95 6753 # figure out the soname
cannam@95 6754 set dummy $library_names
cannam@95 6755 shift
cannam@95 6756 realname="$1"
cannam@95 6757 shift
cannam@95 6758 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@95 6759 # use dlname if we got it. it's perfectly good, no?
cannam@95 6760 if test -n "$dlname"; then
cannam@95 6761 soname="$dlname"
cannam@95 6762 elif test -n "$soname_spec"; then
cannam@95 6763 # bleh windows
cannam@95 6764 case $host in
cannam@95 6765 *cygwin* | mingw* | *cegcc*)
cannam@95 6766 func_arith $current - $age
cannam@95 6767 major=$func_arith_result
cannam@95 6768 versuffix="-$major"
cannam@95 6769 ;;
cannam@95 6770 esac
cannam@95 6771 eval soname=\"$soname_spec\"
cannam@95 6772 else
cannam@95 6773 soname="$realname"
cannam@95 6774 fi
cannam@95 6775
cannam@95 6776 # Make a new name for the extract_expsyms_cmds to use
cannam@95 6777 soroot="$soname"
cannam@95 6778 func_basename "$soroot"
cannam@95 6779 soname="$func_basename_result"
cannam@95 6780 func_stripname 'lib' '.dll' "$soname"
cannam@95 6781 newlib=libimp-$func_stripname_result.a
cannam@95 6782
cannam@95 6783 # If the library has no export list, then create one now
cannam@95 6784 if test -f "$output_objdir/$soname-def"; then :
cannam@95 6785 else
cannam@95 6786 func_verbose "extracting exported symbol list from \`$soname'"
cannam@95 6787 func_execute_cmds "$extract_expsyms_cmds" 'exit $?'
cannam@95 6788 fi
cannam@95 6789
cannam@95 6790 # Create $newlib
cannam@95 6791 if test -f "$output_objdir/$newlib"; then :; else
cannam@95 6792 func_verbose "generating import library for \`$soname'"
cannam@95 6793 func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?'
cannam@95 6794 fi
cannam@95 6795 # make sure the library variables are pointing to the new library
cannam@95 6796 dir=$output_objdir
cannam@95 6797 linklib=$newlib
cannam@95 6798 fi # test -n "$old_archive_from_expsyms_cmds"
cannam@95 6799
cannam@95 6800 if test "$linkmode" = prog || test "$opt_mode" != relink; then
cannam@95 6801 add_shlibpath=
cannam@95 6802 add_dir=
cannam@95 6803 add=
cannam@95 6804 lib_linked=yes
cannam@95 6805 case $hardcode_action in
cannam@95 6806 immediate | unsupported)
cannam@95 6807 if test "$hardcode_direct" = no; then
cannam@95 6808 add="$dir/$linklib"
cannam@95 6809 case $host in
cannam@95 6810 *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;;
cannam@95 6811 *-*-sysv4*uw2*) add_dir="-L$dir" ;;
cannam@95 6812 *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \
cannam@95 6813 *-*-unixware7*) add_dir="-L$dir" ;;
cannam@95 6814 *-*-darwin* )
cannam@95 6815 # if the lib is a (non-dlopened) module then we can not
cannam@95 6816 # link against it, someone is ignoring the earlier warnings
cannam@95 6817 if /usr/bin/file -L $add 2> /dev/null |
cannam@95 6818 $GREP ": [^:]* bundle" >/dev/null ; then
cannam@95 6819 if test "X$dlopenmodule" != "X$lib"; then
cannam@95 6820 $ECHO "*** Warning: lib $linklib is a module, not a shared library"
cannam@95 6821 if test -z "$old_library" ; then
cannam@95 6822 echo
cannam@95 6823 echo "*** And there doesn't seem to be a static archive available"
cannam@95 6824 echo "*** The link will probably fail, sorry"
cannam@95 6825 else
cannam@95 6826 add="$dir/$old_library"
cannam@95 6827 fi
cannam@95 6828 elif test -n "$old_library"; then
cannam@95 6829 add="$dir/$old_library"
cannam@95 6830 fi
cannam@95 6831 fi
cannam@95 6832 esac
cannam@95 6833 elif test "$hardcode_minus_L" = no; then
cannam@95 6834 case $host in
cannam@95 6835 *-*-sunos*) add_shlibpath="$dir" ;;
cannam@95 6836 esac
cannam@95 6837 add_dir="-L$dir"
cannam@95 6838 add="-l$name"
cannam@95 6839 elif test "$hardcode_shlibpath_var" = no; then
cannam@95 6840 add_shlibpath="$dir"
cannam@95 6841 add="-l$name"
cannam@95 6842 else
cannam@95 6843 lib_linked=no
cannam@95 6844 fi
cannam@95 6845 ;;
cannam@95 6846 relink)
cannam@95 6847 if test "$hardcode_direct" = yes &&
cannam@95 6848 test "$hardcode_direct_absolute" = no; then
cannam@95 6849 add="$dir/$linklib"
cannam@95 6850 elif test "$hardcode_minus_L" = yes; then
cannam@95 6851 add_dir="-L$absdir"
cannam@95 6852 # Try looking first in the location we're being installed to.
cannam@95 6853 if test -n "$inst_prefix_dir"; then
cannam@95 6854 case $libdir in
cannam@95 6855 [\\/]*)
cannam@95 6856 func_append add_dir " -L$inst_prefix_dir$libdir"
cannam@95 6857 ;;
cannam@95 6858 esac
cannam@95 6859 fi
cannam@95 6860 add="-l$name"
cannam@95 6861 elif test "$hardcode_shlibpath_var" = yes; then
cannam@95 6862 add_shlibpath="$dir"
cannam@95 6863 add="-l$name"
cannam@95 6864 else
cannam@95 6865 lib_linked=no
cannam@95 6866 fi
cannam@95 6867 ;;
cannam@95 6868 *) lib_linked=no ;;
cannam@95 6869 esac
cannam@95 6870
cannam@95 6871 if test "$lib_linked" != yes; then
cannam@95 6872 func_fatal_configuration "unsupported hardcode properties"
cannam@95 6873 fi
cannam@95 6874
cannam@95 6875 if test -n "$add_shlibpath"; then
cannam@95 6876 case :$compile_shlibpath: in
cannam@95 6877 *":$add_shlibpath:"*) ;;
cannam@95 6878 *) func_append compile_shlibpath "$add_shlibpath:" ;;
cannam@95 6879 esac
cannam@95 6880 fi
cannam@95 6881 if test "$linkmode" = prog; then
cannam@95 6882 test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
cannam@95 6883 test -n "$add" && compile_deplibs="$add $compile_deplibs"
cannam@95 6884 else
cannam@95 6885 test -n "$add_dir" && deplibs="$add_dir $deplibs"
cannam@95 6886 test -n "$add" && deplibs="$add $deplibs"
cannam@95 6887 if test "$hardcode_direct" != yes &&
cannam@95 6888 test "$hardcode_minus_L" != yes &&
cannam@95 6889 test "$hardcode_shlibpath_var" = yes; then
cannam@95 6890 case :$finalize_shlibpath: in
cannam@95 6891 *":$libdir:"*) ;;
cannam@95 6892 *) func_append finalize_shlibpath "$libdir:" ;;
cannam@95 6893 esac
cannam@95 6894 fi
cannam@95 6895 fi
cannam@95 6896 fi
cannam@95 6897
cannam@95 6898 if test "$linkmode" = prog || test "$opt_mode" = relink; then
cannam@95 6899 add_shlibpath=
cannam@95 6900 add_dir=
cannam@95 6901 add=
cannam@95 6902 # Finalize command for both is simple: just hardcode it.
cannam@95 6903 if test "$hardcode_direct" = yes &&
cannam@95 6904 test "$hardcode_direct_absolute" = no; then
cannam@95 6905 add="$libdir/$linklib"
cannam@95 6906 elif test "$hardcode_minus_L" = yes; then
cannam@95 6907 add_dir="-L$libdir"
cannam@95 6908 add="-l$name"
cannam@95 6909 elif test "$hardcode_shlibpath_var" = yes; then
cannam@95 6910 case :$finalize_shlibpath: in
cannam@95 6911 *":$libdir:"*) ;;
cannam@95 6912 *) func_append finalize_shlibpath "$libdir:" ;;
cannam@95 6913 esac
cannam@95 6914 add="-l$name"
cannam@95 6915 elif test "$hardcode_automatic" = yes; then
cannam@95 6916 if test -n "$inst_prefix_dir" &&
cannam@95 6917 test -f "$inst_prefix_dir$libdir/$linklib" ; then
cannam@95 6918 add="$inst_prefix_dir$libdir/$linklib"
cannam@95 6919 else
cannam@95 6920 add="$libdir/$linklib"
cannam@95 6921 fi
cannam@95 6922 else
cannam@95 6923 # We cannot seem to hardcode it, guess we'll fake it.
cannam@95 6924 add_dir="-L$libdir"
cannam@95 6925 # Try looking first in the location we're being installed to.
cannam@95 6926 if test -n "$inst_prefix_dir"; then
cannam@95 6927 case $libdir in
cannam@95 6928 [\\/]*)
cannam@95 6929 func_append add_dir " -L$inst_prefix_dir$libdir"
cannam@95 6930 ;;
cannam@95 6931 esac
cannam@95 6932 fi
cannam@95 6933 add="-l$name"
cannam@95 6934 fi
cannam@95 6935
cannam@95 6936 if test "$linkmode" = prog; then
cannam@95 6937 test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
cannam@95 6938 test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
cannam@95 6939 else
cannam@95 6940 test -n "$add_dir" && deplibs="$add_dir $deplibs"
cannam@95 6941 test -n "$add" && deplibs="$add $deplibs"
cannam@95 6942 fi
cannam@95 6943 fi
cannam@95 6944 elif test "$linkmode" = prog; then
cannam@95 6945 # Here we assume that one of hardcode_direct or hardcode_minus_L
cannam@95 6946 # is not unsupported. This is valid on all known static and
cannam@95 6947 # shared platforms.
cannam@95 6948 if test "$hardcode_direct" != unsupported; then
cannam@95 6949 test -n "$old_library" && linklib="$old_library"
cannam@95 6950 compile_deplibs="$dir/$linklib $compile_deplibs"
cannam@95 6951 finalize_deplibs="$dir/$linklib $finalize_deplibs"
cannam@95 6952 else
cannam@95 6953 compile_deplibs="-l$name -L$dir $compile_deplibs"
cannam@95 6954 finalize_deplibs="-l$name -L$dir $finalize_deplibs"
cannam@95 6955 fi
cannam@95 6956 elif test "$build_libtool_libs" = yes; then
cannam@95 6957 # Not a shared library
cannam@95 6958 if test "$deplibs_check_method" != pass_all; then
cannam@95 6959 # We're trying link a shared library against a static one
cannam@95 6960 # but the system doesn't support it.
cannam@95 6961
cannam@95 6962 # Just print a warning and add the library to dependency_libs so
cannam@95 6963 # that the program can be linked against the static library.
cannam@95 6964 echo
cannam@95 6965 $ECHO "*** Warning: This system can not link to static lib archive $lib."
cannam@95 6966 echo "*** I have the capability to make that library automatically link in when"
cannam@95 6967 echo "*** you link to this library. But I can only do this if you have a"
cannam@95 6968 echo "*** shared version of the library, which you do not appear to have."
cannam@95 6969 if test "$module" = yes; then
cannam@95 6970 echo "*** But as you try to build a module library, libtool will still create "
cannam@95 6971 echo "*** a static module, that should work as long as the dlopening application"
cannam@95 6972 echo "*** is linked with the -dlopen flag to resolve symbols at runtime."
cannam@95 6973 if test -z "$global_symbol_pipe"; then
cannam@95 6974 echo
cannam@95 6975 echo "*** However, this would only work if libtool was able to extract symbol"
cannam@95 6976 echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
cannam@95 6977 echo "*** not find such a program. So, this module is probably useless."
cannam@95 6978 echo "*** \`nm' from GNU binutils and a full rebuild may help."
cannam@95 6979 fi
cannam@95 6980 if test "$build_old_libs" = no; then
cannam@95 6981 build_libtool_libs=module
cannam@95 6982 build_old_libs=yes
cannam@95 6983 else
cannam@95 6984 build_libtool_libs=no
cannam@95 6985 fi
cannam@95 6986 fi
cannam@95 6987 else
cannam@95 6988 deplibs="$dir/$old_library $deplibs"
cannam@95 6989 link_static=yes
cannam@95 6990 fi
cannam@95 6991 fi # link shared/static library?
cannam@95 6992
cannam@95 6993 if test "$linkmode" = lib; then
cannam@95 6994 if test -n "$dependency_libs" &&
cannam@95 6995 { test "$hardcode_into_libs" != yes ||
cannam@95 6996 test "$build_old_libs" = yes ||
cannam@95 6997 test "$link_static" = yes; }; then
cannam@95 6998 # Extract -R from dependency_libs
cannam@95 6999 temp_deplibs=
cannam@95 7000 for libdir in $dependency_libs; do
cannam@95 7001 case $libdir in
cannam@95 7002 -R*) func_stripname '-R' '' "$libdir"
cannam@95 7003 temp_xrpath=$func_stripname_result
cannam@95 7004 case " $xrpath " in
cannam@95 7005 *" $temp_xrpath "*) ;;
cannam@95 7006 *) func_append xrpath " $temp_xrpath";;
cannam@95 7007 esac;;
cannam@95 7008 *) func_append temp_deplibs " $libdir";;
cannam@95 7009 esac
cannam@95 7010 done
cannam@95 7011 dependency_libs="$temp_deplibs"
cannam@95 7012 fi
cannam@95 7013
cannam@95 7014 func_append newlib_search_path " $absdir"
cannam@95 7015 # Link against this library
cannam@95 7016 test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
cannam@95 7017 # ... and its dependency_libs
cannam@95 7018 tmp_libs=
cannam@95 7019 for deplib in $dependency_libs; do
cannam@95 7020 newdependency_libs="$deplib $newdependency_libs"
cannam@95 7021 case $deplib in
cannam@95 7022 -L*) func_stripname '-L' '' "$deplib"
cannam@95 7023 func_resolve_sysroot "$func_stripname_result";;
cannam@95 7024 *) func_resolve_sysroot "$deplib" ;;
cannam@95 7025 esac
cannam@95 7026 if $opt_preserve_dup_deps ; then
cannam@95 7027 case "$tmp_libs " in
cannam@95 7028 *" $func_resolve_sysroot_result "*)
cannam@95 7029 func_append specialdeplibs " $func_resolve_sysroot_result" ;;
cannam@95 7030 esac
cannam@95 7031 fi
cannam@95 7032 func_append tmp_libs " $func_resolve_sysroot_result"
cannam@95 7033 done
cannam@95 7034
cannam@95 7035 if test "$link_all_deplibs" != no; then
cannam@95 7036 # Add the search paths of all dependency libraries
cannam@95 7037 for deplib in $dependency_libs; do
cannam@95 7038 path=
cannam@95 7039 case $deplib in
cannam@95 7040 -L*) path="$deplib" ;;
cannam@95 7041 *.la)
cannam@95 7042 func_resolve_sysroot "$deplib"
cannam@95 7043 deplib=$func_resolve_sysroot_result
cannam@95 7044 func_dirname "$deplib" "" "."
cannam@95 7045 dir=$func_dirname_result
cannam@95 7046 # We need an absolute path.
cannam@95 7047 case $dir in
cannam@95 7048 [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;
cannam@95 7049 *)
cannam@95 7050 absdir=`cd "$dir" && pwd`
cannam@95 7051 if test -z "$absdir"; then
cannam@95 7052 func_warning "cannot determine absolute directory name of \`$dir'"
cannam@95 7053 absdir="$dir"
cannam@95 7054 fi
cannam@95 7055 ;;
cannam@95 7056 esac
cannam@95 7057 if $GREP "^installed=no" $deplib > /dev/null; then
cannam@95 7058 case $host in
cannam@95 7059 *-*-darwin*)
cannam@95 7060 depdepl=
cannam@95 7061 eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib`
cannam@95 7062 if test -n "$deplibrary_names" ; then
cannam@95 7063 for tmp in $deplibrary_names ; do
cannam@95 7064 depdepl=$tmp
cannam@95 7065 done
cannam@95 7066 if test -f "$absdir/$objdir/$depdepl" ; then
cannam@95 7067 depdepl="$absdir/$objdir/$depdepl"
cannam@95 7068 darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
cannam@95 7069 if test -z "$darwin_install_name"; then
cannam@95 7070 darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
cannam@95 7071 fi
cannam@95 7072 func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}"
cannam@95 7073 func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}"
cannam@95 7074 path=
cannam@95 7075 fi
cannam@95 7076 fi
cannam@95 7077 ;;
cannam@95 7078 *)
cannam@95 7079 path="-L$absdir/$objdir"
cannam@95 7080 ;;
cannam@95 7081 esac
cannam@95 7082 else
cannam@95 7083 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
cannam@95 7084 test -z "$libdir" && \
cannam@95 7085 func_fatal_error "\`$deplib' is not a valid libtool archive"
cannam@95 7086 test "$absdir" != "$libdir" && \
cannam@95 7087 func_warning "\`$deplib' seems to be moved"
cannam@95 7088
cannam@95 7089 path="-L$absdir"
cannam@95 7090 fi
cannam@95 7091 ;;
cannam@95 7092 esac
cannam@95 7093 case " $deplibs " in
cannam@95 7094 *" $path "*) ;;
cannam@95 7095 *) deplibs="$path $deplibs" ;;
cannam@95 7096 esac
cannam@95 7097 done
cannam@95 7098 fi # link_all_deplibs != no
cannam@95 7099 fi # linkmode = lib
cannam@95 7100 done # for deplib in $libs
cannam@95 7101 if test "$pass" = link; then
cannam@95 7102 if test "$linkmode" = "prog"; then
cannam@95 7103 compile_deplibs="$new_inherited_linker_flags $compile_deplibs"
cannam@95 7104 finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs"
cannam@95 7105 else
cannam@95 7106 compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@95 7107 fi
cannam@95 7108 fi
cannam@95 7109 dependency_libs="$newdependency_libs"
cannam@95 7110 if test "$pass" = dlpreopen; then
cannam@95 7111 # Link the dlpreopened libraries before other libraries
cannam@95 7112 for deplib in $save_deplibs; do
cannam@95 7113 deplibs="$deplib $deplibs"
cannam@95 7114 done
cannam@95 7115 fi
cannam@95 7116 if test "$pass" != dlopen; then
cannam@95 7117 if test "$pass" != conv; then
cannam@95 7118 # Make sure lib_search_path contains only unique directories.
cannam@95 7119 lib_search_path=
cannam@95 7120 for dir in $newlib_search_path; do
cannam@95 7121 case "$lib_search_path " in
cannam@95 7122 *" $dir "*) ;;
cannam@95 7123 *) func_append lib_search_path " $dir" ;;
cannam@95 7124 esac
cannam@95 7125 done
cannam@95 7126 newlib_search_path=
cannam@95 7127 fi
cannam@95 7128
cannam@95 7129 if test "$linkmode,$pass" != "prog,link"; then
cannam@95 7130 vars="deplibs"
cannam@95 7131 else
cannam@95 7132 vars="compile_deplibs finalize_deplibs"
cannam@95 7133 fi
cannam@95 7134 for var in $vars dependency_libs; do
cannam@95 7135 # Add libraries to $var in reverse order
cannam@95 7136 eval tmp_libs=\"\$$var\"
cannam@95 7137 new_libs=
cannam@95 7138 for deplib in $tmp_libs; do
cannam@95 7139 # FIXME: Pedantically, this is the right thing to do, so
cannam@95 7140 # that some nasty dependency loop isn't accidentally
cannam@95 7141 # broken:
cannam@95 7142 #new_libs="$deplib $new_libs"
cannam@95 7143 # Pragmatically, this seems to cause very few problems in
cannam@95 7144 # practice:
cannam@95 7145 case $deplib in
cannam@95 7146 -L*) new_libs="$deplib $new_libs" ;;
cannam@95 7147 -R*) ;;
cannam@95 7148 *)
cannam@95 7149 # And here is the reason: when a library appears more
cannam@95 7150 # than once as an explicit dependence of a library, or
cannam@95 7151 # is implicitly linked in more than once by the
cannam@95 7152 # compiler, it is considered special, and multiple
cannam@95 7153 # occurrences thereof are not removed. Compare this
cannam@95 7154 # with having the same library being listed as a
cannam@95 7155 # dependency of multiple other libraries: in this case,
cannam@95 7156 # we know (pedantically, we assume) the library does not
cannam@95 7157 # need to be listed more than once, so we keep only the
cannam@95 7158 # last copy. This is not always right, but it is rare
cannam@95 7159 # enough that we require users that really mean to play
cannam@95 7160 # such unportable linking tricks to link the library
cannam@95 7161 # using -Wl,-lname, so that libtool does not consider it
cannam@95 7162 # for duplicate removal.
cannam@95 7163 case " $specialdeplibs " in
cannam@95 7164 *" $deplib "*) new_libs="$deplib $new_libs" ;;
cannam@95 7165 *)
cannam@95 7166 case " $new_libs " in
cannam@95 7167 *" $deplib "*) ;;
cannam@95 7168 *) new_libs="$deplib $new_libs" ;;
cannam@95 7169 esac
cannam@95 7170 ;;
cannam@95 7171 esac
cannam@95 7172 ;;
cannam@95 7173 esac
cannam@95 7174 done
cannam@95 7175 tmp_libs=
cannam@95 7176 for deplib in $new_libs; do
cannam@95 7177 case $deplib in
cannam@95 7178 -L*)
cannam@95 7179 case " $tmp_libs " in
cannam@95 7180 *" $deplib "*) ;;
cannam@95 7181 *) func_append tmp_libs " $deplib" ;;
cannam@95 7182 esac
cannam@95 7183 ;;
cannam@95 7184 *) func_append tmp_libs " $deplib" ;;
cannam@95 7185 esac
cannam@95 7186 done
cannam@95 7187 eval $var=\"$tmp_libs\"
cannam@95 7188 done # for var
cannam@95 7189 fi
cannam@95 7190 # Last step: remove runtime libs from dependency_libs
cannam@95 7191 # (they stay in deplibs)
cannam@95 7192 tmp_libs=
cannam@95 7193 for i in $dependency_libs ; do
cannam@95 7194 case " $predeps $postdeps $compiler_lib_search_path " in
cannam@95 7195 *" $i "*)
cannam@95 7196 i=""
cannam@95 7197 ;;
cannam@95 7198 esac
cannam@95 7199 if test -n "$i" ; then
cannam@95 7200 func_append tmp_libs " $i"
cannam@95 7201 fi
cannam@95 7202 done
cannam@95 7203 dependency_libs=$tmp_libs
cannam@95 7204 done # for pass
cannam@95 7205 if test "$linkmode" = prog; then
cannam@95 7206 dlfiles="$newdlfiles"
cannam@95 7207 fi
cannam@95 7208 if test "$linkmode" = prog || test "$linkmode" = lib; then
cannam@95 7209 dlprefiles="$newdlprefiles"
cannam@95 7210 fi
cannam@95 7211
cannam@95 7212 case $linkmode in
cannam@95 7213 oldlib)
cannam@95 7214 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@95 7215 func_warning "\`-dlopen' is ignored for archives"
cannam@95 7216 fi
cannam@95 7217
cannam@95 7218 case " $deplibs" in
cannam@95 7219 *\ -l* | *\ -L*)
cannam@95 7220 func_warning "\`-l' and \`-L' are ignored for archives" ;;
cannam@95 7221 esac
cannam@95 7222
cannam@95 7223 test -n "$rpath" && \
cannam@95 7224 func_warning "\`-rpath' is ignored for archives"
cannam@95 7225
cannam@95 7226 test -n "$xrpath" && \
cannam@95 7227 func_warning "\`-R' is ignored for archives"
cannam@95 7228
cannam@95 7229 test -n "$vinfo" && \
cannam@95 7230 func_warning "\`-version-info/-version-number' is ignored for archives"
cannam@95 7231
cannam@95 7232 test -n "$release" && \
cannam@95 7233 func_warning "\`-release' is ignored for archives"
cannam@95 7234
cannam@95 7235 test -n "$export_symbols$export_symbols_regex" && \
cannam@95 7236 func_warning "\`-export-symbols' is ignored for archives"
cannam@95 7237
cannam@95 7238 # Now set the variables for building old libraries.
cannam@95 7239 build_libtool_libs=no
cannam@95 7240 oldlibs="$output"
cannam@95 7241 func_append objs "$old_deplibs"
cannam@95 7242 ;;
cannam@95 7243
cannam@95 7244 lib)
cannam@95 7245 # Make sure we only generate libraries of the form `libNAME.la'.
cannam@95 7246 case $outputname in
cannam@95 7247 lib*)
cannam@95 7248 func_stripname 'lib' '.la' "$outputname"
cannam@95 7249 name=$func_stripname_result
cannam@95 7250 eval shared_ext=\"$shrext_cmds\"
cannam@95 7251 eval libname=\"$libname_spec\"
cannam@95 7252 ;;
cannam@95 7253 *)
cannam@95 7254 test "$module" = no && \
cannam@95 7255 func_fatal_help "libtool library \`$output' must begin with \`lib'"
cannam@95 7256
cannam@95 7257 if test "$need_lib_prefix" != no; then
cannam@95 7258 # Add the "lib" prefix for modules if required
cannam@95 7259 func_stripname '' '.la' "$outputname"
cannam@95 7260 name=$func_stripname_result
cannam@95 7261 eval shared_ext=\"$shrext_cmds\"
cannam@95 7262 eval libname=\"$libname_spec\"
cannam@95 7263 else
cannam@95 7264 func_stripname '' '.la' "$outputname"
cannam@95 7265 libname=$func_stripname_result
cannam@95 7266 fi
cannam@95 7267 ;;
cannam@95 7268 esac
cannam@95 7269
cannam@95 7270 if test -n "$objs"; then
cannam@95 7271 if test "$deplibs_check_method" != pass_all; then
cannam@95 7272 func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs"
cannam@95 7273 else
cannam@95 7274 echo
cannam@95 7275 $ECHO "*** Warning: Linking the shared library $output against the non-libtool"
cannam@95 7276 $ECHO "*** objects $objs is not portable!"
cannam@95 7277 func_append libobjs " $objs"
cannam@95 7278 fi
cannam@95 7279 fi
cannam@95 7280
cannam@95 7281 test "$dlself" != no && \
cannam@95 7282 func_warning "\`-dlopen self' is ignored for libtool libraries"
cannam@95 7283
cannam@95 7284 set dummy $rpath
cannam@95 7285 shift
cannam@95 7286 test "$#" -gt 1 && \
cannam@95 7287 func_warning "ignoring multiple \`-rpath's for a libtool library"
cannam@95 7288
cannam@95 7289 install_libdir="$1"
cannam@95 7290
cannam@95 7291 oldlibs=
cannam@95 7292 if test -z "$rpath"; then
cannam@95 7293 if test "$build_libtool_libs" = yes; then
cannam@95 7294 # Building a libtool convenience library.
cannam@95 7295 # Some compilers have problems with a `.al' extension so
cannam@95 7296 # convenience libraries should have the same extension an
cannam@95 7297 # archive normally would.
cannam@95 7298 oldlibs="$output_objdir/$libname.$libext $oldlibs"
cannam@95 7299 build_libtool_libs=convenience
cannam@95 7300 build_old_libs=yes
cannam@95 7301 fi
cannam@95 7302
cannam@95 7303 test -n "$vinfo" && \
cannam@95 7304 func_warning "\`-version-info/-version-number' is ignored for convenience libraries"
cannam@95 7305
cannam@95 7306 test -n "$release" && \
cannam@95 7307 func_warning "\`-release' is ignored for convenience libraries"
cannam@95 7308 else
cannam@95 7309
cannam@95 7310 # Parse the version information argument.
cannam@95 7311 save_ifs="$IFS"; IFS=':'
cannam@95 7312 set dummy $vinfo 0 0 0
cannam@95 7313 shift
cannam@95 7314 IFS="$save_ifs"
cannam@95 7315
cannam@95 7316 test -n "$7" && \
cannam@95 7317 func_fatal_help "too many parameters to \`-version-info'"
cannam@95 7318
cannam@95 7319 # convert absolute version numbers to libtool ages
cannam@95 7320 # this retains compatibility with .la files and attempts
cannam@95 7321 # to make the code below a bit more comprehensible
cannam@95 7322
cannam@95 7323 case $vinfo_number in
cannam@95 7324 yes)
cannam@95 7325 number_major="$1"
cannam@95 7326 number_minor="$2"
cannam@95 7327 number_revision="$3"
cannam@95 7328 #
cannam@95 7329 # There are really only two kinds -- those that
cannam@95 7330 # use the current revision as the major version
cannam@95 7331 # and those that subtract age and use age as
cannam@95 7332 # a minor version. But, then there is irix
cannam@95 7333 # which has an extra 1 added just for fun
cannam@95 7334 #
cannam@95 7335 case $version_type in
cannam@95 7336 # correct linux to gnu/linux during the next big refactor
cannam@95 7337 darwin|linux|osf|windows|none)
cannam@95 7338 func_arith $number_major + $number_minor
cannam@95 7339 current=$func_arith_result
cannam@95 7340 age="$number_minor"
cannam@95 7341 revision="$number_revision"
cannam@95 7342 ;;
cannam@95 7343 freebsd-aout|freebsd-elf|qnx|sunos)
cannam@95 7344 current="$number_major"
cannam@95 7345 revision="$number_minor"
cannam@95 7346 age="0"
cannam@95 7347 ;;
cannam@95 7348 irix|nonstopux)
cannam@95 7349 func_arith $number_major + $number_minor
cannam@95 7350 current=$func_arith_result
cannam@95 7351 age="$number_minor"
cannam@95 7352 revision="$number_minor"
cannam@95 7353 lt_irix_increment=no
cannam@95 7354 ;;
cannam@95 7355 *)
cannam@95 7356 func_fatal_configuration "$modename: unknown library version type \`$version_type'"
cannam@95 7357 ;;
cannam@95 7358 esac
cannam@95 7359 ;;
cannam@95 7360 no)
cannam@95 7361 current="$1"
cannam@95 7362 revision="$2"
cannam@95 7363 age="$3"
cannam@95 7364 ;;
cannam@95 7365 esac
cannam@95 7366
cannam@95 7367 # Check that each of the things are valid numbers.
cannam@95 7368 case $current in
cannam@95 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@95 7370 *)
cannam@95 7371 func_error "CURRENT \`$current' must be a nonnegative integer"
cannam@95 7372 func_fatal_error "\`$vinfo' is not valid version information"
cannam@95 7373 ;;
cannam@95 7374 esac
cannam@95 7375
cannam@95 7376 case $revision in
cannam@95 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@95 7378 *)
cannam@95 7379 func_error "REVISION \`$revision' must be a nonnegative integer"
cannam@95 7380 func_fatal_error "\`$vinfo' is not valid version information"
cannam@95 7381 ;;
cannam@95 7382 esac
cannam@95 7383
cannam@95 7384 case $age in
cannam@95 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@95 7386 *)
cannam@95 7387 func_error "AGE \`$age' must be a nonnegative integer"
cannam@95 7388 func_fatal_error "\`$vinfo' is not valid version information"
cannam@95 7389 ;;
cannam@95 7390 esac
cannam@95 7391
cannam@95 7392 if test "$age" -gt "$current"; then
cannam@95 7393 func_error "AGE \`$age' is greater than the current interface number \`$current'"
cannam@95 7394 func_fatal_error "\`$vinfo' is not valid version information"
cannam@95 7395 fi
cannam@95 7396
cannam@95 7397 # Calculate the version variables.
cannam@95 7398 major=
cannam@95 7399 versuffix=
cannam@95 7400 verstring=
cannam@95 7401 case $version_type in
cannam@95 7402 none) ;;
cannam@95 7403
cannam@95 7404 darwin)
cannam@95 7405 # Like Linux, but with the current version available in
cannam@95 7406 # verstring for coding it into the library header
cannam@95 7407 func_arith $current - $age
cannam@95 7408 major=.$func_arith_result
cannam@95 7409 versuffix="$major.$age.$revision"
cannam@95 7410 # Darwin ld doesn't like 0 for these options...
cannam@95 7411 func_arith $current + 1
cannam@95 7412 minor_current=$func_arith_result
cannam@95 7413 xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
cannam@95 7414 verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
cannam@95 7415 ;;
cannam@95 7416
cannam@95 7417 freebsd-aout)
cannam@95 7418 major=".$current"
cannam@95 7419 versuffix=".$current.$revision";
cannam@95 7420 ;;
cannam@95 7421
cannam@95 7422 freebsd-elf)
cannam@95 7423 major=".$current"
cannam@95 7424 versuffix=".$current"
cannam@95 7425 ;;
cannam@95 7426
cannam@95 7427 irix | nonstopux)
cannam@95 7428 if test "X$lt_irix_increment" = "Xno"; then
cannam@95 7429 func_arith $current - $age
cannam@95 7430 else
cannam@95 7431 func_arith $current - $age + 1
cannam@95 7432 fi
cannam@95 7433 major=$func_arith_result
cannam@95 7434
cannam@95 7435 case $version_type in
cannam@95 7436 nonstopux) verstring_prefix=nonstopux ;;
cannam@95 7437 *) verstring_prefix=sgi ;;
cannam@95 7438 esac
cannam@95 7439 verstring="$verstring_prefix$major.$revision"
cannam@95 7440
cannam@95 7441 # Add in all the interfaces that we are compatible with.
cannam@95 7442 loop=$revision
cannam@95 7443 while test "$loop" -ne 0; do
cannam@95 7444 func_arith $revision - $loop
cannam@95 7445 iface=$func_arith_result
cannam@95 7446 func_arith $loop - 1
cannam@95 7447 loop=$func_arith_result
cannam@95 7448 verstring="$verstring_prefix$major.$iface:$verstring"
cannam@95 7449 done
cannam@95 7450
cannam@95 7451 # Before this point, $major must not contain `.'.
cannam@95 7452 major=.$major
cannam@95 7453 versuffix="$major.$revision"
cannam@95 7454 ;;
cannam@95 7455
cannam@95 7456 linux) # correct to gnu/linux during the next big refactor
cannam@95 7457 func_arith $current - $age
cannam@95 7458 major=.$func_arith_result
cannam@95 7459 versuffix="$major.$age.$revision"
cannam@95 7460 ;;
cannam@95 7461
cannam@95 7462 osf)
cannam@95 7463 func_arith $current - $age
cannam@95 7464 major=.$func_arith_result
cannam@95 7465 versuffix=".$current.$age.$revision"
cannam@95 7466 verstring="$current.$age.$revision"
cannam@95 7467
cannam@95 7468 # Add in all the interfaces that we are compatible with.
cannam@95 7469 loop=$age
cannam@95 7470 while test "$loop" -ne 0; do
cannam@95 7471 func_arith $current - $loop
cannam@95 7472 iface=$func_arith_result
cannam@95 7473 func_arith $loop - 1
cannam@95 7474 loop=$func_arith_result
cannam@95 7475 verstring="$verstring:${iface}.0"
cannam@95 7476 done
cannam@95 7477
cannam@95 7478 # Make executables depend on our current version.
cannam@95 7479 func_append verstring ":${current}.0"
cannam@95 7480 ;;
cannam@95 7481
cannam@95 7482 qnx)
cannam@95 7483 major=".$current"
cannam@95 7484 versuffix=".$current"
cannam@95 7485 ;;
cannam@95 7486
cannam@95 7487 sunos)
cannam@95 7488 major=".$current"
cannam@95 7489 versuffix=".$current.$revision"
cannam@95 7490 ;;
cannam@95 7491
cannam@95 7492 windows)
cannam@95 7493 # Use '-' rather than '.', since we only want one
cannam@95 7494 # extension on DOS 8.3 filesystems.
cannam@95 7495 func_arith $current - $age
cannam@95 7496 major=$func_arith_result
cannam@95 7497 versuffix="-$major"
cannam@95 7498 ;;
cannam@95 7499
cannam@95 7500 *)
cannam@95 7501 func_fatal_configuration "unknown library version type \`$version_type'"
cannam@95 7502 ;;
cannam@95 7503 esac
cannam@95 7504
cannam@95 7505 # Clear the version info if we defaulted, and they specified a release.
cannam@95 7506 if test -z "$vinfo" && test -n "$release"; then
cannam@95 7507 major=
cannam@95 7508 case $version_type in
cannam@95 7509 darwin)
cannam@95 7510 # we can't check for "0.0" in archive_cmds due to quoting
cannam@95 7511 # problems, so we reset it completely
cannam@95 7512 verstring=
cannam@95 7513 ;;
cannam@95 7514 *)
cannam@95 7515 verstring="0.0"
cannam@95 7516 ;;
cannam@95 7517 esac
cannam@95 7518 if test "$need_version" = no; then
cannam@95 7519 versuffix=
cannam@95 7520 else
cannam@95 7521 versuffix=".0.0"
cannam@95 7522 fi
cannam@95 7523 fi
cannam@95 7524
cannam@95 7525 # Remove version info from name if versioning should be avoided
cannam@95 7526 if test "$avoid_version" = yes && test "$need_version" = no; then
cannam@95 7527 major=
cannam@95 7528 versuffix=
cannam@95 7529 verstring=""
cannam@95 7530 fi
cannam@95 7531
cannam@95 7532 # Check to see if the archive will have undefined symbols.
cannam@95 7533 if test "$allow_undefined" = yes; then
cannam@95 7534 if test "$allow_undefined_flag" = unsupported; then
cannam@95 7535 func_warning "undefined symbols not allowed in $host shared libraries"
cannam@95 7536 build_libtool_libs=no
cannam@95 7537 build_old_libs=yes
cannam@95 7538 fi
cannam@95 7539 else
cannam@95 7540 # Don't allow undefined symbols.
cannam@95 7541 allow_undefined_flag="$no_undefined_flag"
cannam@95 7542 fi
cannam@95 7543
cannam@95 7544 fi
cannam@95 7545
cannam@95 7546 func_generate_dlsyms "$libname" "$libname" "yes"
cannam@95 7547 func_append libobjs " $symfileobj"
cannam@95 7548 test "X$libobjs" = "X " && libobjs=
cannam@95 7549
cannam@95 7550 if test "$opt_mode" != relink; then
cannam@95 7551 # Remove our outputs, but don't remove object files since they
cannam@95 7552 # may have been created when compiling PIC objects.
cannam@95 7553 removelist=
cannam@95 7554 tempremovelist=`$ECHO "$output_objdir/*"`
cannam@95 7555 for p in $tempremovelist; do
cannam@95 7556 case $p in
cannam@95 7557 *.$objext | *.gcno)
cannam@95 7558 ;;
cannam@95 7559 $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
cannam@95 7560 if test "X$precious_files_regex" != "X"; then
cannam@95 7561 if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
cannam@95 7562 then
cannam@95 7563 continue
cannam@95 7564 fi
cannam@95 7565 fi
cannam@95 7566 func_append removelist " $p"
cannam@95 7567 ;;
cannam@95 7568 *) ;;
cannam@95 7569 esac
cannam@95 7570 done
cannam@95 7571 test -n "$removelist" && \
cannam@95 7572 func_show_eval "${RM}r \$removelist"
cannam@95 7573 fi
cannam@95 7574
cannam@95 7575 # Now set the variables for building old libraries.
cannam@95 7576 if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
cannam@95 7577 func_append oldlibs " $output_objdir/$libname.$libext"
cannam@95 7578
cannam@95 7579 # Transform .lo files to .o files.
cannam@95 7580 oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP`
cannam@95 7581 fi
cannam@95 7582
cannam@95 7583 # Eliminate all temporary directories.
cannam@95 7584 #for path in $notinst_path; do
cannam@95 7585 # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"`
cannam@95 7586 # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"`
cannam@95 7587 # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"`
cannam@95 7588 #done
cannam@95 7589
cannam@95 7590 if test -n "$xrpath"; then
cannam@95 7591 # If the user specified any rpath flags, then add them.
cannam@95 7592 temp_xrpath=
cannam@95 7593 for libdir in $xrpath; do
cannam@95 7594 func_replace_sysroot "$libdir"
cannam@95 7595 func_append temp_xrpath " -R$func_replace_sysroot_result"
cannam@95 7596 case "$finalize_rpath " in
cannam@95 7597 *" $libdir "*) ;;
cannam@95 7598 *) func_append finalize_rpath " $libdir" ;;
cannam@95 7599 esac
cannam@95 7600 done
cannam@95 7601 if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then
cannam@95 7602 dependency_libs="$temp_xrpath $dependency_libs"
cannam@95 7603 fi
cannam@95 7604 fi
cannam@95 7605
cannam@95 7606 # Make sure dlfiles contains only unique files that won't be dlpreopened
cannam@95 7607 old_dlfiles="$dlfiles"
cannam@95 7608 dlfiles=
cannam@95 7609 for lib in $old_dlfiles; do
cannam@95 7610 case " $dlprefiles $dlfiles " in
cannam@95 7611 *" $lib "*) ;;
cannam@95 7612 *) func_append dlfiles " $lib" ;;
cannam@95 7613 esac
cannam@95 7614 done
cannam@95 7615
cannam@95 7616 # Make sure dlprefiles contains only unique files
cannam@95 7617 old_dlprefiles="$dlprefiles"
cannam@95 7618 dlprefiles=
cannam@95 7619 for lib in $old_dlprefiles; do
cannam@95 7620 case "$dlprefiles " in
cannam@95 7621 *" $lib "*) ;;
cannam@95 7622 *) func_append dlprefiles " $lib" ;;
cannam@95 7623 esac
cannam@95 7624 done
cannam@95 7625
cannam@95 7626 if test "$build_libtool_libs" = yes; then
cannam@95 7627 if test -n "$rpath"; then
cannam@95 7628 case $host in
cannam@95 7629 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*)
cannam@95 7630 # these systems don't actually have a c library (as such)!
cannam@95 7631 ;;
cannam@95 7632 *-*-rhapsody* | *-*-darwin1.[012])
cannam@95 7633 # Rhapsody C library is in the System framework
cannam@95 7634 func_append deplibs " System.ltframework"
cannam@95 7635 ;;
cannam@95 7636 *-*-netbsd*)
cannam@95 7637 # Don't link with libc until the a.out ld.so is fixed.
cannam@95 7638 ;;
cannam@95 7639 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
cannam@95 7640 # Do not include libc due to us having libc/libc_r.
cannam@95 7641 ;;
cannam@95 7642 *-*-sco3.2v5* | *-*-sco5v6*)
cannam@95 7643 # Causes problems with __ctype
cannam@95 7644 ;;
cannam@95 7645 *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
cannam@95 7646 # Compiler inserts libc in the correct place for threads to work
cannam@95 7647 ;;
cannam@95 7648 *)
cannam@95 7649 # Add libc to deplibs on all other systems if necessary.
cannam@95 7650 if test "$build_libtool_need_lc" = "yes"; then
cannam@95 7651 func_append deplibs " -lc"
cannam@95 7652 fi
cannam@95 7653 ;;
cannam@95 7654 esac
cannam@95 7655 fi
cannam@95 7656
cannam@95 7657 # Transform deplibs into only deplibs that can be linked in shared.
cannam@95 7658 name_save=$name
cannam@95 7659 libname_save=$libname
cannam@95 7660 release_save=$release
cannam@95 7661 versuffix_save=$versuffix
cannam@95 7662 major_save=$major
cannam@95 7663 # I'm not sure if I'm treating the release correctly. I think
cannam@95 7664 # release should show up in the -l (ie -lgmp5) so we don't want to
cannam@95 7665 # add it in twice. Is that correct?
cannam@95 7666 release=""
cannam@95 7667 versuffix=""
cannam@95 7668 major=""
cannam@95 7669 newdeplibs=
cannam@95 7670 droppeddeps=no
cannam@95 7671 case $deplibs_check_method in
cannam@95 7672 pass_all)
cannam@95 7673 # Don't check for shared/static. Everything works.
cannam@95 7674 # This might be a little naive. We might want to check
cannam@95 7675 # whether the library exists or not. But this is on
cannam@95 7676 # osf3 & osf4 and I'm not really sure... Just
cannam@95 7677 # implementing what was already the behavior.
cannam@95 7678 newdeplibs=$deplibs
cannam@95 7679 ;;
cannam@95 7680 test_compile)
cannam@95 7681 # This code stresses the "libraries are programs" paradigm to its
cannam@95 7682 # limits. Maybe even breaks it. We compile a program, linking it
cannam@95 7683 # against the deplibs as a proxy for the library. Then we can check
cannam@95 7684 # whether they linked in statically or dynamically with ldd.
cannam@95 7685 $opt_dry_run || $RM conftest.c
cannam@95 7686 cat > conftest.c <<EOF
cannam@95 7687 int main() { return 0; }
cannam@95 7688 EOF
cannam@95 7689 $opt_dry_run || $RM conftest
cannam@95 7690 if $LTCC $LTCFLAGS -o conftest conftest.c $deplibs; then
cannam@95 7691 ldd_output=`ldd conftest`
cannam@95 7692 for i in $deplibs; do
cannam@95 7693 case $i in
cannam@95 7694 -l*)
cannam@95 7695 func_stripname -l '' "$i"
cannam@95 7696 name=$func_stripname_result
cannam@95 7697 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@95 7698 case " $predeps $postdeps " in
cannam@95 7699 *" $i "*)
cannam@95 7700 func_append newdeplibs " $i"
cannam@95 7701 i=""
cannam@95 7702 ;;
cannam@95 7703 esac
cannam@95 7704 fi
cannam@95 7705 if test -n "$i" ; then
cannam@95 7706 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@95 7707 deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
cannam@95 7708 set dummy $deplib_matches; shift
cannam@95 7709 deplib_match=$1
cannam@95 7710 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
cannam@95 7711 func_append newdeplibs " $i"
cannam@95 7712 else
cannam@95 7713 droppeddeps=yes
cannam@95 7714 echo
cannam@95 7715 $ECHO "*** Warning: dynamic linker does not accept needed library $i."
cannam@95 7716 echo "*** I have the capability to make that library automatically link in when"
cannam@95 7717 echo "*** you link to this library. But I can only do this if you have a"
cannam@95 7718 echo "*** shared version of the library, which I believe you do not have"
cannam@95 7719 echo "*** because a test_compile did reveal that the linker did not use it for"
cannam@95 7720 echo "*** its dynamic dependency list that programs get resolved with at runtime."
cannam@95 7721 fi
cannam@95 7722 fi
cannam@95 7723 ;;
cannam@95 7724 *)
cannam@95 7725 func_append newdeplibs " $i"
cannam@95 7726 ;;
cannam@95 7727 esac
cannam@95 7728 done
cannam@95 7729 else
cannam@95 7730 # Error occurred in the first compile. Let's try to salvage
cannam@95 7731 # the situation: Compile a separate program for each library.
cannam@95 7732 for i in $deplibs; do
cannam@95 7733 case $i in
cannam@95 7734 -l*)
cannam@95 7735 func_stripname -l '' "$i"
cannam@95 7736 name=$func_stripname_result
cannam@95 7737 $opt_dry_run || $RM conftest
cannam@95 7738 if $LTCC $LTCFLAGS -o conftest conftest.c $i; then
cannam@95 7739 ldd_output=`ldd conftest`
cannam@95 7740 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@95 7741 case " $predeps $postdeps " in
cannam@95 7742 *" $i "*)
cannam@95 7743 func_append newdeplibs " $i"
cannam@95 7744 i=""
cannam@95 7745 ;;
cannam@95 7746 esac
cannam@95 7747 fi
cannam@95 7748 if test -n "$i" ; then
cannam@95 7749 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@95 7750 deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
cannam@95 7751 set dummy $deplib_matches; shift
cannam@95 7752 deplib_match=$1
cannam@95 7753 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
cannam@95 7754 func_append newdeplibs " $i"
cannam@95 7755 else
cannam@95 7756 droppeddeps=yes
cannam@95 7757 echo
cannam@95 7758 $ECHO "*** Warning: dynamic linker does not accept needed library $i."
cannam@95 7759 echo "*** I have the capability to make that library automatically link in when"
cannam@95 7760 echo "*** you link to this library. But I can only do this if you have a"
cannam@95 7761 echo "*** shared version of the library, which you do not appear to have"
cannam@95 7762 echo "*** because a test_compile did reveal that the linker did not use this one"
cannam@95 7763 echo "*** as a dynamic dependency that programs can get resolved with at runtime."
cannam@95 7764 fi
cannam@95 7765 fi
cannam@95 7766 else
cannam@95 7767 droppeddeps=yes
cannam@95 7768 echo
cannam@95 7769 $ECHO "*** Warning! Library $i is needed by this library but I was not able to"
cannam@95 7770 echo "*** make it link in! You will probably need to install it or some"
cannam@95 7771 echo "*** library that it depends on before this library will be fully"
cannam@95 7772 echo "*** functional. Installing it before continuing would be even better."
cannam@95 7773 fi
cannam@95 7774 ;;
cannam@95 7775 *)
cannam@95 7776 func_append newdeplibs " $i"
cannam@95 7777 ;;
cannam@95 7778 esac
cannam@95 7779 done
cannam@95 7780 fi
cannam@95 7781 ;;
cannam@95 7782 file_magic*)
cannam@95 7783 set dummy $deplibs_check_method; shift
cannam@95 7784 file_magic_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
cannam@95 7785 for a_deplib in $deplibs; do
cannam@95 7786 case $a_deplib in
cannam@95 7787 -l*)
cannam@95 7788 func_stripname -l '' "$a_deplib"
cannam@95 7789 name=$func_stripname_result
cannam@95 7790 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@95 7791 case " $predeps $postdeps " in
cannam@95 7792 *" $a_deplib "*)
cannam@95 7793 func_append newdeplibs " $a_deplib"
cannam@95 7794 a_deplib=""
cannam@95 7795 ;;
cannam@95 7796 esac
cannam@95 7797 fi
cannam@95 7798 if test -n "$a_deplib" ; then
cannam@95 7799 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@95 7800 if test -n "$file_magic_glob"; then
cannam@95 7801 libnameglob=`func_echo_all "$libname" | $SED -e $file_magic_glob`
cannam@95 7802 else
cannam@95 7803 libnameglob=$libname
cannam@95 7804 fi
cannam@95 7805 test "$want_nocaseglob" = yes && nocaseglob=`shopt -p nocaseglob`
cannam@95 7806 for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
cannam@95 7807 if test "$want_nocaseglob" = yes; then
cannam@95 7808 shopt -s nocaseglob
cannam@95 7809 potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`
cannam@95 7810 $nocaseglob
cannam@95 7811 else
cannam@95 7812 potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`
cannam@95 7813 fi
cannam@95 7814 for potent_lib in $potential_libs; do
cannam@95 7815 # Follow soft links.
cannam@95 7816 if ls -lLd "$potent_lib" 2>/dev/null |
cannam@95 7817 $GREP " -> " >/dev/null; then
cannam@95 7818 continue
cannam@95 7819 fi
cannam@95 7820 # The statement above tries to avoid entering an
cannam@95 7821 # endless loop below, in case of cyclic links.
cannam@95 7822 # We might still enter an endless loop, since a link
cannam@95 7823 # loop can be closed while we follow links,
cannam@95 7824 # but so what?
cannam@95 7825 potlib="$potent_lib"
cannam@95 7826 while test -h "$potlib" 2>/dev/null; do
cannam@95 7827 potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'`
cannam@95 7828 case $potliblink in
cannam@95 7829 [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
cannam@95 7830 *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";;
cannam@95 7831 esac
cannam@95 7832 done
cannam@95 7833 if eval $file_magic_cmd \"\$potlib\" 2>/dev/null |
cannam@95 7834 $SED -e 10q |
cannam@95 7835 $EGREP "$file_magic_regex" > /dev/null; then
cannam@95 7836 func_append newdeplibs " $a_deplib"
cannam@95 7837 a_deplib=""
cannam@95 7838 break 2
cannam@95 7839 fi
cannam@95 7840 done
cannam@95 7841 done
cannam@95 7842 fi
cannam@95 7843 if test -n "$a_deplib" ; then
cannam@95 7844 droppeddeps=yes
cannam@95 7845 echo
cannam@95 7846 $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
cannam@95 7847 echo "*** I have the capability to make that library automatically link in when"
cannam@95 7848 echo "*** you link to this library. But I can only do this if you have a"
cannam@95 7849 echo "*** shared version of the library, which you do not appear to have"
cannam@95 7850 echo "*** because I did check the linker path looking for a file starting"
cannam@95 7851 if test -z "$potlib" ; then
cannam@95 7852 $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
cannam@95 7853 else
cannam@95 7854 $ECHO "*** with $libname and none of the candidates passed a file format test"
cannam@95 7855 $ECHO "*** using a file magic. Last file checked: $potlib"
cannam@95 7856 fi
cannam@95 7857 fi
cannam@95 7858 ;;
cannam@95 7859 *)
cannam@95 7860 # Add a -L argument.
cannam@95 7861 func_append newdeplibs " $a_deplib"
cannam@95 7862 ;;
cannam@95 7863 esac
cannam@95 7864 done # Gone through all deplibs.
cannam@95 7865 ;;
cannam@95 7866 match_pattern*)
cannam@95 7867 set dummy $deplibs_check_method; shift
cannam@95 7868 match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
cannam@95 7869 for a_deplib in $deplibs; do
cannam@95 7870 case $a_deplib in
cannam@95 7871 -l*)
cannam@95 7872 func_stripname -l '' "$a_deplib"
cannam@95 7873 name=$func_stripname_result
cannam@95 7874 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@95 7875 case " $predeps $postdeps " in
cannam@95 7876 *" $a_deplib "*)
cannam@95 7877 func_append newdeplibs " $a_deplib"
cannam@95 7878 a_deplib=""
cannam@95 7879 ;;
cannam@95 7880 esac
cannam@95 7881 fi
cannam@95 7882 if test -n "$a_deplib" ; then
cannam@95 7883 libname=`eval "\\$ECHO \"$libname_spec\""`
cannam@95 7884 for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
cannam@95 7885 potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
cannam@95 7886 for potent_lib in $potential_libs; do
cannam@95 7887 potlib="$potent_lib" # see symlink-check above in file_magic test
cannam@95 7888 if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \
cannam@95 7889 $EGREP "$match_pattern_regex" > /dev/null; then
cannam@95 7890 func_append newdeplibs " $a_deplib"
cannam@95 7891 a_deplib=""
cannam@95 7892 break 2
cannam@95 7893 fi
cannam@95 7894 done
cannam@95 7895 done
cannam@95 7896 fi
cannam@95 7897 if test -n "$a_deplib" ; then
cannam@95 7898 droppeddeps=yes
cannam@95 7899 echo
cannam@95 7900 $ECHO "*** Warning: linker path does not have real file for library $a_deplib."
cannam@95 7901 echo "*** I have the capability to make that library automatically link in when"
cannam@95 7902 echo "*** you link to this library. But I can only do this if you have a"
cannam@95 7903 echo "*** shared version of the library, which you do not appear to have"
cannam@95 7904 echo "*** because I did check the linker path looking for a file starting"
cannam@95 7905 if test -z "$potlib" ; then
cannam@95 7906 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
cannam@95 7907 else
cannam@95 7908 $ECHO "*** with $libname and none of the candidates passed a file format test"
cannam@95 7909 $ECHO "*** using a regex pattern. Last file checked: $potlib"
cannam@95 7910 fi
cannam@95 7911 fi
cannam@95 7912 ;;
cannam@95 7913 *)
cannam@95 7914 # Add a -L argument.
cannam@95 7915 func_append newdeplibs " $a_deplib"
cannam@95 7916 ;;
cannam@95 7917 esac
cannam@95 7918 done # Gone through all deplibs.
cannam@95 7919 ;;
cannam@95 7920 none | unknown | *)
cannam@95 7921 newdeplibs=""
cannam@95 7922 tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'`
cannam@95 7923 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
cannam@95 7924 for i in $predeps $postdeps ; do
cannam@95 7925 # can't use Xsed below, because $i might contain '/'
cannam@95 7926 tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"`
cannam@95 7927 done
cannam@95 7928 fi
cannam@95 7929 case $tmp_deplibs in
cannam@95 7930 *[!\ \ ]*)
cannam@95 7931 echo
cannam@95 7932 if test "X$deplibs_check_method" = "Xnone"; then
cannam@95 7933 echo "*** Warning: inter-library dependencies are not supported in this platform."
cannam@95 7934 else
cannam@95 7935 echo "*** Warning: inter-library dependencies are not known to be supported."
cannam@95 7936 fi
cannam@95 7937 echo "*** All declared inter-library dependencies are being dropped."
cannam@95 7938 droppeddeps=yes
cannam@95 7939 ;;
cannam@95 7940 esac
cannam@95 7941 ;;
cannam@95 7942 esac
cannam@95 7943 versuffix=$versuffix_save
cannam@95 7944 major=$major_save
cannam@95 7945 release=$release_save
cannam@95 7946 libname=$libname_save
cannam@95 7947 name=$name_save
cannam@95 7948
cannam@95 7949 case $host in
cannam@95 7950 *-*-rhapsody* | *-*-darwin1.[012])
cannam@95 7951 # On Rhapsody replace the C library with the System framework
cannam@95 7952 newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'`
cannam@95 7953 ;;
cannam@95 7954 esac
cannam@95 7955
cannam@95 7956 if test "$droppeddeps" = yes; then
cannam@95 7957 if test "$module" = yes; then
cannam@95 7958 echo
cannam@95 7959 echo "*** Warning: libtool could not satisfy all declared inter-library"
cannam@95 7960 $ECHO "*** dependencies of module $libname. Therefore, libtool will create"
cannam@95 7961 echo "*** a static module, that should work as long as the dlopening"
cannam@95 7962 echo "*** application is linked with the -dlopen flag."
cannam@95 7963 if test -z "$global_symbol_pipe"; then
cannam@95 7964 echo
cannam@95 7965 echo "*** However, this would only work if libtool was able to extract symbol"
cannam@95 7966 echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
cannam@95 7967 echo "*** not find such a program. So, this module is probably useless."
cannam@95 7968 echo "*** \`nm' from GNU binutils and a full rebuild may help."
cannam@95 7969 fi
cannam@95 7970 if test "$build_old_libs" = no; then
cannam@95 7971 oldlibs="$output_objdir/$libname.$libext"
cannam@95 7972 build_libtool_libs=module
cannam@95 7973 build_old_libs=yes
cannam@95 7974 else
cannam@95 7975 build_libtool_libs=no
cannam@95 7976 fi
cannam@95 7977 else
cannam@95 7978 echo "*** The inter-library dependencies that have been dropped here will be"
cannam@95 7979 echo "*** automatically added whenever a program is linked with this library"
cannam@95 7980 echo "*** or is declared to -dlopen it."
cannam@95 7981
cannam@95 7982 if test "$allow_undefined" = no; then
cannam@95 7983 echo
cannam@95 7984 echo "*** Since this library must not contain undefined symbols,"
cannam@95 7985 echo "*** because either the platform does not support them or"
cannam@95 7986 echo "*** it was explicitly requested with -no-undefined,"
cannam@95 7987 echo "*** libtool will only create a static version of it."
cannam@95 7988 if test "$build_old_libs" = no; then
cannam@95 7989 oldlibs="$output_objdir/$libname.$libext"
cannam@95 7990 build_libtool_libs=module
cannam@95 7991 build_old_libs=yes
cannam@95 7992 else
cannam@95 7993 build_libtool_libs=no
cannam@95 7994 fi
cannam@95 7995 fi
cannam@95 7996 fi
cannam@95 7997 fi
cannam@95 7998 # Done checking deplibs!
cannam@95 7999 deplibs=$newdeplibs
cannam@95 8000 fi
cannam@95 8001 # Time to change all our "foo.ltframework" stuff back to "-framework foo"
cannam@95 8002 case $host in
cannam@95 8003 *-*-darwin*)
cannam@95 8004 newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@95 8005 new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@95 8006 deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@95 8007 ;;
cannam@95 8008 esac
cannam@95 8009
cannam@95 8010 # move library search paths that coincide with paths to not yet
cannam@95 8011 # installed libraries to the beginning of the library search list
cannam@95 8012 new_libs=
cannam@95 8013 for path in $notinst_path; do
cannam@95 8014 case " $new_libs " in
cannam@95 8015 *" -L$path/$objdir "*) ;;
cannam@95 8016 *)
cannam@95 8017 case " $deplibs " in
cannam@95 8018 *" -L$path/$objdir "*)
cannam@95 8019 func_append new_libs " -L$path/$objdir" ;;
cannam@95 8020 esac
cannam@95 8021 ;;
cannam@95 8022 esac
cannam@95 8023 done
cannam@95 8024 for deplib in $deplibs; do
cannam@95 8025 case $deplib in
cannam@95 8026 -L*)
cannam@95 8027 case " $new_libs " in
cannam@95 8028 *" $deplib "*) ;;
cannam@95 8029 *) func_append new_libs " $deplib" ;;
cannam@95 8030 esac
cannam@95 8031 ;;
cannam@95 8032 *) func_append new_libs " $deplib" ;;
cannam@95 8033 esac
cannam@95 8034 done
cannam@95 8035 deplibs="$new_libs"
cannam@95 8036
cannam@95 8037 # All the library-specific variables (install_libdir is set above).
cannam@95 8038 library_names=
cannam@95 8039 old_library=
cannam@95 8040 dlname=
cannam@95 8041
cannam@95 8042 # Test again, we may have decided not to build it any more
cannam@95 8043 if test "$build_libtool_libs" = yes; then
cannam@95 8044 # Remove ${wl} instances when linking with ld.
cannam@95 8045 # FIXME: should test the right _cmds variable.
cannam@95 8046 case $archive_cmds in
cannam@95 8047 *\$LD\ *) wl= ;;
cannam@95 8048 esac
cannam@95 8049 if test "$hardcode_into_libs" = yes; then
cannam@95 8050 # Hardcode the library paths
cannam@95 8051 hardcode_libdirs=
cannam@95 8052 dep_rpath=
cannam@95 8053 rpath="$finalize_rpath"
cannam@95 8054 test "$opt_mode" != relink && rpath="$compile_rpath$rpath"
cannam@95 8055 for libdir in $rpath; do
cannam@95 8056 if test -n "$hardcode_libdir_flag_spec"; then
cannam@95 8057 if test -n "$hardcode_libdir_separator"; then
cannam@95 8058 func_replace_sysroot "$libdir"
cannam@95 8059 libdir=$func_replace_sysroot_result
cannam@95 8060 if test -z "$hardcode_libdirs"; then
cannam@95 8061 hardcode_libdirs="$libdir"
cannam@95 8062 else
cannam@95 8063 # Just accumulate the unique libdirs.
cannam@95 8064 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@95 8065 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@95 8066 ;;
cannam@95 8067 *)
cannam@95 8068 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
cannam@95 8069 ;;
cannam@95 8070 esac
cannam@95 8071 fi
cannam@95 8072 else
cannam@95 8073 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@95 8074 func_append dep_rpath " $flag"
cannam@95 8075 fi
cannam@95 8076 elif test -n "$runpath_var"; then
cannam@95 8077 case "$perm_rpath " in
cannam@95 8078 *" $libdir "*) ;;
cannam@95 8079 *) func_append perm_rpath " $libdir" ;;
cannam@95 8080 esac
cannam@95 8081 fi
cannam@95 8082 done
cannam@95 8083 # Substitute the hardcoded libdirs into the rpath.
cannam@95 8084 if test -n "$hardcode_libdir_separator" &&
cannam@95 8085 test -n "$hardcode_libdirs"; then
cannam@95 8086 libdir="$hardcode_libdirs"
cannam@95 8087 eval "dep_rpath=\"$hardcode_libdir_flag_spec\""
cannam@95 8088 fi
cannam@95 8089 if test -n "$runpath_var" && test -n "$perm_rpath"; then
cannam@95 8090 # We should set the runpath_var.
cannam@95 8091 rpath=
cannam@95 8092 for dir in $perm_rpath; do
cannam@95 8093 func_append rpath "$dir:"
cannam@95 8094 done
cannam@95 8095 eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var"
cannam@95 8096 fi
cannam@95 8097 test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs"
cannam@95 8098 fi
cannam@95 8099
cannam@95 8100 shlibpath="$finalize_shlibpath"
cannam@95 8101 test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath"
cannam@95 8102 if test -n "$shlibpath"; then
cannam@95 8103 eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var"
cannam@95 8104 fi
cannam@95 8105
cannam@95 8106 # Get the real and link names of the library.
cannam@95 8107 eval shared_ext=\"$shrext_cmds\"
cannam@95 8108 eval library_names=\"$library_names_spec\"
cannam@95 8109 set dummy $library_names
cannam@95 8110 shift
cannam@95 8111 realname="$1"
cannam@95 8112 shift
cannam@95 8113
cannam@95 8114 if test -n "$soname_spec"; then
cannam@95 8115 eval soname=\"$soname_spec\"
cannam@95 8116 else
cannam@95 8117 soname="$realname"
cannam@95 8118 fi
cannam@95 8119 if test -z "$dlname"; then
cannam@95 8120 dlname=$soname
cannam@95 8121 fi
cannam@95 8122
cannam@95 8123 lib="$output_objdir/$realname"
cannam@95 8124 linknames=
cannam@95 8125 for link
cannam@95 8126 do
cannam@95 8127 func_append linknames " $link"
cannam@95 8128 done
cannam@95 8129
cannam@95 8130 # Use standard objects if they are pic
cannam@95 8131 test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@95 8132 test "X$libobjs" = "X " && libobjs=
cannam@95 8133
cannam@95 8134 delfiles=
cannam@95 8135 if test -n "$export_symbols" && test -n "$include_expsyms"; then
cannam@95 8136 $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp"
cannam@95 8137 export_symbols="$output_objdir/$libname.uexp"
cannam@95 8138 func_append delfiles " $export_symbols"
cannam@95 8139 fi
cannam@95 8140
cannam@95 8141 orig_export_symbols=
cannam@95 8142 case $host_os in
cannam@95 8143 cygwin* | mingw* | cegcc*)
cannam@95 8144 if test -n "$export_symbols" && test -z "$export_symbols_regex"; then
cannam@95 8145 # exporting using user supplied symfile
cannam@95 8146 if test "x`$SED 1q $export_symbols`" != xEXPORTS; then
cannam@95 8147 # and it's NOT already a .def file. Must figure out
cannam@95 8148 # which of the given symbols are data symbols and tag
cannam@95 8149 # them as such. So, trigger use of export_symbols_cmds.
cannam@95 8150 # export_symbols gets reassigned inside the "prepare
cannam@95 8151 # the list of exported symbols" if statement, so the
cannam@95 8152 # include_expsyms logic still works.
cannam@95 8153 orig_export_symbols="$export_symbols"
cannam@95 8154 export_symbols=
cannam@95 8155 always_export_symbols=yes
cannam@95 8156 fi
cannam@95 8157 fi
cannam@95 8158 ;;
cannam@95 8159 esac
cannam@95 8160
cannam@95 8161 # Prepare the list of exported symbols
cannam@95 8162 if test -z "$export_symbols"; then
cannam@95 8163 if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
cannam@95 8164 func_verbose "generating symbol list for \`$libname.la'"
cannam@95 8165 export_symbols="$output_objdir/$libname.exp"
cannam@95 8166 $opt_dry_run || $RM $export_symbols
cannam@95 8167 cmds=$export_symbols_cmds
cannam@95 8168 save_ifs="$IFS"; IFS='~'
cannam@95 8169 for cmd1 in $cmds; do
cannam@95 8170 IFS="$save_ifs"
cannam@95 8171 # Take the normal branch if the nm_file_list_spec branch
cannam@95 8172 # doesn't work or if tool conversion is not needed.
cannam@95 8173 case $nm_file_list_spec~$to_tool_file_cmd in
cannam@95 8174 *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*)
cannam@95 8175 try_normal_branch=yes
cannam@95 8176 eval cmd=\"$cmd1\"
cannam@95 8177 func_len " $cmd"
cannam@95 8178 len=$func_len_result
cannam@95 8179 ;;
cannam@95 8180 *)
cannam@95 8181 try_normal_branch=no
cannam@95 8182 ;;
cannam@95 8183 esac
cannam@95 8184 if test "$try_normal_branch" = yes \
cannam@95 8185 && { test "$len" -lt "$max_cmd_len" \
cannam@95 8186 || test "$max_cmd_len" -le -1; }
cannam@95 8187 then
cannam@95 8188 func_show_eval "$cmd" 'exit $?'
cannam@95 8189 skipped_export=false
cannam@95 8190 elif test -n "$nm_file_list_spec"; then
cannam@95 8191 func_basename "$output"
cannam@95 8192 output_la=$func_basename_result
cannam@95 8193 save_libobjs=$libobjs
cannam@95 8194 save_output=$output
cannam@95 8195 output=${output_objdir}/${output_la}.nm
cannam@95 8196 func_to_tool_file "$output"
cannam@95 8197 libobjs=$nm_file_list_spec$func_to_tool_file_result
cannam@95 8198 func_append delfiles " $output"
cannam@95 8199 func_verbose "creating $NM input file list: $output"
cannam@95 8200 for obj in $save_libobjs; do
cannam@95 8201 func_to_tool_file "$obj"
cannam@95 8202 $ECHO "$func_to_tool_file_result"
cannam@95 8203 done > "$output"
cannam@95 8204 eval cmd=\"$cmd1\"
cannam@95 8205 func_show_eval "$cmd" 'exit $?'
cannam@95 8206 output=$save_output
cannam@95 8207 libobjs=$save_libobjs
cannam@95 8208 skipped_export=false
cannam@95 8209 else
cannam@95 8210 # The command line is too long to execute in one step.
cannam@95 8211 func_verbose "using reloadable object file for export list..."
cannam@95 8212 skipped_export=:
cannam@95 8213 # Break out early, otherwise skipped_export may be
cannam@95 8214 # set to false by a later but shorter cmd.
cannam@95 8215 break
cannam@95 8216 fi
cannam@95 8217 done
cannam@95 8218 IFS="$save_ifs"
cannam@95 8219 if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then
cannam@95 8220 func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
cannam@95 8221 func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
cannam@95 8222 fi
cannam@95 8223 fi
cannam@95 8224 fi
cannam@95 8225
cannam@95 8226 if test -n "$export_symbols" && test -n "$include_expsyms"; then
cannam@95 8227 tmp_export_symbols="$export_symbols"
cannam@95 8228 test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
cannam@95 8229 $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"'
cannam@95 8230 fi
cannam@95 8231
cannam@95 8232 if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then
cannam@95 8233 # The given exports_symbols file has to be filtered, so filter it.
cannam@95 8234 func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
cannam@95 8235 # FIXME: $output_objdir/$libname.filter potentially contains lots of
cannam@95 8236 # 's' commands which not all seds can handle. GNU sed should be fine
cannam@95 8237 # though. Also, the filter scales superlinearly with the number of
cannam@95 8238 # global variables. join(1) would be nice here, but unfortunately
cannam@95 8239 # isn't a blessed tool.
cannam@95 8240 $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter
cannam@95 8241 func_append delfiles " $export_symbols $output_objdir/$libname.filter"
cannam@95 8242 export_symbols=$output_objdir/$libname.def
cannam@95 8243 $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
cannam@95 8244 fi
cannam@95 8245
cannam@95 8246 tmp_deplibs=
cannam@95 8247 for test_deplib in $deplibs; do
cannam@95 8248 case " $convenience " in
cannam@95 8249 *" $test_deplib "*) ;;
cannam@95 8250 *)
cannam@95 8251 func_append tmp_deplibs " $test_deplib"
cannam@95 8252 ;;
cannam@95 8253 esac
cannam@95 8254 done
cannam@95 8255 deplibs="$tmp_deplibs"
cannam@95 8256
cannam@95 8257 if test -n "$convenience"; then
cannam@95 8258 if test -n "$whole_archive_flag_spec" &&
cannam@95 8259 test "$compiler_needs_object" = yes &&
cannam@95 8260 test -z "$libobjs"; then
cannam@95 8261 # extract the archives, so we have objects to list.
cannam@95 8262 # TODO: could optimize this to just extract one archive.
cannam@95 8263 whole_archive_flag_spec=
cannam@95 8264 fi
cannam@95 8265 if test -n "$whole_archive_flag_spec"; then
cannam@95 8266 save_libobjs=$libobjs
cannam@95 8267 eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
cannam@95 8268 test "X$libobjs" = "X " && libobjs=
cannam@95 8269 else
cannam@95 8270 gentop="$output_objdir/${outputname}x"
cannam@95 8271 func_append generated " $gentop"
cannam@95 8272
cannam@95 8273 func_extract_archives $gentop $convenience
cannam@95 8274 func_append libobjs " $func_extract_archives_result"
cannam@95 8275 test "X$libobjs" = "X " && libobjs=
cannam@95 8276 fi
cannam@95 8277 fi
cannam@95 8278
cannam@95 8279 if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
cannam@95 8280 eval flag=\"$thread_safe_flag_spec\"
cannam@95 8281 func_append linker_flags " $flag"
cannam@95 8282 fi
cannam@95 8283
cannam@95 8284 # Make a backup of the uninstalled library when relinking
cannam@95 8285 if test "$opt_mode" = relink; then
cannam@95 8286 $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $?
cannam@95 8287 fi
cannam@95 8288
cannam@95 8289 # Do each of the archive commands.
cannam@95 8290 if test "$module" = yes && test -n "$module_cmds" ; then
cannam@95 8291 if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
cannam@95 8292 eval test_cmds=\"$module_expsym_cmds\"
cannam@95 8293 cmds=$module_expsym_cmds
cannam@95 8294 else
cannam@95 8295 eval test_cmds=\"$module_cmds\"
cannam@95 8296 cmds=$module_cmds
cannam@95 8297 fi
cannam@95 8298 else
cannam@95 8299 if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
cannam@95 8300 eval test_cmds=\"$archive_expsym_cmds\"
cannam@95 8301 cmds=$archive_expsym_cmds
cannam@95 8302 else
cannam@95 8303 eval test_cmds=\"$archive_cmds\"
cannam@95 8304 cmds=$archive_cmds
cannam@95 8305 fi
cannam@95 8306 fi
cannam@95 8307
cannam@95 8308 if test "X$skipped_export" != "X:" &&
cannam@95 8309 func_len " $test_cmds" &&
cannam@95 8310 len=$func_len_result &&
cannam@95 8311 test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
cannam@95 8312 :
cannam@95 8313 else
cannam@95 8314 # The command line is too long to link in one step, link piecewise
cannam@95 8315 # or, if using GNU ld and skipped_export is not :, use a linker
cannam@95 8316 # script.
cannam@95 8317
cannam@95 8318 # Save the value of $output and $libobjs because we want to
cannam@95 8319 # use them later. If we have whole_archive_flag_spec, we
cannam@95 8320 # want to use save_libobjs as it was before
cannam@95 8321 # whole_archive_flag_spec was expanded, because we can't
cannam@95 8322 # assume the linker understands whole_archive_flag_spec.
cannam@95 8323 # This may have to be revisited, in case too many
cannam@95 8324 # convenience libraries get linked in and end up exceeding
cannam@95 8325 # the spec.
cannam@95 8326 if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then
cannam@95 8327 save_libobjs=$libobjs
cannam@95 8328 fi
cannam@95 8329 save_output=$output
cannam@95 8330 func_basename "$output"
cannam@95 8331 output_la=$func_basename_result
cannam@95 8332
cannam@95 8333 # Clear the reloadable object creation command queue and
cannam@95 8334 # initialize k to one.
cannam@95 8335 test_cmds=
cannam@95 8336 concat_cmds=
cannam@95 8337 objlist=
cannam@95 8338 last_robj=
cannam@95 8339 k=1
cannam@95 8340
cannam@95 8341 if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then
cannam@95 8342 output=${output_objdir}/${output_la}.lnkscript
cannam@95 8343 func_verbose "creating GNU ld script: $output"
cannam@95 8344 echo 'INPUT (' > $output
cannam@95 8345 for obj in $save_libobjs
cannam@95 8346 do
cannam@95 8347 func_to_tool_file "$obj"
cannam@95 8348 $ECHO "$func_to_tool_file_result" >> $output
cannam@95 8349 done
cannam@95 8350 echo ')' >> $output
cannam@95 8351 func_append delfiles " $output"
cannam@95 8352 func_to_tool_file "$output"
cannam@95 8353 output=$func_to_tool_file_result
cannam@95 8354 elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then
cannam@95 8355 output=${output_objdir}/${output_la}.lnk
cannam@95 8356 func_verbose "creating linker input file list: $output"
cannam@95 8357 : > $output
cannam@95 8358 set x $save_libobjs
cannam@95 8359 shift
cannam@95 8360 firstobj=
cannam@95 8361 if test "$compiler_needs_object" = yes; then
cannam@95 8362 firstobj="$1 "
cannam@95 8363 shift
cannam@95 8364 fi
cannam@95 8365 for obj
cannam@95 8366 do
cannam@95 8367 func_to_tool_file "$obj"
cannam@95 8368 $ECHO "$func_to_tool_file_result" >> $output
cannam@95 8369 done
cannam@95 8370 func_append delfiles " $output"
cannam@95 8371 func_to_tool_file "$output"
cannam@95 8372 output=$firstobj\"$file_list_spec$func_to_tool_file_result\"
cannam@95 8373 else
cannam@95 8374 if test -n "$save_libobjs"; then
cannam@95 8375 func_verbose "creating reloadable object files..."
cannam@95 8376 output=$output_objdir/$output_la-${k}.$objext
cannam@95 8377 eval test_cmds=\"$reload_cmds\"
cannam@95 8378 func_len " $test_cmds"
cannam@95 8379 len0=$func_len_result
cannam@95 8380 len=$len0
cannam@95 8381
cannam@95 8382 # Loop over the list of objects to be linked.
cannam@95 8383 for obj in $save_libobjs
cannam@95 8384 do
cannam@95 8385 func_len " $obj"
cannam@95 8386 func_arith $len + $func_len_result
cannam@95 8387 len=$func_arith_result
cannam@95 8388 if test "X$objlist" = X ||
cannam@95 8389 test "$len" -lt "$max_cmd_len"; then
cannam@95 8390 func_append objlist " $obj"
cannam@95 8391 else
cannam@95 8392 # The command $test_cmds is almost too long, add a
cannam@95 8393 # command to the queue.
cannam@95 8394 if test "$k" -eq 1 ; then
cannam@95 8395 # The first file doesn't have a previous command to add.
cannam@95 8396 reload_objs=$objlist
cannam@95 8397 eval concat_cmds=\"$reload_cmds\"
cannam@95 8398 else
cannam@95 8399 # All subsequent reloadable object files will link in
cannam@95 8400 # the last one created.
cannam@95 8401 reload_objs="$objlist $last_robj"
cannam@95 8402 eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\"
cannam@95 8403 fi
cannam@95 8404 last_robj=$output_objdir/$output_la-${k}.$objext
cannam@95 8405 func_arith $k + 1
cannam@95 8406 k=$func_arith_result
cannam@95 8407 output=$output_objdir/$output_la-${k}.$objext
cannam@95 8408 objlist=" $obj"
cannam@95 8409 func_len " $last_robj"
cannam@95 8410 func_arith $len0 + $func_len_result
cannam@95 8411 len=$func_arith_result
cannam@95 8412 fi
cannam@95 8413 done
cannam@95 8414 # Handle the remaining objects by creating one last
cannam@95 8415 # reloadable object file. All subsequent reloadable object
cannam@95 8416 # files will link in the last one created.
cannam@95 8417 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
cannam@95 8418 reload_objs="$objlist $last_robj"
cannam@95 8419 eval concat_cmds=\"\${concat_cmds}$reload_cmds\"
cannam@95 8420 if test -n "$last_robj"; then
cannam@95 8421 eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\"
cannam@95 8422 fi
cannam@95 8423 func_append delfiles " $output"
cannam@95 8424
cannam@95 8425 else
cannam@95 8426 output=
cannam@95 8427 fi
cannam@95 8428
cannam@95 8429 if ${skipped_export-false}; then
cannam@95 8430 func_verbose "generating symbol list for \`$libname.la'"
cannam@95 8431 export_symbols="$output_objdir/$libname.exp"
cannam@95 8432 $opt_dry_run || $RM $export_symbols
cannam@95 8433 libobjs=$output
cannam@95 8434 # Append the command to create the export file.
cannam@95 8435 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
cannam@95 8436 eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\"
cannam@95 8437 if test -n "$last_robj"; then
cannam@95 8438 eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\"
cannam@95 8439 fi
cannam@95 8440 fi
cannam@95 8441
cannam@95 8442 test -n "$save_libobjs" &&
cannam@95 8443 func_verbose "creating a temporary reloadable object file: $output"
cannam@95 8444
cannam@95 8445 # Loop through the commands generated above and execute them.
cannam@95 8446 save_ifs="$IFS"; IFS='~'
cannam@95 8447 for cmd in $concat_cmds; do
cannam@95 8448 IFS="$save_ifs"
cannam@95 8449 $opt_silent || {
cannam@95 8450 func_quote_for_expand "$cmd"
cannam@95 8451 eval "func_echo $func_quote_for_expand_result"
cannam@95 8452 }
cannam@95 8453 $opt_dry_run || eval "$cmd" || {
cannam@95 8454 lt_exit=$?
cannam@95 8455
cannam@95 8456 # Restore the uninstalled library and exit
cannam@95 8457 if test "$opt_mode" = relink; then
cannam@95 8458 ( cd "$output_objdir" && \
cannam@95 8459 $RM "${realname}T" && \
cannam@95 8460 $MV "${realname}U" "$realname" )
cannam@95 8461 fi
cannam@95 8462
cannam@95 8463 exit $lt_exit
cannam@95 8464 }
cannam@95 8465 done
cannam@95 8466 IFS="$save_ifs"
cannam@95 8467
cannam@95 8468 if test -n "$export_symbols_regex" && ${skipped_export-false}; then
cannam@95 8469 func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
cannam@95 8470 func_show_eval '$MV "${export_symbols}T" "$export_symbols"'
cannam@95 8471 fi
cannam@95 8472 fi
cannam@95 8473
cannam@95 8474 if ${skipped_export-false}; then
cannam@95 8475 if test -n "$export_symbols" && test -n "$include_expsyms"; then
cannam@95 8476 tmp_export_symbols="$export_symbols"
cannam@95 8477 test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols"
cannam@95 8478 $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"'
cannam@95 8479 fi
cannam@95 8480
cannam@95 8481 if test -n "$orig_export_symbols"; then
cannam@95 8482 # The given exports_symbols file has to be filtered, so filter it.
cannam@95 8483 func_verbose "filter symbol list for \`$libname.la' to tag DATA exports"
cannam@95 8484 # FIXME: $output_objdir/$libname.filter potentially contains lots of
cannam@95 8485 # 's' commands which not all seds can handle. GNU sed should be fine
cannam@95 8486 # though. Also, the filter scales superlinearly with the number of
cannam@95 8487 # global variables. join(1) would be nice here, but unfortunately
cannam@95 8488 # isn't a blessed tool.
cannam@95 8489 $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter
cannam@95 8490 func_append delfiles " $export_symbols $output_objdir/$libname.filter"
cannam@95 8491 export_symbols=$output_objdir/$libname.def
cannam@95 8492 $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols
cannam@95 8493 fi
cannam@95 8494 fi
cannam@95 8495
cannam@95 8496 libobjs=$output
cannam@95 8497 # Restore the value of output.
cannam@95 8498 output=$save_output
cannam@95 8499
cannam@95 8500 if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then
cannam@95 8501 eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
cannam@95 8502 test "X$libobjs" = "X " && libobjs=
cannam@95 8503 fi
cannam@95 8504 # Expand the library linking commands again to reset the
cannam@95 8505 # value of $libobjs for piecewise linking.
cannam@95 8506
cannam@95 8507 # Do each of the archive commands.
cannam@95 8508 if test "$module" = yes && test -n "$module_cmds" ; then
cannam@95 8509 if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
cannam@95 8510 cmds=$module_expsym_cmds
cannam@95 8511 else
cannam@95 8512 cmds=$module_cmds
cannam@95 8513 fi
cannam@95 8514 else
cannam@95 8515 if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
cannam@95 8516 cmds=$archive_expsym_cmds
cannam@95 8517 else
cannam@95 8518 cmds=$archive_cmds
cannam@95 8519 fi
cannam@95 8520 fi
cannam@95 8521 fi
cannam@95 8522
cannam@95 8523 if test -n "$delfiles"; then
cannam@95 8524 # Append the command to remove temporary files to $cmds.
cannam@95 8525 eval cmds=\"\$cmds~\$RM $delfiles\"
cannam@95 8526 fi
cannam@95 8527
cannam@95 8528 # Add any objects from preloaded convenience libraries
cannam@95 8529 if test -n "$dlprefiles"; then
cannam@95 8530 gentop="$output_objdir/${outputname}x"
cannam@95 8531 func_append generated " $gentop"
cannam@95 8532
cannam@95 8533 func_extract_archives $gentop $dlprefiles
cannam@95 8534 func_append libobjs " $func_extract_archives_result"
cannam@95 8535 test "X$libobjs" = "X " && libobjs=
cannam@95 8536 fi
cannam@95 8537
cannam@95 8538 save_ifs="$IFS"; IFS='~'
cannam@95 8539 for cmd in $cmds; do
cannam@95 8540 IFS="$save_ifs"
cannam@95 8541 eval cmd=\"$cmd\"
cannam@95 8542 $opt_silent || {
cannam@95 8543 func_quote_for_expand "$cmd"
cannam@95 8544 eval "func_echo $func_quote_for_expand_result"
cannam@95 8545 }
cannam@95 8546 $opt_dry_run || eval "$cmd" || {
cannam@95 8547 lt_exit=$?
cannam@95 8548
cannam@95 8549 # Restore the uninstalled library and exit
cannam@95 8550 if test "$opt_mode" = relink; then
cannam@95 8551 ( cd "$output_objdir" && \
cannam@95 8552 $RM "${realname}T" && \
cannam@95 8553 $MV "${realname}U" "$realname" )
cannam@95 8554 fi
cannam@95 8555
cannam@95 8556 exit $lt_exit
cannam@95 8557 }
cannam@95 8558 done
cannam@95 8559 IFS="$save_ifs"
cannam@95 8560
cannam@95 8561 # Restore the uninstalled library and exit
cannam@95 8562 if test "$opt_mode" = relink; then
cannam@95 8563 $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $?
cannam@95 8564
cannam@95 8565 if test -n "$convenience"; then
cannam@95 8566 if test -z "$whole_archive_flag_spec"; then
cannam@95 8567 func_show_eval '${RM}r "$gentop"'
cannam@95 8568 fi
cannam@95 8569 fi
cannam@95 8570
cannam@95 8571 exit $EXIT_SUCCESS
cannam@95 8572 fi
cannam@95 8573
cannam@95 8574 # Create links to the real library.
cannam@95 8575 for linkname in $linknames; do
cannam@95 8576 if test "$realname" != "$linkname"; then
cannam@95 8577 func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?'
cannam@95 8578 fi
cannam@95 8579 done
cannam@95 8580
cannam@95 8581 # If -module or -export-dynamic was specified, set the dlname.
cannam@95 8582 if test "$module" = yes || test "$export_dynamic" = yes; then
cannam@95 8583 # On all known operating systems, these are identical.
cannam@95 8584 dlname="$soname"
cannam@95 8585 fi
cannam@95 8586 fi
cannam@95 8587 ;;
cannam@95 8588
cannam@95 8589 obj)
cannam@95 8590 if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
cannam@95 8591 func_warning "\`-dlopen' is ignored for objects"
cannam@95 8592 fi
cannam@95 8593
cannam@95 8594 case " $deplibs" in
cannam@95 8595 *\ -l* | *\ -L*)
cannam@95 8596 func_warning "\`-l' and \`-L' are ignored for objects" ;;
cannam@95 8597 esac
cannam@95 8598
cannam@95 8599 test -n "$rpath" && \
cannam@95 8600 func_warning "\`-rpath' is ignored for objects"
cannam@95 8601
cannam@95 8602 test -n "$xrpath" && \
cannam@95 8603 func_warning "\`-R' is ignored for objects"
cannam@95 8604
cannam@95 8605 test -n "$vinfo" && \
cannam@95 8606 func_warning "\`-version-info' is ignored for objects"
cannam@95 8607
cannam@95 8608 test -n "$release" && \
cannam@95 8609 func_warning "\`-release' is ignored for objects"
cannam@95 8610
cannam@95 8611 case $output in
cannam@95 8612 *.lo)
cannam@95 8613 test -n "$objs$old_deplibs" && \
cannam@95 8614 func_fatal_error "cannot build library object \`$output' from non-libtool objects"
cannam@95 8615
cannam@95 8616 libobj=$output
cannam@95 8617 func_lo2o "$libobj"
cannam@95 8618 obj=$func_lo2o_result
cannam@95 8619 ;;
cannam@95 8620 *)
cannam@95 8621 libobj=
cannam@95 8622 obj="$output"
cannam@95 8623 ;;
cannam@95 8624 esac
cannam@95 8625
cannam@95 8626 # Delete the old objects.
cannam@95 8627 $opt_dry_run || $RM $obj $libobj
cannam@95 8628
cannam@95 8629 # Objects from convenience libraries. This assumes
cannam@95 8630 # single-version convenience libraries. Whenever we create
cannam@95 8631 # different ones for PIC/non-PIC, this we'll have to duplicate
cannam@95 8632 # the extraction.
cannam@95 8633 reload_conv_objs=
cannam@95 8634 gentop=
cannam@95 8635 # reload_cmds runs $LD directly, so let us get rid of
cannam@95 8636 # -Wl from whole_archive_flag_spec and hope we can get by with
cannam@95 8637 # turning comma into space..
cannam@95 8638 wl=
cannam@95 8639
cannam@95 8640 if test -n "$convenience"; then
cannam@95 8641 if test -n "$whole_archive_flag_spec"; then
cannam@95 8642 eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\"
cannam@95 8643 reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'`
cannam@95 8644 else
cannam@95 8645 gentop="$output_objdir/${obj}x"
cannam@95 8646 func_append generated " $gentop"
cannam@95 8647
cannam@95 8648 func_extract_archives $gentop $convenience
cannam@95 8649 reload_conv_objs="$reload_objs $func_extract_archives_result"
cannam@95 8650 fi
cannam@95 8651 fi
cannam@95 8652
cannam@95 8653 # If we're not building shared, we need to use non_pic_objs
cannam@95 8654 test "$build_libtool_libs" != yes && libobjs="$non_pic_objects"
cannam@95 8655
cannam@95 8656 # Create the old-style object.
cannam@95 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@95 8658
cannam@95 8659 output="$obj"
cannam@95 8660 func_execute_cmds "$reload_cmds" 'exit $?'
cannam@95 8661
cannam@95 8662 # Exit if we aren't doing a library object file.
cannam@95 8663 if test -z "$libobj"; then
cannam@95 8664 if test -n "$gentop"; then
cannam@95 8665 func_show_eval '${RM}r "$gentop"'
cannam@95 8666 fi
cannam@95 8667
cannam@95 8668 exit $EXIT_SUCCESS
cannam@95 8669 fi
cannam@95 8670
cannam@95 8671 if test "$build_libtool_libs" != yes; then
cannam@95 8672 if test -n "$gentop"; then
cannam@95 8673 func_show_eval '${RM}r "$gentop"'
cannam@95 8674 fi
cannam@95 8675
cannam@95 8676 # Create an invalid libtool object if no PIC, so that we don't
cannam@95 8677 # accidentally link it into a program.
cannam@95 8678 # $show "echo timestamp > $libobj"
cannam@95 8679 # $opt_dry_run || eval "echo timestamp > $libobj" || exit $?
cannam@95 8680 exit $EXIT_SUCCESS
cannam@95 8681 fi
cannam@95 8682
cannam@95 8683 if test -n "$pic_flag" || test "$pic_mode" != default; then
cannam@95 8684 # Only do commands if we really have different PIC objects.
cannam@95 8685 reload_objs="$libobjs $reload_conv_objs"
cannam@95 8686 output="$libobj"
cannam@95 8687 func_execute_cmds "$reload_cmds" 'exit $?'
cannam@95 8688 fi
cannam@95 8689
cannam@95 8690 if test -n "$gentop"; then
cannam@95 8691 func_show_eval '${RM}r "$gentop"'
cannam@95 8692 fi
cannam@95 8693
cannam@95 8694 exit $EXIT_SUCCESS
cannam@95 8695 ;;
cannam@95 8696
cannam@95 8697 prog)
cannam@95 8698 case $host in
cannam@95 8699 *cygwin*) func_stripname '' '.exe' "$output"
cannam@95 8700 output=$func_stripname_result.exe;;
cannam@95 8701 esac
cannam@95 8702 test -n "$vinfo" && \
cannam@95 8703 func_warning "\`-version-info' is ignored for programs"
cannam@95 8704
cannam@95 8705 test -n "$release" && \
cannam@95 8706 func_warning "\`-release' is ignored for programs"
cannam@95 8707
cannam@95 8708 test "$preload" = yes \
cannam@95 8709 && test "$dlopen_support" = unknown \
cannam@95 8710 && test "$dlopen_self" = unknown \
cannam@95 8711 && test "$dlopen_self_static" = unknown && \
cannam@95 8712 func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support."
cannam@95 8713
cannam@95 8714 case $host in
cannam@95 8715 *-*-rhapsody* | *-*-darwin1.[012])
cannam@95 8716 # On Rhapsody replace the C library is the System framework
cannam@95 8717 compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'`
cannam@95 8718 finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'`
cannam@95 8719 ;;
cannam@95 8720 esac
cannam@95 8721
cannam@95 8722 case $host in
cannam@95 8723 *-*-darwin*)
cannam@95 8724 # Don't allow lazy linking, it breaks C++ global constructors
cannam@95 8725 # But is supposedly fixed on 10.4 or later (yay!).
cannam@95 8726 if test "$tagname" = CXX ; then
cannam@95 8727 case ${MACOSX_DEPLOYMENT_TARGET-10.0} in
cannam@95 8728 10.[0123])
cannam@95 8729 func_append compile_command " ${wl}-bind_at_load"
cannam@95 8730 func_append finalize_command " ${wl}-bind_at_load"
cannam@95 8731 ;;
cannam@95 8732 esac
cannam@95 8733 fi
cannam@95 8734 # Time to change all our "foo.ltframework" stuff back to "-framework foo"
cannam@95 8735 compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@95 8736 finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
cannam@95 8737 ;;
cannam@95 8738 esac
cannam@95 8739
cannam@95 8740
cannam@95 8741 # move library search paths that coincide with paths to not yet
cannam@95 8742 # installed libraries to the beginning of the library search list
cannam@95 8743 new_libs=
cannam@95 8744 for path in $notinst_path; do
cannam@95 8745 case " $new_libs " in
cannam@95 8746 *" -L$path/$objdir "*) ;;
cannam@95 8747 *)
cannam@95 8748 case " $compile_deplibs " in
cannam@95 8749 *" -L$path/$objdir "*)
cannam@95 8750 func_append new_libs " -L$path/$objdir" ;;
cannam@95 8751 esac
cannam@95 8752 ;;
cannam@95 8753 esac
cannam@95 8754 done
cannam@95 8755 for deplib in $compile_deplibs; do
cannam@95 8756 case $deplib in
cannam@95 8757 -L*)
cannam@95 8758 case " $new_libs " in
cannam@95 8759 *" $deplib "*) ;;
cannam@95 8760 *) func_append new_libs " $deplib" ;;
cannam@95 8761 esac
cannam@95 8762 ;;
cannam@95 8763 *) func_append new_libs " $deplib" ;;
cannam@95 8764 esac
cannam@95 8765 done
cannam@95 8766 compile_deplibs="$new_libs"
cannam@95 8767
cannam@95 8768
cannam@95 8769 func_append compile_command " $compile_deplibs"
cannam@95 8770 func_append finalize_command " $finalize_deplibs"
cannam@95 8771
cannam@95 8772 if test -n "$rpath$xrpath"; then
cannam@95 8773 # If the user specified any rpath flags, then add them.
cannam@95 8774 for libdir in $rpath $xrpath; do
cannam@95 8775 # This is the magic to use -rpath.
cannam@95 8776 case "$finalize_rpath " in
cannam@95 8777 *" $libdir "*) ;;
cannam@95 8778 *) func_append finalize_rpath " $libdir" ;;
cannam@95 8779 esac
cannam@95 8780 done
cannam@95 8781 fi
cannam@95 8782
cannam@95 8783 # Now hardcode the library paths
cannam@95 8784 rpath=
cannam@95 8785 hardcode_libdirs=
cannam@95 8786 for libdir in $compile_rpath $finalize_rpath; do
cannam@95 8787 if test -n "$hardcode_libdir_flag_spec"; then
cannam@95 8788 if test -n "$hardcode_libdir_separator"; then
cannam@95 8789 if test -z "$hardcode_libdirs"; then
cannam@95 8790 hardcode_libdirs="$libdir"
cannam@95 8791 else
cannam@95 8792 # Just accumulate the unique libdirs.
cannam@95 8793 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@95 8794 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@95 8795 ;;
cannam@95 8796 *)
cannam@95 8797 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
cannam@95 8798 ;;
cannam@95 8799 esac
cannam@95 8800 fi
cannam@95 8801 else
cannam@95 8802 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@95 8803 func_append rpath " $flag"
cannam@95 8804 fi
cannam@95 8805 elif test -n "$runpath_var"; then
cannam@95 8806 case "$perm_rpath " in
cannam@95 8807 *" $libdir "*) ;;
cannam@95 8808 *) func_append perm_rpath " $libdir" ;;
cannam@95 8809 esac
cannam@95 8810 fi
cannam@95 8811 case $host in
cannam@95 8812 *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
cannam@95 8813 testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'`
cannam@95 8814 case :$dllsearchpath: in
cannam@95 8815 *":$libdir:"*) ;;
cannam@95 8816 ::) dllsearchpath=$libdir;;
cannam@95 8817 *) func_append dllsearchpath ":$libdir";;
cannam@95 8818 esac
cannam@95 8819 case :$dllsearchpath: in
cannam@95 8820 *":$testbindir:"*) ;;
cannam@95 8821 ::) dllsearchpath=$testbindir;;
cannam@95 8822 *) func_append dllsearchpath ":$testbindir";;
cannam@95 8823 esac
cannam@95 8824 ;;
cannam@95 8825 esac
cannam@95 8826 done
cannam@95 8827 # Substitute the hardcoded libdirs into the rpath.
cannam@95 8828 if test -n "$hardcode_libdir_separator" &&
cannam@95 8829 test -n "$hardcode_libdirs"; then
cannam@95 8830 libdir="$hardcode_libdirs"
cannam@95 8831 eval rpath=\" $hardcode_libdir_flag_spec\"
cannam@95 8832 fi
cannam@95 8833 compile_rpath="$rpath"
cannam@95 8834
cannam@95 8835 rpath=
cannam@95 8836 hardcode_libdirs=
cannam@95 8837 for libdir in $finalize_rpath; do
cannam@95 8838 if test -n "$hardcode_libdir_flag_spec"; then
cannam@95 8839 if test -n "$hardcode_libdir_separator"; then
cannam@95 8840 if test -z "$hardcode_libdirs"; then
cannam@95 8841 hardcode_libdirs="$libdir"
cannam@95 8842 else
cannam@95 8843 # Just accumulate the unique libdirs.
cannam@95 8844 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
cannam@95 8845 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
cannam@95 8846 ;;
cannam@95 8847 *)
cannam@95 8848 func_append hardcode_libdirs "$hardcode_libdir_separator$libdir"
cannam@95 8849 ;;
cannam@95 8850 esac
cannam@95 8851 fi
cannam@95 8852 else
cannam@95 8853 eval flag=\"$hardcode_libdir_flag_spec\"
cannam@95 8854 func_append rpath " $flag"
cannam@95 8855 fi
cannam@95 8856 elif test -n "$runpath_var"; then
cannam@95 8857 case "$finalize_perm_rpath " in
cannam@95 8858 *" $libdir "*) ;;
cannam@95 8859 *) func_append finalize_perm_rpath " $libdir" ;;
cannam@95 8860 esac
cannam@95 8861 fi
cannam@95 8862 done
cannam@95 8863 # Substitute the hardcoded libdirs into the rpath.
cannam@95 8864 if test -n "$hardcode_libdir_separator" &&
cannam@95 8865 test -n "$hardcode_libdirs"; then
cannam@95 8866 libdir="$hardcode_libdirs"
cannam@95 8867 eval rpath=\" $hardcode_libdir_flag_spec\"
cannam@95 8868 fi
cannam@95 8869 finalize_rpath="$rpath"
cannam@95 8870
cannam@95 8871 if test -n "$libobjs" && test "$build_old_libs" = yes; then
cannam@95 8872 # Transform all the library objects into standard objects.
cannam@95 8873 compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@95 8874 finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP`
cannam@95 8875 fi
cannam@95 8876
cannam@95 8877 func_generate_dlsyms "$outputname" "@PROGRAM@" "no"
cannam@95 8878
cannam@95 8879 # template prelinking step
cannam@95 8880 if test -n "$prelink_cmds"; then
cannam@95 8881 func_execute_cmds "$prelink_cmds" 'exit $?'
cannam@95 8882 fi
cannam@95 8883
cannam@95 8884 wrappers_required=yes
cannam@95 8885 case $host in
cannam@95 8886 *cegcc* | *mingw32ce*)
cannam@95 8887 # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway.
cannam@95 8888 wrappers_required=no
cannam@95 8889 ;;
cannam@95 8890 *cygwin* | *mingw* )
cannam@95 8891 if test "$build_libtool_libs" != yes; then
cannam@95 8892 wrappers_required=no
cannam@95 8893 fi
cannam@95 8894 ;;
cannam@95 8895 *)
cannam@95 8896 if test "$need_relink" = no || test "$build_libtool_libs" != yes; then
cannam@95 8897 wrappers_required=no
cannam@95 8898 fi
cannam@95 8899 ;;
cannam@95 8900 esac
cannam@95 8901 if test "$wrappers_required" = no; then
cannam@95 8902 # Replace the output file specification.
cannam@95 8903 compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'`
cannam@95 8904 link_command="$compile_command$compile_rpath"
cannam@95 8905
cannam@95 8906 # We have no uninstalled library dependencies, so finalize right now.
cannam@95 8907 exit_status=0
cannam@95 8908 func_show_eval "$link_command" 'exit_status=$?'
cannam@95 8909
cannam@95 8910 if test -n "$postlink_cmds"; then
cannam@95 8911 func_to_tool_file "$output"
cannam@95 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@95 8913 func_execute_cmds "$postlink_cmds" 'exit $?'
cannam@95 8914 fi
cannam@95 8915
cannam@95 8916 # Delete the generated files.
cannam@95 8917 if test -f "$output_objdir/${outputname}S.${objext}"; then
cannam@95 8918 func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"'
cannam@95 8919 fi
cannam@95 8920
cannam@95 8921 exit $exit_status
cannam@95 8922 fi
cannam@95 8923
cannam@95 8924 if test -n "$compile_shlibpath$finalize_shlibpath"; then
cannam@95 8925 compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command"
cannam@95 8926 fi
cannam@95 8927 if test -n "$finalize_shlibpath"; then
cannam@95 8928 finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
cannam@95 8929 fi
cannam@95 8930
cannam@95 8931 compile_var=
cannam@95 8932 finalize_var=
cannam@95 8933 if test -n "$runpath_var"; then
cannam@95 8934 if test -n "$perm_rpath"; then
cannam@95 8935 # We should set the runpath_var.
cannam@95 8936 rpath=
cannam@95 8937 for dir in $perm_rpath; do
cannam@95 8938 func_append rpath "$dir:"
cannam@95 8939 done
cannam@95 8940 compile_var="$runpath_var=\"$rpath\$$runpath_var\" "
cannam@95 8941 fi
cannam@95 8942 if test -n "$finalize_perm_rpath"; then
cannam@95 8943 # We should set the runpath_var.
cannam@95 8944 rpath=
cannam@95 8945 for dir in $finalize_perm_rpath; do
cannam@95 8946 func_append rpath "$dir:"
cannam@95 8947 done
cannam@95 8948 finalize_var="$runpath_var=\"$rpath\$$runpath_var\" "
cannam@95 8949 fi
cannam@95 8950 fi
cannam@95 8951
cannam@95 8952 if test "$no_install" = yes; then
cannam@95 8953 # We don't need to create a wrapper script.
cannam@95 8954 link_command="$compile_var$compile_command$compile_rpath"
cannam@95 8955 # Replace the output file specification.
cannam@95 8956 link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'`
cannam@95 8957 # Delete the old output file.
cannam@95 8958 $opt_dry_run || $RM $output
cannam@95 8959 # Link the executable and exit
cannam@95 8960 func_show_eval "$link_command" 'exit $?'
cannam@95 8961
cannam@95 8962 if test -n "$postlink_cmds"; then
cannam@95 8963 func_to_tool_file "$output"
cannam@95 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@95 8965 func_execute_cmds "$postlink_cmds" 'exit $?'
cannam@95 8966 fi
cannam@95 8967
cannam@95 8968 exit $EXIT_SUCCESS
cannam@95 8969 fi
cannam@95 8970
cannam@95 8971 if test "$hardcode_action" = relink; then
cannam@95 8972 # Fast installation is not supported
cannam@95 8973 link_command="$compile_var$compile_command$compile_rpath"
cannam@95 8974 relink_command="$finalize_var$finalize_command$finalize_rpath"
cannam@95 8975
cannam@95 8976 func_warning "this platform does not like uninstalled shared libraries"
cannam@95 8977 func_warning "\`$output' will be relinked during installation"
cannam@95 8978 else
cannam@95 8979 if test "$fast_install" != no; then
cannam@95 8980 link_command="$finalize_var$compile_command$finalize_rpath"
cannam@95 8981 if test "$fast_install" = yes; then
cannam@95 8982 relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'`
cannam@95 8983 else
cannam@95 8984 # fast_install is set to needless
cannam@95 8985 relink_command=
cannam@95 8986 fi
cannam@95 8987 else
cannam@95 8988 link_command="$compile_var$compile_command$compile_rpath"
cannam@95 8989 relink_command="$finalize_var$finalize_command$finalize_rpath"
cannam@95 8990 fi
cannam@95 8991 fi
cannam@95 8992
cannam@95 8993 # Replace the output file specification.
cannam@95 8994 link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
cannam@95 8995
cannam@95 8996 # Delete the old output files.
cannam@95 8997 $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname
cannam@95 8998
cannam@95 8999 func_show_eval "$link_command" 'exit $?'
cannam@95 9000
cannam@95 9001 if test -n "$postlink_cmds"; then
cannam@95 9002 func_to_tool_file "$output_objdir/$outputname"
cannam@95 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@95 9004 func_execute_cmds "$postlink_cmds" 'exit $?'
cannam@95 9005 fi
cannam@95 9006
cannam@95 9007 # Now create the wrapper script.
cannam@95 9008 func_verbose "creating $output"
cannam@95 9009
cannam@95 9010 # Quote the relink command for shipping.
cannam@95 9011 if test -n "$relink_command"; then
cannam@95 9012 # Preserve any variables that may affect compiler behavior
cannam@95 9013 for var in $variables_saved_for_relink; do
cannam@95 9014 if eval test -z \"\${$var+set}\"; then
cannam@95 9015 relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
cannam@95 9016 elif eval var_value=\$$var; test -z "$var_value"; then
cannam@95 9017 relink_command="$var=; export $var; $relink_command"
cannam@95 9018 else
cannam@95 9019 func_quote_for_eval "$var_value"
cannam@95 9020 relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
cannam@95 9021 fi
cannam@95 9022 done
cannam@95 9023 relink_command="(cd `pwd`; $relink_command)"
cannam@95 9024 relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"`
cannam@95 9025 fi
cannam@95 9026
cannam@95 9027 # Only actually do things if not in dry run mode.
cannam@95 9028 $opt_dry_run || {
cannam@95 9029 # win32 will think the script is a binary if it has
cannam@95 9030 # a .exe suffix, so we strip it off here.
cannam@95 9031 case $output in
cannam@95 9032 *.exe) func_stripname '' '.exe' "$output"
cannam@95 9033 output=$func_stripname_result ;;
cannam@95 9034 esac
cannam@95 9035 # test for cygwin because mv fails w/o .exe extensions
cannam@95 9036 case $host in
cannam@95 9037 *cygwin*)
cannam@95 9038 exeext=.exe
cannam@95 9039 func_stripname '' '.exe' "$outputname"
cannam@95 9040 outputname=$func_stripname_result ;;
cannam@95 9041 *) exeext= ;;
cannam@95 9042 esac
cannam@95 9043 case $host in
cannam@95 9044 *cygwin* | *mingw* )
cannam@95 9045 func_dirname_and_basename "$output" "" "."
cannam@95 9046 output_name=$func_basename_result
cannam@95 9047 output_path=$func_dirname_result
cannam@95 9048 cwrappersource="$output_path/$objdir/lt-$output_name.c"
cannam@95 9049 cwrapper="$output_path/$output_name.exe"
cannam@95 9050 $RM $cwrappersource $cwrapper
cannam@95 9051 trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
cannam@95 9052
cannam@95 9053 func_emit_cwrapperexe_src > $cwrappersource
cannam@95 9054
cannam@95 9055 # The wrapper executable is built using the $host compiler,
cannam@95 9056 # because it contains $host paths and files. If cross-
cannam@95 9057 # compiling, it, like the target executable, must be
cannam@95 9058 # executed on the $host or under an emulation environment.
cannam@95 9059 $opt_dry_run || {
cannam@95 9060 $LTCC $LTCFLAGS -o $cwrapper $cwrappersource
cannam@95 9061 $STRIP $cwrapper
cannam@95 9062 }
cannam@95 9063
cannam@95 9064 # Now, create the wrapper script for func_source use:
cannam@95 9065 func_ltwrapper_scriptname $cwrapper
cannam@95 9066 $RM $func_ltwrapper_scriptname_result
cannam@95 9067 trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15
cannam@95 9068 $opt_dry_run || {
cannam@95 9069 # note: this script will not be executed, so do not chmod.
cannam@95 9070 if test "x$build" = "x$host" ; then
cannam@95 9071 $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result
cannam@95 9072 else
cannam@95 9073 func_emit_wrapper no > $func_ltwrapper_scriptname_result
cannam@95 9074 fi
cannam@95 9075 }
cannam@95 9076 ;;
cannam@95 9077 * )
cannam@95 9078 $RM $output
cannam@95 9079 trap "$RM $output; exit $EXIT_FAILURE" 1 2 15
cannam@95 9080
cannam@95 9081 func_emit_wrapper no > $output
cannam@95 9082 chmod +x $output
cannam@95 9083 ;;
cannam@95 9084 esac
cannam@95 9085 }
cannam@95 9086 exit $EXIT_SUCCESS
cannam@95 9087 ;;
cannam@95 9088 esac
cannam@95 9089
cannam@95 9090 # See if we need to build an old-fashioned archive.
cannam@95 9091 for oldlib in $oldlibs; do
cannam@95 9092
cannam@95 9093 if test "$build_libtool_libs" = convenience; then
cannam@95 9094 oldobjs="$libobjs_save $symfileobj"
cannam@95 9095 addlibs="$convenience"
cannam@95 9096 build_libtool_libs=no
cannam@95 9097 else
cannam@95 9098 if test "$build_libtool_libs" = module; then
cannam@95 9099 oldobjs="$libobjs_save"
cannam@95 9100 build_libtool_libs=no
cannam@95 9101 else
cannam@95 9102 oldobjs="$old_deplibs $non_pic_objects"
cannam@95 9103 if test "$preload" = yes && test -f "$symfileobj"; then
cannam@95 9104 func_append oldobjs " $symfileobj"
cannam@95 9105 fi
cannam@95 9106 fi
cannam@95 9107 addlibs="$old_convenience"
cannam@95 9108 fi
cannam@95 9109
cannam@95 9110 if test -n "$addlibs"; then
cannam@95 9111 gentop="$output_objdir/${outputname}x"
cannam@95 9112 func_append generated " $gentop"
cannam@95 9113
cannam@95 9114 func_extract_archives $gentop $addlibs
cannam@95 9115 func_append oldobjs " $func_extract_archives_result"
cannam@95 9116 fi
cannam@95 9117
cannam@95 9118 # Do each command in the archive commands.
cannam@95 9119 if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
cannam@95 9120 cmds=$old_archive_from_new_cmds
cannam@95 9121 else
cannam@95 9122
cannam@95 9123 # Add any objects from preloaded convenience libraries
cannam@95 9124 if test -n "$dlprefiles"; then
cannam@95 9125 gentop="$output_objdir/${outputname}x"
cannam@95 9126 func_append generated " $gentop"
cannam@95 9127
cannam@95 9128 func_extract_archives $gentop $dlprefiles
cannam@95 9129 func_append oldobjs " $func_extract_archives_result"
cannam@95 9130 fi
cannam@95 9131
cannam@95 9132 # POSIX demands no paths to be encoded in archives. We have
cannam@95 9133 # to avoid creating archives with duplicate basenames if we
cannam@95 9134 # might have to extract them afterwards, e.g., when creating a
cannam@95 9135 # static archive out of a convenience library, or when linking
cannam@95 9136 # the entirety of a libtool archive into another (currently
cannam@95 9137 # not supported by libtool).
cannam@95 9138 if (for obj in $oldobjs
cannam@95 9139 do
cannam@95 9140 func_basename "$obj"
cannam@95 9141 $ECHO "$func_basename_result"
cannam@95 9142 done | sort | sort -uc >/dev/null 2>&1); then
cannam@95 9143 :
cannam@95 9144 else
cannam@95 9145 echo "copying selected object files to avoid basename conflicts..."
cannam@95 9146 gentop="$output_objdir/${outputname}x"
cannam@95 9147 func_append generated " $gentop"
cannam@95 9148 func_mkdir_p "$gentop"
cannam@95 9149 save_oldobjs=$oldobjs
cannam@95 9150 oldobjs=
cannam@95 9151 counter=1
cannam@95 9152 for obj in $save_oldobjs
cannam@95 9153 do
cannam@95 9154 func_basename "$obj"
cannam@95 9155 objbase="$func_basename_result"
cannam@95 9156 case " $oldobjs " in
cannam@95 9157 " ") oldobjs=$obj ;;
cannam@95 9158 *[\ /]"$objbase "*)
cannam@95 9159 while :; do
cannam@95 9160 # Make sure we don't pick an alternate name that also
cannam@95 9161 # overlaps.
cannam@95 9162 newobj=lt$counter-$objbase
cannam@95 9163 func_arith $counter + 1
cannam@95 9164 counter=$func_arith_result
cannam@95 9165 case " $oldobjs " in
cannam@95 9166 *[\ /]"$newobj "*) ;;
cannam@95 9167 *) if test ! -f "$gentop/$newobj"; then break; fi ;;
cannam@95 9168 esac
cannam@95 9169 done
cannam@95 9170 func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj"
cannam@95 9171 func_append oldobjs " $gentop/$newobj"
cannam@95 9172 ;;
cannam@95 9173 *) func_append oldobjs " $obj" ;;
cannam@95 9174 esac
cannam@95 9175 done
cannam@95 9176 fi
cannam@95 9177 func_to_tool_file "$oldlib" func_convert_file_msys_to_w32
cannam@95 9178 tool_oldlib=$func_to_tool_file_result
cannam@95 9179 eval cmds=\"$old_archive_cmds\"
cannam@95 9180
cannam@95 9181 func_len " $cmds"
cannam@95 9182 len=$func_len_result
cannam@95 9183 if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then
cannam@95 9184 cmds=$old_archive_cmds
cannam@95 9185 elif test -n "$archiver_list_spec"; then
cannam@95 9186 func_verbose "using command file archive linking..."
cannam@95 9187 for obj in $oldobjs
cannam@95 9188 do
cannam@95 9189 func_to_tool_file "$obj"
cannam@95 9190 $ECHO "$func_to_tool_file_result"
cannam@95 9191 done > $output_objdir/$libname.libcmd
cannam@95 9192 func_to_tool_file "$output_objdir/$libname.libcmd"
cannam@95 9193 oldobjs=" $archiver_list_spec$func_to_tool_file_result"
cannam@95 9194 cmds=$old_archive_cmds
cannam@95 9195 else
cannam@95 9196 # the command line is too long to link in one step, link in parts
cannam@95 9197 func_verbose "using piecewise archive linking..."
cannam@95 9198 save_RANLIB=$RANLIB
cannam@95 9199 RANLIB=:
cannam@95 9200 objlist=
cannam@95 9201 concat_cmds=
cannam@95 9202 save_oldobjs=$oldobjs
cannam@95 9203 oldobjs=
cannam@95 9204 # Is there a better way of finding the last object in the list?
cannam@95 9205 for obj in $save_oldobjs
cannam@95 9206 do
cannam@95 9207 last_oldobj=$obj
cannam@95 9208 done
cannam@95 9209 eval test_cmds=\"$old_archive_cmds\"
cannam@95 9210 func_len " $test_cmds"
cannam@95 9211 len0=$func_len_result
cannam@95 9212 len=$len0
cannam@95 9213 for obj in $save_oldobjs
cannam@95 9214 do
cannam@95 9215 func_len " $obj"
cannam@95 9216 func_arith $len + $func_len_result
cannam@95 9217 len=$func_arith_result
cannam@95 9218 func_append objlist " $obj"
cannam@95 9219 if test "$len" -lt "$max_cmd_len"; then
cannam@95 9220 :
cannam@95 9221 else
cannam@95 9222 # the above command should be used before it gets too long
cannam@95 9223 oldobjs=$objlist
cannam@95 9224 if test "$obj" = "$last_oldobj" ; then
cannam@95 9225 RANLIB=$save_RANLIB
cannam@95 9226 fi
cannam@95 9227 test -z "$concat_cmds" || concat_cmds=$concat_cmds~
cannam@95 9228 eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\"
cannam@95 9229 objlist=
cannam@95 9230 len=$len0
cannam@95 9231 fi
cannam@95 9232 done
cannam@95 9233 RANLIB=$save_RANLIB
cannam@95 9234 oldobjs=$objlist
cannam@95 9235 if test "X$oldobjs" = "X" ; then
cannam@95 9236 eval cmds=\"\$concat_cmds\"
cannam@95 9237 else
cannam@95 9238 eval cmds=\"\$concat_cmds~\$old_archive_cmds\"
cannam@95 9239 fi
cannam@95 9240 fi
cannam@95 9241 fi
cannam@95 9242 func_execute_cmds "$cmds" 'exit $?'
cannam@95 9243 done
cannam@95 9244
cannam@95 9245 test -n "$generated" && \
cannam@95 9246 func_show_eval "${RM}r$generated"
cannam@95 9247
cannam@95 9248 # Now create the libtool archive.
cannam@95 9249 case $output in
cannam@95 9250 *.la)
cannam@95 9251 old_library=
cannam@95 9252 test "$build_old_libs" = yes && old_library="$libname.$libext"
cannam@95 9253 func_verbose "creating $output"
cannam@95 9254
cannam@95 9255 # Preserve any variables that may affect compiler behavior
cannam@95 9256 for var in $variables_saved_for_relink; do
cannam@95 9257 if eval test -z \"\${$var+set}\"; then
cannam@95 9258 relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command"
cannam@95 9259 elif eval var_value=\$$var; test -z "$var_value"; then
cannam@95 9260 relink_command="$var=; export $var; $relink_command"
cannam@95 9261 else
cannam@95 9262 func_quote_for_eval "$var_value"
cannam@95 9263 relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command"
cannam@95 9264 fi
cannam@95 9265 done
cannam@95 9266 # Quote the link command for shipping.
cannam@95 9267 relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
cannam@95 9268 relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"`
cannam@95 9269 if test "$hardcode_automatic" = yes ; then
cannam@95 9270 relink_command=
cannam@95 9271 fi
cannam@95 9272
cannam@95 9273 # Only create the output if not a dry run.
cannam@95 9274 $opt_dry_run || {
cannam@95 9275 for installed in no yes; do
cannam@95 9276 if test "$installed" = yes; then
cannam@95 9277 if test -z "$install_libdir"; then
cannam@95 9278 break
cannam@95 9279 fi
cannam@95 9280 output="$output_objdir/$outputname"i
cannam@95 9281 # Replace all uninstalled libtool libraries with the installed ones
cannam@95 9282 newdependency_libs=
cannam@95 9283 for deplib in $dependency_libs; do
cannam@95 9284 case $deplib in
cannam@95 9285 *.la)
cannam@95 9286 func_basename "$deplib"
cannam@95 9287 name="$func_basename_result"
cannam@95 9288 func_resolve_sysroot "$deplib"
cannam@95 9289 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result`
cannam@95 9290 test -z "$libdir" && \
cannam@95 9291 func_fatal_error "\`$deplib' is not a valid libtool archive"
cannam@95 9292 func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name"
cannam@95 9293 ;;
cannam@95 9294 -L*)
cannam@95 9295 func_stripname -L '' "$deplib"
cannam@95 9296 func_replace_sysroot "$func_stripname_result"
cannam@95 9297 func_append newdependency_libs " -L$func_replace_sysroot_result"
cannam@95 9298 ;;
cannam@95 9299 -R*)
cannam@95 9300 func_stripname -R '' "$deplib"
cannam@95 9301 func_replace_sysroot "$func_stripname_result"
cannam@95 9302 func_append newdependency_libs " -R$func_replace_sysroot_result"
cannam@95 9303 ;;
cannam@95 9304 *) func_append newdependency_libs " $deplib" ;;
cannam@95 9305 esac
cannam@95 9306 done
cannam@95 9307 dependency_libs="$newdependency_libs"
cannam@95 9308 newdlfiles=
cannam@95 9309
cannam@95 9310 for lib in $dlfiles; do
cannam@95 9311 case $lib in
cannam@95 9312 *.la)
cannam@95 9313 func_basename "$lib"
cannam@95 9314 name="$func_basename_result"
cannam@95 9315 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
cannam@95 9316 test -z "$libdir" && \
cannam@95 9317 func_fatal_error "\`$lib' is not a valid libtool archive"
cannam@95 9318 func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name"
cannam@95 9319 ;;
cannam@95 9320 *) func_append newdlfiles " $lib" ;;
cannam@95 9321 esac
cannam@95 9322 done
cannam@95 9323 dlfiles="$newdlfiles"
cannam@95 9324 newdlprefiles=
cannam@95 9325 for lib in $dlprefiles; do
cannam@95 9326 case $lib in
cannam@95 9327 *.la)
cannam@95 9328 # Only pass preopened files to the pseudo-archive (for
cannam@95 9329 # eventual linking with the app. that links it) if we
cannam@95 9330 # didn't already link the preopened objects directly into
cannam@95 9331 # the library:
cannam@95 9332 func_basename "$lib"
cannam@95 9333 name="$func_basename_result"
cannam@95 9334 eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
cannam@95 9335 test -z "$libdir" && \
cannam@95 9336 func_fatal_error "\`$lib' is not a valid libtool archive"
cannam@95 9337 func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name"
cannam@95 9338 ;;
cannam@95 9339 esac
cannam@95 9340 done
cannam@95 9341 dlprefiles="$newdlprefiles"
cannam@95 9342 else
cannam@95 9343 newdlfiles=
cannam@95 9344 for lib in $dlfiles; do
cannam@95 9345 case $lib in
cannam@95 9346 [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
cannam@95 9347 *) abs=`pwd`"/$lib" ;;
cannam@95 9348 esac
cannam@95 9349 func_append newdlfiles " $abs"
cannam@95 9350 done
cannam@95 9351 dlfiles="$newdlfiles"
cannam@95 9352 newdlprefiles=
cannam@95 9353 for lib in $dlprefiles; do
cannam@95 9354 case $lib in
cannam@95 9355 [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;;
cannam@95 9356 *) abs=`pwd`"/$lib" ;;
cannam@95 9357 esac
cannam@95 9358 func_append newdlprefiles " $abs"
cannam@95 9359 done
cannam@95 9360 dlprefiles="$newdlprefiles"
cannam@95 9361 fi
cannam@95 9362 $RM $output
cannam@95 9363 # place dlname in correct position for cygwin
cannam@95 9364 # In fact, it would be nice if we could use this code for all target
cannam@95 9365 # systems that can't hard-code library paths into their executables
cannam@95 9366 # and that have no shared library path variable independent of PATH,
cannam@95 9367 # but it turns out we can't easily determine that from inspecting
cannam@95 9368 # libtool variables, so we have to hard-code the OSs to which it
cannam@95 9369 # applies here; at the moment, that means platforms that use the PE
cannam@95 9370 # object format with DLL files. See the long comment at the top of
cannam@95 9371 # tests/bindir.at for full details.
cannam@95 9372 tdlname=$dlname
cannam@95 9373 case $host,$output,$installed,$module,$dlname in
cannam@95 9374 *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll)
cannam@95 9375 # If a -bindir argument was supplied, place the dll there.
cannam@95 9376 if test "x$bindir" != x ;
cannam@95 9377 then
cannam@95 9378 func_relative_path "$install_libdir" "$bindir"
cannam@95 9379 tdlname=$func_relative_path_result$dlname
cannam@95 9380 else
cannam@95 9381 # Otherwise fall back on heuristic.
cannam@95 9382 tdlname=../bin/$dlname
cannam@95 9383 fi
cannam@95 9384 ;;
cannam@95 9385 esac
cannam@95 9386 $ECHO > $output "\
cannam@95 9387 # $outputname - a libtool library file
cannam@95 9388 # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION
cannam@95 9389 #
cannam@95 9390 # Please DO NOT delete this file!
cannam@95 9391 # It is necessary for linking the library.
cannam@95 9392
cannam@95 9393 # The name that we can dlopen(3).
cannam@95 9394 dlname='$tdlname'
cannam@95 9395
cannam@95 9396 # Names of this library.
cannam@95 9397 library_names='$library_names'
cannam@95 9398
cannam@95 9399 # The name of the static archive.
cannam@95 9400 old_library='$old_library'
cannam@95 9401
cannam@95 9402 # Linker flags that can not go in dependency_libs.
cannam@95 9403 inherited_linker_flags='$new_inherited_linker_flags'
cannam@95 9404
cannam@95 9405 # Libraries that this one depends upon.
cannam@95 9406 dependency_libs='$dependency_libs'
cannam@95 9407
cannam@95 9408 # Names of additional weak libraries provided by this library
cannam@95 9409 weak_library_names='$weak_libs'
cannam@95 9410
cannam@95 9411 # Version information for $libname.
cannam@95 9412 current=$current
cannam@95 9413 age=$age
cannam@95 9414 revision=$revision
cannam@95 9415
cannam@95 9416 # Is this an already installed library?
cannam@95 9417 installed=$installed
cannam@95 9418
cannam@95 9419 # Should we warn about portability when linking against -modules?
cannam@95 9420 shouldnotlink=$module
cannam@95 9421
cannam@95 9422 # Files to dlopen/dlpreopen
cannam@95 9423 dlopen='$dlfiles'
cannam@95 9424 dlpreopen='$dlprefiles'
cannam@95 9425
cannam@95 9426 # Directory that this library needs to be installed in:
cannam@95 9427 libdir='$install_libdir'"
cannam@95 9428 if test "$installed" = no && test "$need_relink" = yes; then
cannam@95 9429 $ECHO >> $output "\
cannam@95 9430 relink_command=\"$relink_command\""
cannam@95 9431 fi
cannam@95 9432 done
cannam@95 9433 }
cannam@95 9434
cannam@95 9435 # Do a symbolic link so that the libtool archive can be found in
cannam@95 9436 # LD_LIBRARY_PATH before the program is installed.
cannam@95 9437 func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?'
cannam@95 9438 ;;
cannam@95 9439 esac
cannam@95 9440 exit $EXIT_SUCCESS
cannam@95 9441 }
cannam@95 9442
cannam@95 9443 { test "$opt_mode" = link || test "$opt_mode" = relink; } &&
cannam@95 9444 func_mode_link ${1+"$@"}
cannam@95 9445
cannam@95 9446
cannam@95 9447 # func_mode_uninstall arg...
cannam@95 9448 func_mode_uninstall ()
cannam@95 9449 {
cannam@95 9450 $opt_debug
cannam@95 9451 RM="$nonopt"
cannam@95 9452 files=
cannam@95 9453 rmforce=
cannam@95 9454 exit_status=0
cannam@95 9455
cannam@95 9456 # This variable tells wrapper scripts just to set variables rather
cannam@95 9457 # than running their programs.
cannam@95 9458 libtool_install_magic="$magic"
cannam@95 9459
cannam@95 9460 for arg
cannam@95 9461 do
cannam@95 9462 case $arg in
cannam@95 9463 -f) func_append RM " $arg"; rmforce=yes ;;
cannam@95 9464 -*) func_append RM " $arg" ;;
cannam@95 9465 *) func_append files " $arg" ;;
cannam@95 9466 esac
cannam@95 9467 done
cannam@95 9468
cannam@95 9469 test -z "$RM" && \
cannam@95 9470 func_fatal_help "you must specify an RM program"
cannam@95 9471
cannam@95 9472 rmdirs=
cannam@95 9473
cannam@95 9474 for file in $files; do
cannam@95 9475 func_dirname "$file" "" "."
cannam@95 9476 dir="$func_dirname_result"
cannam@95 9477 if test "X$dir" = X.; then
cannam@95 9478 odir="$objdir"
cannam@95 9479 else
cannam@95 9480 odir="$dir/$objdir"
cannam@95 9481 fi
cannam@95 9482 func_basename "$file"
cannam@95 9483 name="$func_basename_result"
cannam@95 9484 test "$opt_mode" = uninstall && odir="$dir"
cannam@95 9485
cannam@95 9486 # Remember odir for removal later, being careful to avoid duplicates
cannam@95 9487 if test "$opt_mode" = clean; then
cannam@95 9488 case " $rmdirs " in
cannam@95 9489 *" $odir "*) ;;
cannam@95 9490 *) func_append rmdirs " $odir" ;;
cannam@95 9491 esac
cannam@95 9492 fi
cannam@95 9493
cannam@95 9494 # Don't error if the file doesn't exist and rm -f was used.
cannam@95 9495 if { test -L "$file"; } >/dev/null 2>&1 ||
cannam@95 9496 { test -h "$file"; } >/dev/null 2>&1 ||
cannam@95 9497 test -f "$file"; then
cannam@95 9498 :
cannam@95 9499 elif test -d "$file"; then
cannam@95 9500 exit_status=1
cannam@95 9501 continue
cannam@95 9502 elif test "$rmforce" = yes; then
cannam@95 9503 continue
cannam@95 9504 fi
cannam@95 9505
cannam@95 9506 rmfiles="$file"
cannam@95 9507
cannam@95 9508 case $name in
cannam@95 9509 *.la)
cannam@95 9510 # Possibly a libtool archive, so verify it.
cannam@95 9511 if func_lalib_p "$file"; then
cannam@95 9512 func_source $dir/$name
cannam@95 9513
cannam@95 9514 # Delete the libtool libraries and symlinks.
cannam@95 9515 for n in $library_names; do
cannam@95 9516 func_append rmfiles " $odir/$n"
cannam@95 9517 done
cannam@95 9518 test -n "$old_library" && func_append rmfiles " $odir/$old_library"
cannam@95 9519
cannam@95 9520 case "$opt_mode" in
cannam@95 9521 clean)
cannam@95 9522 case " $library_names " in
cannam@95 9523 *" $dlname "*) ;;
cannam@95 9524 *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;;
cannam@95 9525 esac
cannam@95 9526 test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i"
cannam@95 9527 ;;
cannam@95 9528 uninstall)
cannam@95 9529 if test -n "$library_names"; then
cannam@95 9530 # Do each command in the postuninstall commands.
cannam@95 9531 func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
cannam@95 9532 fi
cannam@95 9533
cannam@95 9534 if test -n "$old_library"; then
cannam@95 9535 # Do each command in the old_postuninstall commands.
cannam@95 9536 func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1'
cannam@95 9537 fi
cannam@95 9538 # FIXME: should reinstall the best remaining shared library.
cannam@95 9539 ;;
cannam@95 9540 esac
cannam@95 9541 fi
cannam@95 9542 ;;
cannam@95 9543
cannam@95 9544 *.lo)
cannam@95 9545 # Possibly a libtool object, so verify it.
cannam@95 9546 if func_lalib_p "$file"; then
cannam@95 9547
cannam@95 9548 # Read the .lo file
cannam@95 9549 func_source $dir/$name
cannam@95 9550
cannam@95 9551 # Add PIC object to the list of files to remove.
cannam@95 9552 if test -n "$pic_object" &&
cannam@95 9553 test "$pic_object" != none; then
cannam@95 9554 func_append rmfiles " $dir/$pic_object"
cannam@95 9555 fi
cannam@95 9556
cannam@95 9557 # Add non-PIC object to the list of files to remove.
cannam@95 9558 if test -n "$non_pic_object" &&
cannam@95 9559 test "$non_pic_object" != none; then
cannam@95 9560 func_append rmfiles " $dir/$non_pic_object"
cannam@95 9561 fi
cannam@95 9562 fi
cannam@95 9563 ;;
cannam@95 9564
cannam@95 9565 *)
cannam@95 9566 if test "$opt_mode" = clean ; then
cannam@95 9567 noexename=$name
cannam@95 9568 case $file in
cannam@95 9569 *.exe)
cannam@95 9570 func_stripname '' '.exe' "$file"
cannam@95 9571 file=$func_stripname_result
cannam@95 9572 func_stripname '' '.exe' "$name"
cannam@95 9573 noexename=$func_stripname_result
cannam@95 9574 # $file with .exe has already been added to rmfiles,
cannam@95 9575 # add $file without .exe
cannam@95 9576 func_append rmfiles " $file"
cannam@95 9577 ;;
cannam@95 9578 esac
cannam@95 9579 # Do a test to see if this is a libtool program.
cannam@95 9580 if func_ltwrapper_p "$file"; then
cannam@95 9581 if func_ltwrapper_executable_p "$file"; then
cannam@95 9582 func_ltwrapper_scriptname "$file"
cannam@95 9583 relink_command=
cannam@95 9584 func_source $func_ltwrapper_scriptname_result
cannam@95 9585 func_append rmfiles " $func_ltwrapper_scriptname_result"
cannam@95 9586 else
cannam@95 9587 relink_command=
cannam@95 9588 func_source $dir/$noexename
cannam@95 9589 fi
cannam@95 9590
cannam@95 9591 # note $name still contains .exe if it was in $file originally
cannam@95 9592 # as does the version of $file that was added into $rmfiles
cannam@95 9593 func_append rmfiles " $odir/$name $odir/${name}S.${objext}"
cannam@95 9594 if test "$fast_install" = yes && test -n "$relink_command"; then
cannam@95 9595 func_append rmfiles " $odir/lt-$name"
cannam@95 9596 fi
cannam@95 9597 if test "X$noexename" != "X$name" ; then
cannam@95 9598 func_append rmfiles " $odir/lt-${noexename}.c"
cannam@95 9599 fi
cannam@95 9600 fi
cannam@95 9601 fi
cannam@95 9602 ;;
cannam@95 9603 esac
cannam@95 9604 func_show_eval "$RM $rmfiles" 'exit_status=1'
cannam@95 9605 done
cannam@95 9606
cannam@95 9607 # Try to remove the ${objdir}s in the directories where we deleted files
cannam@95 9608 for dir in $rmdirs; do
cannam@95 9609 if test -d "$dir"; then
cannam@95 9610 func_show_eval "rmdir $dir >/dev/null 2>&1"
cannam@95 9611 fi
cannam@95 9612 done
cannam@95 9613
cannam@95 9614 exit $exit_status
cannam@95 9615 }
cannam@95 9616
cannam@95 9617 { test "$opt_mode" = uninstall || test "$opt_mode" = clean; } &&
cannam@95 9618 func_mode_uninstall ${1+"$@"}
cannam@95 9619
cannam@95 9620 test -z "$opt_mode" && {
cannam@95 9621 help="$generic_help"
cannam@95 9622 func_fatal_help "you must specify a MODE"
cannam@95 9623 }
cannam@95 9624
cannam@95 9625 test -z "$exec_cmd" && \
cannam@95 9626 func_fatal_help "invalid operation mode \`$opt_mode'"
cannam@95 9627
cannam@95 9628 if test -n "$exec_cmd"; then
cannam@95 9629 eval exec "$exec_cmd"
cannam@95 9630 exit $EXIT_FAILURE
cannam@95 9631 fi
cannam@95 9632
cannam@95 9633 exit $exit_status
cannam@95 9634
cannam@95 9635
cannam@95 9636 # The TAGs below are defined such that we never get into a situation
cannam@95 9637 # in which we disable both kinds of libraries. Given conflicting
cannam@95 9638 # choices, we go for a static library, that is the most portable,
cannam@95 9639 # since we can't tell whether shared libraries were disabled because
cannam@95 9640 # the user asked for that or because the platform doesn't support
cannam@95 9641 # them. This is particularly important on AIX, because we don't
cannam@95 9642 # support having both static and shared libraries enabled at the same
cannam@95 9643 # time on that platform, so we default to a shared-only configuration.
cannam@95 9644 # If a disable-shared tag is given, we'll fallback to a static-only
cannam@95 9645 # configuration. But we'll never go from static-only to shared-only.
cannam@95 9646
cannam@95 9647 # ### BEGIN LIBTOOL TAG CONFIG: disable-shared
cannam@95 9648 build_libtool_libs=no
cannam@95 9649 build_old_libs=yes
cannam@95 9650 # ### END LIBTOOL TAG CONFIG: disable-shared
cannam@95 9651
cannam@95 9652 # ### BEGIN LIBTOOL TAG CONFIG: disable-static
cannam@95 9653 build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`
cannam@95 9654 # ### END LIBTOOL TAG CONFIG: disable-static
cannam@95 9655
cannam@95 9656 # Local Variables:
cannam@95 9657 # mode:shell-script
cannam@95 9658 # sh-indentation:2
cannam@95 9659 # End:
cannam@95 9660 # vi:sw=2
cannam@95 9661