ltmain.sh 152 KB
Newer Older
Jason Merrill committed
1
# ltmain.sh - Provide generalized library-building support services.
#  
Jeff Law committed
2 3
# NOTE: Changing this file will not affect anything until you rerun ltconfig.
#
4 5
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001
# Free Software Foundation, Inc.
Jason Merrill committed
6
# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
Jason Merrill committed
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
# configuration script generated by Autoconf, you may include it under
# the same distribution terms that you use for the rest of that program.

27 28 29 30
# Check that we have a working $echo.
if test "X$1" = X--no-reexec; then
  # Discard the --no-reexec flag, and continue.
  shift
31
elif test "X$1" = X--fallback-echo; then
Jason Merrill committed
32 33
  # Avoid inline document here, it may be left over
  :
34 35 36 37 38 39 40 41
elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
  # Yippee, $echo works!
  :
else
  # Restart under the correct shell, and then maybe $echo will work.
  exec $SHELL "$0" --no-reexec ${1+"$@"}
fi

Jason Merrill committed
42 43 44 45 46 47 48 49 50
if test "X$1" = X--fallback-echo; then
  # used as fallback echo
  shift
  cat <<EOF
$*
EOF
  exit 0
fi

Jason Merrill committed
51
# The name of this program.
#  
Jeff Law committed
52 53
progname=`$echo "$0" | sed 's%^.*/%%'`
modename="$progname"
Jason Merrill committed
54 55 56 57

# Constants.
PROGRAM=ltmain.sh
PACKAGE=libtool
58 59
VERSION=1.4a-GCC3.0
TIMESTAMP=" (1.641.2.256 2001/05/28 20:09:07 with GCC-local changes)"
Jason Merrill committed
60 61 62 63 64 65 66 67

default_mode=
help="Try \`$progname --help' for more information."
magic="%%%MAGIC variable%%%"
mkdir="mkdir"
mv="mv -f"
rm="rm -f"

#  
Jeff Law committed
68 69
# Sed substitution that helps us do robust quoting.  It backslashifies
# metacharacters that are still active within double-quoted strings.
70
Xsed='sed -e 1s/^X//'
#  
Jeff Law committed
71
sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g'
72
SP2NL='tr \040 \012'
Jason Merrill committed
73
NL2SP='tr \015\012 \040\040'
#  
Jeff Law committed
74 75 76 77 78

# NLS nuisances.
# Only set LANG and LC_ALL to C if already set.
# These must not be set unconditionally because not all systems understand
# e.g. LANG=C (notably SCO).
79 80 81 82 83 84 85
# We save the old values to restore during execute mode.
if test "${LC_ALL+set}" = set; then
  save_LC_ALL="$LC_ALL"; LC_ALL=C; export LC_ALL
fi
if test "${LANG+set}" = set; then
  save_LANG="$LANG"; LANG=C; export LANG
fi
#  
Jeff Law committed
86

Jason Merrill committed
87
if test "$LTCONFIG_VERSION" != "$VERSION"; then
#  
Jeff Law committed
88
  echo "$modename: ltconfig version \`$LTCONFIG_VERSION' does not match $PROGRAM version \`$VERSION'" 1>&2
Jason Merrill committed
89 90 91 92 93
  echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
  exit 1
fi

if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
#  
Jeff Law committed
94
  echo "$modename: not configured to build any kind of library" 1>&2
Jason Merrill committed
95 96 97 98 99 100 101 102 103 104
  echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
  exit 1
fi

# Global variables.
mode=$default_mode
nonopt=
prev=
prevopt=
run=
#  
Jeff Law committed
105
show="$echo"
Jason Merrill committed
106
show_help=
#  
Jeff Law committed
107
execute_dlfiles=
108
lo2o="s/\\.lo\$/.${objext}/"
Jason Merrill committed
109
o2lo="s/\\.${objext}\$/.lo/"
Jason Merrill committed
110 111 112 113 114 115 116

# Parse our command line options once, thoroughly.
while test $# -gt 0
do
  arg="$1"
  shift

117
  case $arg in
#  
Jeff Law committed
118
  -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
Jason Merrill committed
119 120 121 122 123
  *) optarg= ;;
  esac

  # If the previous option needs an argument, assign it.
  if test -n "$prev"; then
124
    case $prev in
#  
Jeff Law committed
125
    execute_dlfiles)
126
      execute_dlfiles="$execute_dlfiles $arg"
#  
Jeff Law committed
127
      ;;
128 129 130 131
    tag)
      tagname="$arg"

      # Check whether tagname contains only valid characters
132
      case $tagname in
133 134 135 136 137 138
      *[!-_A-Za-z0-9,/]*)
	echo "$progname: invalid tag name: $tagname" 1>&2
	exit 1
        ;;
      esac

139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
      case $tagname in
      CC)
	# Don't test for the "default" C tag, as we know, it's there, but
	# not specially marked.
	;;
      *)
        if grep "^### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$0" > /dev/null; then
          taglist="$taglist $tagname"
	  # Evaluate the configuration.
	  eval "`sed -n -e '/^### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $0`"
        else
	  echo "$progname: ignoring unknown tag $tagname" 1>&2
        fi
        ;;
      esac
154
      ;;
#  
Jeff Law committed
155 156 157 158 159
    *)
      eval "$prev=\$arg"
      ;;
    esac

Jason Merrill committed
160 161 162 163 164 165
    prev=
    prevopt=
    continue
  fi

  # Have we seen a non-optional argument yet?
166
  case $arg in
Jason Merrill committed
167 168 169 170 171
  --help)
    show_help=yes
    ;;

  --version)
172
    echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"
Jason Merrill committed
173 174 175
    exit 0
    ;;

#  
Jeff Law committed
176
  --config)
177 178 179 180 181
    sed -n -e '/^### BEGIN LIBTOOL CONFIG/,/^### END LIBTOOL CONFIG/p' < "$0"
    # Now print the configurations for the tags.
    for tagname in $taglist; do
      sed -n -e "/^### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^### END LIBTOOL TAG CONFIG: $tagname$/p" < "$0"
    done
#  
Jeff Law committed
182 183 184 185 186 187 188 189
    exit 0
    ;;

  --debug)
    echo "$progname: enabling shell trace mode"
    set -x
    ;;

Jason Merrill committed
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
  --dry-run | -n)
    run=:
    ;;

  --features)
    echo "host: $host"
    if test "$build_libtool_libs" = yes; then
      echo "enable shared libraries"
    else
      echo "disable shared libraries"
    fi
    if test "$build_old_libs" = yes; then
      echo "enable static libraries"
    else
      echo "disable static libraries"
    fi
    exit 0
    ;;

  --finish) mode="finish" ;;

  --mode) prevopt="--mode" prev=mode ;;
  --mode=*) mode="$optarg" ;;

#  
Jeff Law committed
214 215 216 217
  --quiet | --silent)
    show=:
    ;;

218 219 220 221 222 223 224
  --tag) prevopt="--tag" prev=tag ;;
  --tag=*)
    set tag "$optarg" ${1+"$@"}
    shift
    prev=tag
    ;;

#  
Jeff Law committed
225 226 227 228 229
  -dlopen)
    prevopt="-dlopen"
    prev=execute_dlfiles
    ;;

Jason Merrill committed
230
  -*)
#  
Jeff Law committed
231 232
    $echo "$modename: unrecognized option \`$arg'" 1>&2
    $echo "$help" 1>&2
Jason Merrill committed
233 234 235 236 237 238 239 240 241 242 243
    exit 1
    ;;

  *)
    nonopt="$arg"
    break
    ;;
  esac
done

if test -n "$prevopt"; then
#  
Jeff Law committed
244 245
  $echo "$modename: option \`$prevopt' requires an argument" 1>&2
  $echo "$help" 1>&2
Jason Merrill committed
246 247 248
  exit 1
fi

249 250 251 252 253
# If this variable is set in any of the actions, the command in it
# will be execed at the end.  This prevents here-documents from being
# left over by shells.
exec_cmd=

Jason Merrill committed
254 255 256 257
if test -z "$show_help"; then

  # Infer the operation mode.
  if test -z "$mode"; then
258
    case $nonopt in
#  
Jeff Law committed
259
    *cc | *++ | gcc* | *-gcc*)
Jason Merrill committed
260 261 262
      mode=link
      for arg
      do
263
	case $arg in
264 265 266 267 268
	-c)
	   mode=compile
	   break
	   ;;
	esac
Jason Merrill committed
269 270
      done
      ;;
271
    *db | *dbx | *strace | *truss)
#  
Jeff Law committed
272 273 274
      mode=execute
      ;;
    *install*|cp|mv)
Jason Merrill committed
275 276 277 278 279 280
      mode=install
      ;;
    *rm)
      mode=uninstall
      ;;
    *)
#  
Jeff Law committed
281 282 283
      # If we have no mode, but dlfiles were specified, then do execute mode.
      test -n "$execute_dlfiles" && mode=execute

Jason Merrill committed
284 285
      # Just use the default operation mode.
      if test -z "$mode"; then
286 287 288 289 290
	if test -n "$nonopt"; then
	  $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2
	else
	  $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2
	fi
Jason Merrill committed
291 292 293 294 295
      fi
      ;;
    esac
  fi

#  
Jeff Law committed
296 297 298 299 300 301 302
  # Only execute mode is allowed to have -dlopen flags.
  if test -n "$execute_dlfiles" && test "$mode" != execute; then
    $echo "$modename: unrecognized option \`-dlopen'" 1>&2
    $echo "$help" 1>&2
    exit 1
  fi

Jason Merrill committed
303 304
  # Change the help message to a mode-specific one.
  generic_help="$help"
#  
Jeff Law committed
305
  help="Try \`$modename --help --mode=$mode' for more information."
Jason Merrill committed
306 307

  # These modes are in order of execution frequency so that they run quickly.
308
  case $mode in
Jason Merrill committed
309 310
  # libtool compile mode
  compile)
#  
Jeff Law committed
311
    modename="$modename: compile"
Jason Merrill committed
312
    # Get the compilation command and the source file.
#  
Jeff Law committed
313
    base_compile=
314
    prev=
Jason Merrill committed
315
    lastarg=
#  
Jeff Law committed
316 317
    srcfile="$nonopt"
    suppress_output=
Jason Merrill committed
318

319
    user_target=no
Jason Merrill committed
320 321
    for arg
    do
322
      case $prev in
323 324 325 326 327 328
      "") ;;
      xcompiler)
	# Aesthetically quote the previous argument.
	prev=
	lastarg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`

329
	case $arg in
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
	# Double-quote args containing other shell metacharacters.
	# Many Bourne shells cannot handle close brackets correctly
	# in scan sets, so we specify it separately.
	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
	  arg="\"$arg\""
	  ;;
	esac

	# Add the previous argument to base_compile.
	if test -z "$base_compile"; then
	  base_compile="$lastarg"
	else
	  base_compile="$base_compile $lastarg"
	fi
	continue
	;;
      esac

#  
Jeff Law committed
348
      # Accept any command-line options.
349
      case $arg in
#  
Jeff Law committed
350
      -o)
351 352 353 354 355
	if test "$user_target" != "no"; then
	  $echo "$modename: you cannot specify \`-o' more than once" 1>&2
	  exit 1
	fi
	user_target=next
#  
Jeff Law committed
356 357 358 359 360 361
	;;

      -static)
	build_old_libs=yes
	continue
	;;
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387

      -prefer-pic)
	pic_mode=yes
	continue
	;;

      -prefer-non-pic)
	pic_mode=no
	continue
	;;

      -Xcompiler)
	prev=xcompiler
	continue
	;;

      -Wc,*)
	args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
	lastarg=
	IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=','
	for arg in $args; do
	  IFS="$save_ifs"

	  # Double-quote args containing other shell metacharacters.
	  # Many Bourne shells cannot handle close brackets correctly
	  # in scan sets, so we specify it separately.
388
	  case $arg in
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
	    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
	    arg="\"$arg\""
	    ;;
	  esac
	  lastarg="$lastarg $arg"
	done
	IFS="$save_ifs"
	lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`

	# Add the arguments to base_compile.
	if test -z "$base_compile"; then
	  base_compile="$lastarg"
	else
	  base_compile="$base_compile $lastarg"
	fi
	continue
	;;
Jason Merrill committed
406 407
      esac

408
      case $user_target in
409 410 411 412 413 414 415 416 417 418 419 420 421
      next)
	# The next one is the -o target name
	user_target=yes
	continue
	;;
      yes)
	# We got the output file
	user_target=set
	libobj="$arg"
	continue
	;;
      esac

#  
Jeff Law committed
422 423 424 425 426 427 428 429 430 431 432 433
      # Accept the current argument as the source file.
      lastarg="$srcfile"
      srcfile="$arg"

      # Aesthetically quote the previous argument.

      # Backslashify any backslashes, double quotes, and dollar signs.
      # These are the only characters that are still specially
      # interpreted inside of double-quoted scrings.
      lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`

      # Double-quote args containing other shell metacharacters.
434 435
      # Many Bourne shells cannot handle close brackets correctly
      # in scan sets, so we specify it separately.
436
      case $lastarg in
437
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
#  
Jeff Law committed
438 439 440 441 442 443 444 445 446 447
	lastarg="\"$lastarg\""
	;;
      esac

      # Add the previous argument to base_compile.
      if test -z "$base_compile"; then
	base_compile="$lastarg"
      else
	base_compile="$base_compile $lastarg"
      fi
Jason Merrill committed
448 449
    done

450
    case $user_target in
451 452 453 454 455 456 457 458 459 460 461
    set)
      ;;
    no)
      # Get the name of the library object.
      libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
      ;;
    *)
      $echo "$modename: you must specify a target with \`-o'" 1>&2
      exit 1
      ;;
    esac
Jason Merrill committed
462 463

    # Recognize several different file suffixes.
464 465
    # If the user specifies -o file.o, it is replaced with file.lo
    xform='[cCFSfmso]'
466
    case $libobj in
#  
Jeff Law committed
467 468 469 470 471
    *.ada) xform=ada ;;
    *.adb) xform=adb ;;
    *.ads) xform=ads ;;
    *.asm) xform=asm ;;
    *.c++) xform=c++ ;;
Jason Merrill committed
472
    *.cc) xform=cc ;;
473
    *.class) xform=class ;;
Jason Merrill committed
474 475 476
    *.cpp) xform=cpp ;;
    *.cxx) xform=cxx ;;
    *.f90) xform=f90 ;;
#  
Jeff Law committed
477
    *.for) xform=for ;;
478
    *.java) xform=java ;;
Jason Merrill committed
479 480
    esac

#  
Jeff Law committed
481
    libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`
Jason Merrill committed
482

483
    case $libobj in
484
    *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
Jason Merrill committed
485
    *)
486
      $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2
Jason Merrill committed
487 488 489 490
      exit 1
      ;;
    esac

491 492 493 494 495 496 497 498 499
    # Infer tagged configuration to use if any are available and
    # if one wasn't chosen via the "--tag" command line option.
    # Only attempt this if the compiler in the base compile
    # command doesn't match the default compiler.
    if test -n "$available_tags" && test -z "$tagname"; then
      case $base_compile in
      "$CC "*) ;;
      # Blanks in the command may have been stripped by the calling shell,
      # but not from the CC environment variable when ltconfig was run.
500
      "`$echo $CC` "*) ;;
501 502 503 504 505 506 507 508 509 510 511 512 513
      *)
        for z in $available_tags; do
          if grep "^### BEGIN LIBTOOL TAG CONFIG: $z$" < "$0" > /dev/null; then
	    # Evaluate the configuration.
	    eval "`sed -n -e '/^### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^### END LIBTOOL TAG CONFIG: '$z'$/p' < $0`"
            case $base_compile in
	    "$CC "*)
              # The compiler in the base compile command matches
              # the one in the tagged configuration.
              # Assume this is the tagged configuration we want.
              tagname=$z
              break
              ;;
514
	    "`$echo $CC` "*)
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
	      tagname=$z
	      break
	      ;;
	    esac
          fi
        done
        # If $tagname still isn't set, then no tagged configuration
        # was found and let the user know that the "--tag" command
        # line option must be used.
        if test -z "$tagname"; then
          echo "$modename: unable to infer tagged configuration"
          echo "$modename: specify a tag with \`--tag'" 1>&2
	  exit 1
#        else
#          echo "$modename: using $tagname tagged configuration"
        fi
	;;
      esac
    fi

    objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
    xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
    if test "X$xdir" = "X$obj"; then
      xdir=
    else
      xdir=$xdir/
    fi
    lobj=${xdir}$objdir/$objname

Jason Merrill committed
544
    if test -z "$base_compile"; then
#  
Jeff Law committed
545 546
      $echo "$modename: you must specify a compilation command" 1>&2
      $echo "$help" 1>&2
Jason Merrill committed
547 548 549 550 551
      exit 1
    fi

    # Delete any leftover library objects.
    if test "$build_old_libs" = yes; then
552
      removelist="$obj $lobj $libobj ${libobj}T"
Jason Merrill committed
553
    else
554
      removelist="$lobj $libobj ${libobj}T"
555 556 557 558 559
    fi

    $run $rm $removelist
    trap "$run $rm $removelist; exit 1" 1 2 15

560
    # On Cygwin there's no "real" PIC flag so we must build both object types
561
    case $host_os in
562
    cygwin* | mingw* | pw32* | os2*)
563 564 565 566 567 568 569 570
      pic_mode=default
      ;;
    esac
    if test $pic_mode = no && test "$deplibs_check_method" != pass_all; then
      # non-PIC code in shared libraries is not supported
      pic_mode=default
    fi

571 572 573
    # Calculate the filename of the output object if compiler does
    # not support -o with -c
    if test "$compiler_c_o" = no; then
574
      output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}
575 576 577 578
      lockfile="$output_obj.lock"
      removelist="$removelist $output_obj $lockfile"
      trap "$run $rm $removelist; exit 1" 1 2 15
    else
579
      output_obj=
580 581 582 583 584 585 586
      need_locks=no
      lockfile=
    fi

    # Lock this critical section if it is needed
    # We use this script file to make the link, it avoids creating a new file
    if test "$need_locks" = yes; then
587
      until $run ln "$0" "$lockfile" 2>/dev/null; do
588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
	$show "Waiting for $lockfile to be removed"
	sleep 2
      done
    elif test "$need_locks" = warn; then
      if test -f "$lockfile"; then
	echo "\
*** ERROR, $lockfile exists and contains:
`cat $lockfile 2>/dev/null`

This indicates that another process is trying to use the same
temporary object file, and libtool could not work around it because
your compiler does not support \`-c' and \`-o' together.  If you
repeat this compilation, it may succeed, by chance, but you had better
avoid parallel builds (make -j) in this platform, or get a better
compiler."

	$run $rm $removelist
	exit 1
      fi
      echo $srcfile > "$lockfile"
Jason Merrill committed
608 609
    fi

610 611 612 613
    if test -n "$fix_srcfile_path"; then
      eval srcfile=\"$fix_srcfile_path\"
    fi

614 615 616 617 618 619 620 621 622 623 624 625 626 627
    $run $rm "$libobj" "${libobj}T"

    # Create a libtool object file (analogous to a ".la" file),
    # but don't create it if we're doing a dry run.
    test -z "$run" && cat > ${libobj}T <<EOF
# $libobj - a libtool object file
# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
#
# Please DO NOT delete this file!
# It is necessary for linking the library.

# Name of the PIC object.
EOF

Jason Merrill committed
628 629
    # Only build a PIC object if we are building libtool libraries.
    if test "$build_libtool_libs" = yes; then
#  
Jeff Law committed
630 631 632
      # Without this assignment, base_compile gets emptied.
      fbsd_hideous_sh_bug=$base_compile

633 634 635 636 637
      if test "$pic_mode" != no; then
	command="$base_compile $srcfile $pic_flag"
      else
	# Don't build PIC code
	command="$base_compile $srcfile"
638
      fi
639 640 641 642 643 644 645 646 647 648 649 650 651

      if test ! -d ${xdir}$objdir; then
	$show "$mkdir ${xdir}$objdir"
	$run $mkdir ${xdir}$objdir
	status=$?
	if test $status -ne 0 && test ! -d ${xdir}$objdir; then
	  exit $status
        fi
      fi 

      if test -z "$output_obj"; then
        # Place PIC objects in $objdir
        command="$command -o $lobj"
652 653
      fi

654 655
      $run $rm "$lobj" "$output_obj"

656 657
      $show "$command"
      if $run eval "$command"; then :
Jason Merrill committed
658
      else
659 660
	test -n "$output_obj" && $run $rm $removelist
	exit 1
Jason Merrill committed
661 662
      fi

663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
      if test "$need_locks" = warn &&
	 test x"`cat $lockfile 2>/dev/null`" != x"$srcfile"; then
	echo "\
*** ERROR, $lockfile contains:
`cat $lockfile 2>/dev/null`

but it should contain:
$srcfile

This indicates that another process is trying to use the same
temporary object file, and libtool could not work around it because
your compiler does not support \`-c' and \`-o' together.  If you
repeat this compilation, it may succeed, by chance, but you had better
avoid parallel builds (make -j) in this platform, or get a better
compiler."

	$run $rm $removelist
	exit 1
      fi

      # Just move the object if needed, then go on to compile the next one
684 685 686
      if test -n "$output_obj" && test "x$output_obj" != "x$lobj"; then
	$show "$mv $output_obj $lobj"
	if $run $mv $output_obj $lobj; then :
687 688 689 690 691
	else
	  error=$?
	  $run $rm $removelist
	  exit $error
	fi
Jason Merrill committed
692 693
      fi

694 695 696
      # Append the name of the PIC object to the libtool object file.
      test -z "$run" && cat >> ${libobj}T <<EOF
pic_object='$objdir/$objname'
697

698
EOF
#  
Jeff Law committed
699 700 701

      # Allow error messages only from the first compilation.
      suppress_output=' >/dev/null 2>&1'
702 703 704 705 706 707 708
    else
      # No PIC object so indicate it doesn't exist in the libtool
      # object file.
      test -z "$run" && cat >> ${libobj}T <<EOF
pic_object=none

EOF
Jason Merrill committed
709 710 711 712
    fi

    # Only build a position-dependent object if we build old libraries.
    if test "$build_old_libs" = yes; then
713 714 715 716 717 718
      if test "$pic_mode" != yes; then
	# Don't build PIC code
	command="$base_compile $srcfile"
      else
	command="$base_compile $srcfile $pic_flag"
      fi
719 720 721 722
      if test "$compiler_c_o" = yes; then
	command="$command -o $obj"
      fi

#  
Jeff Law committed
723
      # Suppress compiler output if we already did a PIC compilation.
724
      command="$command$suppress_output"
725
      $run $rm "$obj" "$output_obj"
726 727
      $show "$command"
      if $run eval "$command"; then :
Jason Merrill committed
728
      else
729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753
	$run $rm $removelist
	exit 1
      fi

      if test "$need_locks" = warn &&
	 test x"`cat $lockfile 2>/dev/null`" != x"$srcfile"; then
	echo "\
*** ERROR, $lockfile contains:
`cat $lockfile 2>/dev/null`

but it should contain:
$srcfile

This indicates that another process is trying to use the same
temporary object file, and libtool could not work around it because
your compiler does not support \`-c' and \`-o' together.  If you
repeat this compilation, it may succeed, by chance, but you had better
avoid parallel builds (make -j) in this platform, or get a better
compiler."

	$run $rm $removelist
	exit 1
      fi

      # Just move the object if needed
754
      if test -n "$output_obj" && test "x$output_obj" != "x$obj"; then
755 756 757 758 759 760 761 762 763
	$show "$mv $output_obj $obj"
	if $run $mv $output_obj $obj; then :
	else
	  error=$?
	  $run $rm $removelist
	  exit $error
	fi
      fi

764 765 766 767 768 769 770 771 772 773 774 775 776 777 778
      # Append the name of the non-PIC object the libtool object file.
      # Only append if the libtool object file exists.
      test -z "$run" && cat >> ${libobj}T <<EOF
# Name of the non-PIC object.
non_pic_object='$objname'

EOF
    else
      # Append the name of the non-PIC object the libtool object file.
      # Only append if the libtool object file exists.
      test -z "$run" && cat >> ${libobj}T <<EOF
# Name of the non-PIC object.
non_pic_object=none

EOF
Jason Merrill committed
779 780
    fi

781 782
    $run $mv "${libobj}T" "${libobj}"

783 784
    # Unlock the critical section if it was locked
    if test "$need_locks" != no; then
785
      $run $rm "$lockfile"
Jason Merrill committed
786 787 788 789 790 791
    fi

    exit 0
    ;;

  # libtool link mode
792
  link | relink)
#  
Jeff Law committed
793
    modename="$modename: link"
794
    case $host in
795
    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812
      # It is impossible to link a dll without this setting, and
      # we shouldn't force the makefile maintainer to figure out
      # which system we are compiling for in order to pass an extra
      # flag for every libtool invokation.
      # allow_undefined=no

      # FIXME: Unfortunately, there are problems with the above when trying
      # to make a dll which has undefined symbols, in which case not
      # even a static library is built.  For now, we need to specify
      # -no-undefined on the libtool link line when we can be certain
      # that all symbols are satisfied, otherwise we get a static library.
      allow_undefined=yes
      ;;
    *)
      allow_undefined=yes
      ;;
    esac
813 814
    libtool_args="$nonopt"
    base_compile="$nonopt"
Jason Merrill committed
815 816
    compile_command="$nonopt"
    finalize_command="$nonopt"
#  
Jeff Law committed
817

818 819
    compile_rpath=
    finalize_rpath=
Jason Merrill committed
820 821
    compile_shlibpath=
    finalize_shlibpath=
822 823
    convenience=
    old_convenience=
Jason Merrill committed
824
    deplibs=
825 826 827 828 829
    old_deplibs=
    compiler_flags=
    linker_flags=
    dllsearchpath=
    lib_search_path=`pwd`
830 831

    avoid_version=no
#  
Jeff Law committed
832 833
    dlfiles=
    dlprefiles=
834
    dlself=no
Jason Merrill committed
835
    export_dynamic=no
836 837
    export_symbols=
    export_symbols_regex=
838
    generated=
Jason Merrill committed
839 840
    libobjs=
    ltlibs=
841
    module=no
842
    no_install=no
Jason Merrill committed
843
    objs=
844
    non_pic_objects=
Jason Merrill committed
845
    prefer_static_libs=no
846
    preload=no
Jason Merrill committed
847 848
    prev=
    prevarg=
#  
Jeff Law committed
849 850
    release=
    rpath=
851
    xrpath=
Jason Merrill committed
852 853
    perm_rpath=
    temp_rpath=
854
    thread_safe=no
Jason Merrill committed
855 856 857 858 859
    vinfo=

    # We need to know -static, to get the right output filenames.
    for arg
    do
860
      case $arg in
#  
Jeff Law committed
861
      -all-static | -static)
Jason Merrill committed
862 863
	if test "X$arg" = "X-all-static"; then
	  if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
#  
Jeff Law committed
864
	    $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2
Jason Merrill committed
865 866 867 868 869 870 871 872
	  fi
	  if test -n "$link_static_flag"; then
	    dlopen_self=$dlopen_self_static
	  fi
	else
	  if test -z "$pic_flag" && test -n "$link_static_flag"; then
	    dlopen_self=$dlopen_self_static
	  fi
873 874
	fi
	build_libtool_libs=no
#  
Jeff Law committed
875
	build_old_libs=yes
Jason Merrill committed
876
	prefer_static_libs=yes
877 878
	break
	;;
Jason Merrill committed
879 880 881
      esac
    done

#  
Jeff Law committed
882 883 884 885
    # See if our shared archives depend on static archives.
    test -n "$old_archive_from_new_cmds" && build_old_libs=yes

    # Go through the arguments, transforming them on the way.
886 887
    while test $# -gt 0; do
      arg="$1"
888
      base_compile="$base_compile $arg"
889
      shift
890
      case $arg in
891 892 893 894 895 896
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
	qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test
	;;
      *) qarg=$arg ;;
      esac
      libtool_args="$libtool_args $qarg"
897

Jason Merrill committed
898 899
      # If the previous option needs an argument, assign it.
      if test -n "$prev"; then
900
	case $prev in
901 902 903 904 905 906
	output)
	  compile_command="$compile_command @OUTPUT@"
	  finalize_command="$finalize_command @OUTPUT@"
	  ;;
	esac

907
	case $prev in
908 909 910 911 912 913 914
	dlfiles|dlprefiles)
	  if test "$preload" = no; then
	    # Add the symbol object into the linking commands.
	    compile_command="$compile_command @SYMFILE@"
	    finalize_command="$finalize_command @SYMFILE@"
	    preload=yes
	  fi
915
	  case $arg in
916
	  *.la | *.lo) ;;  # We handle these cases below.
Jason Merrill committed
917 918 919 920 921 922 923 924
	  force)
	    if test "$dlself" = no; then
	      dlself=needless
	      export_dynamic=yes
	    fi
	    prev=
	    continue
	    ;;
925 926 927 928 929
	  self)
	    if test "$prev" = dlprefiles; then
	      dlself=yes
	    elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
	      dlself=yes
Jason Merrill committed
930 931 932
	    else
	      dlself=needless
	      export_dynamic=yes
933 934 935 936 937
	    fi
	    prev=
	    continue
	    ;;
	  *)
Jason Merrill committed
938 939 940 941 942
	    if test "$prev" = dlfiles; then
	      dlfiles="$dlfiles $arg"
	    else
	      dlprefiles="$dlprefiles $arg"
	    fi
943
	    prev=
944
	    continue
945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961
	    ;;
	  esac
	  ;;
	expsyms)
	  export_symbols="$arg"
	  if test ! -f "$arg"; then
	    $echo "$modename: symbol file \`$arg' does not exist"
	    exit 1
	  fi
	  prev=
	  continue
	  ;;
	expsyms_regex)
	  export_symbols_regex="$arg"
	  prev=
	  continue
	  ;;
#  
Jeff Law committed
962 963 964 965 966
	release)
	  release="-$arg"
	  prev=
	  continue
	  ;;
967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073
	objectlist)
	  if test -f "$arg"; then
            save_arg=$arg
	    moreargs=
	    for fil in `cat $save_arg`
	    do
#	      moreargs="$moreargs $fil"
              arg=$fil
              # A libtool-controlled object.

	      # Check to see that this really is a libtool object.
	      if (sed -e '2q' $arg | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
                pic_object=
                non_pic_object=

                # Read the .lo file
                # If there is no directory component, then add one.
                case $arg in
                */* | *\\*) . $arg ;;
                *) . ./$arg ;;
                esac

                if test -z "$pic_object" || \
                   test -z "$non_pic_object" ||
                   test "$pic_object" = none && \
                   test "$non_pic_object" = none; then
                  $echo "$modename: cannot find name of object for \`$arg'" 1>&2
                  exit 1
                fi

	        # Extract subdirectory from the argument.
	        xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
	        if test "X$xdir" = "X$arg"; then
	          xdir=
	        else
	          xdir="$xdir/"
	        fi

                if test "$pic_object" != none; then
                  # Prepend the subdirectory the object is found in.
	          pic_object="$xdir$pic_object"

	          if test "$prev" = dlfiles; then
	            if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
	              dlfiles="$dlfiles $pic_object"
	              prev=
	              continue
	            else
	              # If libtool objects are unsupported, then we need to preload.
	              prev=dlprefiles
	            fi
	          fi

	          # CHECK ME:  I think I busted this.  -Ossama
                  if test "$prev" = dlprefiles; then
	            # Preload the old-style object.
	            dlprefiles="$dlprefiles $pic_object"
	            prev=
                  fi

                  # A PIC object.
	          libobjs="$libobjs $pic_object"
	          arg="$pic_object"
                fi

                # Non-PIC object.
                if test "$non_pic_object" != none; then
                  # Prepend the subdirectory the object is found in.
	          non_pic_object="$xdir$non_pic_object"

                  # A standard non-PIC object
                  non_pic_objects="$non_pic_objects $non_pic_object"
                  if test -z "$pic_object" || test "$pic_object" = none ; then
                    arg="$non_pic_object"
                  fi
                fi
              else
                # Only an error if not doing a dry-run.
                if test -z "$run"; then
                  $echo "$modename: \`$arg' is not a valid libtool object" 1>&2
                  exit 1
                else
                  # Dry-run case.

	          # Extract subdirectory from the argument.
	          xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
	          if test "X$xdir" = "X$arg"; then
	            xdir=
	          else
	            xdir="$xdir/"
	          fi

                  pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
                  non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
	          libobjs="$libobjs $pic_object"
                  non_pic_objects="$non_pic_objects $non_pic_object"
                fi
	      fi
	    done
	  else
	    $echo "$modename: link input file \`$save_arg' does not exist"
	    exit 1
	  fi
          arg=$save_arg
	  prev=
	  continue
	  ;;
Jason Merrill committed
1074 1075
	rpath | xrpath)
	  # We need an absolute path.
1076
	  case $arg in
Jason Merrill committed
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
	  [\\/]* | [A-Za-z]:[\\/]*) ;;
	  *)
	    $echo "$modename: only absolute run-paths are allowed" 1>&2
	    exit 1
	    ;;
	  esac
	  if test "$prev" = rpath; then
	    case "$rpath " in
	    *" $arg "*) ;;
	    *) rpath="$rpath $arg" ;;
	    esac
	  else
	    case "$xrpath " in
	    *" $arg "*) ;;
	    *) xrpath="$xrpath $arg" ;;
	    esac
	  fi
1094 1095 1096
	  prev=
	  continue
	  ;;
1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
	xcompiler)
	  compiler_flags="$compiler_flags $qarg"
	  prev=
	  compile_command="$compile_command $qarg"
	  finalize_command="$finalize_command $qarg"
	  continue
	  ;;
	xlinker)
	  linker_flags="$linker_flags $qarg"
	  compiler_flags="$compiler_flags $wl$qarg"
	  prev=
	  compile_command="$compile_command $wl$qarg"
	  finalize_command="$finalize_command $wl$qarg"
	  continue
	  ;;
1112 1113 1114 1115 1116 1117
	*)
	  eval "$prev=\"\$arg\""
	  prev=
	  continue
	  ;;
	esac
1118
      fi # test -n $prev
Jason Merrill committed
1119 1120 1121

      prevarg="$arg"

1122
      case $arg in
#  
Jeff Law committed
1123 1124
      -all-static)
	if test -n "$link_static_flag"; then
1125
	  compile_command="$compile_command $link_static_flag"
#  
Jeff Law committed
1126
	  finalize_command="$finalize_command $link_static_flag"
1127 1128
	fi
	continue
#  
Jeff Law committed
1129
	;;
Jason Merrill committed
1130

#  
Jeff Law committed
1131 1132 1133
      -allow-undefined)
	# FIXME: remove this flag sometime in the future.
	$echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2
Jason Merrill committed
1134 1135 1136
	continue
	;;

1137 1138 1139 1140 1141
      -avoid-version)
	avoid_version=yes
	continue
	;;

#  
Jeff Law committed
1142
      -dlopen)
1143 1144 1145
	prev=dlfiles
	continue
	;;
Jason Merrill committed
1146

#  
Jeff Law committed
1147
      -dlpreopen)
1148 1149 1150
	prev=dlprefiles
	continue
	;;
Jason Merrill committed
1151

#  
Jeff Law committed
1152
      -export-dynamic)
Jason Merrill committed
1153 1154
	export_dynamic=yes
	continue
1155
	;;
Jason Merrill committed
1156

1157 1158
      -export-symbols | -export-symbols-regex)
	if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
1159
	  $echo "$modename: more than one -exported-symbols argument is not allowed"
1160 1161
	  exit 1
	fi
Jason Merrill committed
1162
	if test "X$arg" = "X-export-symbols"; then
1163 1164 1165 1166 1167 1168
	  prev=expsyms
	else
	  prev=expsyms_regex
	fi
	continue
	;;
Jason Merrill committed
1169

1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180
      # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
      # so, if we see these flags be careful not to treat them like -L
      -L[A-Z][A-Z]*:*)
	case $with_gcc/$host in
	no/*-*-irix*)
	  compile_command="$compile_command $arg"
	  finalize_command="$finalize_command $arg"
	  ;;
	esac
	continue
	;;
1181

#  
Jeff Law committed
1182
      -L*)
Jason Merrill committed
1183 1184
	dir=`$echo "X$arg" | $Xsed -e 's/^-L//'`
	# We need an absolute path.
1185
	case $dir in
Jason Merrill committed
1186
	[\\/]* | [A-Za-z]:[\\/]*) ;;
1187
	*)
Jason Merrill committed
1188 1189
	  absdir=`cd "$dir" && pwd`
	  if test -z "$absdir"; then
1190 1191
	    $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2
	    exit 1
Jason Merrill committed
1192 1193
	  fi
	  dir="$absdir"
1194 1195
	  ;;
	esac
1196 1197 1198 1199 1200 1201
	case "$deplibs " in
	*" -L$dir "*) ;;
	*)
	  deplibs="$deplibs -L$dir"
	  lib_search_path="$lib_search_path $dir"
	  ;;
1202
	esac
1203
	case $host in
1204
	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
1205
	  case :$dllsearchpath: in
1206 1207
	  *":$dir:"*) ;;
	  *) dllsearchpath="$dllsearchpath:$dir";;
1208 1209 1210
	  esac
	  ;;
	esac
1211
	continue
1212
	;;
Jason Merrill committed
1213

1214
      -l*)
1215
	if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
1216
	  case $host in
1217
	  *-*-cygwin* | *-*-pw32* | *-*-beos*)
1218
	    # These systems don't actually have a C or math library (as such)
Jason Merrill committed
1219 1220
	    continue
	    ;;
1221 1222 1223
	  *-*-mingw* | *-*-os2*)
	    # These systems don't actually have a C library (as such)
	    test "X$arg" = "X-lc" && continue
1224
	    ;;
Jason Merrill committed
1225 1226
	  esac
	fi
1227
	deplibs="$deplibs $arg"
1228
	continue
1229
	;;
Jason Merrill committed
1230

1231
      -module)
Jason Merrill committed
1232 1233
	module=yes
	continue
1234
	;;
Jason Merrill committed
1235

1236 1237 1238 1239 1240 1241
      -no-fast-install)
	fast_install=no
	continue
	;;

      -no-install)
1242
	case $host in
1243
	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
1244 1245 1246 1247 1248 1249
	  # The PATH hackery in wrapper scripts is required on Windows
	  # in order for the loader to find any dlls it needs.
	  $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2
	  $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2
	  fast_install=no
	  ;;
1250
	*) no_install=yes ;;
1251 1252 1253 1254
	esac
	continue
	;;

#  
Jeff Law committed
1255 1256
      -no-undefined)
	allow_undefined=no
Jason Merrill committed
1257 1258 1259
	continue
	;;

1260 1261 1262 1263 1264
      -objectlist)
	prev=objectlist
	continue
	;;

#  
Jeff Law committed
1265
      -o) prev=output ;;
Jason Merrill committed
1266

#  
Jeff Law committed
1267 1268 1269
      -release)
	prev=release
	continue
Jason Merrill committed
1270 1271
	;;

#  
Jeff Law committed
1272
      -rpath)
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
	prev=rpath
	continue
	;;

      -R)
	prev=xrpath
	continue
	;;

      -R*)
Jason Merrill committed
1283 1284
	dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`
	# We need an absolute path.
1285
	case $dir in
Jason Merrill committed
1286 1287 1288 1289 1290 1291 1292 1293 1294 1295
	[\\/]* | [A-Za-z]:[\\/]*) ;;
	*)
	  $echo "$modename: only absolute run-paths are allowed" 1>&2
	  exit 1
	  ;;
	esac
	case "$xrpath " in
	*" $dir "*) ;;
	*) xrpath="$xrpath $dir" ;;
	esac
1296 1297
	continue
	;;
Jason Merrill committed
1298

#  
Jeff Law committed
1299
      -static)
1300
	# The effects of -static are defined in a previous loop.
1301 1302 1303 1304
	# We used to do the same as -all-static on platforms that
	# didn't have a PIC flag, but the assumption that the effects
	# would be equivalent was wrong.  It would break on at least
	# Digital Unix and AIX.
1305 1306 1307 1308 1309
	continue
	;;

      -thread-safe)
	thread_safe=yes
#  
Jeff Law committed
1310
	continue
Jason Merrill committed
1311 1312
	;;

#  
Jeff Law committed
1313
      -version-info)
1314 1315 1316
	prev=vinfo
	continue
	;;
Jason Merrill committed
1317

1318 1319 1320 1321 1322 1323
      -Wc,*)
	args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`
	arg=
	IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=','
	for flag in $args; do
	  IFS="$save_ifs"
1324
	  case $flag in
1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
	    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
	    flag="\"$flag\""
	    ;;
	  esac
	  arg="$arg $wl$flag"
	  compiler_flags="$compiler_flags $flag"
	done
	IFS="$save_ifs"
	arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
	;;

      -Wl,*)
	args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`
	arg=
	IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=','
	for flag in $args; do
	  IFS="$save_ifs"
1342
	  case $flag in
1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364
	    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
	    flag="\"$flag\""
	    ;;
	  esac
	  arg="$arg $wl$flag"
	  compiler_flags="$compiler_flags $wl$flag"
	  linker_flags="$linker_flags $flag"
	done
	IFS="$save_ifs"
	arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
	;;

      -Xcompiler)
	prev=xcompiler
	continue
	;;

      -Xlinker)
	prev=xlinker
	continue
	;;

#  
Jeff Law committed
1365 1366 1367 1368 1369
      # Some other compiler flag.
      -* | +*)
	# Unknown arguments in both finalize_command and compile_command need
	# to be aesthetically quoted because they are evaled later.
	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
1370
	case $arg in
1371
	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
#  
Jeff Law committed
1372 1373 1374
	  arg="\"$arg\""
	  ;;
	esac
1375
	;;
Jason Merrill committed
1376

1377
      *.$objext)
1378 1379 1380
	# A standard object.
	objs="$objs $arg"
	;;
Jason Merrill committed
1381

#  
Jeff Law committed
1382
      *.lo)
1383 1384 1385 1386 1387 1388 1389 1390 1391
	# A libtool-controlled object.

	# Check to see that this really is a libtool object.
	if (sed -e '2q' $arg | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
          pic_object=
          non_pic_object=

          # Read the .lo file
          # If there is no directory component, then add one.
1392
          case $arg in
1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408
          */* | *\\*) . $arg ;;
          *) . ./$arg ;;
          esac

          if test -z "$pic_object" || \
             test -z "$non_pic_object" ||
             test "$pic_object" = none && \
             test "$non_pic_object" = none; then
            $echo "$modename: cannot find name of object for \`$arg'" 1>&2
            exit 1
          fi

	  # Extract subdirectory from the argument.
	  xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
	  if test "X$xdir" = "X$arg"; then
	    xdir=
#  
Jeff Law committed
1409
	  else
1410
	    xdir="$xdir/"
#  
Jeff Law committed
1411
	  fi
Jason Merrill committed
1412

1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471
          if test "$pic_object" != none; then
            # Prepend the subdirectory the object is found in.
	    pic_object="$xdir$pic_object"

	    if test "$prev" = dlfiles; then
	      if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
	        dlfiles="$dlfiles $pic_object"
	        prev=
	        continue
	      else
	        # If libtool objects are unsupported, then we need to preload.
	        prev=dlprefiles
	      fi
	    fi

	    # CHECK ME:  I think I busted this.  -Ossama
            if test "$prev" = dlprefiles; then
	      # Preload the old-style object.
	      dlprefiles="$dlprefiles $pic_object"
	      prev=
            fi

            # A PIC object.
	    libobjs="$libobjs $pic_object"
	    arg="$pic_object"
          fi

          # Non-PIC object.
          if test "$non_pic_object" != none; then
            # Prepend the subdirectory the object is found in.
	    non_pic_object="$xdir$non_pic_object"

            # A standard non-PIC object
            non_pic_objects="$non_pic_objects $non_pic_object"
            if test -z "$pic_object" || test "$pic_object" = none ; then
              arg="$non_pic_object"
            fi
          fi
        else
          # Only an error if not doing a dry-run.
          if test -z "$run"; then
            $echo "$modename: \`$arg' is not a valid libtool object" 1>&2
            exit 1
          else
            # Dry-run case.

	    # Extract subdirectory from the argument.
	    xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
	    if test "X$xdir" = "X$arg"; then
	      xdir=
	    else
	      xdir="$xdir/"
	    fi

            pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
            non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
	    libobjs="$libobjs $pic_object"
            non_pic_objects="$non_pic_objects $non_pic_object"
          fi
Jason Merrill committed
1472
	fi
1473 1474 1475 1476 1477 1478 1479
	;;

      *.$libext)
	# An archive.
	deplibs="$deplibs $arg"
	old_deplibs="$old_deplibs $arg"
	continue
1480
	;;
Jason Merrill committed
1481

#  
Jeff Law committed
1482
      *.la)
1483 1484
	# A libtool-controlled library.

1485 1486 1487 1488 1489 1490 1491 1492
	if test "$prev" = dlfiles; then
	  # This library was specified with -dlopen.
	  dlfiles="$dlfiles $arg"
	  prev=
	elif test "$prev" = dlprefiles; then
	  # The library was specified with -dlpreopen.
	  dlprefiles="$dlprefiles $arg"
	  prev=
1493
	else
1494
	  deplibs="$deplibs $arg"
1495
	fi
1496 1497
	continue
	;;
1498

1499 1500 1501 1502 1503
      # Some other compiler argument.
      *)
	# Unknown arguments in both finalize_command and compile_command need
	# to be aesthetically quoted because they are evaled later.
	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
1504
	case $arg in
1505 1506 1507
	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
	  arg="\"$arg\""
	  ;;
1508
	esac
1509
	;;
1510
      esac # arg
1511

1512 1513 1514 1515 1516
      # Now actually substitute the argument into the commands.
      if test -n "$arg"; then
	compile_command="$compile_command $arg"
	finalize_command="$finalize_command $arg"
      fi
1517
    done # argument parsing loop
1518

1519 1520 1521 1522 1523
    if test -n "$prev"; then
      $echo "$modename: the \`$prevarg' option requires an argument" 1>&2
      $echo "$help" 1>&2
      exit 1
    fi
1524

1525 1526 1527 1528 1529 1530 1531 1532 1533
    # Infer tagged configuration to use if any are available and
    # if one wasn't chosen via the "--tag" command line option.
    # Only attempt this if the compiler in the base link
    # command doesn't match the default compiler.
    if test -n "$available_tags" && test -z "$tagname"; then
      case $base_compile in
      "$CC "*) ;;
      # Blanks in the command may have been stripped by the calling shell,
      # but not from the CC environment variable when ltconfig was run.
1534
      "`$echo $CC` "*) ;;
1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547
      *)
        for z in $available_tags; do
          if grep "^### BEGIN LIBTOOL TAG CONFIG: $z$" < "$0" > /dev/null; then
	    # Evaluate the configuration.
	    eval "`sed -n -e '/^### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^### END LIBTOOL TAG CONFIG: '$z'$/p' < $0`"
            case $base_compile in
	    "$CC "*)
              # The compiler in $compile_command matches
              # the one in the tagged configuration.
              # Assume this is the tagged configuration we want.
              tagname=$z
              break
	      ;;
1548
	    "`$echo $CC` "*)
1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604
	      tagname=$z
	      break
	      ;;
	    esac
          fi
        done
        # If $tagname still isn't set, then no tagged configuration
        # was found and let the user know that the "--tag" command
        # line option must be used.
        if test -z "$tagname"; then
          echo "$modename: unable to infer tagged configuration"
          echo "$modename: specify a tag with \`--tag'" 1>&2
	  exit 1
#       else
#         echo "$modename: using $tagname tagged configuration"
        fi
	;;
      esac
    fi

    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
      eval arg=\"$export_dynamic_flag_spec\"
      compile_command="$compile_command $arg"
      finalize_command="$finalize_command $arg"
    fi

    # calculate the name of the file, without its directory
    outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`
    libobjs_save="$libobjs"

    if test -n "$shlibpath_var"; then
      # get the directories listed in $shlibpath_var
      eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`
    else
      shlib_search_path=
    fi
    eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
    eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"

    output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`
    if test "X$output_objdir" = "X$output"; then
      output_objdir="$objdir"
    else
      output_objdir="$output_objdir/$objdir"
    fi
    # Create the object directory.
    if test ! -d $output_objdir; then
      $show "$mkdir $output_objdir"
      $run $mkdir $output_objdir
      status=$?
      if test $status -ne 0 && test ! -d $output_objdir; then
	exit $status
      fi
    fi

    # Determine the type of output
1605
    case $output in
1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629
    "")
      $echo "$modename: you must specify an output file" 1>&2
      $echo "$help" 1>&2
      exit 1
      ;;
    *.$libext) linkmode=oldlib ;;
    *.lo | *.$objext) linkmode=obj ;;
    *.la) linkmode=lib ;;
    *) linkmode=prog ;; # Anything else should be a program.
    esac

    specialdeplibs=
    libs=
    # Find all interdependent deplibs by searching for libraries
    # that are linked more than once (e.g. -la -lb -la)
    for deplib in $deplibs; do
      case "$libs " in
      *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
      esac
      libs="$libs $deplib"
    done

    if test $linkmode = lib; then
      libs="$predeps $libs $compiler_lib_search_path $postdeps"
1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641

      # Compute libraries that are listed more than once in $predeps
      # $postdeps and mark them as special (i.e., whose duplicates are
      # not to be eliminated).
      pre_post_deps=
      for pre_post_dep in $predeps $postdeps; do
        case "$pre_post_deps " in
	*" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;;
	esac
	pre_post_deps="$pre_post_deps $pre_post_dep"
      done
      pre_post_deps=
1642 1643 1644 1645 1646 1647
    fi

    deplibs=
    newdependency_libs=
    newlib_search_path=
    need_relink=no # whether we're linking any uninstalled libtool libraries
1648 1649
    notinst_deplibs= # not-installed libtool libraries
    notinst_path= # paths that contain not-installed libtool libraries
1650 1651 1652 1653
    case $linkmode in
    lib)
	passes="conv link"
	for file in $dlfiles $dlprefiles; do
1654
	  case $file in
1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670
	  *.la) ;;
	  *)
	    $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2
	    exit 1
	    ;;
	  esac
	done
	;;
    prog)
	compile_deplibs=
	finalize_deplibs=
	alldeplibs=no
	newdlfiles=
	newdlprefiles=
	passes="conv scan dlopen dlpreopen link"
	;;
1671
    *)  passes="conv"
1672 1673 1674 1675
	;;
    esac
    for pass in $passes; do
      if test $linkmode = prog; then
1676
	# Determine which files to process
1677
	case $pass in
1678 1679 1680 1681 1682
	dlopen)
	  libs="$dlfiles"
	  save_deplibs="$deplibs" # Collect dlpreopened libraries
	  deplibs=
	  ;;
1683 1684 1685 1686 1687 1688 1689
	dlpreopen) libs="$dlprefiles" ;;
	link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
	esac
      fi
      for deplib in $libs; do
	lib=
	found=no
1690
	case $deplib in
1691
	-l*)
1692 1693
	  if test $linkmode = oldlib && test $linkmode = obj; then
	    $echo "$modename: warning: \`-l' is ignored for archives/objects: $deplib" 1>&2
1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709
	    continue
	  fi
	  if test $pass = conv; then
	    deplibs="$deplib $deplibs"
	    continue
	  fi
	  name=`$echo "X$deplib" | $Xsed -e 's/^-l//'`
	  for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do
	    # Search the libtool library
	    lib="$searchdir/lib${name}.la"
	    if test -f "$lib"; then
	      found=yes
	      break
	    fi
	  done
	  if test "$found" != yes; then
1710
	    # deplib doesn't seem to be a libtool library
1711 1712 1713 1714 1715 1716 1717 1718 1719
	    if test "$linkmode,$pass" = "prog,link"; then
	      compile_deplibs="$deplib $compile_deplibs"
	      finalize_deplibs="$deplib $finalize_deplibs"
	    else
	      deplibs="$deplib $deplibs"
	      test $linkmode = lib && newdependency_libs="$deplib $newdependency_libs"
	    fi
	    continue
	  fi
1720
	  ;; # -l
1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742
	-L*)
	  case $linkmode in
	  lib)
	    deplibs="$deplib $deplibs"
	    test $pass = conv && continue
	    newdependency_libs="$deplib $newdependency_libs"
	    newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
	    ;;
	  prog)
	    if test $pass = conv; then
	      deplibs="$deplib $deplibs"
	      continue
	    fi
	    if test $pass = scan; then
	      deplibs="$deplib $deplibs"
	      newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
	    else
	      compile_deplibs="$deplib $compile_deplibs"
	      finalize_deplibs="$deplib $finalize_deplibs"
	    fi
	    ;;
	  *)
1743
	    $echo "$modename: warning: \`-L' is ignored for archives/objects: $deplib" 1>&2
1744
	    ;;
1745
	  esac # linkmode
1746
	  continue
1747
	  ;; # -L
1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790
	-R*)
	  if test $pass = link; then
	    dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`
	    # Make sure the xrpath contains only unique directories.
	    case "$xrpath " in
	    *" $dir "*) ;;
	    *) xrpath="$xrpath $dir" ;;
	    esac
	  fi
	  deplibs="$deplib $deplibs"
	  continue
	  ;;
	*.la) lib="$deplib" ;;
	*.$libext)
	  if test $pass = conv; then
	    deplibs="$deplib $deplibs"
	    continue
	  fi
	  case $linkmode in
	  lib)
	    if test "$deplibs_check_method" != pass_all; then
	      echo
	      echo "*** Warning: This library needs some functionality provided by $deplib."
	      echo "*** I have the capability to make that library automatically link in when"
	      echo "*** you link to this library.  But I can only do this if you have a"
	      echo "*** shared version of the library, which you do not appear to have."
	    else
	      echo
	      echo "*** Warning: Linking the shared library $output against the"
	      echo "*** static library $deplib is not portable!"
	      deplibs="$deplib $deplibs"
	    fi
	    continue
	    ;;
	  prog)
	    if test $pass != link; then
	      deplibs="$deplib $deplibs"
	    else
	      compile_deplibs="$deplib $compile_deplibs"
	      finalize_deplibs="$deplib $finalize_deplibs"
	    fi
	    continue
	    ;;
1791 1792
	  esac # linkmode
	  ;; # *.$libext
1793
	*.lo | *.$objext)
1794 1795 1796 1797 1798 1799 1800 1801
	  if test $pass = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
	    # If there is no dlopen support or we're linking statically,
	    # we need to preload.
	    newdlprefiles="$newdlprefiles $deplib"
	    compile_deplibs="$deplib $compile_deplibs"
	    finalize_deplibs="$deplib $finalize_deplibs"
	  else
	    newdlfiles="$newdlfiles $deplib"
1802
	  fi
1803 1804 1805 1806 1807 1808
	  continue
	  ;;
	%DEPLIBS%)
	  alldeplibs=yes
	  continue
	  ;;
1809
	esac # case $deplib
1810 1811 1812 1813
	if test $found = yes || test -f "$lib"; then :
	else
	  $echo "$modename: cannot find the library \`$lib'" 1>&2
	  exit 1
1814 1815
	fi

1816 1817 1818 1819 1820
	# Check to see that this really is a libtool archive.
	if (sed -e '2q' $lib | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
	else
	  $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
	  exit 1
1821 1822
	fi

1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836
	ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
	test "X$ladir" = "X$lib" && ladir="."

	dlname=
	dlopen=
	dlpreopen=
	libdir=
	library_names=
	old_library=
	# If the library was installed with an old release of libtool,
	# it will not redefine variable installed.
	installed=yes

	# Read the .la file
1837
	case $lib in
1838 1839 1840 1841 1842 1843
	*/* | *\\*) . $lib ;;
	*) . ./$lib ;;
	esac

	if test "$linkmode,$pass" = "lib,link" ||
	   test "$linkmode,$pass" = "prog,scan" ||
1844 1845
	   { test $linkmode = oldlib && test $linkmode = obj; }; then
	   # Add dl[pre]opened files of deplib
1846 1847 1848 1849 1850
	  test -n "$dlopen" && dlfiles="$dlfiles $dlopen"
	  test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen"
	fi

	if test $pass = conv; then
1851
	  # Only check for convenience libraries
1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872
	  deplibs="$lib $deplibs"
	  if test -z "$libdir"; then
	    if test -z "$old_library"; then
	      $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
	      exit 1
	    fi
	    # It is a libtool convenience library, so add in its objects.
	    convenience="$convenience $ladir/$objdir/$old_library"
	    old_convenience="$old_convenience $ladir/$objdir/$old_library"
	    tmp_libs=
	    for deplib in $dependency_libs; do
	      deplibs="$deplib $deplibs"
	      case "$tmp_libs " in
	      *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
	      esac
	      tmp_libs="$tmp_libs $deplib"
	    done
	  elif test $linkmode != prog && test $linkmode != lib; then
	    $echo "$modename: \`$lib' is not a convenience library" 1>&2
	    exit 1
	  fi
1873
	  continue
1874
	fi # $pass = conv
1875

1876 1877 1878 1879 1880 1881 1882 1883 1884 1885
	# Get the name of the library we link against.
	linklib=
	for l in $old_library $library_names; do
	  linklib="$l"
	done
	if test -z "$linklib"; then
	  $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
	  exit 1
	fi

1886
	# This library was specified with -dlopen.
1887 1888 1889 1890 1891 1892
	if test $pass = dlopen; then
	  if test -z "$libdir"; then
	    $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2
	    exit 1
	  fi
	  if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
1893
	    # If there is no dlname, no dlopen support or we're linking
1894 1895
	    # statically, we need to preload.
	    dlprefiles="$dlprefiles $lib"
1896
	  else
1897 1898 1899
	    newdlfiles="$newdlfiles $lib"
	  fi
	  continue
1900
	fi # $pass = dlopen
1901 1902

	# We need an absolute path.
1903
	case $ladir in
1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925
	[\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;
	*)
	  abs_ladir=`cd "$ladir" && pwd`
	  if test -z "$abs_ladir"; then
	    $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2
	    $echo "$modename: passing it literally to the linker, although it might fail" 1>&2
	    abs_ladir="$ladir"
	  fi
	  ;;
	esac
	laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`

	# Find the relevant object directory and library name.
	if test "X$installed" = Xyes; then
	  if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
	    $echo "$modename: warning: library \`$lib' was moved." 1>&2
	    dir="$ladir"
	    absdir="$abs_ladir"
	    libdir="$abs_ladir"
	  else
	    dir="$libdir"
	    absdir="$libdir"
1926
	  fi
1927 1928 1929 1930
	else
	  dir="$ladir/$objdir"
	  absdir="$abs_ladir/$objdir"
	  # Remove this search path later
1931 1932
	  notinst_path="$notinst_path $abs_ladir"
	fi # $installed = yes
1933
	name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
1934

1935 1936 1937 1938 1939 1940
	# This library was specified with -dlpreopen.
	if test $pass = dlpreopen; then
	  if test -z "$libdir"; then
	    $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2
	    exit 1
	  fi
1941 1942 1943
	  # Prefer using a static library (so that no silly _DYNAMIC symbols
	  # are required to link).
	  if test -n "$old_library"; then
1944
	    newdlprefiles="$newdlprefiles $dir/$old_library"
1945 1946 1947
	  # Otherwise, use the dlname, so that lt_dlopen finds it.
	  elif test -n "$dlname"; then
	    newdlprefiles="$newdlprefiles $dir/$dlname"
1948
	  else
1949
	    newdlprefiles="$newdlprefiles $dir/$linklib"
1950
	  fi
1951
	fi # $pass = dlpreopen
1952

1953
	if test -z "$libdir"; then
1954
	  # Link the convenience library
1955 1956 1957 1958 1959 1960
	  if test $linkmode = lib; then
	    deplibs="$dir/$old_library $deplibs"
	  elif test "$linkmode,$pass" = "prog,link"; then
	    compile_deplibs="$dir/$old_library $compile_deplibs"
	    finalize_deplibs="$dir/$old_library $finalize_deplibs"
	  else
1961
	    deplibs="$lib $deplibs"
1962
	  fi
1963 1964
	  continue
	fi
#  
Jeff Law committed
1965

1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977
	if test $linkmode = prog && test $pass != link; then
	  newlib_search_path="$newlib_search_path $ladir"
	  deplibs="$lib $deplibs"

	  linkalldeplibs=no
	  if test "$link_all_deplibs" != no || test -z "$library_names" ||
	     test "$build_libtool_libs" = no; then
	    linkalldeplibs=yes
	  fi

	  tmp_libs=
	  for deplib in $dependency_libs; do
1978
	    case $deplib in
1979 1980 1981 1982 1983 1984 1985 1986 1987
	    -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test
	    esac
	    # Need to link against all dependency_libs?
	    if test $linkalldeplibs = yes; then
	      deplibs="$deplib $deplibs"
	    else
	      # Need to hardcode shared library paths
	      # or/and link against static libraries
	      newdependency_libs="$deplib $newdependency_libs"
1988
	    fi
1989 1990 1991 1992
	    case "$tmp_libs " in
	    *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
	    esac
	    tmp_libs="$tmp_libs $deplib"
1993
	  done # for deplib
1994
	  continue
1995
	fi # $linkmode = prog...
1996

1997 1998 1999 2000
	link_static=no # Whether the deplib will be linked statically
	if test -n "$library_names" &&
	   { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
	  # Link against this shared library
2001

2002 2003
	  if test "$linkmode,$pass" = "prog,link" ||
	   { test $linkmode = lib && test $hardcode_into_libs = yes; }; then
2004 2005 2006 2007
	    # Hardcode the library path.
	    # Skip directories that are in the system default run-time
	    # search path.
	    case " $sys_lib_dlsearch_path " in
2008
	    *" $absdir "*) ;;
2009 2010 2011 2012 2013 2014
	    *)
	      case "$compile_rpath " in
	      *" $absdir "*) ;;
	      *) compile_rpath="$compile_rpath $absdir"
	      esac
	      ;;
2015
	    esac
2016
	    case " $sys_lib_dlsearch_path " in
2017
	    *" $libdir "*) ;;
2018 2019 2020 2021 2022 2023
	    *)
	      case "$finalize_rpath " in
	      *" $libdir "*) ;;
	      *) finalize_rpath="$finalize_rpath $libdir"
	      esac
	      ;;
2024
	    esac
2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036
	    if test $linkmode = prog; then
	      # We need to hardcode the library path
	      if test -n "$shlibpath_var"; then
		# Make sure the rpath contains only unique directories.
		case "$temp_rpath " in
		*" $dir "*) ;;
		*" $absdir "*) ;;
		*) temp_rpath="$temp_rpath $dir" ;;
		esac
	      fi
	    fi
	  fi # $linkmode,$pass = prog,link...
#  
Jeff Law committed
2037

2038 2039 2040 2041 2042 2043 2044 2045 2046
	  if test "$alldeplibs" = yes &&
	     { test "$deplibs_check_method" = pass_all ||
	       { test "$build_libtool_libs" = yes &&
		 test -n "$library_names"; }; }; then
	    # We only need to search for static libraries
	    continue
	  fi

	  if test "$installed" = no; then
2047
	    notinst_deplibs="$notinst_deplibs $lib"
2048 2049 2050 2051 2052 2053 2054 2055 2056
	    need_relink=yes
	  fi

	  if test -n "$old_archive_from_expsyms_cmds"; then
	    # figure out the soname
	    set dummy $library_names
	    realname="$2"
	    shift; shift
	    libname=`eval \\$echo \"$libname_spec\"`
2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067
	    # use dlname if we got it. it's perfectly good, no?
	    if test -n "$dlname"; then
	      soname="$dlname"
	    elif test -n "$soname_spec"; then
	      # bleh windows
	      case $host in
	      *cygwin*)
		major=`expr $current - $age`
		versuffix="-$major"
		;;
	      esac
2068 2069 2070 2071 2072 2073
	      eval soname=\"$soname_spec\"
	    else
	      soname="$realname"
	    fi

	    # Make a new name for the extract_expsyms_cmds to use
2074 2075
	    soroot="$soname"
	    soname=`echo $soroot | sed -e 's/^.*\///'`
2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106
	    newlib="libimp-`echo $soname | sed 's/^lib//;s/\.dll$//'`.a"

	    # If the library has no export list, then create one now
	    if test -f "$output_objdir/$soname-def"; then :
	    else
	      $show "extracting exported symbol list from \`$soname'"
	      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
	      eval cmds=\"$extract_expsyms_cmds\"
	      for cmd in $cmds; do
		IFS="$save_ifs"
		$show "$cmd"
		$run eval "$cmd" || exit $?
	      done
	      IFS="$save_ifs"
	    fi

	    # Create $newlib
	    if test -f "$output_objdir/$newlib"; then :; else
	      $show "generating import library for \`$soname'"
	      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
	      eval cmds=\"$old_archive_from_expsyms_cmds\"
	      for cmd in $cmds; do
		IFS="$save_ifs"
		$show "$cmd"
		$run eval "$cmd" || exit $?
	      done
	      IFS="$save_ifs"
	    fi
	    # make sure the library variables are pointing to the new library
	    dir=$output_objdir
	    linklib=$newlib
2107
	  fi # test -n $old_archive_from_expsyms_cmds
2108 2109 2110 2111 2112 2113

	  if test $linkmode = prog || test "$mode" != relink; then
	    add_shlibpath=
	    add_dir=
	    add=
	    lib_linked=yes
2114
	    case $hardcode_action in
2115 2116 2117 2118
	    immediate | unsupported)
	      if test "$hardcode_direct" = no; then
		add="$dir/$linklib"
	      elif test "$hardcode_minus_L" = no; then
2119
		case $host in
2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152
		*-*-sunos*) add_shlibpath="$dir" ;;
		esac
		add_dir="-L$dir"
		add="-l$name"
	      elif test "$hardcode_shlibpath_var" = no; then
		add_shlibpath="$dir"
		add="-l$name"
	      else
		lib_linked=no
	      fi
	      ;;
	    relink)
	      if test "$hardcode_direct" = yes; then
		add="$dir/$linklib"
	      elif test "$hardcode_minus_L" = yes; then
		add_dir="-L$dir"
		add="-l$name"
	      elif test "$hardcode_shlibpath_var" = yes; then
		add_shlibpath="$dir"
		add="-l$name"
	      else
		lib_linked=no
	      fi
	      ;;
	    *) lib_linked=no ;;
	    esac

	    if test "$lib_linked" != yes; then
	      $echo "$modename: configuration error: unsupported hardcode properties"
	      exit 1
	    fi

	    if test -n "$add_shlibpath"; then
2153
	      case :$compile_shlibpath: in
2154 2155
	      *":$add_shlibpath:"*) ;;
	      *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;;
2156
	      esac
2157 2158 2159 2160
	    fi
	    if test $linkmode = prog; then
	      test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
	      test -n "$add" && compile_deplibs="$add $compile_deplibs"
2161
	    else
2162 2163 2164 2165 2166
	      test -n "$add_dir" && deplibs="$add_dir $deplibs"
	      test -n "$add" && deplibs="$add $deplibs"
	      if test "$hardcode_direct" != yes && \
		 test "$hardcode_minus_L" != yes && \
		 test "$hardcode_shlibpath_var" = yes; then
2167
		case :$finalize_shlibpath: in
2168 2169 2170 2171
		*":$libdir:"*) ;;
		*) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
		esac
	      fi
2172
	    fi
2173
	  fi
2174

2175 2176 2177 2178 2179
	  if test $linkmode = prog || test "$mode" = relink; then
	    add_shlibpath=
	    add_dir=
	    add=
	    # Finalize command for both is simple: just hardcode it.
2180
	    if test "$hardcode_direct" = yes; then
2181
	      add="$libdir/$linklib"
2182
	    elif test "$hardcode_minus_L" = yes; then
2183 2184
	      add_dir="-L$libdir"
	      add="-l$name"
2185
	    elif test "$hardcode_shlibpath_var" = yes; then
2186
	      case :$finalize_shlibpath: in
2187 2188
	      *":$libdir:"*) ;;
	      *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
2189
	      esac
2190
	      add="-l$name"
2191
	    else
2192 2193 2194
	      # We cannot seem to hardcode it, guess we'll fake it.
	      add_dir="-L$libdir"
	      add="-l$name"
2195
	    fi
2196

2197 2198 2199 2200 2201 2202 2203
	    if test $linkmode = prog; then
	      test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
	      test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
	    else
	      test -n "$add_dir" && deplibs="$add_dir $deplibs"
	      test -n "$add" && deplibs="$add $deplibs"
	    fi
2204
	  fi
2205
	elif test $linkmode = prog; then
2206 2207 2208 2209 2210 2211 2212 2213 2214
	  if test "$alldeplibs" = yes &&
	     { test "$deplibs_check_method" = pass_all ||
	       { test "$build_libtool_libs" = yes &&
		 test -n "$library_names"; }; }; then
	    # We only need to search for static libraries
	    continue
	  fi

	  # Try to link the static library
#  
Jeff Law committed
2215 2216 2217 2218 2219
	  # Here we assume that one of hardcode_direct or hardcode_minus_L
	  # is not unsupported.  This is valid on all known static and
	  # shared platforms.
	  if test "$hardcode_direct" != unsupported; then
	    test -n "$old_library" && linklib="$old_library"
2220 2221
	    compile_deplibs="$dir/$linklib $compile_deplibs"
	    finalize_deplibs="$dir/$linklib $finalize_deplibs"
#  
Jeff Law committed
2222
	  else
2223 2224 2225 2226 2227 2228 2229 2230
	    compile_deplibs="-l$name -L$dir $compile_deplibs"
	    finalize_deplibs="-l$name -L$dir $finalize_deplibs"
	  fi
	elif test "$build_libtool_libs" = yes; then
	  # Not a shared library
	  if test "$deplibs_check_method" != pass_all; then
	    # We're trying link a shared library against a static one
	    # but the system doesn't support it.
2231

2232 2233 2234 2235 2236 2237 2238
	    # Just print a warning and add the library to dependency_libs so
	    # that the program can be linked against the static library.
	    echo
	    echo "*** Warning: This library needs some functionality provided by $lib."
	    echo "*** I have the capability to make that library automatically link in when"
	    echo "*** you link to this library.  But I can only do this if you have a"
	    echo "*** shared version of the library, which you do not appear to have."
2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255
	    if test "$module" = yes; then
	      echo "*** Therefore, libtool will create a static module, that should work "
	      echo "*** as long as the dlopening application is linked with the -dlopen flag."
	      if test -z "$global_symbol_pipe"; then
	        echo
	        echo "*** However, this would only work if libtool was able to extract symbol"
	        echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
	        echo "*** not find such a program.  So, this module is probably useless."
	        echo "*** \`nm' from GNU binutils and a full rebuild may help."
	      fi
	      if test "$build_old_libs" = no; then
	        build_libtool_libs=module
	        build_old_libs=yes
	      else
	        build_libtool_libs=no
	      fi
	    fi
2256 2257 2258 2259 2260 2261
	  else
	    convenience="$convenience $dir/$old_library"
	    old_convenience="$old_convenience $dir/$old_library"
	    deplibs="$dir/$old_library $deplibs"
	    link_static=yes
	  fi
2262
	fi # link shared/static library?
2263 2264 2265

	if test $linkmode = lib; then
	  if test -n "$dependency_libs" &&
2266
	     { test $hardcode_into_libs != yes || test $build_old_libs = yes ||
2267 2268 2269 2270
	       test $link_static = yes; }; then
	    # Extract -R from dependency_libs
	    temp_deplibs=
	    for libdir in $dependency_libs; do
2271
	      case $libdir in
2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298
	      -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'`
		   case " $xrpath " in
		   *" $temp_xrpath "*) ;;
		   *) xrpath="$xrpath $temp_xrpath";;
		   esac;;
	      *) temp_deplibs="$temp_deplibs $libdir";;
	      esac
	    done
	    dependency_libs="$temp_deplibs"
	  fi

	  newlib_search_path="$newlib_search_path $absdir"
	  # Link against this library
	  test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
	  # ... and its dependency_libs
	  tmp_libs=
	  for deplib in $dependency_libs; do
	    newdependency_libs="$deplib $newdependency_libs"
	    case "$tmp_libs " in
	    *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
	    esac
	    tmp_libs="$tmp_libs $deplib"
	  done

	  if test $link_all_deplibs != no; then
	    # Add the search paths of all dependency libraries
	    for deplib in $dependency_libs; do
2299
	      case $deplib in
2300 2301 2302 2303 2304
	      -L*) path="$deplib" ;;
	      *.la)
		dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'`
		test "X$dir" = "X$deplib" && dir="."
		# We need an absolute path.
2305
		case $dir in
2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335
		[\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;
		*)
		  absdir=`cd "$dir" && pwd`
		  if test -z "$absdir"; then
		    $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2
		    absdir="$dir"
		  fi
		  ;;
		esac
		if grep "^installed=no" $deplib > /dev/null; then
		  path="-L$absdir/$objdir"
		else
		  eval libdir=`sed -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
		  if test -z "$libdir"; then
		    $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
		    exit 1
		  fi
		  if test "$absdir" != "$libdir"; then
		    $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2
		  fi
		  path="-L$absdir"
		fi
		;;
	      *) continue ;;
	      esac
	      case " $deplibs " in
	      *" $path "*) ;;
	      *) deplibs="$path $deplibs" ;;
	      esac
	    done
2336 2337 2338
	  fi # link_all_deplibs != no
	fi # linkmode = lib
      done # for deplib in $libs
2339 2340 2341 2342 2343 2344 2345
      if test $pass = dlpreopen; then
	# Link the dlpreopened libraries before other libraries
	for deplib in $save_deplibs; do
	  deplibs="$deplib $deplibs"
	done
      fi
      if test $pass != dlopen; then
2346
	test $pass != scan && dependency_libs="$newdependency_libs"
2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364
	if test $pass != conv; then
	  # Make sure lib_search_path contains only unique directories.
	  lib_search_path=
	  for dir in $newlib_search_path; do
	    case "$lib_search_path " in
	    *" $dir "*) ;;
	    *) lib_search_path="$lib_search_path $dir" ;;
	    esac
	  done
	  newlib_search_path=
	fi

	if test "$linkmode,$pass" != "prog,link"; then
	  vars="deplibs"
	else
	  vars="compile_deplibs finalize_deplibs"
	fi
	for var in $vars dependency_libs; do
2365
	  # Add libraries to $var in reverse order
2366 2367 2368
	  eval tmp_libs=\"\$$var\"
	  new_libs=
	  for deplib in $tmp_libs; do
2369
	    case $deplib in
2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382
	    -L*) new_libs="$deplib $new_libs" ;;
	    *)
	      case " $specialdeplibs " in
	      *" $deplib "*) new_libs="$deplib $new_libs" ;;
	      *)
		case " $new_libs " in
		*" $deplib "*) ;;
		*) new_libs="$deplib $new_libs" ;;
		esac
		;;
	      esac
	      ;;
	    esac
2383 2384 2385
	  done
	  tmp_libs=
	  for deplib in $new_libs; do
2386
	    case $deplib in
2387 2388 2389 2390 2391 2392 2393
	    -L*)
	      case " $tmp_libs " in
	      *" $deplib "*) ;;
	      *) tmp_libs="$tmp_libs $deplib" ;;
	      esac
	      ;;
	    *) tmp_libs="$tmp_libs $deplib" ;;
2394
	    esac
2395 2396
	  done
	  eval $var=\"$tmp_libs\"
2397
	done # for var
#  
Jeff Law committed
2398
      fi
2399 2400 2401 2402 2403 2404
      if test "$pass" = "conv" &&
       { test "$linkmode" = "lib" || test "$linkmode" = "prog"; }; then
	libs="$deplibs" # reset libs
	deplibs=
      fi
    done # for pass
2405 2406 2407
    if test $linkmode = prog; then
      dlfiles="$newdlfiles"
      dlprefiles="$newdlprefiles"
Jason Merrill committed
2408 2409
    fi

2410 2411
    case $linkmode in
    oldlib)
Jason Merrill committed
2412
      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
2413
	$echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2
2414 2415 2416
      fi

      if test -n "$rpath"; then
2417 2418 2419 2420 2421
	$echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2
      fi

      if test -n "$xrpath"; then
	$echo "$modename: warning: \`-R' is ignored for archives" 1>&2
2422 2423 2424
      fi

      if test -n "$vinfo"; then
2425
	$echo "$modename: warning: \`-version-info' is ignored for archives" 1>&2
2426 2427 2428
      fi

      if test -n "$release"; then
2429 2430 2431
	$echo "$modename: warning: \`-release' is ignored for archives" 1>&2
      fi

Jason Merrill committed
2432
      if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
2433
	$echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2
2434 2435
      fi

#  
Jeff Law committed
2436 2437
      # Now set the variables for building old libraries.
      build_libtool_libs=no
2438
      oldlibs="$output"
2439
      objs="$objs$old_deplibs"
#  
Jeff Law committed
2440 2441
      ;;

2442
    lib)
#  
Jeff Law committed
2443
      # Make sure we only generate libraries of the form `libNAME.la'.
2444
      case $outputname in
2445 2446 2447 2448
      lib*)
	name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
	eval libname=\"$libname_spec\"
	;;
#  
Jeff Law committed
2449
      *)
2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461
	if test "$module" = no; then
	  $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2
	  $echo "$help" 1>&2
	  exit 1
	fi
	if test "$need_lib_prefix" != no; then
	  # Add the "lib" prefix for modules if required
	  name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
	  eval libname=\"$libname_spec\"
	else
	  libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
	fi
#  
Jeff Law committed
2462 2463 2464
	;;
      esac

Jason Merrill committed
2465
      if test -n "$objs"; then
2466 2467 2468 2469 2470 2471 2472 2473 2474
	if test "$deplibs_check_method" != pass_all; then
	  $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1
	  exit 1
	else
	  echo
	  echo "*** Warning: Linking the shared library $output against the non-libtool"
	  echo "*** objects $objs is not portable!"
	  libobjs="$libobjs $objs"
	fi
Jason Merrill committed
2475 2476
      fi

2477 2478
      if test "$dlself" != no; then
	$echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2
#  
Jeff Law committed
2479
      fi
Jason Merrill committed
2480

#  
Jeff Law committed
2481 2482 2483
      set dummy $rpath
      if test $# -gt 2; then
	$echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2
Jason Merrill committed
2484
      fi
#  
Jeff Law committed
2485
      install_libdir="$2"
Jason Merrill committed
2486

2487
      oldlibs=
2488
      if test -z "$rpath"; then
2489 2490
	if test "$build_libtool_libs" = yes; then
	  # Building a libtool convenience library.
2491 2492 2493
	  # Some compilers have problems with a `.al' extension so
          # convenience libraries should have the same extension an
          # archive normally would.
2494 2495 2496 2497
	  oldlibs="$output_objdir/$libname.$libext $oldlibs"
	  build_libtool_libs=convenience
	  build_old_libs=yes
	fi
2498 2499 2500 2501 2502 2503 2504 2505 2506

	if test -n "$vinfo"; then
	  $echo "$modename: warning: \`-version-info' is ignored for convenience libraries" 1>&2
	fi

	if test -n "$release"; then
	  $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2
	fi
      else
Jason Merrill committed
2507

#  
Jeff Law committed
2508 2509
	# Parse the version information argument.
	IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=':'
2510
	set dummy $vinfo 0 0 0
#  
Jeff Law committed
2511
	IFS="$save_ifs"
Jason Merrill committed
2512

2513
	if test -n "$8"; then
#  
Jeff Law committed
2514 2515 2516 2517
	  $echo "$modename: too many parameters to \`-version-info'" 1>&2
	  $echo "$help" 1>&2
	  exit 1
	fi
Jason Merrill committed
2518

2519 2520 2521
	current="$2"
	revision="$3"
	age="$4"
Jason Merrill committed
2522

#  
Jeff Law committed
2523
	# Check that each of the things are valid numbers.
2524
	case $current in
2525
	0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;;
#  
Jeff Law committed
2526 2527 2528 2529 2530 2531
	*)
	  $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2
	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2
	  exit 1
	  ;;
	esac
Jason Merrill committed
2532

2533
	case $revision in
2534
	0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;;
#  
Jeff Law committed
2535 2536 2537 2538 2539 2540
	*)
	  $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2
	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2
	  exit 1
	  ;;
	esac
Jason Merrill committed
2541

2542
	case $age in
2543
	0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;;
#  
Jeff Law committed
2544 2545 2546 2547 2548 2549
	*)
	  $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2
	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2
	  exit 1
	  ;;
	esac
Jason Merrill committed
2550

#  
Jeff Law committed
2551 2552 2553 2554 2555
	if test $age -gt $current; then
	  $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2
	  exit 1
	fi
Jason Merrill committed
2556

#  
Jeff Law committed
2557
	# Calculate the version variables.
2558 2559 2560
	major=
	versuffix=
	verstring=
2561
	case $version_type in
#  
Jeff Law committed
2562
	none) ;;
Jason Merrill committed
2563

2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583
	darwin)
	  # Like Linux, but with the current version available in
	  # verstring for coding it into the library header
	  major=.`expr $current - $age`
	  versuffix="$major.$age.$revision"
	  # Darwin ld doesn't like 0 for these options...
	  minor_current=`expr $current + 1`
	  verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
	  ;;

	freebsd-aout)
	  major=".$current"
	  versuffix=".$current.$revision";
	  ;;

	freebsd-elf)
	  major=".$current"
	  versuffix=".$current";
	  ;;

2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594
	irix)
	  major=`expr $current - $age + 1`
	  verstring="sgi$major.$revision"

	  # Add in all the interfaces that we are compatible with.
	  loop=$revision
	  while test $loop != 0; do
	    iface=`expr $revision - $loop`
	    loop=`expr $loop - 1`
	    verstring="sgi$major.$iface:$verstring"
	  done
2595 2596 2597 2598

	  # Before this point, $major must not contain `.'.
	  major=.$major
	  versuffix="$major.$revision"
2599 2600
	  ;;

#  
Jeff Law committed
2601 2602
	linux)
	  major=.`expr $current - $age`
2603
	  versuffix="$major.$age.$revision"
#  
Jeff Law committed
2604
	  ;;
Jason Merrill committed
2605

#  
Jeff Law committed
2606
	osf)
2607 2608
	  major=`expr $current - $age`
	  versuffix=".$current.$age.$revision"
#  
Jeff Law committed
2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623
	  verstring="$current.$age.$revision"

	  # Add in all the interfaces that we are compatible with.
	  loop=$age
	  while test $loop != 0; do
	    iface=`expr $current - $loop`
	    loop=`expr $loop - 1`
	    verstring="$verstring:${iface}.0"
	  done

	  # Make executables depend on our current version.
	  verstring="$verstring:${current}.0"
	  ;;

	sunos)
2624 2625
	  major=".$current"
	  versuffix=".$current.$revision"
#  
Jeff Law committed
2626 2627 2628
	  ;;

	windows)
2629 2630
	  # Use '-' rather than '.', since we only want one
	  # extension on DOS 8.3 filesystems.
#  
Jeff Law committed
2631
	  major=`expr $current - $age`
2632
	  versuffix="-$major"
#  
Jeff Law committed
2633 2634 2635 2636 2637 2638 2639 2640 2641
	  ;;

	*)
	  $echo "$modename: unknown library version type \`$version_type'" 1>&2
	  echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2
	  exit 1
	  ;;
	esac

2642 2643
	# Clear the version info if we defaulted, and they specified a release.
	if test -z "$vinfo" && test -n "$release"; then
#  
Jeff Law committed
2644
	  major=
2645
	  verstring="0.0"
2646 2647 2648
	  if test "$need_version" = no; then
	    versuffix=
	  else
2649
	    versuffix=".0.0"
2650
	  fi
2651
	fi
#  
Jeff Law committed
2652

2653 2654 2655 2656 2657 2658
	# Remove version info from name if versioning should be avoided
	if test "$avoid_version" = yes && test "$need_version" = no; then
	  major=
	  versuffix=
	  verstring=""
	fi
2659

2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670
	# Check to see if the archive will have undefined symbols.
	if test "$allow_undefined" = yes; then
	  if test "$allow_undefined_flag" = unsupported; then
	    $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2
	    build_libtool_libs=no
	    build_old_libs=yes
	  fi
	else
	  # Don't allow undefined symbols.
	  allow_undefined_flag="$no_undefined_flag"
	fi
#  
Jeff Law committed
2671
      fi
Jason Merrill committed
2672

2673 2674 2675 2676 2677 2678
      if test "$mode" != relink; then
	# Remove our outputs, but don't remove object files since they
        # may have been created when compiling PIC objects.
        removelist=
        tempremovelist=`echo "$output_objdir/*"`
	for p in $tempremovelist; do
2679
          case $p in
2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691
            *.$objext)
               ;;
            $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
               removelist="$removelist $p"
               ;;
            *) ;;
          esac
        done
        if test -n "$removelist"; then
	  $show "${rm}r $removelist"
	  $run ${rm}r $removelist
        fi
2692 2693 2694 2695 2696 2697 2698 2699
      fi

      # Now set the variables for building old libraries.
      if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
	oldlibs="$oldlibs $output_objdir/$libname.$libext"

	# Transform .lo files to .o files.
	oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP`
Jason Merrill committed
2700 2701
      fi

2702
      # Eliminate all temporary directories.
2703
      for path in $notinst_path; do
2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718
	lib_search_path=`echo "$lib_search_path " | sed -e 's% $path % %g'`
	deplibs=`echo "$deplibs " | sed -e 's% -L$path % %g'`
	dependency_libs=`echo "$dependency_libs " | sed -e 's% -L$path % %g'`
      done

      if test -n "$xrpath"; then
	# If the user specified any rpath flags, then add them.
	temp_xrpath=
	for libdir in $xrpath; do
	  temp_xrpath="$temp_xrpath -R$libdir"
	  case "$finalize_rpath " in
	  *" $libdir "*) ;;
	  *) finalize_rpath="$finalize_rpath $libdir" ;;
	  esac
	done
2719
	if test $hardcode_into_libs != yes || test $build_old_libs = yes; then
2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743
	  dependency_libs="$temp_xrpath $dependency_libs"
	fi
      fi

      # Make sure dlfiles contains only unique files that won't be dlpreopened
      old_dlfiles="$dlfiles"
      dlfiles=
      for lib in $old_dlfiles; do
	case " $dlprefiles $dlfiles " in
	*" $lib "*) ;;
	*) dlfiles="$dlfiles $lib" ;;
	esac
      done

      # Make sure dlprefiles contains only unique files
      old_dlprefiles="$dlprefiles"
      dlprefiles=
      for lib in $old_dlprefiles; do
	case "$dlprefiles " in
	*" $lib "*) ;;
	*) dlprefiles="$dlprefiles $lib" ;;
	esac
      done

Jason Merrill committed
2744
      if test "$build_libtool_libs" = yes; then
2745
	if test -n "$rpath"; then
2746
	  case $host in
2747
	  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*)
2748 2749
	    # these systems don't actually have a c library (as such)!
	    ;;
2750 2751 2752 2753
	  *-*-rhapsody* | *-*-darwin1.[012])
	    # Rhapsody C library is in the System framework
	    deplibs="$deplibs -framework System"
	    ;;
2754 2755 2756
	  *-*-netbsd*)
	    # Don't link with libc until the a.out ld.so is fixed.
	    ;;
2757
	  *)
2758 2759 2760 2761
	    # Add libc to deplibs on all other systems if necessary.
	    if test $build_libtool_need_lc = "yes"; then
	      deplibs="$deplibs -lc"
	    fi
2762 2763 2764 2765
	    ;;
	  esac
	fi

2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779
	# Transform deplibs into only deplibs that can be linked in shared.
	name_save=$name
	libname_save=$libname
	release_save=$release
	versuffix_save=$versuffix
	major_save=$major
	# I'm not sure if I'm treating the release correctly.  I think
	# release should show up in the -l (ie -lgmp5) so we don't want to
	# add it in twice.  Is that correct?
	release=""
	versuffix=""
	major=""
	newdeplibs=
	droppeddeps=no
2780
	case $deplibs_check_method in
2781
	pass_all)
Jason Merrill committed
2782 2783 2784 2785 2786
	  # Don't check for shared/static.  Everything works.
	  # This might be a little naive.  We might want to check
	  # whether the library exists or not.  But this is on
	  # osf3 & osf4 and I'm not really sure... Just
	  # implementing what was already the behaviour.
2787
	  newdeplibs=$deplibs
Jason Merrill committed
2788
	  ;;
2789 2790 2791 2792 2793 2794 2795 2796 2797 2798
	test_compile)
	  # This code stresses the "libraries are programs" paradigm to its
	  # limits. Maybe even breaks it.  We compile a program, linking it
	  # against the deplibs as a proxy for the library.  Then we can check
	  # whether they linked in statically or dynamically with ldd.
	  $rm conftest.c
	  cat > conftest.c <<EOF
	  int main() { return 0; }
EOF
	  $rm conftest
2799
	  $LTCC -o conftest conftest.c $deplibs
2800 2801 2802 2803 2804
	  if test $? -eq 0 ; then
	    ldd_output=`ldd conftest`
	    for i in $deplibs; do
	      name="`expr $i : '-l\(.*\)'`"
	      # If $name is empty we are operating on a -L argument.
2805
	      if test -n "$name" && test "$name" != "0"; then
2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829
		libname=`eval \\$echo \"$libname_spec\"`
		deplib_matches=`eval \\$echo \"$library_names_spec\"`
		set dummy $deplib_matches
		deplib_match=$2
		if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
		  newdeplibs="$newdeplibs $i"
		else
		  droppeddeps=yes
		  echo
		  echo "*** Warning: This library needs some functionality provided by $i."
		  echo "*** I have the capability to make that library automatically link in when"
		  echo "*** you link to this library.  But I can only do this if you have a"
		  echo "*** shared version of the library, which you do not appear to have."
		fi
	      else
		newdeplibs="$newdeplibs $i"
	      fi
	    done
	  else
	    # Error occured in the first compile.  Let's try to salvage the situation:
	    # Compile a seperate program for each library.
	    for i in $deplibs; do
	      name="`expr $i : '-l\(.*\)'`"
	     # If $name is empty we are operating on a -L argument.
2830
	      if test -n "$name" && test "$name" != "0"; then
2831
		$rm conftest
2832
		$LTCC -o conftest conftest.c $i
2833 2834 2835
		# Did it work?
		if test $? -eq 0 ; then
		  ldd_output=`ldd conftest`
Jason Merrill committed
2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849
		  libname=`eval \\$echo \"$libname_spec\"`
		  deplib_matches=`eval \\$echo \"$library_names_spec\"`
		  set dummy $deplib_matches
		  deplib_match=$2
		  if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
		    newdeplibs="$newdeplibs $i"
		  else
		    droppeddeps=yes
		    echo
		    echo "*** Warning: This library needs some functionality provided by $i."
		    echo "*** I have the capability to make that library automatically link in when"
		    echo "*** you link to this library.  But I can only do this if you have a"
		    echo "*** shared version of the library, which you do not appear to have."
		  fi
2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865
		else
		  droppeddeps=yes
		  echo
		  echo "*** Warning!  Library $i is needed by this library but I was not able to"
		  echo "***  make it link in!  You will probably need to install it or some"
		  echo "*** library that it depends on before this library will be fully"
		  echo "*** functional.  Installing it before continuing would be even better."
		fi
	      else
		newdeplibs="$newdeplibs $i"
	      fi
	    done
	  fi
	  ;;
	file_magic*)
	  set dummy $deplibs_check_method
2866
	  file_magic_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
2867 2868 2869
	  for a_deplib in $deplibs; do
	    name="`expr $a_deplib : '-l\(.*\)'`"
	    # If $name is empty we are operating on a -L argument.
2870
	    if test -n "$name" && test "$name" != "0"; then
2871
	      libname=`eval \\$echo \"$libname_spec\"`
2872
	      for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
2873 2874 2875
		    potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
		    for potent_lib in $potential_libs; do
		      # Follow soft links.
Jason Merrill committed
2876
		      if ls -lLd "$potent_lib" 2>/dev/null \
2877
			 | grep " -> " >/dev/null; then
2878
			continue
2879 2880 2881 2882 2883 2884 2885 2886 2887
		      fi
		      # The statement above tries to avoid entering an
		      # endless loop below, in case of cyclic links.
		      # We might still enter an endless loop, since a link
		      # loop can be closed while we follow links,
		      # but so what?
		      potlib="$potent_lib"
		      while test -h "$potlib" 2>/dev/null; do
			potliblink=`ls -ld $potlib | sed 's/.* -> //'`
2888
			case $potliblink in
Jason Merrill committed
2889
			[\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
2890 2891 2892
			*) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;
			esac
		      done
Jason Merrill committed
2893
		      if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \
2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915
			 | sed 10q \
			 | egrep "$file_magic_regex" > /dev/null; then
			newdeplibs="$newdeplibs $a_deplib"
			a_deplib=""
			break 2
		      fi
		    done
	      done
	      if test -n "$a_deplib" ; then
		droppeddeps=yes
		echo
		echo "*** Warning: This library needs some functionality provided by $a_deplib."
		echo "*** I have the capability to make that library automatically link in when"
		echo "*** you link to this library.  But I can only do this if you have a"
		echo "*** shared version of the library, which you do not appear to have."
	      fi
	    else
	      # Add a -L argument.
	      newdeplibs="$newdeplibs $a_deplib"
	    fi
	  done # Gone through all deplibs.
	  ;;
2916 2917 2918 2919 2920 2921
	match_pattern*)
	  set dummy $deplibs_check_method
	  match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
	  for a_deplib in $deplibs; do
	    name="`expr $a_deplib : '-l\(.*\)'`"
	    # If $name is empty we are operating on a -L argument.
2922
	    if test -n "$name" && test "$name" != "0"; then
2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949
	      libname=`eval \\$echo \"$libname_spec\"`
	      for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
		potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
		for potent_lib in $potential_libs; do
		  if eval echo \"$potent_lib\" 2>/dev/null \
		      | sed 10q \
		      | egrep "$match_pattern_regex" > /dev/null; then
		    newdeplibs="$newdeplibs $a_deplib"
		    a_deplib=""
		    break 2
		  fi
		done
	      done
	      if test -n "$a_deplib" ; then
		droppeddeps=yes
		echo
		echo "*** Warning: This library needs some functionality provided by $a_deplib."
		echo "*** I have the capability to make that library automatically link in when"
		echo "*** you link to this library.  But I can only do this if you have a"
		echo "*** shared version of the library, which you do not appear to have."
	      fi
	    else
	      # Add a -L argument.
	      newdeplibs="$newdeplibs $a_deplib"
	    fi
	  done # Gone through all deplibs.
	  ;;
Jason Merrill committed
2950 2951
	none | unknown | *)
	  newdeplibs=""
2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971
	  if $echo "X $deplibs" | $Xsed -e 's/ -lc$//' \
	       -e 's/ -[LR][^ ]*//g' -e 's/[ 	]//g' |
	     grep . >/dev/null; then
	    echo
	    if test "X$deplibs_check_method" = "Xnone"; then
	      echo "*** Warning: inter-library dependencies are not supported in this platform."
	    else
	      echo "*** Warning: inter-library dependencies are not known to be supported."
	    fi
	    echo "*** All declared inter-library dependencies are being dropped."
	    droppeddeps=yes
	  fi
	  ;;
	esac
	versuffix=$versuffix_save
	major=$major_save
	release=$release_save
	libname=$libname_save
	name=$name_save

2972 2973 2974 2975 2976 2977 2978
	case $host in
	*-*-rhapsody* | *-*-darwin1.[012])
	  # On Rhapsody replace the C library is the System framework
	  newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'`
	  ;;
	esac

2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003
	if test "$droppeddeps" = yes; then
	  if test "$module" = yes; then
	    echo
	    echo "*** Warning: libtool could not satisfy all declared inter-library"
	    echo "*** dependencies of module $libname.  Therefore, libtool will create"
	    echo "*** a static module, that should work as long as the dlopening"
	    echo "*** application is linked with the -dlopen flag."
	    if test -z "$global_symbol_pipe"; then
	      echo
	      echo "*** However, this would only work if libtool was able to extract symbol"
	      echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
	      echo "*** not find such a program.  So, this module is probably useless."
	      echo "*** \`nm' from GNU binutils and a full rebuild may help."
	    fi
	    if test "$build_old_libs" = no; then
	      oldlibs="$output_objdir/$libname.$libext"
	      build_libtool_libs=module
	      build_old_libs=yes
	    else
	      build_libtool_libs=no
	    fi
	  else
	    echo "*** The inter-library dependencies that have been dropped here will be"
	    echo "*** automatically added whenever a program is linked with this library"
	    echo "*** or is declared to -dlopen it."
3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018

	    if test $allow_undefined = no; then
	      echo
	      echo "*** Since this library must not contain undefined symbols,"
	      echo "*** because either the platform does not support them or"
	      echo "*** it was explicitly requested with -no-undefined,"
	      echo "*** libtool will only create a static version of it."
	      if test "$build_old_libs" = no; then
		oldlibs="$output_objdir/$libname.$libext"
		build_libtool_libs=module
		build_old_libs=yes
	      else
		build_libtool_libs=no
	      fi
	    fi
3019 3020
	  fi
	fi
Jason Merrill committed
3021 3022
	# Done checking deplibs!
	deplibs=$newdeplibs
3023 3024
      fi

Jason Merrill committed
3025 3026 3027 3028
      # All the library-specific variables (install_libdir is set above).
      library_names=
      old_library=
      dlname=
3029

Jason Merrill committed
3030
      # Test again, we may have decided not to build it any more
3031
      if test "$build_libtool_libs" = yes; then
3032
	if test $hardcode_into_libs = yes; then
3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044
	  # Hardcode the library paths
	  hardcode_libdirs=
	  dep_rpath=
	  rpath="$finalize_rpath"
	  test "$mode" != relink && rpath="$compile_rpath$rpath"
	  for libdir in $rpath; do
	    if test -n "$hardcode_libdir_flag_spec"; then
	      if test -n "$hardcode_libdir_separator"; then
		if test -z "$hardcode_libdirs"; then
		  hardcode_libdirs="$libdir"
		else
		  # Just accumulate the unique libdirs.
3045
		  case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086
		  *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
		    ;;
		  *)
		    hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
		    ;;
		  esac
		fi
	      else
		eval flag=\"$hardcode_libdir_flag_spec\"
		dep_rpath="$dep_rpath $flag"
	      fi
	    elif test -n "$runpath_var"; then
	      case "$perm_rpath " in
	      *" $libdir "*) ;;
	      *) perm_rpath="$perm_rpath $libdir" ;;
	      esac
	    fi
	  done
	  # Substitute the hardcoded libdirs into the rpath.
	  if test -n "$hardcode_libdir_separator" &&
	     test -n "$hardcode_libdirs"; then
	    libdir="$hardcode_libdirs"
	    eval dep_rpath=\"$hardcode_libdir_flag_spec\"
	  fi
	  if test -n "$runpath_var" && test -n "$perm_rpath"; then
	    # We should set the runpath_var.
	    rpath=
	    for dir in $perm_rpath; do
	      rpath="$rpath$dir:"
	    done
	    eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var"
	  fi
	  test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs"
	fi

	shlibpath="$finalize_shlibpath"
	test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath"
	if test -n "$shlibpath"; then
	  eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var"
	fi

3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097
	# Get the real and link names of the library.
	eval library_names=\"$library_names_spec\"
	set dummy $library_names
	realname="$2"
	shift; shift

	if test -n "$soname_spec"; then
	  eval soname=\"$soname_spec\"
	else
	  soname="$realname"
	fi
3098
	test -z "$dlname" && dlname=$soname
Jason Merrill committed
3099

3100
	lib="$output_objdir/$realname"
Jason Merrill committed
3101 3102 3103 3104 3105
	for link
	do
	  linknames="$linknames $link"
	done

3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121
#	# Ensure that we have .o objects for linkers which dislike .lo
#	# (e.g. aix) in case we are running --disable-static
#	for obj in $libobjs; do
#	  xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
#	  if test "X$xdir" = "X$obj"; then
#	    xdir="."
#	  else
#	    xdir="$xdir"
#	  fi
#	  baseobj=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
#	  oldobj=`$echo "X$baseobj" | $Xsed -e "$lo2o"`
#	  if test ! -f $xdir/$oldobj && test "$baseobj" != "$oldobj"; then
#	    $show "(cd $xdir && ${LN_S} $baseobj $oldobj)"
#	    $run eval '(cd $xdir && ${LN_S} $baseobj $oldobj)' || exit $?
#	  fi
#	done
Jason Merrill committed
3122

3123 3124
	# Use standard objects if they are pic
	test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
Jason Merrill committed
3125

3126 3127 3128 3129
	# Prepare the list of exported symbols
	if test -z "$export_symbols"; then
	  if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
	    $show "generating symbol list for \`$libname.la'"
Jason Merrill committed
3130
	    export_symbols="$output_objdir/$libname.exp"
3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152
	    $run $rm $export_symbols
	    eval cmds=\"$export_symbols_cmds\"
	    IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
	    for cmd in $cmds; do
	      IFS="$save_ifs"
	      $show "$cmd"
	      $run eval "$cmd" || exit $?
	    done
	    IFS="$save_ifs"
	    if test -n "$export_symbols_regex"; then
	      $show "egrep -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\""
	      $run eval 'egrep -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
	      $show "$mv \"${export_symbols}T\" \"$export_symbols\""
	      $run eval '$mv "${export_symbols}T" "$export_symbols"'
	    fi
	  fi
	fi

	if test -n "$export_symbols" && test -n "$include_expsyms"; then
	  $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"'
	fi

Jason Merrill committed
3153 3154
	if test -n "$convenience"; then
	  if test -n "$whole_archive_flag_spec"; then
3155
	    save_libobjs=$libobjs
Jason Merrill committed
3156 3157 3158 3159 3160
	    eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
	  else
	    gentop="$output_objdir/${outputname}x"
	    $show "${rm}r $gentop"
	    $run ${rm}r "$gentop"
3161 3162
	    $show "$mkdir $gentop"
	    $run $mkdir "$gentop"
Jason Merrill committed
3163 3164 3165 3166 3167 3168 3169 3170
	    status=$?
	    if test $status -ne 0 && test ! -d "$gentop"; then
	      exit $status
	    fi
	    generated="$generated $gentop"

	    for xlib in $convenience; do
	      # Extract the objects.
3171
	      case $xlib in
Jason Merrill committed
3172 3173 3174 3175 3176 3177 3178 3179
	      [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
	      *) xabs=`pwd`"/$xlib" ;;
	      esac
	      xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
	      xdir="$gentop/$xlib"

	      $show "${rm}r $xdir"
	      $run ${rm}r "$xdir"
3180 3181
	      $show "$mkdir $xdir"
	      $run $mkdir "$xdir"
Jason Merrill committed
3182 3183 3184 3185 3186 3187 3188
	      status=$?
	      if test $status -ne 0 && test ! -d "$xdir"; then
		exit $status
	      fi
	      $show "(cd $xdir && $AR x $xabs)"
	      $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?

3189
	      libobjs="$libobjs "`find $xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
Jason Merrill committed
3190 3191 3192 3193 3194 3195
	    done
	  fi
	fi

	if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
	  eval flag=\"$thread_safe_flag_spec\"
3196 3197 3198 3199
	  linker_flags="$linker_flags $flag"
	fi

	# Make a backup of the uninstalled library when relinking
3200
	if test "$mode" = relink; then
3201
	  $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $?
Jason Merrill committed
3202 3203
	fi

3204
	# Do each of the archive commands.
3205 3206 3207 3208 3209
	if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
	  eval cmds=\"$archive_expsym_cmds\"
	else
	  eval cmds=\"$archive_cmds\"
	fi
3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318
        if len=`expr "X$cmds" : ".*"` &&
           test $len -le $max_cmd_len; then
          :
        else
	  # The command line is too long to link in one step, link piecewise.
          $echo "creating reloadable object files..."

	  # Save the value of $output and $libobjs because we want to
	  # use them later.  If we have whole_archive_flag_spec, we
	  # want to use save_libobjs as it was before
	  # whole_archive_flag_spec was expanded, because we can't
	  # assume the linker understands whole_archive_flag_spec.
	  # This may have to be revisited, in case too many
	  # convenience libraries get linked in and end up exceeding
	  # the spec.
	  if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then
	    save_libobjs=$libobjs
	  fi
          save_output=$output

	  # Clear the reloadable object creation command queue and
	  # initialize k to one.
          test_cmds=
          concat_cmds=
          objlist=
          delfiles=
          last_robj=
          k=1
          output=$output_objdir/$save_output-${k}.$objext
	  # Loop over the list of objects to be linked.
          for obj in $save_libobjs
          do
            eval test_cmds=\"$reload_cmds $objlist $last_robj\"
            if test "X$objlist" = X ||
	       { len=`expr "X$test_cmds" : ".*"` &&
                 test $len -le $max_cmd_len; }; then
              objlist="$objlist $obj"
            else
	      # The command $test_cmds is almost too long, add a
	      # command to the queue.
              if test $k -eq 1 ; then
	        # The first file doesn't have a previous command to add.
                eval concat_cmds=\"$reload_cmds $objlist $last_robj\"
              else
	        # All subsequent reloadable object files will link in
	        # the last one created.
                eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj\"
              fi
              last_robj=$output_objdir/$save_output-${k}.$objext
              k=`expr $k + 1`
              output=$output_objdir/$save_output-${k}.$objext
              objlist=$obj
              len=1
            fi
          done
	  # Handle the remaining objects by creating one last
	  # reloadable object file.  All subsequent reloadable object
	  # files will link in the last one created.
	  test -z "$concat_cmds" || concat_cmds=$concat_cmds~
          eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\"

	  # Set up a command to remove the reloadale object files
	  # after they are used.
          i=0
          while test $i -lt $k
          do
            i=`expr $i + 1`
            delfiles="$delfiles $output_objdir/$save_output-${i}.$objext"
          done

          $echo "creating a temporary reloadable object file: $output"

	  # Loop through the commands generated above and execute them.
          IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
          for cmd in $concat_cmds; do
            IFS="$save_ifs"
            $show "$cmd"
            $run eval "$cmd" || exit $?
          done
          IFS="$save_ifs"

          libobjs=$output
	  # Restore the value of output.
          output=$save_output

	  if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then
	    eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
	  fi
	  # Expand the library linking commands again to reset the
	  # value of $libobjs for piecewise linking.

	  # Do each of the archive commands.
          if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
            eval cmds=\"$archive_expsym_cmds\"
          else
            eval cmds=\"$archive_cmds\"
          fi

	  # Append the command to remove the reloadable object files
	  # to the just-reset $cmds.
          eval cmds=\"\$cmds~$rm $delfiles\"
        fi
        IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
        for cmd in $cmds; do
          IFS="$save_ifs"
          $show "$cmd"
          $run eval "$cmd" || exit $?
        done
        IFS="$save_ifs"
3319

3320
	# Restore the uninstalled library and exit
3321
	if test "$mode" = relink; then
3322 3323 3324 3325
	  $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $?
	  exit 0
	fi

3326 3327
	# Create links to the real library.
	for linkname in $linknames; do
#  
Jeff Law committed
3328
	  if test "$realname" != "$linkname"; then
3329 3330
	    $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)"
	    $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $?
3331 3332
	  fi
	done
Jason Merrill committed
3333

3334 3335
	# If -module or -export-dynamic was specified, set the dlname.
	if test "$module" = yes || test "$export_dynamic" = yes; then
3336 3337 3338
	  # On all known operating systems, these are identical.
	  dlname="$soname"
	fi
Jason Merrill committed
3339 3340 3341
      fi
      ;;

3342
    obj)
Jason Merrill committed
3343
      if test -n "$deplibs"; then
3344
	$echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2
#  
Jeff Law committed
3345 3346
      fi

Jason Merrill committed
3347
      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
3348
	$echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2
Jason Merrill committed
3349 3350
      fi

#  
Jeff Law committed
3351
      if test -n "$rpath"; then
3352 3353 3354 3355 3356
	$echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2
      fi

      if test -n "$xrpath"; then
	$echo "$modename: warning: \`-R' is ignored for objects" 1>&2
Jason Merrill committed
3357 3358 3359
      fi

      if test -n "$vinfo"; then
3360
	$echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2
#  
Jeff Law committed
3361 3362 3363
      fi

      if test -n "$release"; then
3364
	$echo "$modename: warning: \`-release' is ignored for objects" 1>&2
Jason Merrill committed
3365 3366
      fi

3367
      case $output in
Jason Merrill committed
3368
      *.lo)
3369
	if test -n "$objs$old_deplibs"; then
3370 3371 3372 3373 3374 3375
	  $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2
	  exit 1
	fi
	libobj="$output"
	obj=`$echo "X$output" | $Xsed -e "$lo2o"`
	;;
Jason Merrill committed
3376
      *)
3377 3378 3379
	libobj=
	obj="$output"
	;;
Jason Merrill committed
3380 3381 3382 3383 3384
      esac

      # Delete the old objects.
      $run $rm $obj $libobj

Jason Merrill committed
3385 3386 3387 3388 3389 3390 3391 3392
      # Objects from convenience libraries.  This assumes
      # single-version convenience libraries.  Whenever we create
      # different ones for PIC/non-PIC, this we'll have to duplicate
      # the extraction.
      reload_conv_objs=
      gentop=
      # reload_cmds runs $LD directly, so let us get rid of
      # -Wl from whole_archive_flag_spec
3393
      wl=
Jason Merrill committed
3394 3395 3396 3397 3398 3399 3400 3401

      if test -n "$convenience"; then
	if test -n "$whole_archive_flag_spec"; then
	  eval reload_conv_objs=\"\$reload_objs $whole_archive_flag_spec\"
	else
	  gentop="$output_objdir/${obj}x"
	  $show "${rm}r $gentop"
	  $run ${rm}r "$gentop"
3402 3403
	  $show "$mkdir $gentop"
	  $run $mkdir "$gentop"
Jason Merrill committed
3404 3405 3406 3407 3408 3409 3410 3411
	  status=$?
	  if test $status -ne 0 && test ! -d "$gentop"; then
	    exit $status
	  fi
	  generated="$generated $gentop"

	  for xlib in $convenience; do
	    # Extract the objects.
3412
	    case $xlib in
Jason Merrill committed
3413 3414 3415 3416 3417 3418 3419 3420
	    [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
	    *) xabs=`pwd`"/$xlib" ;;
	    esac
	    xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
	    xdir="$gentop/$xlib"

	    $show "${rm}r $xdir"
	    $run ${rm}r "$xdir"
3421 3422
	    $show "$mkdir $xdir"
	    $run $mkdir "$xdir"
Jason Merrill committed
3423 3424 3425 3426 3427 3428 3429
	    status=$?
	    if test $status -ne 0 && test ! -d "$xdir"; then
	      exit $status
	    fi
	    $show "(cd $xdir && $AR x $xabs)"
	    $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?

3430
	    reload_conv_objs="$reload_objs "`find $xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
Jason Merrill committed
3431 3432 3433 3434
	  done
	fi
      fi

Jason Merrill committed
3435
      # Create the old-style object.
3436
      reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test
Jason Merrill committed
3437 3438

      output="$obj"
#  
Jeff Law committed
3439
      eval cmds=\"$reload_cmds\"
3440
      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
Jason Merrill committed
3441
      for cmd in $cmds; do
3442 3443 3444
	IFS="$save_ifs"
	$show "$cmd"
	$run eval "$cmd" || exit $?
Jason Merrill committed
3445 3446 3447 3448
      done
      IFS="$save_ifs"

      # Exit if we aren't doing a library object file.
Jason Merrill committed
3449 3450 3451 3452 3453 3454 3455 3456
      if test -z "$libobj"; then
	if test -n "$gentop"; then
	  $show "${rm}r $gentop"
	  $run ${rm}r $gentop
	fi

	exit 0
      fi
Jason Merrill committed
3457 3458

      if test "$build_libtool_libs" != yes; then
Jason Merrill committed
3459 3460 3461 3462 3463
	if test -n "$gentop"; then
	  $show "${rm}r $gentop"
	  $run ${rm}r $gentop
	fi

3464 3465
	# Create an invalid libtool object if no PIC, so that we don't
	# accidentally link it into a program.
3466 3467
	# $show "echo timestamp > $libobj"
	# $run eval "echo timestamp > $libobj" || exit $?
3468
	exit 0
Jason Merrill committed
3469 3470
      fi

3471
      if test -n "$pic_flag" || test "$pic_mode" != default; then
3472
	# Only do commands if we really have different PIC objects.
Jason Merrill committed
3473
	reload_objs="$libobjs $reload_conv_objs"
3474 3475 3476 3477 3478 3479 3480 3481 3482
	output="$libobj"
	eval cmds=\"$reload_cmds\"
	IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
	for cmd in $cmds; do
	  IFS="$save_ifs"
	  $show "$cmd"
	  $run eval "$cmd" || exit $?
	done
	IFS="$save_ifs"
3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496
#     else
#	# Just create a symlink.
#	$show $rm $libobj
#	$run $rm $libobj
#	xdir=`$echo "X$libobj" | $Xsed -e 's%/[^/]*$%%'`
#	if test "X$xdir" = "X$libobj"; then
#	  xdir="."
#	else
#	  xdir="$xdir"
#	fi
#	baseobj=`$echo "X$libobj" | $Xsed -e 's%^.*/%%'`
#	oldobj=`$echo "X$baseobj" | $Xsed -e "$lo2o"`
#	$show "(cd $xdir && $LN_S $oldobj $baseobj)"
#	$run eval '(cd $xdir && $LN_S $oldobj $baseobj)' || exit $?
Jason Merrill committed
3497 3498 3499 3500 3501
      fi

      if test -n "$gentop"; then
	$show "${rm}r $gentop"
	$run ${rm}r $gentop
Jason Merrill committed
3502 3503 3504 3505 3506
      fi

      exit 0
      ;;

3507
    prog)
3508
      case $host in
3509
	*cygwin*) output=`echo $output | sed -e 's,.exe$,,;s,$,.exe,'` ;;
3510
      esac
#  
Jeff Law committed
3511
      if test -n "$vinfo"; then
3512
	$echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2
Jason Merrill committed
3513 3514
      fi

#  
Jeff Law committed
3515
      if test -n "$release"; then
3516
	$echo "$modename: warning: \`-release' is ignored for programs" 1>&2
Jason Merrill committed
3517 3518
      fi

3519
      if test "$preload" = yes; then
3520
	if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown &&
3521 3522
	   test "$dlopen_self_static" = unknown; then
	  $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support."
3523
	fi
3524
      fi
3525

3526 3527 3528 3529 3530 3531 3532 3533
      case $host in
      *-*-rhapsody* | *-*-darwin1.[012])
	# On Rhapsody replace the C library is the System framework
	compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
	finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
	;;
      esac

3534 3535 3536
      compile_command="$compile_command $compile_deplibs"
      finalize_command="$finalize_command $finalize_deplibs"

3537
      if test -n "$rpath$xrpath"; then
#  
Jeff Law committed
3538
	# If the user specified any rpath flags, then add them.
3539 3540 3541 3542 3543 3544
	for libdir in $rpath $xrpath; do
	  # This is the magic to use -rpath.
	  case "$finalize_rpath " in
	  *" $libdir "*) ;;
	  *) finalize_rpath="$finalize_rpath $libdir" ;;
	  esac
#  
Jeff Law committed
3545
	done
Jason Merrill committed
3546 3547
      fi

3548 3549 3550 3551 3552 3553 3554 3555 3556 3557
      # Now hardcode the library paths
      rpath=
      hardcode_libdirs=
      for libdir in $compile_rpath $finalize_rpath; do
	if test -n "$hardcode_libdir_flag_spec"; then
	  if test -n "$hardcode_libdir_separator"; then
	    if test -z "$hardcode_libdirs"; then
	      hardcode_libdirs="$libdir"
	    else
	      # Just accumulate the unique libdirs.
3558
	      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575
	      *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
		;;
	      *)
		hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
		;;
	      esac
	    fi
	  else
	    eval flag=\"$hardcode_libdir_flag_spec\"
	    rpath="$rpath $flag"
	  fi
	elif test -n "$runpath_var"; then
	  case "$perm_rpath " in
	  *" $libdir "*) ;;
	  *) perm_rpath="$perm_rpath $libdir" ;;
	  esac
	fi
3576
	case $host in
3577
	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
3578
	  case :$dllsearchpath: in
3579 3580 3581 3582 3583
	  *":$libdir:"*) ;;
	  *) dllsearchpath="$dllsearchpath:$libdir";;
	  esac
	  ;;
	esac
3584 3585 3586 3587 3588 3589
      done
      # Substitute the hardcoded libdirs into the rpath.
      if test -n "$hardcode_libdir_separator" &&
	 test -n "$hardcode_libdirs"; then
	libdir="$hardcode_libdirs"
	eval rpath=\" $hardcode_libdir_flag_spec\"
#  
Jeff Law committed
3590
      fi
3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601
      compile_rpath="$rpath"

      rpath=
      hardcode_libdirs=
      for libdir in $finalize_rpath; do
	if test -n "$hardcode_libdir_flag_spec"; then
	  if test -n "$hardcode_libdir_separator"; then
	    if test -z "$hardcode_libdirs"; then
	      hardcode_libdirs="$libdir"
	    else
	      # Just accumulate the unique libdirs.
3602
	      case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625
	      *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
		;;
	      *)
		hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
		;;
	      esac
	    fi
	  else
	    eval flag=\"$hardcode_libdir_flag_spec\"
	    rpath="$rpath $flag"
	  fi
	elif test -n "$runpath_var"; then
	  case "$finalize_perm_rpath " in
	  *" $libdir "*) ;;
	  *) finalize_perm_rpath="$finalize_perm_rpath $libdir" ;;
	  esac
	fi
      done
      # Substitute the hardcoded libdirs into the rpath.
      if test -n "$hardcode_libdir_separator" &&
	 test -n "$hardcode_libdirs"; then
	libdir="$hardcode_libdirs"
	eval rpath=\" $hardcode_libdir_flag_spec\"
#  
Jeff Law committed
3626
      fi
3627
      finalize_rpath="$rpath"
#  
Jeff Law committed
3628

3629
      dlsyms=
Jason Merrill committed
3630
      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
3631 3632
	if test -n "$NM" && test -n "$global_symbol_pipe"; then
	  dlsyms="${outputname}S.c"
#  
Jeff Law committed
3633
	else
3634
	  $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2
Jason Merrill committed
3635
	fi
3636
      fi
#  
Jeff Law committed
3637

3638
      if test -n "$dlsyms"; then
3639
	case $dlsyms in
3640 3641 3642
	"") ;;
	*.c)
	  # Discover the nlist of each of the dlfiles.
Jason Merrill committed
3643
	  nlist="$output_objdir/${outputname}.nm"
3644

Jason Merrill committed
3645 3646
	  $show "$rm $nlist ${nlist}S ${nlist}T"
	  $run $rm "$nlist" "${nlist}S" "${nlist}T"
#  
Jeff Law committed
3647

3648
	  # Parse the name list into a source file.
Jason Merrill committed
3649
	  $show "creating $output_objdir/$dlsyms"
3650

Jason Merrill committed
3651
	  test -z "$run" && $echo > "$output_objdir/$dlsyms" "\
3652 3653
/* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */
/* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */
#  
Jeff Law committed
3654 3655 3656 3657 3658 3659

#ifdef __cplusplus
extern \"C\" {
#endif

/* Prevent the only kind of declaration conflicts we can make. */
3660
#define lt_preloaded_symbols some_other_symbol
#  
Jeff Law committed
3661 3662 3663 3664

/* External symbol declarations for the compiler. */\
"

3665 3666 3667
	  if test "$dlself" = yes; then
	    $show "generating symbol list for \`$output'"

Jason Merrill committed
3668
	    test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist"
3669 3670

	    # Add our own program objects to the symbol list.
3671
	    progfiles="$objs$old_deplibs"
3672 3673 3674 3675 3676 3677 3678 3679 3680
	    for arg in $progfiles; do
	      $show "extracting global C symbols from \`$arg'"
	      $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
	    done

	    if test -n "$exclude_expsyms"; then
	      $run eval 'egrep -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
	      $run eval '$mv "$nlist"T "$nlist"'
	    fi
3681

3682 3683 3684 3685 3686 3687 3688
	    if test -n "$export_symbols_regex"; then
	      $run eval 'egrep -e "$export_symbols_regex" "$nlist" > "$nlist"T'
	      $run eval '$mv "$nlist"T "$nlist"'
	    fi

	    # Prepare the list of exported symbols
	    if test -z "$export_symbols"; then
Jason Merrill committed
3689
	      export_symbols="$output_objdir/$output.exp"
3690 3691 3692
	      $run $rm $export_symbols
	      $run eval "sed -n -e '/^: @PROGRAM@$/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
	    else
Jason Merrill committed
3693 3694
	      $run eval "sed -e 's/\([][.*^$]\)/\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$output.exp"'
	      $run eval 'grep -f "$output_objdir/$output.exp" < "$nlist" > "$nlist"T'
3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723
	      $run eval 'mv "$nlist"T "$nlist"'
	    fi
	  fi

	  for arg in $dlprefiles; do
	    $show "extracting global C symbols from \`$arg'"
	    name=`echo "$arg" | sed -e 's%^.*/%%'`
	    $run eval 'echo ": $name " >> "$nlist"'
	    $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
	  done

	  if test -z "$run"; then
	    # Make sure we have at least an empty file.
	    test -f "$nlist" || : > "$nlist"

	    if test -n "$exclude_expsyms"; then
	      egrep -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
	      $mv "$nlist"T "$nlist"
	    fi

	    # Try sorting and uniquifying the output.
	    if grep -v "^: " < "$nlist" | sort +2 | uniq > "$nlist"S; then
	      :
	    else
	      grep -v "^: " < "$nlist" > "$nlist"S
	    fi

	    if test -f "$nlist"S; then
	      eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"'
#  
Jeff Law committed
3724
	    else
3725
	      echo '/* NONE */' >> "$output_objdir/$dlsyms"
#  
Jeff Law committed
3726 3727
	    fi

3728
	    $echo >> "$output_objdir/$dlsyms" "\
#  
Jeff Law committed
3729

3730
#undef lt_preloaded_symbols
#  
Jeff Law committed
3731 3732

#if defined (__STDC__) && __STDC__
3733
# define lt_ptr_t void *
#  
Jeff Law committed
3734
#else
3735 3736
# define lt_ptr_t char *
# define const
#  
Jeff Law committed
3737 3738 3739
#endif

/* The mapping between symbol names and symbols. */
3740 3741 3742
const struct {
  const char *name;
  lt_ptr_t address;
#  
Jeff Law committed
3743
}
3744
lt_preloaded_symbols[] =
#  
Jeff Law committed
3745 3746 3747
{\
"

3748 3749 3750
	    sed -n -e 's/^: \([^ ]*\) $/  {\"\1\", (lt_ptr_t) 0},/p' \
		-e 's/^. \([^ ]*\) \([^ ]*\)$/  {"\2", (lt_ptr_t) \&\2},/p' \
		  < "$nlist" >> "$output_objdir/$dlsyms"
#  
Jeff Law committed
3751

3752 3753
	    $echo >> "$output_objdir/$dlsyms" "\
  {0, (lt_ptr_t) 0}
#  
Jeff Law committed
3754 3755
};

3756 3757 3758 3759 3760 3761 3762
/* This works around a problem in FreeBSD linker */
#ifdef FREEBSD_WORKAROUND
static const void *lt_preloaded_setup() {
  return lt_preloaded_symbols;
}
#endif

#  
Jeff Law committed
3763 3764 3765 3766
#ifdef __cplusplus
}
#endif\
"
3767
	  fi
#  
Jeff Law committed
3768

3769
	  pic_flag_for_symtable=
3770
	  case $host in
3771 3772 3773 3774 3775
	  # compiling the symbol table file with pic_flag works around
	  # a FreeBSD bug that causes programs to crash when -lm is
	  # linked before any other PIC object.  But we must not use
	  # pic_flag when linking with -static.  The problem exists in
	  # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
3776
	  *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
3777 3778
	    case "$compile_command " in
	    *" -static "*) ;;
3779
	    *) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND";;
Jason Merrill committed
3780 3781 3782 3783
	    esac;;
	  *-*-hpux*)
	    case "$compile_command " in
	    *" -static "*) ;;
3784
	    *) pic_flag_for_symtable=" $pic_flag";;
3785
	    esac
#  
Jeff Law committed
3786 3787
	  esac

3788
	  # Now compile the dynamic symbol file.
3789 3790
	  $show "(cd $output_objdir && $LTCC -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")"
	  $run eval '(cd $output_objdir && $LTCC -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $?
Jason Merrill committed
3791 3792 3793 3794

	  # Clean up the generated files.
	  $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T"
	  $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T"
#  
Jeff Law committed
3795

3796
	  # Transform the symbol file into the correct name.
Jason Merrill committed
3797 3798
	  compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
	  finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
3799 3800 3801 3802 3803 3804
	  ;;
	*)
	  $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2
	  exit 1
	  ;;
	esac
#  
Jeff Law committed
3805
      else
3806 3807 3808
	# We keep going just in case the user didn't refer to
	# lt_preloaded_symbols.  The linker will fail if global_symbol_pipe
	# really was required.
#  
Jeff Law committed
3809

3810 3811 3812
	# Nullify the symbol file.
	compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
	finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
#  
Jeff Law committed
3813 3814
      fi

3815
      if test $need_relink = no || test "$build_libtool_libs" != yes; then
3816 3817 3818 3819 3820 3821 3822
	# Replace the output file specification.
	compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
	link_command="$compile_command$compile_rpath"

	# We have no uninstalled library dependencies, so finalize right now.
	$show "$link_command"
	$run eval "$link_command"
Jason Merrill committed
3823
	status=$?
3824

Jason Merrill committed
3825 3826 3827 3828 3829 3830 3831
	# Delete the generated files.
	if test -n "$dlsyms"; then
	  $show "$rm $output_objdir/${outputname}S.${objext}"
	  $run $rm "$output_objdir/${outputname}S.${objext}"
	fi

	exit $status
Jason Merrill committed
3832 3833 3834
      fi

      if test -n "$shlibpath_var"; then
3835 3836 3837
	# We should set the shlibpath_var
	rpath=
	for dir in $temp_rpath; do
3838
	  case $dir in
Jason Merrill committed
3839
	  [\\/]* | [A-Za-z]:[\\/]*)
3840 3841 3842 3843 3844 3845 3846 3847 3848 3849
	    # Absolute path.
	    rpath="$rpath$dir:"
	    ;;
	  *)
	    # Relative path: add a thisdir entry.
	    rpath="$rpath\$thisdir/$dir:"
	    ;;
	  esac
	done
	temp_rpath="$rpath"
Jason Merrill committed
3850 3851
      fi

3852 3853
      if test -n "$compile_shlibpath$finalize_shlibpath"; then
	compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command"
Jason Merrill committed
3854 3855
      fi
      if test -n "$finalize_shlibpath"; then
3856
	finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
Jason Merrill committed
3857 3858
      fi

3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877
      compile_var=
      finalize_var=
      if test -n "$runpath_var"; then
	if test -n "$perm_rpath"; then
	  # We should set the runpath_var.
	  rpath=
	  for dir in $perm_rpath; do
	    rpath="$rpath$dir:"
	  done
	  compile_var="$runpath_var=\"$rpath\$$runpath_var\" "
	fi
	if test -n "$finalize_perm_rpath"; then
	  # We should set the runpath_var.
	  rpath=
	  for dir in $finalize_perm_rpath; do
	    rpath="$rpath$dir:"
	  done
	  finalize_var="$runpath_var=\"$rpath\$$runpath_var\" "
	fi
Jason Merrill committed
3878 3879
      fi

3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892
      if test "$no_install" = yes; then
	# We don't need to create a wrapper script.
	link_command="$compile_var$compile_command$compile_rpath"
	# Replace the output file specification.
	link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
	# Delete the old output file.
	$run $rm $output
	# Link the executable and exit
	$show "$link_command"
	$run eval "$link_command" || exit $?
	exit 0
      fi

3893
      if test "$hardcode_action" = relink; then
3894 3895 3896
	# Fast installation is not supported
	link_command="$compile_var$compile_command$compile_rpath"
	relink_command="$finalize_var$finalize_command$finalize_rpath"
3897

3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916
	$echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2
	$echo "$modename: \`$output' will be relinked during installation" 1>&2
      else
	if test "$fast_install" != no; then
	  link_command="$finalize_var$compile_command$finalize_rpath"
	  if test "$fast_install" = yes; then
	    relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'`
	  else
	    # fast_install is set to needless
	    relink_command=
	  fi
	else
	  link_command="$compile_var$compile_command$compile_rpath"
	  relink_command="$finalize_var$finalize_command$finalize_rpath"
	fi
      fi

      # Replace the output file specification.
      link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
3917

Jason Merrill committed
3918
      # Delete the old output files.
3919 3920 3921 3922
      $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname

      $show "$link_command"
      $run eval "$link_command" || exit $?
Jason Merrill committed
3923 3924

      # Now create the wrapper script.
#  
Jeff Law committed
3925 3926
      $show "creating $output"

3927 3928
      # Quote the relink command for shipping.
      if test -n "$relink_command"; then
3929
	# Preserve any variables that may affect compiler behavior
Jason Merrill committed
3930
	for var in $variables_saved_for_relink; do
3931 3932 3933 3934 3935 3936 3937 3938
	  if eval test -z \"\${$var+set}\"; then
	    relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
	  elif eval var_value=\$$var; test -z "$var_value"; then
	    relink_command="$var=; export $var; $relink_command"
	  else
	    var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
	    relink_command="$var=\"$var_value\"; export $var; $relink_command"
	  fi
Jason Merrill committed
3939
	done
3940
	relink_command="cd `pwd`; $relink_command"
3941 3942
	relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
      fi
#  
Jeff Law committed
3943 3944

      # Quote $echo for shipping.
3945
      if test "X$echo" = "X$SHELL $0 --fallback-echo"; then
3946
	case $0 in
Jason Merrill committed
3947
	[\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $0 --fallback-echo";;
3948 3949 3950 3951 3952 3953
	*) qecho="$SHELL `pwd`/$0 --fallback-echo";;
	esac
	qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"`
      else
	qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"`
      fi
Jason Merrill committed
3954 3955 3956

      # Only actually do things if our run command is non-null.
      if test -z "$run"; then
3957 3958 3959 3960 3961
	# win32 will think the script is a binary if it has
	# a .exe suffix, so we strip it off here.
	case $output in
	  *.exe) output=`echo $output|sed 's,.exe$,,'` ;;
	esac
3962 3963 3964 3965 3966
	# test for cygwin because mv fails w/o .exe extensions
	case $host in
	  *cygwin*) exeext=.exe ;;
	  *) exeext= ;;
	esac
3967 3968
	$rm $output
	trap "$rm $output; exit 1" 1 2 15
Jason Merrill committed
3969

3970
	$echo > $output "\
#  
Jeff Law committed
3971
#! $SHELL
Jason Merrill committed
3972

3973 3974
# $output - temporary wrapper script for $objdir/$outputname
# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
Jason Merrill committed
3975 3976 3977 3978
#
# The $output program cannot be directly executed until all the libtool
# libraries that it depends on are installed.
#
3979
# This wrapper script should never be moved out of the build directory.
Jason Merrill committed
3980 3981
# If it is, it will not operate correctly.

#  
Jeff Law committed
3982 3983
# Sed substitution that helps us do robust quoting.  It backslashifies
# metacharacters that are still active within double-quoted strings.
3984
Xsed='sed -e 1s/^X//'
#  
Jeff Law committed
3985 3986 3987 3988
sed_quote_subst='$sed_quote_subst'

# The HP-UX ksh and POSIX shell print the target directory to stdout
# if CDPATH is set.
Jason Merrill committed
3989
if test \"\${CDPATH+set}\" = set; then CDPATH=:; export CDPATH; fi
#  
Jeff Law committed
3990

3991 3992
relink_command=\"$relink_command\"

Jason Merrill committed
3993
# This environment variable determines our operation mode.
#  
Jeff Law committed
3994
if test \"\$libtool_install_magic\" = \"$magic\"; then
3995
  # install mode needs the following variable:
3996
  notinst_deplibs='$notinst_deplibs'
Jason Merrill committed
3997
else
#  
Jeff Law committed
3998
  # When we are sourced in execute mode, \$file and \$echo are already set.
3999
  if test \"\$libtool_execute_magic\" != \"$magic\"; then
#  
Jeff Law committed
4000 4001
    echo=\"$qecho\"
    file=\"\$0\"
4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012
    # Make sure echo works.
    if test \"X\$1\" = X--no-reexec; then
      # Discard the --no-reexec flag, and continue.
      shift
    elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then
      # Yippee, \$echo works!
      :
    else
      # Restart under the correct shell, and then maybe \$echo will work.
      exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"}
    fi
#  
Jeff Law committed
4013 4014
  fi\
"
4015
	$echo >> $output "\
Jason Merrill committed
4016

#  
Jeff Law committed
4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028
  # Find the directory that this script lives in.
  thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
  test \"x\$thisdir\" = \"x\$file\" && thisdir=.

  # Follow symbolic links until we get to the real thisdir.
  file=\`ls -ld \"\$file\" | sed -n 's/.*-> //p'\`
  while test -n \"\$file\"; do
    destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`

    # If there was a directory component, then change thisdir.
    if test \"x\$destdir\" != \"x\$file\"; then
      case \"\$destdir\" in
4029
      [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
#  
Jeff Law committed
4030 4031 4032
      *) thisdir=\"\$thisdir/\$destdir\" ;;
      esac
    fi
Jason Merrill committed
4033

#  
Jeff Law committed
4034 4035 4036
    file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\`
    file=\`ls -ld \"\$thisdir/\$file\" | sed -n 's/.*-> //p'\`
  done
Jason Merrill committed
4037

#  
Jeff Law committed
4038 4039 4040
  # Try to get the absolute directory name.
  absdir=\`cd \"\$thisdir\" && pwd\`
  test -n \"\$absdir\" && thisdir=\"\$absdir\"
4041
"
Jason Merrill committed
4042

4043 4044
	if test "$fast_install" = yes; then
	  echo >> $output "\
4045
  program=lt-'$outputname'$exeext
#  
Jeff Law committed
4046
  progdir=\"\$thisdir/$objdir\"
4047

4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063
  if test ! -f \"\$progdir/\$program\" || \\
     { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | sed 1q\`; \\
       test \"X\$file\" != \"X\$progdir/\$program\"; }; then

    file=\"\$\$-\$program\"

    if test ! -d \"\$progdir\"; then
      $mkdir \"\$progdir\"
    else
      $rm \"\$progdir/\$file\"
    fi"

	  echo >> $output "\

    # relink executable if necessary
    if test -n \"\$relink_command\"; then
4064
      if relink_command_output=\`eval \$relink_command 2>&1\`; then :
4065
      else
4066
        $echo \"\$relink_command_output\" >&2
4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084
	$rm \"\$progdir/\$file\"
	exit 1
      fi
    fi

    $mv \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
    { $rm \"\$progdir/\$program\";
      $mv \"\$progdir/\$file\" \"\$progdir/\$program\"; }
    $rm \"\$progdir/\$file\"
  fi"
	else
	  echo >> $output "\
  program='$outputname'
  progdir=\"\$thisdir/$objdir\"
"
	fi

	echo >> $output "\
Jason Merrill committed
4085

#  
Jeff Law committed
4086
  if test -f \"\$progdir/\$program\"; then"
Jason Merrill committed
4087

4088 4089 4090
	# Export our shlibpath_var if we have one.
	if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
	  $echo >> $output "\
Jason Merrill committed
4091
    # Add our own library path to $shlibpath_var
#  
Jeff Law committed
4092
    $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
Jason Merrill committed
4093 4094

    # Some systems cannot cope with colon-terminated $shlibpath_var
4095 4096
    # The second colon is a workaround for a bug in BeOS R4 sed
    $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\`
Jason Merrill committed
4097 4098

    export $shlibpath_var
#  
Jeff Law committed
4099
"
4100 4101 4102 4103 4104 4105 4106 4107 4108
	fi

	# fixup the dll searchpath if we need to.
	if test -n "$dllsearchpath"; then
	  $echo >> $output "\
    # Add the dll search path components to the executable PATH
    PATH=$dllsearchpath:\$PATH
"
	fi
Jason Merrill committed
4109

4110
	$echo >> $output "\
#  
Jeff Law committed
4111 4112
    if test \"\$libtool_execute_magic\" != \"$magic\"; then
      # Run the actual program with our arguments.
4113 4114
"
	case $host in
4115 4116
	# win32 systems need to use the prog path for dll
	# lookup to work
4117
	*-*-cygwin* | *-*-pw32*)
4118 4119 4120 4121 4122 4123 4124
	  $echo >> $output "\
      exec \$progdir/\$program \${1+\"\$@\"}
"
	  ;;

	# Backslashes separate directories on plain windows
	*-*-mingw | *-*-os2*)
4125 4126 4127 4128
	  $echo >> $output "\
      exec \$progdir\\\\\$program \${1+\"\$@\"}
"
	  ;;
4129

4130 4131
	*)
	  $echo >> $output "\
#  
Jeff Law committed
4132 4133 4134
      # Export the path to the program.
      PATH=\"\$progdir:\$PATH\"
      export PATH
Jason Merrill committed
4135

#  
Jeff Law committed
4136
      exec \$program \${1+\"\$@\"}
4137 4138 4139 4140
"
	  ;;
	esac
	$echo >> $output "\
#  
Jeff Law committed
4141 4142 4143
      \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\"
      exit 1
    fi
Jason Merrill committed
4144 4145
  else
    # The program doesn't exist.
#  
Jeff Law committed
4146 4147 4148
    \$echo \"\$0: error: \$progdir/\$program does not exist\" 1>&2
    \$echo \"This script is just a wrapper for \$program.\" 1>&2
    echo \"See the $PACKAGE documentation for more information.\" 1>&2
Jason Merrill committed
4149 4150
    exit 1
  fi
#  
Jeff Law committed
4151 4152
fi\
"
4153
	chmod +x $output
Jason Merrill committed
4154 4155 4156 4157 4158 4159
      fi
      exit 0
      ;;
    esac

    # See if we need to build an old-fashioned archive.
4160 4161 4162
    for oldlib in $oldlibs; do

      if test "$build_libtool_libs" = convenience; then
4163
	oldobjs="$libobjs_save"
4164 4165 4166
	addlibs="$convenience"
	build_libtool_libs=no
      else
4167 4168 4169 4170
	if test "$build_libtool_libs" = module; then
	  oldobjs="$libobjs_save"
	  build_libtool_libs=no
	else
4171
	  oldobjs="$objs$old_deplibs $non_pic_objects"
4172
	fi
4173 4174 4175
	addlibs="$old_convenience"
      fi

Jason Merrill committed
4176 4177 4178 4179
      if test -n "$addlibs"; then
	gentop="$output_objdir/${outputname}x"
	$show "${rm}r $gentop"
	$run ${rm}r "$gentop"
4180 4181
	$show "$mkdir $gentop"
	$run $mkdir "$gentop"
4182
	status=$?
Jason Merrill committed
4183
	if test $status -ne 0 && test ! -d "$gentop"; then
4184 4185
	  exit $status
	fi
Jason Merrill committed
4186
	generated="$generated $gentop"
4187

Jason Merrill committed
4188 4189 4190
	# Add in members from convenience archives.
	for xlib in $addlibs; do
	  # Extract the objects.
4191
	  case $xlib in
Jason Merrill committed
4192 4193 4194 4195 4196
	  [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
	  *) xabs=`pwd`"/$xlib" ;;
	  esac
	  xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
	  xdir="$gentop/$xlib"
4197

Jason Merrill committed
4198 4199
	  $show "${rm}r $xdir"
	  $run ${rm}r "$xdir"
4200 4201
	  $show "$mkdir $xdir"
	  $run $mkdir "$xdir"
Jason Merrill committed
4202 4203 4204 4205 4206 4207 4208
	  status=$?
	  if test $status -ne 0 && test ! -d "$xdir"; then
	    exit $status
	  fi
	  $show "(cd $xdir && $AR x $xabs)"
	  $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?

4209
	  oldobjs="$oldobjs "`find $xdir -name \*.${objext} -print | $NL2SP`
Jason Merrill committed
4210 4211
	done
      fi
Jason Merrill committed
4212

#  
Jeff Law committed
4213 4214 4215
      # Do each command in the archive commands.
      if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
	eval cmds=\"$old_archive_from_new_cmds\"
Jason Merrill committed
4216
      else
4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233
#	# Ensure that we have .o objects in place in case we decided
#	# not to build a shared library, and have fallen back to building
#	# static libs even though --disable-static was passed!
#	for oldobj in $oldobjs; do
#	  if test ! -f $oldobj; then
#	    xdir=`$echo "X$oldobj" | $Xsed -e 's%/[^/]*$%%'`
#	    if test "X$xdir" = "X$oldobj"; then
#	      xdir="."
#	    else
#	      xdir="$xdir"
#	    fi
#	    baseobj=`$echo "X$oldobj" | $Xsed -e 's%^.*/%%'`
#	    obj=`$echo "X$baseobj" | $Xsed -e "$o2lo"`
#	    $show "(cd $xdir && ${LN_S} $obj $baseobj)"
#	    $run eval '(cd $xdir && ${LN_S} $obj $baseobj)' || exit $?
#	  fi
#	done
Jason Merrill committed
4234

4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267
        eval cmds=\"$old_archive_cmds\"

        if len=`expr "X$cmds" : ".*"` &&
             test $len -le $max_cmd_len; then
          :
        else
          # the command line is too long to link in one step, link in parts
          $echo "using piecewise archive linking..."
	  save_RANLIB=$RANLIB
	  RANLIB=:
          objlist=
          concat_cmds=
          save_oldobjs=$oldobjs
          for obj in $save_oldobjs
          do
            oldobjs="$objlist $obj"
            objlist="$objlist $obj"
            eval test_cmds=\"$old_archive_cmds\"
            if len=`expr "X$test_cmds" : ".*"` &&
               test $len -le $max_cmd_len; then
              :
            else
              # the above command should be used before it gets too long
              oldobjs=$objlist
	      test -z "$concat_cmds" || concat_cmds=$concat_cmds~
              eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\"
              objlist=
            fi
          done
	  RANLIB=$save_RANLIB
          oldobjs=$objlist
          eval cmds=\"\$concat_cmds~$old_archive_cmds\"
        fi
Jason Merrill committed
4268
      fi
4269
      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
Jason Merrill committed
4270
      for cmd in $cmds; do
4271 4272 4273
	IFS="$save_ifs"
	$show "$cmd"
	$run eval "$cmd" || exit $?
Jason Merrill committed
4274 4275
      done
      IFS="$save_ifs"
4276 4277 4278 4279 4280
    done

    if test -n "$generated"; then
      $show "${rm}r$generated"
      $run ${rm}r$generated
Jason Merrill committed
4281 4282 4283
    fi

    # Now create the libtool archive.
4284
    case $output in
Jason Merrill committed
4285 4286
    *.la)
      old_library=
4287
      test "$build_old_libs" = yes && old_library="$libname.$libext"
#  
Jeff Law committed
4288
      $show "creating $output"
Jason Merrill committed
4289

4290 4291
      # Preserve any variables that may affect compiler behavior
      for var in $variables_saved_for_relink; do
4292 4293 4294 4295 4296 4297 4298 4299
	if eval test -z \"\${$var+set}\"; then
	  relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
	elif eval var_value=\$$var; test -z "$var_value"; then
	  relink_command="$var=; export $var; $relink_command"
	else
	  var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
	  relink_command="$var=\"$var_value\"; export $var; $relink_command"
	fi
4300 4301 4302 4303
      done
      # Quote the link command for shipping.
      relink_command="cd `pwd`; $SHELL $0 --mode=relink $libtool_args"
      relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
4304

Jason Merrill committed
4305 4306
      # Only create the output if not a dry run.
      if test -z "$run"; then
Jason Merrill committed
4307 4308 4309 4310 4311 4312
	for installed in no yes; do
	  if test "$installed" = yes; then
	    if test -z "$install_libdir"; then
	      break
	    fi
	    output="$output_objdir/$outputname"i
4313 4314 4315
	    # Replace all uninstalled libtool libraries with the installed ones
	    newdependency_libs=
	    for deplib in $dependency_libs; do
4316
	      case $deplib in
4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351
	      *.la)
		name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'`
		eval libdir=`sed -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
		if test -z "$libdir"; then
		  $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
		  exit 1
		fi
		newdependency_libs="$newdependency_libs $libdir/$name"
		;;
	      *) newdependency_libs="$newdependency_libs $deplib" ;;
	      esac
	    done
	    dependency_libs="$newdependency_libs"
	    newdlfiles=
	    for lib in $dlfiles; do
	      name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
	      eval libdir=`sed -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
	      if test -z "$libdir"; then
		$echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
		exit 1
	      fi
	      newdlfiles="$newdlfiles $libdir/$name"
	    done
	    dlfiles="$newdlfiles"
	    newdlprefiles=
	    for lib in $dlprefiles; do
	      name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
	      eval libdir=`sed -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
	      if test -z "$libdir"; then
		$echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
		exit 1
	      fi
	      newdlprefiles="$newdlprefiles $libdir/$name"
	    done
	    dlprefiles="$newdlprefiles"
Jason Merrill committed
4352 4353
	  fi
	  $rm $output
4354 4355 4356 4357 4358
	  # place dlname in correct position for cygwin
	  tdlname=$dlname
	  case $host,$output,$installed,$module,$dlname in
	    *cygwin*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;;
	  esac
Jason Merrill committed
4359 4360
	  $echo > $output "\
# $outputname - a libtool library file
4361
# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
Jason Merrill committed
4362 4363 4364
#
# Please DO NOT delete this file!
# It is necessary for linking the library.
Jason Merrill committed
4365 4366

# The name that we can dlopen(3).
4367
dlname='$tdlname'
Jason Merrill committed
4368 4369 4370 4371 4372 4373 4374

# Names of this library.
library_names='$library_names'

# The name of the static archive.
old_library='$old_library'

#  
Jeff Law committed
4375 4376 4377
# Libraries that this one depends upon.
dependency_libs='$dependency_libs'

Jason Merrill committed
4378 4379 4380 4381 4382
# Version information for $libname.
current=$current
age=$age
revision=$revision

4383
# Is this an already installed library?
Jason Merrill committed
4384
installed=$installed
4385

4386 4387 4388 4389
# Files to dlopen/dlpreopen
dlopen='$dlfiles'
dlpreopen='$dlprefiles'

Jason Merrill committed
4390
# Directory that this library needs to be installed in:
4391
libdir='$install_libdir'"
4392
	  if test "$installed" = no && test $need_relink = yes; then
4393 4394 4395
	    $echo >> $output "\
relink_command=\"$relink_command\""
	  fi
Jason Merrill committed
4396
	done
Jason Merrill committed
4397 4398 4399 4400
      fi

      # Do a symbolic link so that the libtool archive can be found in
      # LD_LIBRARY_PATH before the program is installed.
4401
      $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)"
4402
      $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $?
Jason Merrill committed
4403 4404 4405 4406 4407 4408 4409
      ;;
    esac
    exit 0
    ;;

  # libtool install mode
  install)
#  
Jeff Law committed
4410
    modename="$modename: install"
Jason Merrill committed
4411

#  
Jeff Law committed
4412 4413
    # There may be an optional sh(1) argument at the beginning of
    # install_prog (especially on Windows NT).
4414 4415
    if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
       # Allow the use of GNU shtool's install command.
4416
       $echo "X$nonopt" | $Xsed | grep shtool > /dev/null; then
#  
Jeff Law committed
4417 4418
      # Aesthetically quote it.
      arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
4419
      case $arg in
#  
Jeff Law committed
4420 4421 4422 4423 4424 4425
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
	arg="\"$arg\""
	;;
      esac
      install_prog="$arg "
      arg="$1"
Jason Merrill committed
4426
      shift
#  
Jeff Law committed
4427 4428 4429
    else
      install_prog=
      arg="$nonopt"
Jason Merrill committed
4430 4431
    fi

#  
Jeff Law committed
4432 4433 4434
    # The real first argument should be the name of the installation program.
    # Aesthetically quote it.
    arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
4435
    case $arg in
#  
Jeff Law committed
4436 4437 4438 4439 4440 4441
    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
      arg="\"$arg\""
      ;;
    esac
    install_prog="$install_prog$arg"

Jason Merrill committed
4442 4443 4444 4445 4446 4447
    # We need to accept at least all the BSD install flags.
    dest=
    files=
    opts=
    prev=
    install_type=
#  
Jeff Law committed
4448
    isdir=no
Jason Merrill committed
4449 4450 4451 4452
    stripme=
    for arg
    do
      if test -n "$dest"; then
4453 4454 4455
	files="$files $dest"
	dest="$arg"
	continue
Jason Merrill committed
4456 4457
      fi

4458
      case $arg in
Jason Merrill committed
4459 4460 4461 4462 4463 4464
      -d) isdir=yes ;;
      -f) prev="-f" ;;
      -g) prev="-g" ;;
      -m) prev="-m" ;;
      -o) prev="-o" ;;
      -s)
4465 4466 4467
	stripme=" -s"
	continue
	;;
Jason Merrill committed
4468 4469 4470
      -*) ;;

      *)
4471 4472 4473 4474 4475 4476 4477 4478
	# If the previous option needed an argument, then skip it.
	if test -n "$prev"; then
	  prev=
	else
	  dest="$arg"
	  continue
	fi
	;;
Jason Merrill committed
4479
      esac
#  
Jeff Law committed
4480 4481 4482

      # Aesthetically quote the argument.
      arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
4483
      case $arg in
#  
Jeff Law committed
4484 4485 4486 4487
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
	arg="\"$arg\""
	;;
      esac
Jason Merrill committed
4488 4489 4490 4491
      install_prog="$install_prog $arg"
    done

    if test -z "$install_prog"; then
#  
Jeff Law committed
4492 4493
      $echo "$modename: you must specify an install program" 1>&2
      $echo "$help" 1>&2
Jason Merrill committed
4494 4495 4496 4497
      exit 1
    fi

    if test -n "$prev"; then
#  
Jeff Law committed
4498 4499
      $echo "$modename: the \`$prev' option requires an argument" 1>&2
      $echo "$help" 1>&2
Jason Merrill committed
4500 4501 4502 4503 4504
      exit 1
    fi

    if test -z "$files"; then
      if test -z "$dest"; then
4505
	$echo "$modename: no file or destination specified" 1>&2
Jason Merrill committed
4506
      else
4507
	$echo "$modename: you must specify a destination" 1>&2
Jason Merrill committed
4508
      fi
#  
Jeff Law committed
4509
      $echo "$help" 1>&2
Jason Merrill committed
4510 4511 4512 4513
      exit 1
    fi

    # Strip any trailing slash from the destination.
#  
Jeff Law committed
4514
    dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`
Jason Merrill committed
4515 4516 4517

    # Check to see that the destination is a directory.
    test -d "$dest" && isdir=yes
#  
Jeff Law committed
4518
    if test "$isdir" = yes; then
Jason Merrill committed
4519 4520 4521
      destdir="$dest"
      destname=
    else
#  
Jeff Law committed
4522 4523 4524
      destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
      test "X$destdir" = "X$dest" && destdir=.
      destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`
Jason Merrill committed
4525 4526 4527 4528

      # Not a directory, so check to see that there is only one file specified.
      set dummy $files
      if test $# -gt 2; then
4529 4530 4531
	$echo "$modename: \`$dest' is not a directory" 1>&2
	$echo "$help" 1>&2
	exit 1
Jason Merrill committed
4532 4533
      fi
    fi
4534
    case $destdir in
Jason Merrill committed
4535
    [\\/]* | [A-Za-z]:[\\/]*) ;;
Jason Merrill committed
4536 4537
    *)
      for file in $files; do
4538
	case $file in
4539 4540 4541 4542 4543 4544 4545
	*.lo) ;;
	*)
	  $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2
	  $echo "$help" 1>&2
	  exit 1
	  ;;
	esac
Jason Merrill committed
4546 4547 4548 4549
      done
      ;;
    esac

#  
Jeff Law committed
4550 4551 4552 4553
    # This variable tells wrapper scripts just to set variables rather
    # than running their programs.
    libtool_install_magic="$magic"

Jason Merrill committed
4554 4555 4556 4557 4558 4559
    staticlibs=
    future_libdirs=
    current_libdirs=
    for file in $files; do

      # Do each installation.
4560
      case $file in
4561
      *.$libext)
4562 4563 4564
	# Do the static libraries later.
	staticlibs="$staticlibs $file"
	;;
Jason Merrill committed
4565 4566

      *.la)
4567 4568 4569 4570 4571 4572 4573 4574 4575 4576
	# Check to see that this really is a libtool archive.
	if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
	else
	  $echo "$modename: \`$file' is not a valid libtool archive" 1>&2
	  $echo "$help" 1>&2
	  exit 1
	fi

	library_names=
	old_library=
4577
	relink_command=
4578
	# If there is no directory component, then add one.
4579
	case $file in
4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597
	*/* | *\\*) . $file ;;
	*) . ./$file ;;
	esac

	# Add the libdir to current_libdirs if it is the destination.
	if test "X$destdir" = "X$libdir"; then
	  case "$current_libdirs " in
	  *" $libdir "*) ;;
	  *) current_libdirs="$current_libdirs $libdir" ;;
	  esac
	else
	  # Note the libdir as a future libdir.
	  case "$future_libdirs " in
	  *" $libdir "*) ;;
	  *) future_libdirs="$future_libdirs $libdir" ;;
	  esac
	fi

4598
	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/
4599 4600 4601
	test "X$dir" = "X$file/" && dir=
	dir="$dir$objdir"

4602
	if test -n "$relink_command"; then
4603 4604 4605 4606 4607 4608 4609 4610 4611
	  $echo "$modename: warning: relinking \`$file'" 1>&2
	  $show "$relink_command"
	  if $run eval "$relink_command"; then :
	  else
	    $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
	    continue
	  fi
	fi

4612 4613 4614 4615 4616 4617 4618
	# See the names of the shared library.
	set dummy $library_names
	if test -n "$2"; then
	  realname="$2"
	  shift
	  shift

4619
	  srcname="$realname"
4620
	  test -n "$relink_command" && srcname="$realname"T
4621

4622
	  # Install the shared library and build the symlinks.
4623 4624 4625 4626 4627 4628
	  $show "$install_prog $dir/$srcname $destdir/$realname"
	  $run eval "$install_prog $dir/$srcname $destdir/$realname" || exit $?
	  if test -n "$stripme" && test -n "$striplib"; then
	    $show "$striplib $destdir/$realname"
	    $run eval "$striplib $destdir/$realname" || exit $?
	  fi
4629 4630 4631 4632 4633 4634 4635 4636

	  if test $# -gt 0; then
	    # Delete the old symlinks, and create new ones.
	    for linkname
	    do
	      if test "$linkname" != "$realname"; then
		$show "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
		$run eval "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
4637
	      fi
4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661
	    done
	  fi

	  # Do each command in the postinstall commands.
	  lib="$destdir/$realname"
	  eval cmds=\"$postinstall_cmds\"
	  IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
	  for cmd in $cmds; do
	    IFS="$save_ifs"
	    $show "$cmd"
	    $run eval "$cmd" || exit $?
	  done
	  IFS="$save_ifs"
	fi

	# Install the pseudo-library for information purposes.
	name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
	instname="$dir/$name"i
	$show "$install_prog $instname $destdir/$name"
	$run eval "$install_prog $instname $destdir/$name" || exit $?

	# Maybe install the static library, too.
	test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
	;;
Jason Merrill committed
4662 4663

      *.lo)
4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674
	# Install (i.e. copy) a libtool object.

	# Figure out destination file name, if it wasn't already specified.
	if test -n "$destname"; then
	  destfile="$destdir/$destname"
	else
	  destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
	  destfile="$destdir/$destfile"
	fi

	# Deduce the name of the destination old-style object file.
4675
	case $destfile in
4676 4677 4678
	*.lo)
	  staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"`
	  ;;
4679
	*.$objext)
4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705
	  staticdest="$destfile"
	  destfile=
	  ;;
	*)
	  $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2
	  $echo "$help" 1>&2
	  exit 1
	  ;;
	esac

	# Install the libtool object if requested.
	if test -n "$destfile"; then
	  $show "$install_prog $file $destfile"
	  $run eval "$install_prog $file $destfile" || exit $?
	fi

	# Install the old object if enabled.
	if test "$build_old_libs" = yes; then
	  # Deduce the name of the old-style object file.
	  staticobj=`$echo "X$file" | $Xsed -e "$lo2o"`

	  $show "$install_prog $staticobj $staticdest"
	  $run eval "$install_prog \$staticobj \$staticdest" || exit $?
	fi
	exit 0
	;;
Jason Merrill committed
4706 4707

      *)
4708 4709 4710 4711 4712 4713 4714 4715 4716 4717
	# Figure out destination file name, if it wasn't already specified.
	if test -n "$destname"; then
	  destfile="$destdir/$destname"
	else
	  destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
	  destfile="$destdir/$destfile"
	fi

	# Do a test to see if this is really a libtool program.
	if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
4718
	  notinst_deplibs=
4719 4720 4721
	  relink_command=

	  # If there is no directory component, then add one.
4722
	  case $file in
4723 4724 4725 4726 4727
	  */* | *\\*) . $file ;;
	  *) . ./$file ;;
	  esac

	  # Check the variables that should have been set.
4728
	  if test -z "$notinst_deplibs"; then
4729 4730 4731 4732 4733
	    $echo "$modename: invalid libtool wrapper script \`$file'" 1>&2
	    exit 1
	  fi

	  finalize=yes
4734
	  for lib in $notinst_deplibs; do
4735 4736 4737 4738
	    # Check to see that each library is installed.
	    libdir=
	    if test -f "$lib"; then
	      # If there is no directory component, then add one.
4739
	      case $lib in
4740 4741 4742 4743
	      */* | *\\*) . $lib ;;
	      *) . ./$lib ;;
	      esac
	    fi
4744
	    libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test
4745 4746 4747 4748 4749 4750
	    if test -n "$libdir" && test ! -f "$libfile"; then
	      $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
	      finalize=no
	    fi
	  done

4751 4752
	  relink_command=
	  # If there is no directory component, then add one.
4753
	  case $file in
4754 4755 4756 4757
	  */* | *\\*) . $file ;;
	  *) . ./$file ;;
	  esac

4758 4759
	  outputname=
	  if test "$fast_install" = no && test -n "$relink_command"; then
Jason Merrill committed
4760 4761 4762 4763 4764 4765 4766 4767 4768
	    if test "$finalize" = yes && test -z "$run"; then
	      tmpdir="/tmp"
	      test -n "$TMPDIR" && tmpdir="$TMPDIR"
	      tmpdir="$tmpdir/libtool-$$"
	      if $mkdir -p "$tmpdir" && chmod 700 "$tmpdir"; then :
	      else
		$echo "$modename: error: cannot create temporary directory \`$tmpdir'" 1>&2
		continue
	      fi
4769
	      file=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
Jason Merrill committed
4770
	      outputname="$tmpdir/$file"
4771 4772 4773 4774 4775 4776 4777
	      # Replace the output file specification.
	      relink_command=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'`

	      $show "$relink_command"
	      if $run eval "$relink_command"; then :
	      else
		$echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
Jason Merrill committed
4778
		${rm}r "$tmpdir"
4779 4780 4781 4782
		continue
	      fi
	      file="$outputname"
	    else
Jason Merrill committed
4783
	      $echo "$modename: warning: cannot relink \`$file'" 1>&2
4784 4785 4786
	    fi
	  else
	    # Install the binary that we compiled earlier.
#  
Jeff Law committed
4787
	    file=`$echo "X$file" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
4788 4789
	  fi
	fi
Jason Merrill committed
4790

4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809

	# remove .exe since cygwin /usr/bin/install will append another
	# one anyways
	case $install_prog,$host in
	*/usr/bin/install*,*cygwin*)
	  case $file:$destfile in
	  *.exe:*.exe)
	    # this is ok
	    ;;
	  *.exe:*)
	    destfile=$destfile.exe
	    ;;
	  *:*.exe)
	    destfile=`echo $destfile | sed -e 's,.exe$,,'`
	    ;;
	  esac
	  ;;
	esac

4810 4811
	$show "$install_prog$stripme $file $destfile"
	$run eval "$install_prog\$stripme \$file \$destfile" || exit $?
Jason Merrill committed
4812
	test -n "$outputname" && ${rm}r "$tmpdir"
4813
	;;
Jason Merrill committed
4814 4815 4816 4817
      esac
    done

    for file in $staticlibs; do
#  
Jeff Law committed
4818
      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
Jason Merrill committed
4819 4820 4821 4822 4823

      # Set up the ranlib parameters.
      oldlib="$destdir/$name"

      $show "$install_prog $file $oldlib"
#  
Jeff Law committed
4824
      $run eval "$install_prog \$file \$oldlib" || exit $?
Jason Merrill committed
4825

4826 4827 4828 4829 4830
      if test -n "$stripme" && test -n "$striplib"; then
	$show "$old_striplib $oldlib"
	$run eval "$old_striplib $oldlib" || exit $?
      fi

Jason Merrill committed
4831
      # Do each command in the postinstall commands.
#  
Jeff Law committed
4832
      eval cmds=\"$old_postinstall_cmds\"
4833
      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
Jason Merrill committed
4834
      for cmd in $cmds; do
4835 4836 4837
	IFS="$save_ifs"
	$show "$cmd"
	$run eval "$cmd" || exit $?
Jason Merrill committed
4838 4839 4840 4841 4842
      done
      IFS="$save_ifs"
    done

    if test -n "$future_libdirs"; then
#  
Jeff Law committed
4843
      $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2
Jason Merrill committed
4844 4845 4846 4847 4848
    fi

    if test -n "$current_libdirs"; then
      # Maybe just do a dry run.
      test -n "$run" && current_libdirs=" -n$current_libdirs"
4849 4850 4851
      exec_cmd='$SHELL $0 --finish$current_libdirs'
    else
      exit 0
Jason Merrill committed
4852 4853 4854
    fi
    ;;

#  
Jeff Law committed
4855 4856 4857 4858 4859 4860 4861 4862 4863
  # libtool finish mode
  finish)
    modename="$modename: finish"
    libdirs="$nonopt"
    admincmds=

    if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
      for dir
      do
4864
	libdirs="$libdirs $dir"
#  
Jeff Law committed
4865 4866 4867 4868 4869 4870
      done

      for libdir in $libdirs; do
	if test -n "$finish_cmds"; then
	  # Do each command in the finish commands.
	  eval cmds=\"$finish_cmds\"
4871 4872 4873 4874 4875
	  IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
	  for cmd in $cmds; do
	    IFS="$save_ifs"
	    $show "$cmd"
	    $run eval "$cmd" || admincmds="$admincmds
#  
Jeff Law committed
4876
       $cmd"
4877 4878
	  done
	  IFS="$save_ifs"
#  
Jeff Law committed
4879 4880 4881 4882 4883 4884 4885 4886 4887 4888
	fi
	if test -n "$finish_eval"; then
	  # Do the single finish_eval.
	  eval cmds=\"$finish_eval\"
	  $run eval "$cmds" || admincmds="$admincmds
       $cmds"
	fi
      done
    fi

4889
    # Exit here if they wanted silent mode.
4890
    test "$show" = ":" && exit 0
4891

#  
Jeff Law committed
4892 4893 4894 4895
    echo "----------------------------------------------------------------------"
    echo "Libraries have been installed in:"
    for libdir in $libdirs; do
      echo "   $libdir"
Jason Merrill committed
4896
    done
#  
Jeff Law committed
4897
    echo
4898 4899
    echo "If you ever happen to want to link against installed libraries"
    echo "in a given directory, LIBDIR, you must either use libtool, and"
4900
    echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
4901
    echo "flag during linking and do at least one of the following:"
#  
Jeff Law committed
4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912
    if test -n "$shlibpath_var"; then
      echo "   - add LIBDIR to the \`$shlibpath_var' environment variable"
      echo "     during execution"
    fi
    if test -n "$runpath_var"; then
      echo "   - add LIBDIR to the \`$runpath_var' environment variable"
      echo "     during linking"
    fi
    if test -n "$hardcode_libdir_flag_spec"; then
      libdir=LIBDIR
      eval flag=\"$hardcode_libdir_flag_spec\"
Jason Merrill committed
4913

#  
Jeff Law committed
4914
      echo "   - use the \`$flag' linker flag"
Jason Merrill committed
4915
    fi
#  
Jeff Law committed
4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927
    if test -n "$admincmds"; then
      echo "   - have your system administrator run these commands:$admincmds"
    fi
    if test -f /etc/ld.so.conf; then
      echo "   - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
    fi
    echo
    echo "See any operating system documentation about shared libraries for"
    echo "more information, such as the ld(1) and ld.so(8) manual pages."
    echo "----------------------------------------------------------------------"
    exit 0
    ;;
Jason Merrill committed
4928

#  
Jeff Law committed
4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939
  # libtool execute mode
  execute)
    modename="$modename: execute"

    # The first argument is the command name.
    cmd="$nonopt"
    if test -z "$cmd"; then
      $echo "$modename: you must specify a COMMAND" 1>&2
      $echo "$help"
      exit 1
    fi
Jason Merrill committed
4940

#  
Jeff Law committed
4941 4942
    # Handle -dlopen flags immediately.
    for file in $execute_dlfiles; do
4943
      if test ! -f "$file"; then
#  
Jeff Law committed
4944 4945 4946
	$echo "$modename: \`$file' is not a file" 1>&2
	$echo "$help" 1>&2
	exit 1
Jason Merrill committed
4947 4948
      fi

#  
Jeff Law committed
4949
      dir=
4950
      case $file in
#  
Jeff Law committed
4951
      *.la)
4952 4953 4954 4955 4956 4957 4958
	# Check to see that this really is a libtool archive.
	if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
	else
	  $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
	  $echo "$help" 1>&2
	  exit 1
	fi
#  
Jeff Law committed
4959 4960 4961 4962 4963

	# Read the libtool library.
	dlname=
	library_names=

4964
	# If there is no directory component, then add one.
4965
	case $file in
#  
Jeff Law committed
4966
	*/* | *\\*) . $file ;;
4967
	*) . ./$file ;;
#  
Jeff Law committed
4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995
	esac

	# Skip this library if it cannot be dlopened.
	if test -z "$dlname"; then
	  # Warn if it was a shared library.
	  test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'"
	  continue
	fi

	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
	test "X$dir" = "X$file" && dir=.

	if test -f "$dir/$objdir/$dlname"; then
	  dir="$dir/$objdir"
	else
	  $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2
	  exit 1
	fi
	;;

      *.lo)
	# Just add the directory containing the .lo file.
	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
	test "X$dir" = "X$file" && dir=.
	;;

      *)
	$echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2
4996
	continue
#  
Jeff Law committed
4997
	;;
Jason Merrill committed
4998 4999
      esac

#  
Jeff Law committed
5000 5001 5002 5003 5004 5005 5006
      # Get the absolute pathname.
      absdir=`cd "$dir" && pwd`
      test -n "$absdir" && dir="$absdir"

      # Now add the directory to shlibpath_var.
      if eval "test -z \"\$$shlibpath_var\""; then
	eval "$shlibpath_var=\"\$dir\""
Jason Merrill committed
5007
      else
#  
Jeff Law committed
5008
	eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
Jason Merrill committed
5009 5010 5011
      fi
    done

#  
Jeff Law committed
5012 5013 5014
    # This variable tells wrapper scripts just to set shlibpath_var
    # rather than running their programs.
    libtool_execute_magic="$magic"
Jason Merrill committed
5015

#  
Jeff Law committed
5016 5017 5018 5019
    # Check if any of the arguments is a wrapper script.
    args=
    for file
    do
5020
      case $file in
#  
Jeff Law committed
5021 5022
      -*) ;;
      *)
5023 5024
	# Do a test to see if this is really a libtool program.
	if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
#  
Jeff Law committed
5025
	  # If there is no directory component, then add one.
5026
	  case $file in
#  
Jeff Law committed
5027 5028 5029
	  */* | *\\*) . $file ;;
	  *) . ./$file ;;
	  esac
Jason Merrill committed
5030

#  
Jeff Law committed
5031 5032 5033
	  # Transform arg to wrapped name.
	  file="$progdir/$program"
	fi
5034
	;;
#  
Jeff Law committed
5035 5036 5037 5038 5039
      esac
      # Quote arguments (to preserve shell metacharacters).
      file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
      args="$args \"$file\""
    done
Jason Merrill committed
5040

#  
Jeff Law committed
5041
    if test -z "$run"; then
Jason Merrill committed
5042
      if test -n "$shlibpath_var"; then
5043 5044
	# Export the shlibpath_var.
	eval "export $shlibpath_var"
Jason Merrill committed
5045
      fi
#  
Jeff Law committed
5046

5047 5048
      # Restore saved enviroment variables
      if test "${save_LC_ALL+set}" = set; then
5049
	LC_ALL="$save_LC_ALL"; export LC_ALL
5050 5051
      fi
      if test "${save_LANG+set}" = set; then
5052
	LANG="$save_LANG"; export LANG
5053 5054
      fi

5055 5056
      # Now prepare to actually exec the command.
      exec_cmd='"$cmd"$args'
#  
Jeff Law committed
5057 5058
    else
      # Display what would be done.
Jason Merrill committed
5059
      if test -n "$shlibpath_var"; then
5060 5061
	eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\""
	$echo "export $shlibpath_var"
Jason Merrill committed
5062
      fi
#  
Jeff Law committed
5063 5064
      $echo "$cmd$args"
      exit 0
Jason Merrill committed
5065 5066 5067
    fi
    ;;

5068 5069 5070
  # libtool clean and uninstall mode
  clean | uninstall)
    modename="$modename: $mode"
Jason Merrill committed
5071 5072
    rm="$nonopt"
    files=
5073 5074
    rmforce=
    exit_status=0
Jason Merrill committed
5075

5076 5077 5078 5079
    # This variable tells wrapper scripts just to set variables rather
    # than running their programs.
    libtool_install_magic="$magic"

Jason Merrill committed
5080 5081
    for arg
    do
5082
      case $arg in
5083
      -f) rm="$rm $arg"; rmforce=yes ;;
Jason Merrill committed
5084 5085 5086 5087 5088 5089
      -*) rm="$rm $arg" ;;
      *) files="$files $arg" ;;
      esac
    done

    if test -z "$rm"; then
#  
Jeff Law committed
5090 5091
      $echo "$modename: you must specify an RM program" 1>&2
      $echo "$help" 1>&2
Jason Merrill committed
5092 5093 5094
      exit 1
    fi

5095 5096
    rmdirs=

Jason Merrill committed
5097
    for file in $files; do
#  
Jeff Law committed
5098
      dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
5099 5100 5101 5102 5103 5104
      if test "X$dir" = "X$file"; then
	dir=.
	objdir="$objdir"
      else
	objdir="$dir/$objdir"
      fi
#  
Jeff Law committed
5105
      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
5106
      test $mode = uninstall && objdir="$dir"
Jason Merrill committed
5107

5108 5109
      # Remember objdir for removal later, being careful to avoid duplicates
      if test $mode = clean; then
5110
	case " $rmdirs " in
5111 5112 5113 5114
	  *" $objdir "*) ;;
	  *) rmdirs="$rmdirs $objdir" ;;
	esac
      fi
5115

5116
      # Don't error if the file doesn't exist and rm -f was used.
5117 5118 5119
      if (test -L "$file") >/dev/null 2>&1 \
        || (test -h "$file") >/dev/null 2>&1 \
	|| test -f "$file"; then
5120 5121 5122 5123 5124 5125 5126
        :
      elif test -d "$file"; then
        exit_status=1
	continue
      elif test "$rmforce" = yes; then
        continue
      fi
5127

Jason Merrill committed
5128 5129
      rmfiles="$file"

5130
      case $name in
Jason Merrill committed
5131
      *.la)
5132 5133 5134 5135 5136 5137
	# Possibly a libtool archive, so verify it.
	if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
	  . $dir/$name

	  # Delete the libtool libraries and symlinks.
	  for n in $library_names; do
5138
	    rmfiles="$rmfiles $objdir/$n"
5139
	  done
5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151
	  test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library"
	  test $mode = clean && rmfiles="$rmfiles $objdir/$name $objdir/${name}i"

	  if test $mode = uninstall; then
	    if test -n "$library_names"; then
	      # Do each command in the postuninstall commands.
	      eval cmds=\"$postuninstall_cmds\"
	      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
	      for cmd in $cmds; do
		IFS="$save_ifs"
		$show "$cmd"
		$run eval "$cmd"
5152 5153 5154
		if test $? != 0 && test "$rmforce" != yes; then
		  exit_status=1
		fi
5155
	      done
#  
Jeff Law committed
5156
	      IFS="$save_ifs"
5157
	    fi
Jason Merrill committed
5158

5159 5160 5161 5162 5163 5164 5165 5166
	    if test -n "$old_library"; then
	      # Do each command in the old_postuninstall commands.
	      eval cmds=\"$old_postuninstall_cmds\"
	      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS='~'
	      for cmd in $cmds; do
		IFS="$save_ifs"
		$show "$cmd"
		$run eval "$cmd"
5167 5168 5169
		if test $? != 0 && test "$rmforce" != yes; then
		  exit_status=1
		fi
5170
	      done
#  
Jeff Law committed
5171
	      IFS="$save_ifs"
5172 5173
	    fi
	    # FIXME: should reinstall the best remaining shared library.
#  
Jeff Law committed
5174
	  fi
5175 5176
	fi
	;;
Jason Merrill committed
5177 5178

      *.lo)
5179
	# Possibly a libtool object, so verify it.
5180
	if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
5181 5182

          # Read the .lo file
5183
          . $dir/$name
5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195

	  # Add PIC object to the list of files to remove.
          if test -n "$pic_object" \
             && test "$pic_object" != none; then
	    rmfiles="$rmfiles $dir/$pic_object"
          fi

	  # Add non-PIC object to the list of files to remove.
          if test -n "$non_pic_object" \
             && test "$non_pic_object" != none; then
	    rmfiles="$rmfiles $dir/$non_pic_object"
          fi
5196 5197
	fi
	;;
Jason Merrill committed
5198

#  
Jeff Law committed
5199
      *)
5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210
	# Do a test to see if this is a libtool program.
	if test $mode = clean &&
	   (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
	  relink_command=
	  . $dir/$file

	  rmfiles="$rmfiles $objdir/$name $objdir/${name}S.${objext}"
	  if test "$fast_install" = yes && test -n "$relink_command"; then
	    rmfiles="$rmfiles $objdir/lt-$name"
	  fi
	fi
#  
Jeff Law committed
5211 5212
	;;
      esac
5213
      $show "$rm $rmfiles"
5214
      $run $rm $rmfiles || exit_status=1
Jason Merrill committed
5215
    done
5216 5217 5218 5219

    # Try to remove the ${objdir}s in the directories where we deleted files
    for dir in $rmdirs; do
      if test -d "$dir"; then
5220 5221
	$show "rmdir $dir"
	$run rmdir $dir >/dev/null 2>&1
5222 5223 5224
      fi
    done

5225
    exit $exit_status
Jason Merrill committed
5226 5227
    ;;

#  
Jeff Law committed
5228 5229 5230
  "")
    $echo "$modename: you must specify a MODE" 1>&2
    $echo "$generic_help" 1>&2
Jason Merrill committed
5231 5232 5233 5234
    exit 1
    ;;
  esac

5235 5236 5237 5238 5239
  if test -z "$exec_cmd"; then
    $echo "$modename: invalid operation mode \`$mode'" 1>&2
    $echo "$generic_help" 1>&2
    exit 1
  fi
Jason Merrill committed
5240 5241
fi # test -z "$show_help"

5242 5243 5244 5245 5246
if test -n "$exec_cmd"; then
  eval exec $exec_cmd
  exit 1
fi

Jason Merrill committed
5247
# We need to display help for each of the modes.
5248
case $mode in
#  
Jeff Law committed
5249 5250
"") $echo \
"Usage: $modename [OPTION]... [MODE-ARG]...
Jason Merrill committed
5251 5252 5253

Provide generalized library-building support services.

#  
Jeff Law committed
5254 5255
    --config          show all configuration variables
    --debug           enable verbose shell tracing
Jason Merrill committed
5256
-n, --dry-run         display commands without modifying any files
#  
Jeff Law committed
5257
    --features        display basic configuration information and exit
Jason Merrill committed
5258 5259 5260
    --finish          same as \`--mode=finish'
    --help            display this help message and exit
    --mode=MODE       use operation mode MODE [default=inferred from MODE-ARGS]
#  
Jeff Law committed
5261 5262
    --quiet           same as \`--silent'
    --silent          don't print informational messages
5263
    --tag=TAG         use configuration variables from tag TAG
Jason Merrill committed
5264 5265 5266 5267
    --version         print version information

MODE must be one of the following:

5268
      clean           remove files from the build directory
Jason Merrill committed
5269
      compile         compile a source file into a libtool object
#  
Jeff Law committed
5270
      execute         automatically set library path, then run a program
Jason Merrill committed
5271 5272 5273 5274 5275
      finish          complete the installation of libtool libraries
      install         install libraries or executables
      link            create a library or an executable
      uninstall       remove libraries from an installed directory

#  
Jeff Law committed
5276 5277 5278
MODE-ARGS vary depending on the MODE.  Try \`$modename --help --mode=MODE' for
a more detailed description of MODE."
  exit 0
Jason Merrill committed
5279 5280
  ;;

5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294
clean)
  $echo \
"Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE...

Remove files from the build directory.

RM is the name of the program to use to delete files associated with each FILE
(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
to RM.

If FILE is a libtool library, object or program, all the files associated
with it are deleted. Otherwise, only FILE itself is deleted using RM."
  ;;

Jason Merrill committed
5295
compile)
#  
Jeff Law committed
5296 5297
  $echo \
"Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
Jason Merrill committed
5298 5299 5300

Compile a source file into a libtool library object.

5301 5302
This mode accepts the following additional options:

5303
  -o OUTPUT-FILE    set the output file name to OUTPUT-FILE
5304 5305
  -prefer-pic       try to building PIC objects only
  -prefer-non-pic   try to building non-PIC objects only
5306 5307
  -static           always build a \`.o' file suitable for static linking

Jason Merrill committed
5308 5309 5310 5311 5312
COMPILE-COMMAND is a command to be used in creating a \`standard' object file
from the given SOURCEFILE.

The output file name is determined by removing the directory component from
SOURCEFILE, then substituting the C source code suffix \`.c' with the
#  
Jeff Law committed
5313
library object suffix, \`.lo'."
Jason Merrill committed
5314 5315
  ;;

#  
Jeff Law committed
5316 5317 5318 5319 5320 5321 5322
execute)
  $echo \
"Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]...

Automatically set library path, then run a program.

This mode accepts the following additional options:
Jason Merrill committed
5323

#  
Jeff Law committed
5324
  -dlopen FILE      add the directory containing FILE to the library path
Jason Merrill committed
5325

#  
Jeff Law committed
5326 5327
This mode sets the library path environment variable according to \`-dlopen'
flags.
Jason Merrill committed
5328

#  
Jeff Law committed
5329 5330 5331 5332 5333
If any of the ARGS are libtool executable wrappers, then they are translated
into their corresponding uninstalled binary, and any of their required library
directories are added to the library path.

Then, COMMAND is executed, with ARGS as arguments."
Jason Merrill committed
5334 5335 5336
  ;;

finish)
#  
Jeff Law committed
5337 5338
  $echo \
"Usage: $modename [OPTION]... --mode=finish [LIBDIR]...
Jason Merrill committed
5339 5340 5341 5342 5343 5344

Complete the installation of libtool libraries.

Each LIBDIR is a directory that contains libtool libraries.

The commands that this mode executes may require superuser privileges.  Use
#  
Jeff Law committed
5345
the \`--dry-run' option if you just want to see what would be executed."
Jason Merrill committed
5346 5347 5348
  ;;

install)
#  
Jeff Law committed
5349 5350
  $echo \
"Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND...
Jason Merrill committed
5351 5352 5353 5354 5355 5356 5357

Install executables or libraries.

INSTALL-COMMAND is the installation command.  The first component should be
either the \`install' or \`cp' program.

The rest of the components are interpreted as arguments to that command (only
#  
Jeff Law committed
5358
BSD-compatible install options are recognized)."
Jason Merrill committed
5359 5360 5361
  ;;

link)
#  
Jeff Law committed
5362 5363
  $echo \
"Usage: $modename [OPTION]... --mode=link LINK-COMMAND...
Jason Merrill committed
5364 5365 5366 5367 5368 5369 5370 5371 5372

Link object files or libraries together to form another library, or to
create an executable program.

LINK-COMMAND is a command using the C compiler that you would use to create
a program from several object files.

The following components of LINK-COMMAND are treated specially:

#  
Jeff Law committed
5373
  -all-static       do not do any dynamic linking at all
5374
  -avoid-version    do not add a version suffix if possible
#  
Jeff Law committed
5375
  -dlopen FILE      \`-dlpreopen' FILE if it cannot be dlopened at runtime
5376
  -dlpreopen FILE   link in FILE and add its symbols to lt_preloaded_symbols
Jason Merrill committed
5377
  -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
5378 5379
  -export-symbols SYMFILE
		    try to export only the symbols listed in SYMFILE
Jason Merrill committed
5380 5381
  -export-symbols-regex REGEX
		    try to export only the symbols matching REGEX
Jason Merrill committed
5382 5383
  -LLIBDIR          search LIBDIR for required installed libraries
  -lNAME            OUTPUT-FILE requires the installed library libNAME
5384
  -module           build a library that can dlopened
5385 5386
  -no-fast-install  disable the fast-install mode
  -no-install       link a not-installable executable
#  
Jeff Law committed
5387
  -no-undefined     declare that a library does not refer to external symbols
Jason Merrill committed
5388
  -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects
5389
  -objectlist FILE  Use a list of object files found in FILE to specify objects
#  
Jeff Law committed
5390
  -release RELEASE  specify package release information
Jason Merrill committed
5391
  -rpath LIBDIR     the created library will eventually be installed in LIBDIR
5392
  -R[ ]LIBDIR       add LIBDIR to the runtime path of programs and libraries
#  
Jeff Law committed
5393
  -static           do not do any dynamic linking of libtool libraries
Jason Merrill committed
5394
  -version-info CURRENT[:REVISION[:AGE]]
5395
		    specify library version info [each variable defaults to 0]
Jason Merrill committed
5396 5397 5398 5399 5400 5401 5402

All other options (arguments beginning with \`-') are ignored.

Every other argument is treated as a filename.  Files ending in \`.la' are
treated as uninstalled libtool libraries, other files are standard or library
object files.

5403 5404 5405
If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
only library objects (\`.lo' files) may be specified, and \`-rpath' is
required, except when creating a convenience library.
Jason Merrill committed
5406

5407
If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
5408
using \`ar' and \`ranlib', or on Windows using \`lib'.
Jason Merrill committed
5409

5410 5411
If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
is created, otherwise an executable program is created."
Jason Merrill committed
5412 5413 5414
  ;;

uninstall)
Jason Merrill committed
5415
  $echo \
#  
Jeff Law committed
5416
"Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
Jason Merrill committed
5417 5418 5419 5420 5421 5422 5423 5424

Remove libraries from an installation directory.

RM is the name of the program to use to delete files associated with each FILE
(typically \`/bin/rm').  RM-OPTIONS are options (such as \`-f') to be passed
to RM.

If FILE is a libtool library, all the files associated with it are deleted.
#  
Jeff Law committed
5425
Otherwise, only FILE itself is deleted using RM."
Jason Merrill committed
5426 5427 5428
  ;;

*)
#  
Jeff Law committed
5429 5430
  $echo "$modename: invalid operation mode \`$mode'" 1>&2
  $echo "$help" 1>&2
Jason Merrill committed
5431 5432 5433 5434
  exit 1
  ;;
esac

#  
Jeff Law committed
5435 5436
echo
$echo "Try \`$modename --help' for more information about other modes."
Jason Merrill committed
5437 5438 5439

exit 0

5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450
# The TAGs below are defined such that we never get into a situation
# in which we disable both kinds of libraries.  Given conflicting
# choices, we go for a static library, that is the most portable,
# since we can't tell whether shared libraries were disabled because
# the user asked for that or because the platform doesn't support
# them.  This is particularly important on AIX, because we don't
# support having both static and shared libraries enabled at the same
# time on that platform, so we default to a shared-only configuration.
# If a disable-shared tag is given, we'll fallback to a static-only
# configuration.  But we'll never go from static-only to shared-only.

5451 5452
### BEGIN LIBTOOL TAG CONFIG: disable-shared
build_libtool_libs=no
5453
build_old_libs=yes
5454 5455 5456
### END LIBTOOL TAG CONFIG: disable-shared

### BEGIN LIBTOOL TAG CONFIG: disable-static
5457
build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`
5458 5459
### END LIBTOOL TAG CONFIG: disable-static

Jason Merrill committed
5460 5461 5462 5463
# Local Variables:
# mode:shell-script
# sh-indentation:2
# End: