ltmain.sh 73.4 KB
Newer Older
Jason Merrill committed
1
# ltmain.sh - Provide generalized library-building support services.
#  
Jeff Law committed
2 3 4
# NOTE: Changing this file will not affect anything until you rerun ltconfig.
#
# Copyright (C) 1996-1998 Free Software Foundation, Inc.
Jason Merrill committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
# Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
#
# 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.

26 27 28 29 30 31 32 33 34 35 36 37
# Check that we have a working $echo.
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

Jason Merrill committed
38
# The name of this program.
#  
Jeff Law committed
39 40
progname=`$echo "$0" | sed 's%^.*/%%'`
modename="$progname"
Jason Merrill committed
41 42 43 44

# Constants.
PROGRAM=ltmain.sh
PACKAGE=libtool
45
VERSION=1.2b
Jason Merrill committed
46 47 48 49 50 51 52 53

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

#  
Jeff Law committed
54 55 56 57 58 59 60 61 62
# Sed substitution that helps us do robust quoting.  It backslashifies
# metacharacters that are still active within double-quoted strings.
Xsed='sed -e s/^X//'
sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g'

# 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).
63 64 65 66 67 68 69
# 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
70

Jason Merrill committed
71
if test "$LTCONFIG_VERSION" != "$VERSION"; then
#  
Jeff Law committed
72
  echo "$modename: ltconfig version \`$LTCONFIG_VERSION' does not match $PROGRAM version \`$VERSION'" 1>&2
Jason Merrill committed
73 74 75 76 77
  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
78
  echo "$modename: not configured to build any kind of library" 1>&2
Jason Merrill committed
79 80 81 82 83 84 85 86 87 88
  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
89
show="$echo"
Jason Merrill committed
90
show_help=
#  
Jeff Law committed
91
execute_dlfiles=
92 93
lo2o="s/\\.lo\$/.${objext}/"
los2o="s/\\.lo /.${objext} /g"
Jason Merrill committed
94 95 96 97 98 99 100 101

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

  case "$arg" in
#  
Jeff Law committed
102
  -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
Jason Merrill committed
103 104 105 106 107
  *) optarg= ;;
  esac

  # If the previous option needs an argument, assign it.
  if test -n "$prev"; then
#  
Jeff Law committed
108 109 110 111 112 113 114 115 116
    case "$prev" in
    execute_dlfiles)
      eval "$prev=\"\$$prev \$arg\""
      ;;
    *)
      eval "$prev=\$arg"
      ;;
    esac

Jason Merrill committed
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
    prev=
    prevopt=
    continue
  fi

  # Have we seen a non-optional argument yet?
  case "$arg" in
  --help)
    show_help=yes
    ;;

  --version)
    echo "$PROGRAM (GNU $PACKAGE) $VERSION"
    exit 0
    ;;

#  
Jeff Law committed
133 134 135 136 137 138 139 140 141 142
  --config)
    sed -e '1,/^### BEGIN LIBTOOL CONFIG/d' -e '/^### END LIBTOOL CONFIG/,$d' $0
    exit 0
    ;;

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

Jason Merrill committed
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
  --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
167 168 169 170 171 172 173 174 175
  --quiet | --silent)
    show=:
    ;;

  -dlopen)
    prevopt="-dlopen"
    prev=execute_dlfiles
    ;;

Jason Merrill committed
176
  -*)
#  
Jeff Law committed
177 178
    $echo "$modename: unrecognized option \`$arg'" 1>&2
    $echo "$help" 1>&2
Jason Merrill committed
179 180 181 182 183 184 185 186 187 188 189
    exit 1
    ;;

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

if test -n "$prevopt"; then
#  
Jeff Law committed
190 191
  $echo "$modename: option \`$prevopt' requires an argument" 1>&2
  $echo "$help" 1>&2
Jason Merrill committed
192 193 194 195 196 197 198 199
  exit 1
fi

if test -z "$show_help"; then

  # Infer the operation mode.
  if test -z "$mode"; then
    case "$nonopt" in
#  
Jeff Law committed
200
    *cc | *++ | gcc* | *-gcc*)
Jason Merrill committed
201 202 203 204 205 206 207 208 209 210 211
      mode=link
      for arg
      do
        case "$arg" in
        -c)
           mode=compile
           break
           ;;
        esac
      done
      ;;
212
    *db | *dbx | *strace | *truss)
#  
Jeff Law committed
213 214 215
      mode=execute
      ;;
    *install*|cp|mv)
Jason Merrill committed
216 217 218 219 220 221
      mode=install
      ;;
    *rm)
      mode=uninstall
      ;;
    *)
#  
Jeff Law committed
222 223 224
      # If we have no mode, but dlfiles were specified, then do execute mode.
      test -n "$execute_dlfiles" && mode=execute

Jason Merrill committed
225 226
      # Just use the default operation mode.
      if test -z "$mode"; then
#  
Jeff Law committed
227 228 229 230 231
        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
232 233 234 235 236
      fi
      ;;
    esac
  fi

#  
Jeff Law committed
237 238 239 240 241 242 243
  # 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
244 245
  # Change the help message to a mode-specific one.
  generic_help="$help"
#  
Jeff Law committed
246
  help="Try \`$modename --help --mode=$mode' for more information."
Jason Merrill committed
247 248 249 250 251

  # These modes are in order of execution frequency so that they run quickly.
  case "$mode" in
  # libtool compile mode
  compile)
#  
Jeff Law committed
252
    modename="$modename: compile"
Jason Merrill committed
253
    # Get the compilation command and the source file.
#  
Jeff Law committed
254
    base_compile=
Jason Merrill committed
255
    lastarg=
#  
Jeff Law committed
256 257
    srcfile="$nonopt"
    suppress_output=
Jason Merrill committed
258 259 260

    for arg
    do
#  
Jeff Law committed
261
      # Accept any command-line options.
Jason Merrill committed
262
      case "$arg" in
#  
Jeff Law committed
263 264 265 266 267 268 269 270 271 272
      -o)
	$echo "$modename: you cannot specify the output filename with \`-o'" 1>&2
	$echo "$help" 1>&2
	exit 1
	;;

      -static)
	build_old_libs=yes
	continue
	;;
Jason Merrill committed
273 274
      esac

#  
Jeff Law committed
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
      # 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.
      # Many Bourne shells cannot handle close brackets correctly in scan
      # sets, so we specify it separately.
      case "$lastarg" in
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
	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
301 302 303
    done

    # Get the name of the library object.
#  
Jeff Law committed
304
    libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
Jason Merrill committed
305 306

    # Recognize several different file suffixes.
#  
Jeff Law committed
307
    xform='[cCFSfms]'
Jason Merrill committed
308
    case "$libobj" in
#  
Jeff Law committed
309 310 311 312 313
    *.ada) xform=ada ;;
    *.adb) xform=adb ;;
    *.ads) xform=ads ;;
    *.asm) xform=asm ;;
    *.c++) xform=c++ ;;
Jason Merrill committed
314 315 316 317
    *.cc) xform=cc ;;
    *.cpp) xform=cpp ;;
    *.cxx) xform=cxx ;;
    *.f90) xform=f90 ;;
#  
Jeff Law committed
318
    *.for) xform=for ;;
Jason Merrill committed
319 320
    esac

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

    case "$libobj" in
324
    *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
Jason Merrill committed
325
    *)
#  
Jeff Law committed
326
      $echo "$modename: cannot determine name of library object from \`$srcfile'" 1>&2
Jason Merrill committed
327 328 329 330 331
      exit 1
      ;;
    esac

    if test -z "$base_compile"; then
#  
Jeff Law committed
332 333
      $echo "$modename: you must specify a compilation command" 1>&2
      $echo "$help" 1>&2
Jason Merrill committed
334 335 336 337 338 339 340 341 342 343 344 345
      exit 1
    fi

    # Delete any leftover library objects.
    if test "$build_old_libs" = yes; then
      $run $rm $obj $libobj
      trap "$run $rm $obj $libobj; exit 1" 1 2 15
    else
      $run $rm $libobj
      trap "$run $rm $libobj; exit 1" 1 2 15
    fi

346 347 348 349
    if test -n "$fix_srcfile_path"; then
      eval srcfile=\"$fix_srcfile_path\"
    fi

Jason Merrill committed
350 351
    # Only build a PIC object if we are building libtool libraries.
    if test "$build_libtool_libs" = yes; then
#  
Jeff Law committed
352 353 354
      # Without this assignment, base_compile gets emptied.
      fbsd_hideous_sh_bug=$base_compile

Jason Merrill committed
355 356
      # All platforms use -DPIC, to notify preprocessed assembler code.
      $show "$base_compile$pic_flag -DPIC $srcfile"
#  
Jeff Law committed
357
      if $run eval "$base_compile\$pic_flag -DPIC \$srcfile"; then :
Jason Merrill committed
358
      else
#  
Jeff Law committed
359 360
        test -n "$obj" && $run $rm $obj
        exit 1
Jason Merrill committed
361 362 363 364
      fi

      # If we have no pic_flag, then copy the object into place and finish.
      if test -z "$pic_flag"; then
#  
Jeff Law committed
365 366 367
        $show "$LN_S $obj $libobj"
        $run $LN_S $obj $libobj
        exit $?
Jason Merrill committed
368 369 370 371
      fi

      # Just move the object, then go on to compile the next one
      $show "$mv $obj $libobj"
372
      $run $mv $obj $libobj || exit $?
#  
Jeff Law committed
373 374 375

      # Allow error messages only from the first compilation.
      suppress_output=' >/dev/null 2>&1'
Jason Merrill committed
376 377 378 379
    fi

    # Only build a position-dependent object if we build old libraries.
    if test "$build_old_libs" = yes; then
#  
Jeff Law committed
380 381 382
      # Suppress compiler output if we already did a PIC compilation.
      $show "$base_compile $srcfile$suppress_output"
      if $run eval "$base_compile \$srcfile$suppress_output"; then :
Jason Merrill committed
383 384 385 386 387 388
      else
        $run $rm $obj $libobj
        exit 1
      fi
    fi

#  
Jeff Law committed
389 390
    # Create an invalid libtool object if no PIC, so that we do not
    # accidentally link it into a program.
Jason Merrill committed
391 392
    if test "$build_libtool_libs" != yes; then
      $show "echo timestamp > $libobj"
#  
Jeff Law committed
393
      $run eval "echo timestamp > \$libobj" || exit $?
Jason Merrill committed
394 395 396 397 398 399 400
    fi

    exit 0
    ;;

  # libtool link mode
  link)
#  
Jeff Law committed
401 402 403 404 405 406
    modename="$modename: link"
    CC="$nonopt"
    allow_undefined=yes
    compile_command="$CC"
    finalize_command="$CC"

Jason Merrill committed
407 408
    compile_shlibpath=
    finalize_shlibpath=
409 410
    convenience=
    old_convenience=
Jason Merrill committed
411
    deplibs=
#  
Jeff Law committed
412 413
    dlfiles=
    dlprefiles=
Jason Merrill committed
414
    export_dynamic=no
415
    generated=
Jason Merrill committed
416 417 418 419 420 421 422
    hardcode_libdirs=
    libobjs=
    link_against_libtool_libs=
    ltlibs=
    objs=
    prev=
    prevarg=
#  
Jeff Law committed
423 424
    release=
    rpath=
Jason Merrill committed
425 426 427 428 429 430 431 432
    perm_rpath=
    temp_rpath=
    vinfo=

    # We need to know -static, to get the right output filenames.
    for arg
    do
      case "$arg" in
#  
Jeff Law committed
433 434 435 436
      -all-static | -static)
        if test "X$arg" = "X-all-static" && test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
	    $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2
        fi
Jason Merrill committed
437
        build_libtool_libs=no
#  
Jeff Law committed
438
	build_old_libs=yes
Jason Merrill committed
439 440 441 442 443
        break
        ;;
      esac
    done

#  
Jeff Law committed
444 445 446 447
    # 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.
448 449 450 451
    while test $# -gt 0; do
      arg="$1"
      shift

Jason Merrill committed
452 453
      # If the previous option needs an argument, assign it.
      if test -n "$prev"; then
#  
Jeff Law committed
454 455 456 457 458 459
        case "$prev" in
        output)
          compile_command="$compile_command @OUTPUT@"
          finalize_command="$finalize_command @OUTPUT@"
          ;;
        esac
Jason Merrill committed
460

#  
Jeff Law committed
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
        case "$prev" in
        dlfiles|dlprefiles)
          case "$arg" in
          *.la | *.lo) ;;  # We handle these cases below.
          *)
            dlprefiles="$dlprefiles $arg"
            test "$prev" = dlfiles && dlfiles="$dlfiles $arg"
            prev=
            ;;
          esac
          ;;
	release)
	  release="-$arg"
	  prev=
	  continue
	  ;;
        rpath)
          rpath="$rpath $arg"
	  prev=
	  continue
	  ;;
        *)
          eval "$prev=\"\$arg\""
          prev=
          continue
          ;;
        esac
Jason Merrill committed
488 489 490 491 492
      fi

      prevarg="$arg"

      case "$arg" in
#  
Jeff Law committed
493 494 495 496 497 498 499
      -all-static)
	if test -n "$link_static_flag"; then
          compile_command="$compile_command $link_static_flag"
	  finalize_command="$finalize_command $link_static_flag"
        fi
        continue
	;;
Jason Merrill committed
500

#  
Jeff Law committed
501 502 503
      -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
504 505 506
	continue
	;;

#  
Jeff Law committed
507 508 509 510
      -dlopen)
        prev=dlfiles
        continue
        ;;
Jason Merrill committed
511

#  
Jeff Law committed
512 513 514 515
      -dlpreopen)
        prev=dlprefiles
        continue
        ;;
Jason Merrill committed
516

#  
Jeff Law committed
517 518 519 520 521 522 523 524
      -export-dynamic)
        if test "$export_dynamic" != yes; then
          export_dynamic=yes
	  if test -n "$export_dynamic_flag_spec"; then
	    eval arg=\"$export_dynamic_flag_spec\"
	  else
	    arg=
	  fi
Jason Merrill committed
525

#  
Jeff Law committed
526 527 528 529 530
          # Add the symbol object into the linking commands.
	  compile_command="$compile_command @SYMFILE@"
	  finalize_command="$finalize_command @SYMFILE@"
        fi
        ;;
Jason Merrill committed
531

#  
Jeff Law committed
532 533 534
      -L*)
        dir=`$echo "X$arg" | $Xsed -e 's%^-L\(.*\)$%\1%'`
        case "$dir" in
535
        /* | [A-Za-z]:[/\\]*)
#  
Jeff Law committed
536 537 538 539 540 541 542 543 544
	  # Add the corresponding hardcode_libdir_flag, if it is not identical.
          ;;
        *)
          $echo "$modename: \`-L$dir' cannot specify a relative directory" 1>&2
          exit 1
          ;;
        esac
        deplibs="$deplibs $arg"
        ;;
Jason Merrill committed
545

#  
Jeff Law committed
546
      -l*) deplibs="$deplibs $arg" ;;
Jason Merrill committed
547

#  
Jeff Law committed
548 549
      -no-undefined)
	allow_undefined=no
Jason Merrill committed
550 551 552
	continue
	;;

#  
Jeff Law committed
553
      -o) prev=output ;;
Jason Merrill committed
554

#  
Jeff Law committed
555 556 557
      -release)
	prev=release
	continue
Jason Merrill committed
558 559
	;;

#  
Jeff Law committed
560 561 562 563
      -rpath)
        prev=rpath
        continue
        ;;
Jason Merrill committed
564

#  
Jeff Law committed
565 566 567 568 569 570 571
      -static)
	# If we have no pic_flag, then this is the same as -all-static.
	if test -z "$pic_flag" && test -n "$link_static_flag"; then
          compile_command="$compile_command $link_static_flag"
	  finalize_command="$finalize_command $link_static_flag"
        fi
	continue
Jason Merrill committed
572 573
	;;

#  
Jeff Law committed
574 575 576 577
      -version-info)
        prev=vinfo
        continue
        ;;
Jason Merrill committed
578

#  
Jeff Law committed
579 580 581 582 583 584 585 586 587 588 589
      # 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"`
	case "$arg" in
	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
	  arg="\"$arg\""
	  ;;
	esac
        ;;
Jason Merrill committed
590

591
      *.o | *.obj | *.a | *.lib)
#  
Jeff Law committed
592 593 594
        # A standard object.
        objs="$objs $arg"
        ;;
Jason Merrill committed
595

#  
Jeff Law committed
596 597 598 599 600 601 602 603 604 605 606
      *.lo)
        # A library object.
	if test "$prev" = dlfiles; then
	  dlfiles="$dlfiles $arg"
	  if test "$build_libtool_libs" = yes; then
	    prev=
	    continue
	  else
	    # If libtool objects are unsupported, then we need to preload.
	    prev=dlprefiles
	  fi
Jason Merrill committed
607 608
	fi

#  
Jeff Law committed
609 610
	if test "$prev" = dlprefiles; then
	  # Preload the old-style object.
611
	  dlprefiles="$dlprefiles "`$echo "X$arg" | $Xsed -e "$lo2o"`
#  
Jeff Law committed
612
	  prev=
Jason Merrill committed
613
	fi
#  
Jeff Law committed
614 615
	libobjs="$libobjs $arg"
        ;;
Jason Merrill committed
616

#  
Jeff Law committed
617 618
      *.la)
        # A libtool-controlled library.
Jason Merrill committed
619

#  
Jeff Law committed
620 621 622 623
        dlname=
        libdir=
        library_names=
        old_library=
Jason Merrill committed
624

#  
Jeff Law committed
625 626 627 628 629 630
        # Check to see that this really is a libtool archive.
        if (sed -e '2q' $arg | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
        else
          $echo "$modename: \`$arg' is not a valid libtool archive" 1>&2
          exit 1
        fi
Jason Merrill committed
631

#  
Jeff Law committed
632 633 634 635 636
        # If there is no directory component, then add one.
        case "$arg" in
        */* | *\\*) . $arg ;;
        *) . ./$arg ;;
        esac
Jason Merrill committed
637

#  
Jeff Law committed
638 639 640 641 642
        # Get the name of the library we link against.
        linklib=
        for l in $old_library $library_names; do
          linklib="$l"
        done
Jason Merrill committed
643

#  
Jeff Law committed
644 645 646 647
        if test -z "$linklib"; then
          $echo "$modename: cannot find name of link library for \`$arg'" 1>&2
          exit 1
        fi
Jason Merrill committed
648

#  
Jeff Law committed
649 650 651 652 653 654 655 656
        # Find the relevant object directory and library name.
        name=`$echo "X$arg" | $Xsed -e 's%^.*/%%' -e 's/\.la$//' -e 's/^lib//'`
        dir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
        if test "X$dir" = "X$arg"; then
          dir="$objdir"
        else
          dir="$dir/$objdir"
        fi
Jason Merrill committed
657

658 659 660 661 662 663 664 665 666
        if test -z "$libdir"; then
	  # It is a libtool convenience library, so add in its objects.
	  convenience="$convenience $dir/$old_library"l
	  old_convenience="$old_convenience $dir/$old_library"
	  compile_command="$compile_command $dir/$old_library"
	  finalize_command="$finalize_command $dir/$old_library"
	  continue
	fi

#  
Jeff Law committed
667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
        # This library was specified with -dlopen.
        if test "$prev" = dlfiles; then
          dlfiles="$dlfiles $arg"
          if test -z "$dlname"; then
            # If there is no dlname, we need to preload.
            prev=dlprefiles
          else
            # We should not create a dependency on this library, but we
	    # may need any libraries it requires.
	    compile_command="$compile_command$dependency_libs"
	    finalize_command="$finalize_command$dependency_libs"
            prev=
            continue
          fi
        fi
Jason Merrill committed
682

#  
Jeff Law committed
683 684 685 686 687 688 689 690 691 692 693
        # The library was specified with -dlpreopen.
        if test "$prev" = dlprefiles; then
          # Prefer using a static library (so that no silly _DYNAMIC symbols
          # are required to link).
          if test -n "$old_library"; then
            dlprefiles="$dlprefiles $dir/$old_library"
          else
            dlprefiles="$dlprefiles $dir/$linklib"
          fi
          prev=
        fi
Jason Merrill committed
694

#  
Jeff Law committed
695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
        if test "$build_libtool_libs" = yes && test -n "$library_names"; then
          link_against_libtool_libs="$link_against_libtool_libs $arg"
          if test -n "$shlibpath_var"; then
            # Make sure the rpath contains only unique directories.
            case "$temp_rpath " in
            *" $dir "*) ;;
            *) temp_rpath="$temp_rpath $dir" ;;
            esac
          fi

	  # This is the magic to use -rpath.
          if test -n "$hardcode_libdir_flag_spec"; then
            if test -n "$hardcode_libdir_separator"; then
              if test -z "$hardcode_libdirs"; then
                # Put the magic libdir with the hardcode flag.
                hardcode_libdirs="$libdir"
                libdir="@HARDCODE_LIBDIRS@"
              else
                # Just accumulate the unique libdirs.
		case "$hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator" in
		*"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
		  ;;
		*)
		  hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
		  ;;
		esac
                libdir=
              fi
            fi

            if test -n "$libdir"; then
              eval flag=\"$hardcode_libdir_flag_spec\"

              compile_command="$compile_command $flag"
              finalize_command="$finalize_command $flag"
            fi
          elif test -n "$runpath_var"; then
            # Do the same for the permanent run path.
            case "$perm_rpath " in
            *" $libdir "*) ;;
            *) perm_rpath="$perm_rpath $libdir" ;;
            esac
          fi


740
	  lib_linked=yes
#  
Jeff Law committed
741
          case "$hardcode_action" in
742
          immediate | unsupported)
#  
Jeff Law committed
743 744 745
            if test "$hardcode_direct" = no; then
              compile_command="$compile_command $dir/$linklib"
            elif test "$hardcode_minus_L" = no; then
746 747 748 749 750
	      case "$host" in
	      *-*-sunos*)
                compile_shlibpath="$compile_shlibpath$dir:"
		;;
	      esac
#  
Jeff Law committed
751 752 753 754
              compile_command="$compile_command -L$dir -l$name"
            elif test "$hardcode_shlibpath_var" = no; then
              compile_shlibpath="$compile_shlibpath$dir:"
              compile_command="$compile_command -l$name"
755 756
	    else
	      lib_linked=no
#  
Jeff Law committed
757 758 759 760 761 762
            fi
            ;;

          relink)
            # We need an absolute path.
            case "$dir" in
763
            /* | [A-Za-z]:[/\\]*) ;;
#  
Jeff Law committed
764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780
            *)
              absdir=`cd "$dir" && pwd`
              if test -z "$absdir"; then
                $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2
                exit 1
              fi
              dir="$absdir"
              ;;
            esac

            if test "$hardcode_direct" = yes; then
              compile_command="$compile_command $dir/$linklib"
            elif test "$hardcode_minus_L" = yes; then
              compile_command="$compile_command -L$dir -l$name"
            elif test "$hardcode_shlibpath_var" = yes; then
              compile_shlibpath="$compile_shlibpath$dir:"
              compile_command="$compile_command -l$name"
781 782
	    else
	      lib_linked=no
#  
Jeff Law committed
783 784
            fi
            ;;
785 786 787 788

	  *)
	    lib_linked=no
	    ;;
#  
Jeff Law committed
789 790
          esac

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

#  
Jeff Law committed
796 797 798 799 800 801 802 803
          # Finalize command for both is simple: just hardcode it.
          if test "$hardcode_direct" = yes; then
            finalize_command="$finalize_command $libdir/$linklib"
          elif test "$hardcode_minus_L" = yes; then
            finalize_command="$finalize_command -L$libdir -l$name"
          elif test "$hardcode_shlibpath_var" = yes; then
            finalize_shlibpath="$finalize_shlibpath$libdir:"
            finalize_command="$finalize_command -l$name"
Jason Merrill committed
804
          else
#  
Jeff Law committed
805 806 807
            # We cannot seem to hardcode it, guess we'll fake it.
            finalize_command="$finalize_command -L$libdir -l$name"
          fi
Jason Merrill committed
808 809 810
        else
          # Transform directly to old archives if we don't build new libraries.
          if test -n "$pic_flag" && test -z "$old_library"; then
#  
Jeff Law committed
811 812 813 814 815 816 817 818 819 820 821 822 823 824
            $echo "$modename: cannot find static library for \`$arg'" 1>&2
            exit 1
          fi

	  # 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"
	    compile_command="$compile_command $dir/$linklib"
	    finalize_command="$finalize_command $dir/$linklib"
	  else
	    compile_command="$compile_command -L$dir -l$name"
	    finalize_command="$finalize_command -L$dir -l$name"
Jason Merrill committed
825 826
	  fi
        fi
#  
Jeff Law committed
827 828 829 830

	# Add in any libraries that this one depends upon.
	compile_command="$compile_command$dependency_libs"
	finalize_command="$finalize_command$dependency_libs"
Jason Merrill committed
831
	continue
#  
Jeff Law committed
832
        ;;
Jason Merrill committed
833

#  
Jeff Law committed
834
      # Some other compiler argument.
Jason Merrill committed
835
      *)
#  
Jeff Law committed
836 837 838 839 840 841 842 843 844
	# 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"`
	case "$arg" in
	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
	  arg="\"$arg\""
	  ;;
	esac
        ;;
Jason Merrill committed
845 846
      esac

#  
Jeff Law committed
847 848 849 850 851
      # Now actually substitute the argument into the commands.
      if test -n "$arg"; then
	compile_command="$compile_command $arg"
	finalize_command="$finalize_command $arg"
      fi
Jason Merrill committed
852 853 854
    done

    if test -n "$prev"; then
#  
Jeff Law committed
855 856
      $echo "$modename: the \`$prevarg' option requires an argument" 1>&2
      $echo "$help" 1>&2
Jason Merrill committed
857 858 859
      exit 1
    fi

860
    oldlibs=
Jason Merrill committed
861 862
    case "$output" in
    "")
#  
Jeff Law committed
863 864
      $echo "$modename: you must specify an output file" 1>&2
      $echo "$help" 1>&2
Jason Merrill committed
865 866 867
      exit 1
      ;;

#  
Jeff Law committed
868 869
    */* | *\\*)
      $echo "$modename: output file \`$output' must have no directory components" 1>&2
870
      $echo "$help" 1>&2
Jason Merrill committed
871 872 873
      exit 1
      ;;

874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899
    *.a | *.lib)
      if test -n "$link_against_libtool_libs"; then
        $echo "$modename: error: cannot link libtool libraries into archives" 1>&2
        exit 1
      fi

      if test -n "$deplibs"; then
        $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2
      fi

      if test -n "$dlfiles$dlprefiles"; then
        $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2
      fi

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

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

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

#  
Jeff Law committed
900 901
      # Now set the variables for building old libraries.
      build_libtool_libs=no
902
      oldlibs="$output"
#  
Jeff Law committed
903 904
      ;;

Jason Merrill committed
905
    *.la)
#  
Jeff Law committed
906 907 908 909
      # Make sure we only generate libraries of the form `libNAME.la'.
      case "$output" in
      lib*) ;;
      *)
910
	$echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2
#  
Jeff Law committed
911 912 913 914 915 916 917
	$echo "$help" 1>&2
	exit 1
	;;
      esac

      name=`$echo "X$output" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
      eval libname=\"$libname_spec\"
Jason Merrill committed
918 919 920 921 922 923 924

      # All the library-specific variables (install_libdir is set above).
      library_names=
      old_library=
      dlname=

      if test -n "$objs"; then
#  
Jeff Law committed
925 926
        $echo "$modename: cannot build libtool library \`$output' from non-libtool objects:$objs" 2>&1
        exit 1
Jason Merrill committed
927 928 929 930
      fi

      # How the heck are we supposed to write a wrapper for a shared library?
      if test -n "$link_against_libtool_libs"; then
931
        $echo "$modename: error: cannot link shared libraries into libtool libraries" 1>&2
#  
Jeff Law committed
932
        exit 1
Jason Merrill committed
933 934
      fi

#  
Jeff Law committed
935
      if test -n "$dlfiles$dlprefiles"; then
936
        $echo "$modename: warning: \`-dlopen' is ignored for libtool libraries" 1>&2
#  
Jeff Law committed
937
      fi
Jason Merrill committed
938

#  
Jeff Law committed
939 940 941
      set dummy $rpath
      if test $# -gt 2; then
	$echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2
Jason Merrill committed
942
      fi
#  
Jeff Law committed
943
      install_libdir="$2"
Jason Merrill committed
944

945 946 947 948 949 950 951 952 953 954 955 956 957 958 959
      # Now set the variables for building old libraries.
      oldlibs="$objdir/$libname.$libext"
      if test -z "$rpath"; then
	# Building a libtool convenience library.
	oldlibs="$objdir/$libname.al $oldlibs"
	build_libtool_libs=convenience

	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
960

#  
Jeff Law committed
961 962
	# Parse the version information argument.
	IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=':'
963
	set dummy $vinfo 0 0 0
#  
Jeff Law committed
964
	IFS="$save_ifs"
Jason Merrill committed
965

966
	if test -n "$8"; then
#  
Jeff Law committed
967 968 969 970
	  $echo "$modename: too many parameters to \`-version-info'" 1>&2
	  $echo "$help" 1>&2
	  exit 1
	fi
Jason Merrill committed
971

972 973 974
	current="$2"
	revision="$3"
	age="$4"
Jason Merrill committed
975

#  
Jeff Law committed
976 977 978 979 980 981 982 983 984
	# Check that each of the things are valid numbers.
	case "$current" in
	0 | [1-9] | [1-9][0-9]*) ;;
	*)
	  $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
985

#  
Jeff Law committed
986 987 988 989 990 991 992 993
	case "$revision" in
	0 | [1-9] | [1-9][0-9]*) ;;
	*)
	  $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
994

#  
Jeff Law committed
995 996 997 998 999 1000 1001 1002
	case "$age" in
	0 | [1-9] | [1-9][0-9]*) ;;
	*)
	  $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
1003

#  
Jeff Law committed
1004 1005 1006 1007 1008
	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
1009

#  
Jeff Law committed
1010
	# Calculate the version variables.
1011 1012 1013
	major=
	versuffix=
	verstring=
#  
Jeff Law committed
1014 1015
	case "$version_type" in
	none) ;;
Jason Merrill committed
1016

#  
Jeff Law committed
1017 1018
	linux)
	  major=.`expr $current - $age`
1019
	  versuffix="$major.$age.$revision"
#  
Jeff Law committed
1020
	  ;;
Jason Merrill committed
1021

#  
Jeff Law committed
1022
	osf)
1023 1024
	  major=`expr $current - $age`
	  versuffix=".$current.$age.$revision"
#  
Jeff Law committed
1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
	  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)
1040 1041
	  major=".$current"
	  versuffix=".$current.$revision"
#  
Jeff Law committed
1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
	  ;;

	windows)
	  # Like Linux, but with '-' rather than '.', since we only
	  # want one extension on Windows 95.
	  major=`expr $current - $age`
	  versuffix="-$major-$age-$revision"
	  ;;

	*)
	  $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

1058 1059
	# Clear the version info if we defaulted, and they specified a release.
	if test -z "$vinfo" && test -n "$release"; then
#  
Jeff Law committed
1060 1061
	  major=
	  versuffix=
1062 1063 1064 1065 1066 1067 1068
	  verstring="0.0"
	  case "$host" in
	  *-*-sunos*)
	    versuffix=".0.0"
	    ;;
	  esac
	fi
#  
Jeff Law committed
1069

1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080
	# 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
1081

1082 1083 1084
	# Add libc to deplibs on all systems.
	dependency_libs="$deplibs"
	deplibs="$deplibs -lc"
#  
Jeff Law committed
1085
      fi
Jason Merrill committed
1086 1087 1088

      # Create the output directory, or remove our outputs if we need to.
      if test -d $objdir; then
1089 1090
        $show "${rm}r $objdir/$output $objdir/$libname.* $objdir/${libname}${release}.*"
	$run ${rm}r $objdir/$output $objdir/$libname.* $objdir/${libname}${release}.*
Jason Merrill committed
1091 1092
      else
        $show "$mkdir $objdir"
#  
Jeff Law committed
1093
        $run $mkdir $objdir
1094 1095 1096
        status=$?
        if test $status -ne 0 && test ! -d $objdir; then
          exit $status
#  
Jeff Law committed
1097
        fi
Jason Merrill committed
1098 1099 1100
      fi

      if test "$build_libtool_libs" = yes; then
1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
	# 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
Jason Merrill committed
1112

1113
	lib="$objdir/$realname"
Jason Merrill committed
1114 1115 1116 1117 1118
	for link
	do
	  linknames="$linknames $link"
	done

1119 1120
	# Use standard objects if they are PIC.
	test -z "$pic_flag" && libobjs=`$echo "X$libobjs " | $Xsed -e "$los2o" -e 's/ $//g'`
Jason Merrill committed
1121

1122 1123
	# Transform .lo files to .o files.
	test "$build_old_libs" = yes && oldobjs="$objs"`$echo "X$libobjs " | $Xsed -e 's/[^   ]*\.a //g' -e 's/[^   ]*\.lib //g' -e "$los2o" -e 's/ $//g'`
Jason Merrill committed
1124

1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162
	if test -n "$whole_archive_flag_spec"; then
	  if test -n "$convenience"; then
	    eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
	  fi
	else
	  for xlib in $convenience; do
	    # Extract the objects.
	    xdir="$xlib"x
	    generated="$generated $xdir"
	    xlib=`echo "$xlib" | $Xsed -e 's%^.*/%%'`

	    $show "${rm}r $xdir"
	    $run ${rm}r "$xdir"
	    $show "mkdir $xdir"
	    $run mkdir "$xdir"
	    status=$?
	    if test $status -ne 0 && test ! -d "$xdir"; then
	      exit $status
	    fi
	    $show "(cd $xdir && $AR x ../$xlib)"
	    $run eval "(cd \$xdir && $AR x ../\$xlib)" || exit $?

	    libobjs="$libobjs `echo $xdir/*`"
	  done
	fi

	# Do each of the archive commands.
	eval cmds=\"$archive_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"

	# Create links to the real library.
	for linkname in $linknames; do
#  
Jeff Law committed
1163
	  if test "$realname" != "$linkname"; then
1164 1165 1166 1167
	    $show "(cd $objdir && $LN_S $realname $linkname)"
	    $run eval '(cd $objdir && $LN_S $realname $linkname)' || exit $?
	  fi
	done
Jason Merrill committed
1168

1169 1170 1171 1172 1173
	# If -export-dynamic was specified, set the dlname.
	if test "$export_dynamic" = yes; then
	  # On all known operating systems, these are identical.
	  dlname="$soname"
	fi
Jason Merrill committed
1174 1175 1176
      fi
      ;;

1177
    *.lo | *.o | *.obj)
Jason Merrill committed
1178
      if test -n "$link_against_libtool_libs"; then
1179
        $echo "$modename: error: cannot link libtool libraries into objects" 1>&2
#  
Jeff Law committed
1180
        exit 1
Jason Merrill committed
1181 1182 1183
      fi

      if test -n "$deplibs"; then
1184
        $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2
#  
Jeff Law committed
1185 1186 1187
      fi

      if test -n "$dlfiles$dlprefiles"; then
1188
        $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2
Jason Merrill committed
1189 1190
      fi

#  
Jeff Law committed
1191
      if test -n "$rpath"; then
1192
        $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2
Jason Merrill committed
1193 1194 1195
      fi

      if test -n "$vinfo"; then
1196
        $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2
#  
Jeff Law committed
1197 1198 1199
      fi

      if test -n "$release"; then
1200
        $echo "$modename: warning: \`-release' is ignored for objects" 1>&2
Jason Merrill committed
1201 1202 1203 1204
      fi

      case "$output" in
      *.lo)
#  
Jeff Law committed
1205 1206 1207 1208 1209
        if test -n "$objs"; then
          $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2
          exit 1
        fi
        libobj="$output"
1210
        obj=`$echo "X$output" | $Xsed -e "$lo2o"`
#  
Jeff Law committed
1211
        ;;
Jason Merrill committed
1212 1213
      *)
        libobj=
#  
Jeff Law committed
1214 1215
        obj="$output"
        ;;
Jason Merrill committed
1216 1217 1218 1219 1220 1221
      esac

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

      # Create the old-style object.
1222
      reload_objs="$objs"`$echo "X$libobjs " | $Xsed -e 's/[^       ]*\.a //g' -e 's/[^       ]*\.lib //g' -e "$los2o" -e 's/ $//g'`
Jason Merrill committed
1223 1224

      output="$obj"
#  
Jeff Law committed
1225
      eval cmds=\"$reload_cmds\"
Jason Merrill committed
1226 1227 1228 1229
      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=';'
      for cmd in $cmds; do
        IFS="$save_ifs"
        $show "$cmd"
#  
Jeff Law committed
1230
        $run eval "$cmd" || exit $?
Jason Merrill committed
1231 1232 1233 1234 1235 1236 1237 1238 1239
      done
      IFS="$save_ifs"

      # Exit if we aren't doing a library object file.
      test -z "$libobj" && exit 0

      if test "$build_libtool_libs" != yes; then
        # Create an invalid libtool object if no PIC, so that we don't
        # accidentally link it into a program.
#  
Jeff Law committed
1240 1241 1242
        $show "echo timestamp > $libobj"
        $run eval "echo timestamp > $libobj" || exit $?
        exit 0
Jason Merrill committed
1243 1244 1245
      fi

      if test -n "$pic_flag"; then
#  
Jeff Law committed
1246 1247 1248 1249
        # Only do commands if we really have different PIC objects.
        reload_objs="$libobjs"
        output="$libobj"
        eval cmds=\"$reload_cmds\"
Jason Merrill committed
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259
        IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=';'
        for cmd in $cmds; do
          IFS="$save_ifs"
          $show "$cmd"
          $run eval "$cmd" || exit $?
        done
        IFS="$save_ifs"
      else
        # Just create a symlink.
        $show "$LN_S $obj $libobj"
1260
        $run $LN_S $obj $libobj || exit $?
Jason Merrill committed
1261 1262 1263 1264 1265 1266
      fi

      exit 0
      ;;

    *)
#  
Jeff Law committed
1267
      if test -n "$vinfo"; then
1268
        $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2
Jason Merrill committed
1269 1270
      fi

#  
Jeff Law committed
1271
      if test -n "$release"; then
1272
        $echo "$modename: warning: \`-release' is ignored for programs" 1>&2
Jason Merrill committed
1273 1274
      fi

#  
Jeff Law committed
1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309
      if test -n "$rpath"; then
	# If the user specified any rpath flags, then add them.
	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
                # Put the magic libdir with the hardcode flag.
                hardcode_libdirs="$libdir"
                libdir="@HARDCODE_LIBDIRS@"
              else
                # Just accumulate the unique libdirs.
		case "$hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator" in
		*"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
		  ;;
		*)
		  hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
		  ;;
		esac
                libdir=
              fi
            fi

            if test -n "$libdir"; then
              eval flag=\"$hardcode_libdir_flag_spec\"

              compile_command="$compile_command $flag"
              finalize_command="$finalize_command $flag"
            fi
          elif test -n "$runpath_var"; then
            case "$perm_rpath " in
            *" $libdir "*) ;;
            *) perm_rpath="$perm_rpath $libdir" ;;
            esac
          fi
	done
Jason Merrill committed
1310 1311
      fi

#  
Jeff Law committed
1312 1313 1314 1315 1316
      # Substitute the hardcoded libdirs into the compile commands.
      if test -n "$hardcode_libdir_separator"; then
	compile_command=`$echo "X$compile_command" | $Xsed -e "s%@HARDCODE_LIBDIRS@%$hardcode_libdirs%g"`
	finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@HARDCODE_LIBDIRS@%$hardcode_libdirs%g"`
      fi
Jason Merrill committed
1317

#  
Jeff Law committed
1318 1319
      if test -n "$libobjs" && test "$build_old_libs" = yes; then
        # Transform all the library objects into standard objects.
1320 1321
        compile_command=`$echo "X$compile_command " | $Xsed -e "$los2o" -e 's/ $//'`
        finalize_command=`$echo "X$finalize_command " | $Xsed -e "$los2o" -e 's/ $//'`
#  
Jeff Law committed
1322 1323 1324 1325 1326 1327 1328 1329 1330 1331
      fi

      if test "$export_dynamic" = yes && test -n "$NM" && test -n "$global_symbol_pipe"; then
        dlsyms="${output}S.c"
      else
        dlsyms=
      fi

      if test -n "$dlsyms"; then
        # Add our own program objects to the preloaded list.
1332
        dlprefiles=`$echo "X$objs$dlprefiles " | $Xsed -e "$los2o" -e 's/ $//'`
Jason Merrill committed
1333

#  
Jeff Law committed
1334 1335 1336 1337 1338 1339 1340 1341 1342
	# Discover the nlist of each of the dlfiles.
        nlist="$objdir/${output}.nm"

	if test -d $objdir; then
	  $show "$rm $nlist ${nlist}T"
	  $run $rm "$nlist" "${nlist}T"
	else
	  $show "$mkdir $objdir"
	  $run $mkdir $objdir
Jason Merrill committed
1343
	  status=$?
1344
	  if test $status -ne 0 && test ! -d $objdir; then
#  
Jeff Law committed
1345 1346
	    exit $status
	  fi
Jason Merrill committed
1347
	fi
#  
Jeff Law committed
1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 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

        for arg in $dlprefiles; do
	  $show "extracting global C symbols from \`$arg'"
	  $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
        done

        # Parse the name list into a source file.
        $show "creating $objdir/$dlsyms"
        if test -z "$run"; then
	  # Make sure we at least have an empty file.
	  test -f "$nlist" || : > "$nlist"

	  # Try sorting and uniquifying the output.
	  if sort "$nlist" | uniq > "$nlist"T; then
	    mv -f "$nlist"T "$nlist"
	    wcout=`wc "$nlist" 2>/dev/null`
	    count=`echo "X$wcout" | $Xsed -e 's/^[ 	]*\([0-9][0-9]*\).*$/\1/'`
	    (test "$count" -ge 0) 2>/dev/null || count=-1
	  else
	    $rm "$nlist"T
	    count=-1
	  fi

	  case "$dlsyms" in
	  "") ;;
	  *.c)
	    $echo > "$objdir/$dlsyms" "\
/* $dlsyms - symbol resolution table for \`$output' dlsym emulation. */
/* Generated by $PROGRAM - GNU $PACKAGE $VERSION */

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

/* Prevent the only kind of declaration conflicts we can make. */
#define dld_preloaded_symbol_count some_other_symbol
#define dld_preloaded_symbols some_other_symbol

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

	    if test -f "$nlist"; then
	      sed -e 's/^.* \(.*\)$/extern char \1;/' < "$nlist" >> "$objdir/$dlsyms"
	    else
	      echo '/* NONE */' >> "$objdir/$dlsyms"
	    fi

	    $echo >> "$objdir/$dlsyms" "\

#undef dld_preloaded_symbol_count
#undef dld_preloaded_symbols

#if defined (__STDC__) && __STDC__
# define __ptr_t void *
#else
# define __ptr_t char *
#endif

/* The number of symbols in dld_preloaded_symbols, -1 if unsorted. */
int dld_preloaded_symbol_count = $count;

/* The mapping between symbol names and symbols. */
struct {
  char *name;
  __ptr_t address;
}
dld_preloaded_symbols[] =
{\
"

	    if test -f "$nlist"; then
	      sed 's/^\(.*\) \(.*\)$/  {"\1", (__ptr_t) \&\2},/' < "$nlist" >> "$objdir/$dlsyms"
	    fi

	    $echo >> "$objdir/$dlsyms" "\
  {0, (__ptr_t) 0}
};

#ifdef __cplusplus
}
#endif\
"
	    ;;

	  *)
	    $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2
	    exit 1
	    ;;
	  esac
        fi

        # Now compile the dynamic symbol file.
        $show "(cd $objdir && $CC -c$no_builtin_flag \"$dlsyms\")"
        $run eval '(cd $objdir && $CC -c$no_builtin_flag "$dlsyms")' || exit $?

        # Transform the symbol file into the correct name.
1444 1445
        compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$objdir/${output}S.${objext}%"`
        finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$objdir/${output}S.${objext}%"`
#  
Jeff Law committed
1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467
      elif test "$export_dynamic" != yes; then
        test -n "$dlfiles$dlprefiles" && $echo "$modename: warning: \`-dlopen' and \`-dlpreopen' are ignored without \`-export-dynamic'" 1>&2
      else
        # We keep going just in case the user didn't refer to
        # dld_preloaded_symbols.  The linker will fail if global_symbol_pipe
        # really was required.
        $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2

        # Nullify the symbol file.
        compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
        finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
      fi

      if test -z "$link_against_libtool_libs" || test "$build_libtool_libs" != yes; then
        # Replace the output file specification.
        compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
        finalize_command=`$echo "X$finalize_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`

        # We have no uninstalled library dependencies, so finalize right now.
        $show "$compile_command"
        $run eval "$compile_command"
        exit $?
Jason Merrill committed
1468 1469 1470
      fi

      # Replace the output file specification.
#  
Jeff Law committed
1471 1472
      compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$objdir/$output"'%g'`
      finalize_command=`$echo "X$finalize_command" | $Xsed -e 's%@OUTPUT@%'"$objdir/$output"'T%g'`
Jason Merrill committed
1473 1474

      # Create the binary in the object directory, then wrap it.
1475
      if test ! -d $objdir; then
Jason Merrill committed
1476
        $show "$mkdir $objdir"
#  
Jeff Law committed
1477 1478
	$run $mkdir $objdir
	status=$?
1479
	if test $status -ne 0 && test ! -d $objdir; then
#  
Jeff Law committed
1480 1481
	  exit $status
	fi
Jason Merrill committed
1482 1483 1484 1485
      fi

      if test -n "$shlibpath_var"; then
        # We should set the shlibpath_var
#  
Jeff Law committed
1486 1487 1488
        rpath=
        for dir in $temp_rpath; do
          case "$dir" in
1489
          /* | [A-Za-z]:[/\\]*)
#  
Jeff Law committed
1490 1491 1492 1493 1494 1495 1496 1497 1498 1499
            # Absolute path.
            rpath="$rpath$dir:"
            ;;
          *)
            # Relative path: add a thisdir entry.
            rpath="$rpath\$thisdir/$dir:"
            ;;
          esac
        done
        temp_rpath="$rpath"
Jason Merrill committed
1500 1501 1502 1503 1504 1505
      fi

      # Delete the old output file.
      $run $rm $output

      if test -n "$compile_shlibpath"; then
#  
Jeff Law committed
1506
        compile_command="$shlibpath_var=\"$compile_shlibpath\$$shlibpath_var\" $compile_command"
Jason Merrill committed
1507 1508
      fi
      if test -n "$finalize_shlibpath"; then
#  
Jeff Law committed
1509
        finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
Jason Merrill committed
1510 1511
      fi

#  
Jeff Law committed
1512 1513 1514 1515 1516 1517 1518 1519
      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
        compile_command="$runpath_var=\"$rpath\$$runpath_var\" $compile_command"
        finalize_command="$runpath_var=\"$rpath\$$runpath_var\" $finalize_command"
Jason Merrill committed
1520 1521
      fi

#  
Jeff Law committed
1522 1523 1524 1525 1526
      if test "$hardcode_action" = relink; then
        # AGH! Flame the AIX and HP-UX people for me, will ya?
        $echo "$modename: warning: using a buggy system linker" 1>&2
        $echo "$modename: relinking will be required before \`$output' can be installed" 1>&2
      fi
Jason Merrill committed
1527 1528 1529 1530 1531

      $show "$compile_command"
      $run eval "$compile_command" || exit $?

      # Now create the wrapper script.
#  
Jeff Law committed
1532 1533 1534 1535 1536 1537 1538
      $show "creating $output"

      # Quote the finalize command for shipping.
      finalize_command=`$echo "X$finalize_command" | $Xsed -e "$sed_quote_subst"`

      # Quote $echo for shipping.
      qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"`
Jason Merrill committed
1539 1540 1541

      # Only actually do things if our run command is non-null.
      if test -z "$run"; then
#  
Jeff Law committed
1542 1543
        $rm $output
        trap "$rm $output; exit 1" 1 2 15
Jason Merrill committed
1544

#  
Jeff Law committed
1545 1546
        $echo > $output "\
#! $SHELL
Jason Merrill committed
1547 1548 1549 1550 1551 1552 1553 1554 1555 1556

# $output - temporary wrapper script for $objdir/$output
# Generated by $PROGRAM - GNU $PACKAGE $VERSION
#
# The $output program cannot be directly executed until all the libtool
# libraries that it depends on are installed.
#
# This wrapper script should never be moved out of \``pwd`'.
# If it is, it will not operate correctly.

#  
Jeff Law committed
1557 1558 1559 1560 1561 1562 1563 1564 1565
# Sed substitution that helps us do robust quoting.  It backslashifies
# metacharacters that are still active within double-quoted strings.
Xsed='sed -e s/^X//'
sed_quote_subst='$sed_quote_subst'

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

Jason Merrill committed
1566
# This environment variable determines our operation mode.
#  
Jeff Law committed
1567
if test \"\$libtool_install_magic\" = \"$magic\"; then
Jason Merrill committed
1568 1569
  # install mode needs the following variables:
  link_against_libtool_libs='$link_against_libtool_libs'
#  
Jeff Law committed
1570
  finalize_command=\"$finalize_command\"
Jason Merrill committed
1571
else
#  
Jeff Law committed
1572
  # When we are sourced in execute mode, \$file and \$echo are already set.
1573
  if test \"\$libtool_execute_magic\" != \"$magic\"; then
#  
Jeff Law committed
1574 1575
    echo=\"$qecho\"
    file=\"\$0\"
1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586
    # 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
1587 1588 1589
  fi\
"
        $echo >> $output "\
Jason Merrill committed
1590

#  
Jeff Law committed
1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602
  # 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
1603
      /* | [A-Za-z]:[/\\]*) thisdir=\"\$destdir\" ;;
#  
Jeff Law committed
1604 1605 1606
      *) thisdir=\"\$thisdir/\$destdir\" ;;
      esac
    fi
Jason Merrill committed
1607

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

#  
Jeff Law committed
1612 1613 1614
  # Try to get the absolute directory name.
  absdir=\`cd \"\$thisdir\" && pwd\`
  test -n \"\$absdir\" && thisdir=\"\$absdir\"
Jason Merrill committed
1615

#  
Jeff Law committed
1616 1617
  progdir=\"\$thisdir/$objdir\"
  program='$output'
Jason Merrill committed
1618

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

#  
Jeff Law committed
1621 1622 1623
        # Export our shlibpath_var if we have one.
        if test -n "$shlibpath_var" && test -n "$temp_rpath"; then
          $echo >> $output "\
Jason Merrill committed
1624
    # Add our own library path to $shlibpath_var
#  
Jeff Law committed
1625
    $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
Jason Merrill committed
1626 1627

    # Some systems cannot cope with colon-terminated $shlibpath_var
#  
Jeff Law committed
1628
    $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/:*\$//'\`
Jason Merrill committed
1629 1630

    export $shlibpath_var
#  
Jeff Law committed
1631 1632
"
        fi
Jason Merrill committed
1633

#  
Jeff Law committed
1634 1635 1636
        $echo >> $output "\
    if test \"\$libtool_execute_magic\" != \"$magic\"; then
      # Run the actual program with our arguments.
Jason Merrill committed
1637

#  
Jeff Law committed
1638 1639 1640
      # Export the path to the program.
      PATH=\"\$progdir:\$PATH\"
      export PATH
Jason Merrill committed
1641

#  
Jeff Law committed
1642 1643 1644 1645 1646
      exec \$program \${1+\"\$@\"}

      \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\"
      exit 1
    fi
Jason Merrill committed
1647 1648
  else
    # The program doesn't exist.
#  
Jeff Law committed
1649 1650 1651
    \$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
1652 1653
    exit 1
  fi
#  
Jeff Law committed
1654 1655 1656
fi\
"
        chmod +x $output
Jason Merrill committed
1657 1658 1659 1660 1661 1662
      fi
      exit 0
      ;;
    esac

    # See if we need to build an old-fashioned archive.
1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693
    for oldlib in $oldlibs; do

      if test "$build_libtool_libs" = convenience; then
	oldobjs="$libobjs"
	addlibs="$convenience"
	build_libtool_libs=no
      else
	oldobjs="$objs"`$echo "X$libobjs " | $Xsed -e 's/[^   ]*\.a //g' -e 's/[^   ]*\.lib //g' -e "$los2o" -e 's/ $//g'`
	addlibs="$old_convenience"
      fi

      # Add in members from convenience archives.
      for xlib in $addlibs; do
	# Extract the objects.
	xdir="$xlib"x
	generated="$generated $xdir"
	xlib=`echo "$xlib" | $Xsed -e 's%^.*/%%'`

	$show "${rm}r $xdir"
	$run ${rm}r "$xdir"
	$show "mkdir $xdir"
	$run mkdir "$xdir"
	status=$?
	if test $status -ne 0 && test ! -d "$xdir"; then
	  exit $status
	fi
	$show "(cd $xdir && $AR x ../$xlib)"
	$run eval "(cd \$xdir && $AR x ../\$xlib)" || exit $?

	oldobjs="$oldobjs `echo $xdir/*`"
      done
Jason Merrill committed
1694

#  
Jeff Law committed
1695 1696 1697
      # 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
1698
      else
#  
Jeff Law committed
1699
	eval cmds=\"$old_archive_cmds\"
Jason Merrill committed
1700 1701 1702 1703 1704
      fi
      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=';'
      for cmd in $cmds; do
        IFS="$save_ifs"
        $show "$cmd"
#  
Jeff Law committed
1705
        $run eval "$cmd" || exit $?
Jason Merrill committed
1706 1707
      done
      IFS="$save_ifs"
1708 1709 1710 1711 1712
    done

    if test -n "$generated"; then
      $show "${rm}r$generated"
      $run ${rm}r$generated
Jason Merrill committed
1713 1714 1715 1716 1717 1718
    fi

    # Now create the libtool archive.
    case "$output" in
    *.la)
      old_library=
1719
      test "$build_old_libs" = yes && old_library="$libname.$libext"
#  
Jeff Law committed
1720
      $show "creating $output"
Jason Merrill committed
1721 1722 1723

      # Only create the output if not a dry run.
      if test -z "$run"; then
#  
Jeff Law committed
1724
        $echo > $output "\
Jason Merrill committed
1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736
# $output - a libtool library file
# Generated by $PROGRAM - GNU $PACKAGE $VERSION

# The name that we can dlopen(3).
dlname='$dlname'

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

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

#  
Jeff Law committed
1737 1738 1739
# Libraries that this one depends upon.
dependency_libs='$dependency_libs'

Jason Merrill committed
1740 1741 1742 1743 1744 1745
# Version information for $libname.
current=$current
age=$age
revision=$revision

# Directory that this library needs to be installed in:
#  
Jeff Law committed
1746 1747
libdir='$install_libdir'\
"
Jason Merrill committed
1748 1749 1750 1751 1752
      fi

      # Do a symbolic link so that the libtool archive can be found in
      # LD_LIBRARY_PATH before the program is installed.
      $show "(cd $objdir && $LN_S ../$output $output)"
1753
      $run eval "(cd $objdir && $LN_S ../$output $output)" || exit $?
Jason Merrill committed
1754 1755 1756 1757 1758 1759 1760
      ;;
    esac
    exit 0
    ;;

  # libtool install mode
  install)
#  
Jeff Law committed
1761
    modename="$modename: install"
Jason Merrill committed
1762

#  
Jeff Law committed
1763 1764
    # There may be an optional sh(1) argument at the beginning of
    # install_prog (especially on Windows NT).
1765
    if test "$nonopt" = "$SHELL" || test "$nonopt" = "/bin/sh"; then
#  
Jeff Law committed
1766 1767 1768 1769 1770 1771 1772 1773 1774
      # Aesthetically quote it.
      arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
      case "$arg" in
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
	arg="\"$arg\""
	;;
      esac
      install_prog="$arg "
      arg="$1"
Jason Merrill committed
1775
      shift
#  
Jeff Law committed
1776 1777 1778
    else
      install_prog=
      arg="$nonopt"
Jason Merrill committed
1779 1780
    fi

#  
Jeff Law committed
1781 1782 1783 1784 1785 1786 1787 1788 1789 1790
    # The real first argument should be the name of the installation program.
    # Aesthetically quote it.
    arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
    case "$arg" in
    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
      arg="\"$arg\""
      ;;
    esac
    install_prog="$install_prog$arg"

Jason Merrill committed
1791 1792 1793 1794 1795 1796
    # We need to accept at least all the BSD install flags.
    dest=
    files=
    opts=
    prev=
    install_type=
#  
Jeff Law committed
1797
    isdir=no
Jason Merrill committed
1798 1799 1800 1801 1802
    stripme=
    for arg
    do
      if test -n "$dest"; then
        files="$files $dest"
#  
Jeff Law committed
1803 1804
        dest="$arg"
        continue
Jason Merrill committed
1805 1806 1807 1808 1809 1810 1811 1812 1813
      fi

      case "$arg" in
      -d) isdir=yes ;;
      -f) prev="-f" ;;
      -g) prev="-g" ;;
      -m) prev="-m" ;;
      -o) prev="-o" ;;
      -s)
#  
Jeff Law committed
1814 1815 1816
        stripme=" -s"
        continue
        ;;
Jason Merrill committed
1817 1818 1819
      -*) ;;

      *)
#  
Jeff Law committed
1820 1821 1822 1823 1824 1825 1826
        # If the previous option needed an argument, then skip it.
        if test -n "$prev"; then
          prev=
        else
          dest="$arg"
          continue
        fi
Jason Merrill committed
1827 1828
        ;;
      esac
#  
Jeff Law committed
1829 1830 1831 1832 1833 1834 1835 1836

      # Aesthetically quote the argument.
      arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
      case "$arg" in
      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)
	arg="\"$arg\""
	;;
      esac
Jason Merrill committed
1837 1838 1839 1840
      install_prog="$install_prog $arg"
    done

    if test -z "$install_prog"; then
#  
Jeff Law committed
1841 1842
      $echo "$modename: you must specify an install program" 1>&2
      $echo "$help" 1>&2
Jason Merrill committed
1843 1844 1845 1846
      exit 1
    fi

    if test -n "$prev"; then
#  
Jeff Law committed
1847 1848
      $echo "$modename: the \`$prev' option requires an argument" 1>&2
      $echo "$help" 1>&2
Jason Merrill committed
1849 1850 1851 1852 1853
      exit 1
    fi

    if test -z "$files"; then
      if test -z "$dest"; then
#  
Jeff Law committed
1854
        $echo "$modename: no file or destination specified" 1>&2
Jason Merrill committed
1855
      else
#  
Jeff Law committed
1856
        $echo "$modename: you must specify a destination" 1>&2
Jason Merrill committed
1857
      fi
#  
Jeff Law committed
1858
      $echo "$help" 1>&2
Jason Merrill committed
1859 1860 1861 1862
      exit 1
    fi

    # Strip any trailing slash from the destination.
#  
Jeff Law committed
1863
    dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`
Jason Merrill committed
1864 1865 1866

    # Check to see that the destination is a directory.
    test -d "$dest" && isdir=yes
#  
Jeff Law committed
1867
    if test "$isdir" = yes; then
Jason Merrill committed
1868 1869 1870
      destdir="$dest"
      destname=
    else
#  
Jeff Law committed
1871 1872 1873
      destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
      test "X$destdir" = "X$dest" && destdir=.
      destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`
Jason Merrill committed
1874 1875 1876 1877

      # Not a directory, so check to see that there is only one file specified.
      set dummy $files
      if test $# -gt 2; then
#  
Jeff Law committed
1878 1879 1880
        $echo "$modename: \`$dest' is not a directory" 1>&2
        $echo "$help" 1>&2
        exit 1
Jason Merrill committed
1881 1882 1883
      fi
    fi
    case "$destdir" in
1884
    /* | [A-Za-z]:[/\\]*) ;;
Jason Merrill committed
1885 1886
    *)
      for file in $files; do
#  
Jeff Law committed
1887 1888 1889 1890 1891 1892 1893 1894
        case "$file" in
        *.lo) ;;
        *)
          $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2
          $echo "$help" 1>&2
          exit 1
          ;;
        esac
Jason Merrill committed
1895 1896 1897 1898
      done
      ;;
    esac

#  
Jeff Law committed
1899 1900 1901 1902
    # This variable tells wrapper scripts just to set variables rather
    # than running their programs.
    libtool_install_magic="$magic"

Jason Merrill committed
1903 1904 1905 1906 1907 1908 1909
    staticlibs=
    future_libdirs=
    current_libdirs=
    for file in $files; do

      # Do each installation.
      case "$file" in
1910
      *.a | *.lib)
#  
Jeff Law committed
1911 1912 1913
        # Do the static libraries later.
        staticlibs="$staticlibs $file"
        ;;
Jason Merrill committed
1914 1915

      *.la)
#  
Jeff Law committed
1916 1917 1918 1919 1920 1921 1922
        # 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
Jason Merrill committed
1923

#  
Jeff Law committed
1924 1925 1926 1927 1928 1929 1930
        library_names=
        old_library=
        # If there is no directory component, then add one.
        case "$file" in
        */* | *\\*) . $file ;;
        *) . ./$file ;;
        esac
Jason Merrill committed
1931

#  
Jeff Law committed
1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944
        # 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
Jason Merrill committed
1945

#  
Jeff Law committed
1946 1947 1948 1949 1950 1951 1952 1953 1954 1955
        dir="`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/"
        test "X$dir" = "X$file/" && dir=
        dir="$dir$objdir"

        # See the names of the shared library.
        set dummy $library_names
        if test -n "$2"; then
          realname="$2"
          shift
          shift
Jason Merrill committed
1956

#  
Jeff Law committed
1957 1958 1959 1960 1961 1962 1963
          # Install the shared library and build the symlinks.
          $show "$install_prog $dir/$realname $destdir/$realname"
          $run eval "$install_prog $dir/$realname $destdir/$realname" || exit $?
          test "X$dlname" = "X$realname" && dlname=

          if test $# -gt 0; then
            # Delete the old symlinks.
Jason Merrill committed
1964 1965 1966
            rmcmd="$rm"
            for linkname
            do
1967 1968 1969
	      if test "X$linkname" != "X$realname"; then
                rmcmd="$rmcmd $destdir/$linkname"
	      fi
Jason Merrill committed
1970 1971 1972 1973
            done
            $show "$rmcmd"
            $run $rmcmd

#  
Jeff Law committed
1974 1975 1976
            # ... and create new ones.
            for linkname
            do
1977 1978 1979 1980 1981
	      if test "X$linkname" != "X$realname"; then
                test "X$dlname" = "X$linkname" && dlname=
                $show "(cd $destdir && $LN_S $realname $linkname)"
                $run eval "(cd $destdir && $LN_S $realname $linkname)"
	      fi
#  
Jeff Law committed
1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001
            done
          fi

          if test -n "$dlname"; then
            # Install the dynamically-loadable library.
            $show "$install_prog $dir/$dlname $destdir/$dlname"
            $run eval "$install_prog $dir/$dlname $destdir/$dlname" || exit $?
          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
Jason Merrill committed
2002

#  
Jeff Law committed
2003 2004 2005 2006
        # Install the pseudo-library for information purposes.
        name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
        $show "$install_prog $file $destdir/$name"
        $run eval "$install_prog $file $destdir/$name" || exit $?
Jason Merrill committed
2007

#  
Jeff Law committed
2008 2009 2010
        # Maybe install the static library, too.
        test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
        ;;
Jason Merrill committed
2011 2012 2013 2014 2015 2016

      *.lo)
        # Install (i.e. copy) a libtool object.

        # Figure out destination file name, if it wasn't already specified.
        if test -n "$destname"; then
#  
Jeff Law committed
2017 2018 2019 2020
          destfile="$destdir/$destname"
        else
          destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
          destfile="$destdir/$destfile"
Jason Merrill committed
2021 2022
        fi

#  
Jeff Law committed
2023 2024 2025
        # Deduce the name of the destination old-style object file.
        case "$destfile" in
        *.lo)
2026
          staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"`
Jason Merrill committed
2027
          ;;
2028
        *.o | *.obj)
#  
Jeff Law committed
2029 2030 2031 2032 2033 2034 2035 2036 2037
          staticdest="$destfile"
          destfile=
          ;;
        *)
          $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2
          $echo "$help" 1>&2
          exit 1
          ;;
        esac
Jason Merrill committed
2038

#  
Jeff Law committed
2039 2040 2041 2042 2043
        # Install the libtool object if requested.
        if test -n "$destfile"; then
          $show "$install_prog $file $destfile"
          $run eval "$install_prog $file $destfile" || exit $?
        fi
Jason Merrill committed
2044

#  
Jeff Law committed
2045 2046 2047
        # Install the old object if enabled.
        if test "$build_old_libs" = yes; then
          # Deduce the name of the old-style object file.
2048
          staticobj=`$echo "X$file" | $Xsed -e "$lo2o"`
Jason Merrill committed
2049

#  
Jeff Law committed
2050 2051 2052 2053 2054
          $show "$install_prog $staticobj $staticdest"
          $run eval "$install_prog \$staticobj \$staticdest" || exit $?
        fi
        exit 0
        ;;
Jason Merrill committed
2055 2056

      *)
#  
Jeff Law committed
2057 2058 2059 2060 2061 2062 2063
        # 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
Jason Merrill committed
2064

#  
Jeff Law committed
2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093
        # 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
          link_against_libtool_libs=
          finalize_command=

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

          # Check the variables that should have been set.
          if test -z "$link_against_libtool_libs" || test -z "$finalize_command"; then
            $echo "$modename: invalid libtool wrapper script \`$file'" 1>&2
            exit 1
          fi

          finalize=yes
          for lib in $link_against_libtool_libs; do
            # Check to see that each library is installed.
            libdir=
            if test -f "$lib"; then
              # If there is no directory component, then add one.
              case "$lib" in
              */* | *\\*) . $lib ;;
              *) . ./$lib ;;
              esac
            fi
            libfile="$libdir/`$echo "X$lib" | $Xsed -e 's%^.*/%%g'`"
2094
            if test -n "$libdir" && test ! -f "$libfile"; then
#  
Jeff Law committed
2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117
              $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
              finalize=no
            fi
          done

          if test "$hardcode_action" = relink; then
            if test "$finalize" = yes; then
              $echo "$modename: warning: relinking \`$file' on behalf of your buggy system linker" 1>&2
              $show "$finalize_command"
              if $run eval "$finalize_command"; then :
              else
                $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
                continue
              fi
              file="$objdir/$file"T
            else
              $echo "$modename: warning: cannot relink \`$file' on behalf of your buggy system linker" 1>&2
            fi
          else
            # Install the binary that we compiled earlier.
	    file=`$echo "X$file" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
          fi
        fi
Jason Merrill committed
2118

#  
Jeff Law committed
2119 2120 2121
        $show "$install_prog$stripme $file $destfile"
        $run eval "$install_prog\$stripme \$file \$destfile" || exit $?
        ;;
Jason Merrill committed
2122 2123 2124 2125
      esac
    done

    for file in $staticlibs; do
#  
Jeff Law committed
2126
      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
Jason Merrill committed
2127 2128 2129 2130 2131

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

      $show "$install_prog $file $oldlib"
#  
Jeff Law committed
2132
      $run eval "$install_prog \$file \$oldlib" || exit $?
Jason Merrill committed
2133 2134

      # Do each command in the postinstall commands.
#  
Jeff Law committed
2135
      eval cmds=\"$old_postinstall_cmds\"
Jason Merrill committed
2136 2137 2138 2139 2140 2141 2142 2143 2144 2145
      IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=';'
      for cmd in $cmds; do
        IFS="$save_ifs"
        $show "$cmd"
        $run eval "$cmd" || exit $?
      done
      IFS="$save_ifs"
    done

    if test -n "$future_libdirs"; then
#  
Jeff Law committed
2146
      $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2
Jason Merrill committed
2147 2148 2149 2150 2151
    fi

    if test -n "$current_libdirs"; then
      # Maybe just do a dry run.
      test -n "$run" && current_libdirs=" -n$current_libdirs"
#  
Jeff Law committed
2152
      exec $SHELL $0 --finish$current_libdirs
Jason Merrill committed
2153 2154 2155 2156 2157 2158
      exit 1
    fi

    exit 0
    ;;

#  
Jeff Law committed
2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196
  # libtool finish mode
  finish)
    modename="$modename: finish"
    libdirs="$nonopt"
    admincmds=

    if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
      for dir
      do
        libdirs="$libdirs $dir"
      done

      for libdir in $libdirs; do
	if test -n "$finish_cmds"; then
	  # Do each command in the finish commands.
	  eval cmds=\"$finish_cmds\"
          IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=';'
          for cmd in $cmds; do
            IFS="$save_ifs"
            $show "$cmd"
            $run eval "$cmd" || admincmds="$admincmds
       $cmd"
          done
          IFS="$save_ifs"
	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

    echo "----------------------------------------------------------------------"
    echo "Libraries have been installed in:"
    for libdir in $libdirs; do
      echo "   $libdir"
Jason Merrill committed
2197
    done
#  
Jeff Law committed
2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213
    echo
    echo "To link against installed libraries in a given directory, LIBDIR,"
    echo "you must use the \`-LLIBDIR' flag during linking."
    echo
    echo " You will also need to do at least one of the following:"
    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
2214

#  
Jeff Law committed
2215
      echo "   - use the \`$flag' linker flag"
Jason Merrill committed
2216
    fi
#  
Jeff Law committed
2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228
    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
2229

#  
Jeff Law committed
2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240
  # 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
2241

#  
Jeff Law committed
2242 2243
    # Handle -dlopen flags immediately.
    for file in $execute_dlfiles; do
2244
      if test ! -f "$file"; then
#  
Jeff Law committed
2245 2246 2247
	$echo "$modename: \`$file' is not a file" 1>&2
	$echo "$help" 1>&2
	exit 1
Jason Merrill committed
2248 2249
      fi

#  
Jeff Law committed
2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 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
      dir=
      case "$file" in
      *.la)
        # 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

	# Read the libtool library.
	dlname=
	library_names=

        # If there is no directory component, then add one.
	case "$file" in
	*/* | *\\*) . $file ;;
        *) . ./$file ;;
	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
        continue
	;;
Jason Merrill committed
2299 2300
      esac

#  
Jeff Law committed
2301 2302 2303 2304 2305 2306 2307
      # 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
2308
      else
#  
Jeff Law committed
2309
	eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
Jason Merrill committed
2310 2311 2312
      fi
    done

#  
Jeff Law committed
2313 2314 2315
    # This variable tells wrapper scripts just to set shlibpath_var
    # rather than running their programs.
    libtool_execute_magic="$magic"
Jason Merrill committed
2316

#  
Jeff Law committed
2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330
    # Check if any of the arguments is a wrapper script.
    args=
    for file
    do
      case "$file" in
      -*) ;;
      *)
        # 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
	  # If there is no directory component, then add one.
	  case "$file" in
	  */* | *\\*) . $file ;;
	  *) . ./$file ;;
	  esac
Jason Merrill committed
2331

#  
Jeff Law committed
2332 2333 2334 2335 2336 2337 2338 2339 2340
	  # Transform arg to wrapped name.
	  file="$progdir/$program"
	fi
        ;;
      esac
      # Quote arguments (to preserve shell metacharacters).
      file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
      args="$args \"$file\""
    done
Jason Merrill committed
2341

#  
Jeff Law committed
2342 2343 2344 2345
    if test -z "$run"; then
      # Export the shlibpath_var.
      eval "export $shlibpath_var"

2346 2347 2348 2349 2350 2351 2352 2353
      # Restore saved enviroment variables
      if test "${save_LC_ALL+set}" = set; then
        LC_ALL="$save_LC_ALL"; export LC_ALL
      fi
      if test "${save_LANG+set}" = set; then
        LANG="$save_LANG"; export LANG
      fi

#  
Jeff Law committed
2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364
      # Now actually exec the command.
      eval "exec \$cmd$args"

      $echo "$modename: cannot exec \$cmd$args"
      exit 1
    else
      # Display what would be done.
      eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\""
      $echo "export $shlibpath_var"
      $echo "$cmd$args"
      exit 0
Jason Merrill committed
2365 2366 2367 2368 2369
    fi
    ;;

  # libtool uninstall mode
  uninstall)
#  
Jeff Law committed
2370
    modename="$modename: uninstall"
Jason Merrill committed
2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382
    rm="$nonopt"
    files=

    for arg
    do
      case "$arg" in
      -*) rm="$rm $arg" ;;
      *) files="$files $arg" ;;
      esac
    done

    if test -z "$rm"; then
#  
Jeff Law committed
2383 2384
      $echo "$modename: you must specify an RM program" 1>&2
      $echo "$help" 1>&2
Jason Merrill committed
2385 2386 2387 2388
      exit 1
    fi

    for file in $files; do
#  
Jeff Law committed
2389 2390 2391
      dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
      test "X$dir" = "X$file" && dir=.
      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
Jason Merrill committed
2392 2393 2394 2395 2396

      rmfiles="$file"

      case "$name" in
      *.la)
#  
Jeff Law committed
2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422
        # 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
            rmfiles="$rmfiles $dir/$n"
            test "X$n" = "X$dlname" && dlname=
          done
          test -n "$dlname" && rmfiles="$rmfiles $dir/$dlname"
          test -n "$old_library" && rmfiles="$rmfiles $dir/$old_library"

	  $show "$rm $rmfiles"
	  $run $rm $rmfiles

	  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"
	    done
	    IFS="$save_ifs"
	  fi
Jason Merrill committed
2423

#  
Jeff Law committed
2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438
          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"
	    done
	    IFS="$save_ifs"
	  fi

          # FIXME: should reinstall the best remaining shared library.
        fi
        ;;
Jason Merrill committed
2439 2440

      *.lo)
#  
Jeff Law committed
2441
        if test "$build_old_libs" = yes; then
2442
          oldobj=`$echo "X$name" | $Xsed -e "$lo2o"`
#  
Jeff Law committed
2443 2444 2445 2446 2447
          rmfiles="$rmfiles $dir/$oldobj"
        fi
	$show "$rm $rmfiles"
	$run $rm $rmfiles
        ;;
Jason Merrill committed
2448

#  
Jeff Law committed
2449 2450 2451 2452 2453
      *)
      	$show "$rm $rmfiles"
	$run $rm $rmfiles
	;;
      esac
Jason Merrill committed
2454 2455 2456 2457
    done
    exit 0
    ;;

#  
Jeff Law committed
2458 2459 2460
  "")
    $echo "$modename: you must specify a MODE" 1>&2
    $echo "$generic_help" 1>&2
Jason Merrill committed
2461 2462 2463 2464
    exit 1
    ;;
  esac

#  
Jeff Law committed
2465 2466
  $echo "$modename: invalid operation mode \`$mode'" 1>&2
  $echo "$generic_help" 1>&2
Jason Merrill committed
2467 2468 2469 2470 2471
  exit 1
fi # test -z "$show_help"

# We need to display help for each of the modes.
case "$mode" in
#  
Jeff Law committed
2472 2473
"") $echo \
"Usage: $modename [OPTION]... [MODE-ARG]...
Jason Merrill committed
2474 2475 2476

Provide generalized library-building support services.

#  
Jeff Law committed
2477 2478
    --config          show all configuration variables
    --debug           enable verbose shell tracing
Jason Merrill committed
2479
-n, --dry-run         display commands without modifying any files
#  
Jeff Law committed
2480
    --features        display basic configuration information and exit
Jason Merrill committed
2481 2482 2483
    --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
2484 2485
    --quiet           same as \`--silent'
    --silent          don't print informational messages
Jason Merrill committed
2486 2487 2488 2489 2490
    --version         print version information

MODE must be one of the following:

      compile         compile a source file into a libtool object
#  
Jeff Law committed
2491
      execute         automatically set library path, then run a program
Jason Merrill committed
2492 2493 2494 2495 2496
      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
2497 2498 2499
MODE-ARGS vary depending on the MODE.  Try \`$modename --help --mode=MODE' for
a more detailed description of MODE."
  exit 0
Jason Merrill committed
2500 2501 2502
  ;;

compile)
#  
Jeff Law committed
2503 2504
  $echo \
"Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
Jason Merrill committed
2505 2506 2507

Compile a source file into a libtool library object.

2508 2509 2510 2511
This mode accepts the following additional options:

  -static           always build a \`.o' file suitable for static linking

Jason Merrill committed
2512 2513 2514 2515 2516
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
2517
library object suffix, \`.lo'."
Jason Merrill committed
2518 2519
  ;;

#  
Jeff Law committed
2520 2521 2522 2523 2524 2525 2526
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
2527

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

#  
Jeff Law committed
2530 2531
This mode sets the library path environment variable according to \`-dlopen'
flags.
Jason Merrill committed
2532

#  
Jeff Law committed
2533 2534 2535 2536 2537
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
2538 2539 2540
  ;;

finish)
#  
Jeff Law committed
2541 2542
  $echo \
"Usage: $modename [OPTION]... --mode=finish [LIBDIR]...
Jason Merrill committed
2543 2544 2545 2546 2547 2548

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
2549
the \`--dry-run' option if you just want to see what would be executed."
Jason Merrill committed
2550 2551 2552
  ;;

install)
#  
Jeff Law committed
2553 2554
  $echo \
"Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND...
Jason Merrill committed
2555 2556 2557 2558 2559 2560 2561

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
2562
BSD-compatible install options are recognized)."
Jason Merrill committed
2563 2564 2565
  ;;

link)
#  
Jeff Law committed
2566 2567
  $echo \
"Usage: $modename [OPTION]... --mode=link LINK-COMMAND...
Jason Merrill committed
2568 2569 2570 2571 2572 2573 2574 2575 2576

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
2577 2578 2579
  -all-static       do not do any dynamic linking at all
  -dlopen FILE      \`-dlpreopen' FILE if it cannot be dlopened at runtime
  -dlpreopen FILE   link in FILE and add its symbols to dld_preloaded_symbols
Jason Merrill committed
2580 2581 2582
  -export-dynamic   allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
  -LLIBDIR          search LIBDIR for required installed libraries
  -lNAME            OUTPUT-FILE requires the installed library libNAME
#  
Jeff Law committed
2583
  -no-undefined     declare that a library does not refer to external symbols
Jason Merrill committed
2584
  -o OUTPUT-FILE    create OUTPUT-FILE from the specified objects
#  
Jeff Law committed
2585
  -release RELEASE  specify package release information
Jason Merrill committed
2586
  -rpath LIBDIR     the created library will eventually be installed in LIBDIR
#  
Jeff Law committed
2587
  -static           do not do any dynamic linking of libtool libraries
Jason Merrill committed
2588
  -version-info CURRENT[:REVISION[:AGE]]
#  
Jeff Law committed
2589
                    specify library version info [each variable defaults to 0]
Jason Merrill committed
2590 2591 2592 2593 2594 2595 2596 2597 2598 2599

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.

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.

2600 2601
If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
using \`ar' and \`ranlib', or on WIndows using \`lib'.
Jason Merrill committed
2602

2603 2604
If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
is created, otherwise an executable program is created."
Jason Merrill committed
2605 2606 2607
  ;;

uninstall)
#  
Jeff Law committed
2608 2609
  $echo
"Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
Jason Merrill committed
2610 2611 2612 2613 2614 2615 2616 2617

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
2618
Otherwise, only FILE itself is deleted using RM."
Jason Merrill committed
2619 2620 2621
  ;;

*)
#  
Jeff Law committed
2622 2623
  $echo "$modename: invalid operation mode \`$mode'" 1>&2
  $echo "$help" 1>&2
Jason Merrill committed
2624 2625 2626 2627
  exit 1
  ;;
esac

#  
Jeff Law committed
2628 2629
echo
$echo "Try \`$modename --help' for more information about other modes."
Jason Merrill committed
2630 2631 2632 2633 2634 2635 2636

exit 0

# Local Variables:
# mode:shell-script
# sh-indentation:2
# End: