1 # ltmain.sh - Provide generalized library-building support services.
2 # NOTE: Changing this file will not affect anything until you rerun ltconfig.
4 # Copyright (C) 1996-1998 Free Software Foundation, Inc.
5 # Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 # As a special exception to the GNU General Public License, if you
22 # distribute this file as part of a program that contains a
23 # configuration script generated by Autoconf, you may include it under
24 # the same distribution terms that you use for the rest of that program.
26 # Check that we have a working $echo.
27 if test "X$1" = X--no-reexec; then
28 # Discard the --no-reexec flag, and continue.
30 elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
31 # Yippee, $echo works!
34 # Restart under the correct shell, and then maybe $echo will work.
35 exec $SHELL "$0" --no-reexec ${1+"$@"}
38 # The name of this program.
39 progname=`$echo "$0" | sed 's%^.*/%%'`
48 help="Try \`$progname --help' for more information."
49 magic="%%%MAGIC variable%%%"
54 # Sed substitution that helps us do robust quoting. It backslashifies
55 # metacharacters that are still active within double-quoted strings.
57 sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g'
60 # Only set LANG and LC_ALL to C if already set.
61 # These must not be set unconditionally because not all systems understand
62 # e.g. LANG=C (notably SCO).
63 # We save the old values to restore during execute mode.
64 if test "${LC_ALL+set}" = set; then
65 save_LC_ALL="$LC_ALL"; LC_ALL=C; export LC_ALL
67 if test "${LANG+set}" = set; then
68 save_LANG="$LANG"; LANG=C; export LANG
71 if test "$LTCONFIG_VERSION" != "$VERSION"; then
72 echo "$modename: ltconfig version \`$LTCONFIG_VERSION' does not match $PROGRAM version \`$VERSION'" 1>&2
73 echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2
77 if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
78 echo "$modename: not configured to build any kind of library" 1>&2
79 echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2
92 lo2o="s/\\.lo\$/.${objext}/"
93 los2o="s/\\.lo /.${objext} /g"
95 # Parse our command line options once, thoroughly.
102 -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
106 # If the previous option needs an argument, assign it.
107 if test -n "$prev"; then
110 eval "$prev=\"\$$prev \$arg\""
122 # Have we seen a non-optional argument yet?
129 echo "$PROGRAM (GNU $PACKAGE) $VERSION"
134 sed -e '1,/^### BEGIN LIBTOOL CONFIG/d' -e '/^### END LIBTOOL CONFIG/,$d' $0
139 echo "$progname: enabling shell trace mode"
149 if test "$build_libtool_libs" = yes; then
150 echo "enable shared libraries"
152 echo "disable shared libraries"
154 if test "$build_old_libs" = yes; then
155 echo "enable static libraries"
157 echo "disable static libraries"
162 --finish) mode="finish" ;;
164 --mode) prevopt="--mode" prev=mode ;;
165 --mode=*) mode="$optarg" ;;
177 $echo "$modename: unrecognized option \`$arg'" 1>&2
189 if test -n "$prevopt"; then
190 $echo "$modename: option \`$prevopt' requires an argument" 1>&2
195 if test -z "$show_help"; then
197 # Infer the operation mode.
198 if test -z "$mode"; then
200 *cc | *++ | gcc* | *-gcc*)
212 *db | *dbx | *strace | *truss)
222 # If we have no mode, but dlfiles were specified, then do execute mode.
223 test -n "$execute_dlfiles" && mode=execute
225 # Just use the default operation mode.
226 if test -z "$mode"; then
227 if test -n "$nonopt"; then
228 $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2
230 $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2
237 # Only execute mode is allowed to have -dlopen flags.
238 if test -n "$execute_dlfiles" && test "$mode" != execute; then
239 $echo "$modename: unrecognized option \`-dlopen'" 1>&2
244 # Change the help message to a mode-specific one.
246 help="Try \`$modename --help --mode=$mode' for more information."
248 # These modes are in order of execution frequency so that they run quickly.
250 # libtool compile mode
252 modename="$modename: compile"
253 # Get the compilation command and the source file.
261 # Accept any command-line options.
264 $echo "$modename: you cannot specify the output filename with \`-o'" 1>&2
275 # Accept the current argument as the source file.
279 # Aesthetically quote the previous argument.
281 # Backslashify any backslashes, double quotes, and dollar signs.
282 # These are the only characters that are still specially
283 # interpreted inside of double-quoted scrings.
284 lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`
286 # Double-quote args containing other shell metacharacters.
287 # Many Bourne shells cannot handle close brackets correctly in scan
288 # sets, so we specify it separately.
290 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
291 lastarg="\"$lastarg\""
295 # Add the previous argument to base_compile.
296 if test -z "$base_compile"; then
297 base_compile="$lastarg"
299 base_compile="$base_compile $lastarg"
303 # Get the name of the library object.
304 libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
306 # Recognize several different file suffixes.
321 libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`
324 *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
326 $echo "$modename: cannot determine name of library object from \`$srcfile'" 1>&2
331 if test -z "$base_compile"; then
332 $echo "$modename: you must specify a compilation command" 1>&2
337 # Delete any leftover library objects.
338 if test "$build_old_libs" = yes; then
339 $run $rm $obj $libobj
340 trap "$run $rm $obj $libobj; exit 1" 1 2 15
343 trap "$run $rm $libobj; exit 1" 1 2 15
346 if test -n "$fix_srcfile_path"; then
347 eval srcfile=\"$fix_srcfile_path\"
350 # Only build a PIC object if we are building libtool libraries.
351 if test "$build_libtool_libs" = yes; then
352 # Without this assignment, base_compile gets emptied.
353 fbsd_hideous_sh_bug=$base_compile
355 # All platforms use -DPIC, to notify preprocessed assembler code.
356 $show "$base_compile$pic_flag -DPIC $srcfile"
357 if $run eval "$base_compile\$pic_flag -DPIC \$srcfile"; then :
359 test -n "$obj" && $run $rm $obj
363 # If we have no pic_flag, then copy the object into place and finish.
364 if test -z "$pic_flag"; then
365 $show "$LN_S $obj $libobj"
366 $run $LN_S $obj $libobj
370 # Just move the object, then go on to compile the next one
371 $show "$mv $obj $libobj"
372 $run $mv $obj $libobj || exit $?
374 # Allow error messages only from the first compilation.
375 suppress_output=' >/dev/null 2>&1'
378 # Only build a position-dependent object if we build old libraries.
379 if test "$build_old_libs" = yes; then
380 # Suppress compiler output if we already did a PIC compilation.
381 $show "$base_compile $srcfile$suppress_output"
382 if $run eval "$base_compile \$srcfile$suppress_output"; then :
384 $run $rm $obj $libobj
389 # Create an invalid libtool object if no PIC, so that we do not
390 # accidentally link it into a program.
391 if test "$build_libtool_libs" != yes; then
392 $show "echo timestamp > $libobj"
393 $run eval "echo timestamp > \$libobj" || exit $?
401 modename="$modename: link"
404 compile_command="$CC"
405 finalize_command="$CC"
418 link_against_libtool_libs=
429 # We need to know -static, to get the right output filenames.
433 -all-static | -static)
434 if test "X$arg" = "X-all-static" && test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
435 $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2
437 build_libtool_libs=no
444 # See if our shared archives depend on static archives.
445 test -n "$old_archive_from_new_cmds" && build_old_libs=yes
447 # Go through the arguments, transforming them on the way.
448 while test $# -gt 0; do
452 # If the previous option needs an argument, assign it.
453 if test -n "$prev"; then
456 compile_command="$compile_command @OUTPUT@"
457 finalize_command="$finalize_command @OUTPUT@"
464 *.la | *.lo) ;; # We handle these cases below.
466 dlprefiles="$dlprefiles $arg"
467 test "$prev" = dlfiles && dlfiles="$dlfiles $arg"
483 eval "$prev=\"\$arg\""
494 if test -n "$link_static_flag"; then
495 compile_command="$compile_command $link_static_flag"
496 finalize_command="$finalize_command $link_static_flag"
502 # FIXME: remove this flag sometime in the future.
503 $echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2
518 if test "$export_dynamic" != yes; then
520 if test -n "$export_dynamic_flag_spec"; then
521 eval arg=\"$export_dynamic_flag_spec\"
526 # Add the symbol object into the linking commands.
527 compile_command="$compile_command @SYMFILE@"
528 finalize_command="$finalize_command @SYMFILE@"
533 dir=`$echo "X$arg" | $Xsed -e 's%^-L\(.*\)$%\1%'`
535 /* | [A-Za-z]:[/\\]*)
536 # Add the corresponding hardcode_libdir_flag, if it is not identical.
539 $echo "$modename: \`-L$dir' cannot specify a relative directory" 1>&2
543 deplibs="$deplibs $arg"
546 -l*) deplibs="$deplibs $arg" ;;
566 # If we have no pic_flag, then this is the same as -all-static.
567 if test -z "$pic_flag" && test -n "$link_static_flag"; then
568 compile_command="$compile_command $link_static_flag"
569 finalize_command="$finalize_command $link_static_flag"
579 # Some other compiler flag.
581 # Unknown arguments in both finalize_command and compile_command need
582 # to be aesthetically quoted because they are evaled later.
583 arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
585 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
591 *.o | *.obj | *.a | *.lib)
598 if test "$prev" = dlfiles; then
599 dlfiles="$dlfiles $arg"
600 if test "$build_libtool_libs" = yes; then
604 # If libtool objects are unsupported, then we need to preload.
609 if test "$prev" = dlprefiles; then
610 # Preload the old-style object.
611 dlprefiles="$dlprefiles "`$echo "X$arg" | $Xsed -e "$lo2o"`
614 libobjs="$libobjs $arg"
618 # A libtool-controlled library.
625 # Check to see that this really is a libtool archive.
626 if (sed -e '2q' $arg | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
628 $echo "$modename: \`$arg' is not a valid libtool archive" 1>&2
632 # If there is no directory component, then add one.
634 */* | *\\*) . $arg ;;
638 # Get the name of the library we link against.
640 for l in $old_library $library_names; do
644 if test -z "$linklib"; then
645 $echo "$modename: cannot find name of link library for \`$arg'" 1>&2
649 # Find the relevant object directory and library name.
650 name=`$echo "X$arg" | $Xsed -e 's%^.*/%%' -e 's/\.la$//' -e 's/^lib//'`
651 dir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
652 if test "X$dir" = "X$arg"; then
658 if test -z "$libdir"; then
659 # It is a libtool convenience library, so add in its objects.
660 convenience="$convenience $dir/$old_library"l
661 old_convenience="$old_convenience $dir/$old_library"
662 compile_command="$compile_command $dir/$old_library"
663 finalize_command="$finalize_command $dir/$old_library"
667 # This library was specified with -dlopen.
668 if test "$prev" = dlfiles; then
669 dlfiles="$dlfiles $arg"
670 if test -z "$dlname"; then
671 # If there is no dlname, we need to preload.
674 # We should not create a dependency on this library, but we
675 # may need any libraries it requires.
676 compile_command="$compile_command$dependency_libs"
677 finalize_command="$finalize_command$dependency_libs"
683 # The library was specified with -dlpreopen.
684 if test "$prev" = dlprefiles; then
685 # Prefer using a static library (so that no silly _DYNAMIC symbols
686 # are required to link).
687 if test -n "$old_library"; then
688 dlprefiles="$dlprefiles $dir/$old_library"
690 dlprefiles="$dlprefiles $dir/$linklib"
695 if test "$build_libtool_libs" = yes && test -n "$library_names"; then
696 link_against_libtool_libs="$link_against_libtool_libs $arg"
697 if test -n "$shlibpath_var"; then
698 # Make sure the rpath contains only unique directories.
699 case "$temp_rpath " in
701 *) temp_rpath="$temp_rpath $dir" ;;
705 # This is the magic to use -rpath.
706 if test -n "$hardcode_libdir_flag_spec"; then
707 if test -n "$hardcode_libdir_separator"; then
708 if test -z "$hardcode_libdirs"; then
709 # Put the magic libdir with the hardcode flag.
710 hardcode_libdirs="$libdir"
711 libdir="@HARDCODE_LIBDIRS@"
713 # Just accumulate the unique libdirs.
714 case "$hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator" in
715 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
718 hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
725 if test -n "$libdir"; then
726 eval flag=\"$hardcode_libdir_flag_spec\"
728 compile_command="$compile_command $flag"
729 finalize_command="$finalize_command $flag"
731 elif test -n "$runpath_var"; then
732 # Do the same for the permanent run path.
733 case "$perm_rpath " in
735 *) perm_rpath="$perm_rpath $libdir" ;;
741 case "$hardcode_action" in
742 immediate | unsupported)
743 if test "$hardcode_direct" = no; then
744 compile_command="$compile_command $dir/$linklib"
745 elif test "$hardcode_minus_L" = no; then
746 compile_command="$compile_command -L$dir -l$name"
747 elif test "$hardcode_shlibpath_var" = no; then
748 compile_shlibpath="$compile_shlibpath$dir:"
749 compile_command="$compile_command -l$name"
756 # We need an absolute path.
758 /* | [A-Za-z]:[/\\]*) ;;
760 absdir=`cd "$dir" && pwd`
761 if test -z "$absdir"; then
762 $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2
769 if test "$hardcode_direct" = yes; then
770 compile_command="$compile_command $dir/$linklib"
771 elif test "$hardcode_minus_L" = yes; then
772 compile_command="$compile_command -L$dir -l$name"
773 elif test "$hardcode_shlibpath_var" = yes; then
774 compile_shlibpath="$compile_shlibpath$dir:"
775 compile_command="$compile_command -l$name"
786 if test "$lib_linked" != yes; then
787 $echo "$modename: configuration error: unsupported hardcode properties"
791 # Finalize command for both is simple: just hardcode it.
792 if test "$hardcode_direct" = yes; then
793 finalize_command="$finalize_command $libdir/$linklib"
794 elif test "$hardcode_minus_L" = yes; then
795 finalize_command="$finalize_command -L$libdir -l$name"
796 elif test "$hardcode_shlibpath_var" = yes; then
797 finalize_shlibpath="$finalize_shlibpath$libdir:"
798 finalize_command="$finalize_command -l$name"
800 # We cannot seem to hardcode it, guess we'll fake it.
801 finalize_command="$finalize_command -L$libdir -l$name"
804 # Transform directly to old archives if we don't build new libraries.
805 if test -n "$pic_flag" && test -z "$old_library"; then
806 $echo "$modename: cannot find static library for \`$arg'" 1>&2
810 # Here we assume that one of hardcode_direct or hardcode_minus_L
811 # is not unsupported. This is valid on all known static and
813 if test "$hardcode_direct" != unsupported; then
814 test -n "$old_library" && linklib="$old_library"
815 compile_command="$compile_command $dir/$linklib"
816 finalize_command="$finalize_command $dir/$linklib"
818 compile_command="$compile_command -L$dir -l$name"
819 finalize_command="$finalize_command -L$dir -l$name"
823 # Add in any libraries that this one depends upon.
824 compile_command="$compile_command$dependency_libs"
825 finalize_command="$finalize_command$dependency_libs"
829 # Some other compiler argument.
831 # Unknown arguments in both finalize_command and compile_command need
832 # to be aesthetically quoted because they are evaled later.
833 arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
835 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
842 # Now actually substitute the argument into the commands.
843 if test -n "$arg"; then
844 compile_command="$compile_command $arg"
845 finalize_command="$finalize_command $arg"
849 if test -n "$prev"; then
850 $echo "$modename: the \`$prevarg' option requires an argument" 1>&2
858 $echo "$modename: you must specify an output file" 1>&2
864 $echo "$modename: output file \`$output' must have no directory components" 1>&2
870 if test -n "$link_against_libtool_libs"; then
871 $echo "$modename: error: cannot link libtool libraries into archives" 1>&2
875 if test -n "$deplibs"; then
876 $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2
879 if test -n "$dlfiles$dlprefiles"; then
880 $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2
883 if test -n "$rpath"; then
884 $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2
887 if test -n "$vinfo"; then
888 $echo "$modename: warning: \`-version-info' is ignored for archives" 1>&2
891 if test -n "$release"; then
892 $echo "$modename: warning: \`-release' is ignored for archives" 1>&2
895 # Now set the variables for building old libraries.
896 build_libtool_libs=no
901 # Make sure we only generate libraries of the form `libNAME.la'.
905 $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2
911 name=`$echo "X$output" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
912 eval libname=\"$libname_spec\"
914 # All the library-specific variables (install_libdir is set above).
919 if test -n "$objs"; then
920 $echo "$modename: cannot build libtool library \`$output' from non-libtool objects:$objs" 2>&1
924 # How the heck are we supposed to write a wrapper for a shared library?
925 if test -n "$link_against_libtool_libs"; then
926 $echo "$modename: error: cannot link shared libraries into libtool libraries" 1>&2
930 if test -n "$dlfiles$dlprefiles"; then
931 $echo "$modename: warning: \`-dlopen' is ignored for libtool libraries" 1>&2
935 if test $# -gt 2; then
936 $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2
940 # Now set the variables for building old libraries.
941 oldlibs="$objdir/$libname.$libext"
942 if test -z "$rpath"; then
943 # Building a libtool convenience library.
944 oldlibs="$objdir/$libname.al $oldlibs"
945 build_libtool_libs=convenience
947 if test -n "$vinfo"; then
948 $echo "$modename: warning: \`-version-info' is ignored for convenience libraries" 1>&2
951 if test -n "$release"; then
952 $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2
956 # Parse the version information argument.
957 IFS="${IFS= }"; save_ifs="$IFS"; IFS=':'
958 set dummy $vinfo 0 0 0
961 if test -n "$8"; then
962 $echo "$modename: too many parameters to \`-version-info'" 1>&2
971 # Check that each of the things are valid numbers.
973 0 | [1-9] | [1-9][0-9]*) ;;
975 $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2
976 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
982 0 | [1-9] | [1-9][0-9]*) ;;
984 $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2
985 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
991 0 | [1-9] | [1-9][0-9]*) ;;
993 $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2
994 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
999 if test $age -gt $current; then
1000 $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
1001 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
1005 # Calculate the version variables.
1009 case "$version_type" in
1013 major=.`expr $current - $age`
1014 versuffix="$major.$age.$revision"
1018 major=`expr $current - $age`
1019 versuffix=".$current.$age.$revision"
1020 verstring="$current.$age.$revision"
1022 # Add in all the interfaces that we are compatible with.
1024 while test $loop != 0; do
1025 iface=`expr $current - $loop`
1026 loop=`expr $loop - 1`
1027 verstring="$verstring:${iface}.0"
1030 # Make executables depend on our current version.
1031 verstring="$verstring:${current}.0"
1036 versuffix=".$current.$revision"
1040 # Like Linux, but with '-' rather than '.', since we only
1041 # want one extension on Windows 95.
1042 major=`expr $current - $age`
1043 versuffix="-$major-$age-$revision"
1047 $echo "$modename: unknown library version type \`$version_type'" 1>&2
1048 echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2
1053 # Clear the version info if we defaulted, and they specified a release.
1054 if test -z "$vinfo" && test -n "$release"; then
1058 case "$version_type" in
1065 # Check to see if the archive will have undefined symbols.
1066 if test "$allow_undefined" = yes; then
1067 if test "$allow_undefined_flag" = unsupported; then
1068 $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2
1069 build_libtool_libs=no
1073 # Don't allow undefined symbols.
1074 allow_undefined_flag="$no_undefined_flag"
1077 # Add libc to deplibs on all systems.
1078 dependency_libs="$deplibs"
1079 deplibs="$deplibs -lc"
1082 # Create the output directory, or remove our outputs if we need to.
1083 if test -d $objdir; then
1084 $show "${rm}r $objdir/$output $objdir/$libname.* $objdir/${libname}${release}.*"
1085 $run ${rm}r $objdir/$output $objdir/$libname.* $objdir/${libname}${release}.*
1087 $show "$mkdir $objdir"
1090 if test $status -ne 0 && test ! -d $objdir; then
1095 if test "$build_libtool_libs" = yes; then
1096 # Get the real and link names of the library.
1097 eval library_names=\"$library_names_spec\"
1098 set dummy $library_names
1102 if test -n "$soname_spec"; then
1103 eval soname=\"$soname_spec\"
1108 lib="$objdir/$realname"
1111 linknames="$linknames $link"
1114 # Use standard objects if they are PIC.
1115 test -z "$pic_flag" && libobjs=`$echo "X$libobjs " | $Xsed -e "$los2o" -e 's/ $//g'`
1117 # Transform .lo files to .o files.
1118 test "$build_old_libs" = yes && oldobjs="$objs"`$echo "X$libobjs " | $Xsed -e 's/[^ ]*\.a //g' -e 's/[^ ]*\.lib //g' -e "$los2o" -e 's/ $//g'`
1120 if test -n "$whole_archive_flag_spec"; then
1121 if test -n "$convenience"; then
1122 eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
1125 for xlib in $convenience; do
1126 # Extract the objects.
1128 generated="$generated $xdir"
1129 xlib=`echo "$xlib" | $Xsed -e 's%^.*/%%'`
1131 $show "${rm}r $xdir"
1136 if test $status -ne 0 && test ! -d "$xdir"; then
1139 $show "(cd $xdir && $AR x ../$xlib)"
1140 $run eval "(cd \$xdir && $AR x ../\$xlib)" || exit $?
1142 libobjs="$libobjs `echo $xdir/*`"
1146 # Do each of the archive commands.
1147 eval cmds=\"$archive_cmds\"
1148 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
1149 for cmd in $cmds; do
1152 $run eval "$cmd" || exit $?
1156 # Create links to the real library.
1157 for linkname in $linknames; do
1158 if test "$realname" != "$linkname"; then
1159 $show "(cd $objdir && $LN_S $realname $linkname)"
1160 $run eval '(cd $objdir && $LN_S $realname $linkname)' || exit $?
1164 # If -export-dynamic was specified, set the dlname.
1165 if test "$export_dynamic" = yes; then
1166 # On all known operating systems, these are identical.
1173 if test -n "$link_against_libtool_libs"; then
1174 $echo "$modename: error: cannot link libtool libraries into objects" 1>&2
1178 if test -n "$deplibs"; then
1179 $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2
1182 if test -n "$dlfiles$dlprefiles"; then
1183 $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2
1186 if test -n "$rpath"; then
1187 $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2
1190 if test -n "$vinfo"; then
1191 $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2
1194 if test -n "$release"; then
1195 $echo "$modename: warning: \`-release' is ignored for objects" 1>&2
1200 if test -n "$objs"; then
1201 $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2
1205 obj=`$echo "X$output" | $Xsed -e "$lo2o"`
1213 # Delete the old objects.
1214 $run $rm $obj $libobj
1216 # Create the old-style object.
1217 reload_objs="$objs"`$echo "X$libobjs " | $Xsed -e 's/[^ ]*\.a //g' -e 's/[^ ]*\.lib //g' -e "$los2o" -e 's/ $//g'`
1220 eval cmds=\"$reload_cmds\"
1221 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
1222 for cmd in $cmds; do
1225 $run eval "$cmd" || exit $?
1229 # Exit if we aren't doing a library object file.
1230 test -z "$libobj" && exit 0
1232 if test "$build_libtool_libs" != yes; then
1233 # Create an invalid libtool object if no PIC, so that we don't
1234 # accidentally link it into a program.
1235 $show "echo timestamp > $libobj"
1236 $run eval "echo timestamp > $libobj" || exit $?
1240 if test -n "$pic_flag"; then
1241 # Only do commands if we really have different PIC objects.
1242 reload_objs="$libobjs"
1244 eval cmds=\"$reload_cmds\"
1245 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
1246 for cmd in $cmds; do
1249 $run eval "$cmd" || exit $?
1253 # Just create a symlink.
1254 $show "$LN_S $obj $libobj"
1255 $run $LN_S $obj $libobj || exit $?
1262 if test -n "$vinfo"; then
1263 $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2
1266 if test -n "$release"; then
1267 $echo "$modename: warning: \`-release' is ignored for programs" 1>&2
1270 if test -n "$rpath"; then
1271 # If the user specified any rpath flags, then add them.
1272 for libdir in $rpath; do
1273 if test -n "$hardcode_libdir_flag_spec"; then
1274 if test -n "$hardcode_libdir_separator"; then
1275 if test -z "$hardcode_libdirs"; then
1276 # Put the magic libdir with the hardcode flag.
1277 hardcode_libdirs="$libdir"
1278 libdir="@HARDCODE_LIBDIRS@"
1280 # Just accumulate the unique libdirs.
1281 case "$hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator" in
1282 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
1285 hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
1292 if test -n "$libdir"; then
1293 eval flag=\"$hardcode_libdir_flag_spec\"
1295 compile_command="$compile_command $flag"
1296 finalize_command="$finalize_command $flag"
1298 elif test -n "$runpath_var"; then
1299 case "$perm_rpath " in
1301 *) perm_rpath="$perm_rpath $libdir" ;;
1307 # Substitute the hardcoded libdirs into the compile commands.
1308 if test -n "$hardcode_libdir_separator"; then
1309 compile_command=`$echo "X$compile_command" | $Xsed -e "s%@HARDCODE_LIBDIRS@%$hardcode_libdirs%g"`
1310 finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@HARDCODE_LIBDIRS@%$hardcode_libdirs%g"`
1313 if test -n "$libobjs" && test "$build_old_libs" = yes; then
1314 # Transform all the library objects into standard objects.
1315 compile_command=`$echo "X$compile_command " | $Xsed -e "$los2o" -e 's/ $//'`
1316 finalize_command=`$echo "X$finalize_command " | $Xsed -e "$los2o" -e 's/ $//'`
1319 if test "$export_dynamic" = yes && test -n "$NM" && test -n "$global_symbol_pipe"; then
1320 dlsyms="${output}S.c"
1325 if test -n "$dlsyms"; then
1326 # Add our own program objects to the preloaded list.
1327 dlprefiles=`$echo "X$objs$dlprefiles " | $Xsed -e "$los2o" -e 's/ $//'`
1329 # Discover the nlist of each of the dlfiles.
1330 nlist="$objdir/${output}.nm"
1332 if test -d $objdir; then
1333 $show "$rm $nlist ${nlist}T"
1334 $run $rm "$nlist" "${nlist}T"
1336 $show "$mkdir $objdir"
1339 if test $status -ne 0 && test ! -d $objdir; then
1344 for arg in $dlprefiles; do
1345 $show "extracting global C symbols from \`$arg'"
1346 $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
1349 # Parse the name list into a source file.
1350 $show "creating $objdir/$dlsyms"
1351 if test -z "$run"; then
1352 # Make sure we at least have an empty file.
1353 test -f "$nlist" || : > "$nlist"
1355 # Try sorting and uniquifying the output.
1356 if sort "$nlist" | uniq > "$nlist"T; then
1357 mv -f "$nlist"T "$nlist"
1358 wcout=`wc "$nlist" 2>/dev/null`
1359 count=`echo "X$wcout" | $Xsed -e 's/^[ ]*\([0-9][0-9]*\).*$/\1/'`
1360 (test "$count" -ge 0) 2>/dev/null || count=-1
1369 $echo > "$objdir/$dlsyms" "\
1370 /* $dlsyms - symbol resolution table for \`$output' dlsym emulation. */
1371 /* Generated by $PROGRAM - GNU $PACKAGE $VERSION */
1377 /* Prevent the only kind of declaration conflicts we can make. */
1378 #define dld_preloaded_symbol_count some_other_symbol
1379 #define dld_preloaded_symbols some_other_symbol
1381 /* External symbol declarations for the compiler. */\
1384 if test -f "$nlist"; then
1385 sed -e 's/^.* \(.*\)$/extern char \1;/' < "$nlist" >> "$objdir/$dlsyms"
1387 echo '/* NONE */' >> "$objdir/$dlsyms"
1390 $echo >> "$objdir/$dlsyms" "\
1392 #undef dld_preloaded_symbol_count
1393 #undef dld_preloaded_symbols
1395 #if defined (__STDC__) && __STDC__
1396 # define __ptr_t void *
1398 # define __ptr_t char *
1401 /* The number of symbols in dld_preloaded_symbols, -1 if unsorted. */
1402 int dld_preloaded_symbol_count = $count;
1404 /* The mapping between symbol names and symbols. */
1409 dld_preloaded_symbols[] =
1413 if test -f "$nlist"; then
1414 sed 's/^\(.*\) \(.*\)$/ {"\1", (__ptr_t) \&\2},/' < "$nlist" >> "$objdir/$dlsyms"
1417 $echo >> "$objdir/$dlsyms" "\
1428 $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2
1434 # Now compile the dynamic symbol file.
1435 $show "(cd $objdir && $CC -c$no_builtin_flag \"$dlsyms\")"
1436 $run eval '(cd $objdir && $CC -c$no_builtin_flag "$dlsyms")' || exit $?
1438 # Transform the symbol file into the correct name.
1439 compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$objdir/${output}S.${objext}%"`
1440 finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$objdir/${output}S.${objext}%"`
1441 elif test "$export_dynamic" != yes; then
1442 test -n "$dlfiles$dlprefiles" && $echo "$modename: warning: \`-dlopen' and \`-dlpreopen' are ignored without \`-export-dynamic'" 1>&2
1444 # We keep going just in case the user didn't refer to
1445 # dld_preloaded_symbols. The linker will fail if global_symbol_pipe
1446 # really was required.
1447 $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2
1449 # Nullify the symbol file.
1450 compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
1451 finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
1454 if test -z "$link_against_libtool_libs" || test "$build_libtool_libs" != yes; then
1455 # Replace the output file specification.
1456 compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
1457 finalize_command=`$echo "X$finalize_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
1459 # We have no uninstalled library dependencies, so finalize right now.
1460 $show "$compile_command"
1461 $run eval "$compile_command"
1465 # Replace the output file specification.
1466 compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$objdir/$output"'%g'`
1467 finalize_command=`$echo "X$finalize_command" | $Xsed -e 's%@OUTPUT@%'"$objdir/$output"'T%g'`
1469 # Create the binary in the object directory, then wrap it.
1470 if test ! -d $objdir; then
1471 $show "$mkdir $objdir"
1474 if test $status -ne 0 && test ! -d $objdir; then
1479 if test -n "$shlibpath_var"; then
1480 # We should set the shlibpath_var
1482 for dir in $temp_rpath; do
1484 /* | [A-Za-z]:[/\\]*)
1489 # Relative path: add a thisdir entry.
1490 rpath="$rpath\$thisdir/$dir:"
1497 # Delete the old output file.
1500 if test -n "$compile_shlibpath"; then
1501 compile_command="$shlibpath_var=\"$compile_shlibpath\$$shlibpath_var\" $compile_command"
1503 if test -n "$finalize_shlibpath"; then
1504 finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
1507 if test -n "$runpath_var" && test -n "$perm_rpath"; then
1508 # We should set the runpath_var.
1510 for dir in $perm_rpath; do
1513 compile_command="$runpath_var=\"$rpath\$$runpath_var\" $compile_command"
1514 finalize_command="$runpath_var=\"$rpath\$$runpath_var\" $finalize_command"
1517 if test "$hardcode_action" = relink; then
1518 # AGH! Flame the AIX and HP-UX people for me, will ya?
1519 $echo "$modename: warning: using a buggy system linker" 1>&2
1520 $echo "$modename: relinking will be required before \`$output' can be installed" 1>&2
1523 $show "$compile_command"
1524 $run eval "$compile_command" || exit $?
1526 # Now create the wrapper script.
1527 $show "creating $output"
1529 # Quote the finalize command for shipping.
1530 finalize_command=`$echo "X$finalize_command" | $Xsed -e "$sed_quote_subst"`
1532 # Quote $echo for shipping.
1533 qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"`
1535 # Only actually do things if our run command is non-null.
1536 if test -z "$run"; then
1538 trap "$rm $output; exit 1" 1 2 15
1543 # $output - temporary wrapper script for $objdir/$output
1544 # Generated by $PROGRAM - GNU $PACKAGE $VERSION
1546 # The $output program cannot be directly executed until all the libtool
1547 # libraries that it depends on are installed.
1549 # This wrapper script should never be moved out of \``pwd`'.
1550 # If it is, it will not operate correctly.
1552 # Sed substitution that helps us do robust quoting. It backslashifies
1553 # metacharacters that are still active within double-quoted strings.
1554 Xsed='sed -e s/^X//'
1555 sed_quote_subst='$sed_quote_subst'
1557 # The HP-UX ksh and POSIX shell print the target directory to stdout
1559 if test \"\${CDPATH+set}\" = set; then CDPATH=; export CDPATH; fi
1561 # This environment variable determines our operation mode.
1562 if test \"\$libtool_install_magic\" = \"$magic\"; then
1563 # install mode needs the following variables:
1564 link_against_libtool_libs='$link_against_libtool_libs'
1565 finalize_command=\"$finalize_command\"
1567 # When we are sourced in execute mode, \$file and \$echo are already set.
1568 if test \"\$libtool_execute_magic\" != \"$magic\"; then
1571 # Make sure echo works.
1572 if test \"X\$1\" = X--no-reexec; then
1573 # Discard the --no-reexec flag, and continue.
1575 elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then
1576 # Yippee, \$echo works!
1579 # Restart under the correct shell, and then maybe \$echo will work.
1580 exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"}
1586 # Find the directory that this script lives in.
1587 thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
1588 test \"x\$thisdir\" = \"x\$file\" && thisdir=.
1590 # Follow symbolic links until we get to the real thisdir.
1591 file=\`ls -ld \"\$file\" | sed -n 's/.*-> //p'\`
1592 while test -n \"\$file\"; do
1593 destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`
1595 # If there was a directory component, then change thisdir.
1596 if test \"x\$destdir\" != \"x\$file\"; then
1597 case \"\$destdir\" in
1598 /* | [A-Za-z]:[/\\]*) thisdir=\"\$destdir\" ;;
1599 *) thisdir=\"\$thisdir/\$destdir\" ;;
1603 file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\`
1604 file=\`ls -ld \"\$thisdir/\$file\" | sed -n 's/.*-> //p'\`
1607 # Try to get the absolute directory name.
1608 absdir=\`cd \"\$thisdir\" && pwd\`
1609 test -n \"\$absdir\" && thisdir=\"\$absdir\"
1611 progdir=\"\$thisdir/$objdir\"
1614 if test -f \"\$progdir/\$program\"; then"
1616 # Export our shlibpath_var if we have one.
1617 if test -n "$shlibpath_var" && test -n "$temp_rpath"; then
1619 # Add our own library path to $shlibpath_var
1620 $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
1622 # Some systems cannot cope with colon-terminated $shlibpath_var
1623 $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/:*\$//'\`
1625 export $shlibpath_var
1630 if test \"\$libtool_execute_magic\" != \"$magic\"; then
1631 # Run the actual program with our arguments.
1633 # Export the path to the program.
1634 PATH=\"\$progdir:\$PATH\"
1637 exec \$program \${1+\"\$@\"}
1639 \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\"
1643 # The program doesn't exist.
1644 \$echo \"\$0: error: \$progdir/\$program does not exist\" 1>&2
1645 \$echo \"This script is just a wrapper for \$program.\" 1>&2
1646 echo \"See the $PACKAGE documentation for more information.\" 1>&2
1657 # See if we need to build an old-fashioned archive.
1658 for oldlib in $oldlibs; do
1660 if test "$build_libtool_libs" = convenience; then
1662 addlibs="$convenience"
1663 build_libtool_libs=no
1665 addlibs="$old_convenience"
1668 # Add in members from convenience archives.
1669 for xlib in $addlibs; do
1670 # Extract the objects.
1672 generated="$generated $xdir"
1673 xlib=`echo "$xlib" | $Xsed -e 's%^.*/%%'`
1675 $show "${rm}r $xdir"
1680 if test $status -ne 0 && test ! -d "$xdir"; then
1683 $show "(cd $xdir && $AR x ../$xlib)"
1684 $run eval "(cd \$xdir && $AR x ../\$xlib)" || exit $?
1686 oldobjs="$oldobjs `echo $xdir/*`"
1689 # Do each command in the archive commands.
1690 if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
1691 eval cmds=\"$old_archive_from_new_cmds\"
1693 eval cmds=\"$old_archive_cmds\"
1695 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
1696 for cmd in $cmds; do
1699 $run eval "$cmd" || exit $?
1704 if test -n "$generated"; then
1705 $show "${rm}r$generated"
1706 $run ${rm}r$generated
1709 # Now create the libtool archive.
1713 test "$build_old_libs" = yes && old_library="$libname.$libext"
1714 $show "creating $output"
1716 # Only create the output if not a dry run.
1717 if test -z "$run"; then
1719 # $output - a libtool library file
1720 # Generated by $PROGRAM - GNU $PACKAGE $VERSION
1722 # The name that we can dlopen(3).
1725 # Names of this library.
1726 library_names='$library_names'
1728 # The name of the static archive.
1729 old_library='$old_library'
1731 # Libraries that this one depends upon.
1732 dependency_libs='$dependency_libs'
1734 # Version information for $libname.
1739 # Directory that this library needs to be installed in:
1740 libdir='$install_libdir'\
1744 # Do a symbolic link so that the libtool archive can be found in
1745 # LD_LIBRARY_PATH before the program is installed.
1746 $show "(cd $objdir && $LN_S ../$output $output)"
1747 $run eval "(cd $objdir && $LN_S ../$output $output)" || exit $?
1753 # libtool install mode
1755 modename="$modename: install"
1757 # There may be an optional sh(1) argument at the beginning of
1758 # install_prog (especially on Windows NT).
1759 if test "$nonopt" = "$SHELL"; then
1760 # Aesthetically quote it.
1761 arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
1763 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
1767 install_prog="$arg "
1775 # The real first argument should be the name of the installation program.
1776 # Aesthetically quote it.
1777 arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
1779 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
1783 install_prog="$install_prog$arg"
1785 # We need to accept at least all the BSD install flags.
1795 if test -n "$dest"; then
1796 files="$files $dest"
1814 # If the previous option needed an argument, then skip it.
1815 if test -n "$prev"; then
1824 # Aesthetically quote the argument.
1825 arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
1827 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
1831 install_prog="$install_prog $arg"
1834 if test -z "$install_prog"; then
1835 $echo "$modename: you must specify an install program" 1>&2
1840 if test -n "$prev"; then
1841 $echo "$modename: the \`$prev' option requires an argument" 1>&2
1846 if test -z "$files"; then
1847 if test -z "$dest"; then
1848 $echo "$modename: no file or destination specified" 1>&2
1850 $echo "$modename: you must specify a destination" 1>&2
1856 # Strip any trailing slash from the destination.
1857 dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`
1859 # Check to see that the destination is a directory.
1860 test -d "$dest" && isdir=yes
1861 if test "$isdir" = yes; then
1865 destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
1866 test "X$destdir" = "X$dest" && destdir=.
1867 destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`
1869 # Not a directory, so check to see that there is only one file specified.
1871 if test $# -gt 2; then
1872 $echo "$modename: \`$dest' is not a directory" 1>&2
1878 /* | [A-Za-z]:[/\\]*) ;;
1880 for file in $files; do
1884 $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2
1893 # This variable tells wrapper scripts just to set variables rather
1894 # than running their programs.
1895 libtool_install_magic="$magic"
1900 for file in $files; do
1902 # Do each installation.
1905 # Do the static libraries later.
1906 staticlibs="$staticlibs $file"
1910 # Check to see that this really is a libtool archive.
1911 if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
1913 $echo "$modename: \`$file' is not a valid libtool archive" 1>&2
1920 # If there is no directory component, then add one.
1922 */* | *\\*) . $file ;;
1926 # Add the libdir to current_libdirs if it is the destination.
1927 if test "X$destdir" = "X$libdir"; then
1928 case "$current_libdirs " in
1930 *) current_libdirs="$current_libdirs $libdir" ;;
1933 # Note the libdir as a future libdir.
1934 case "$future_libdirs " in
1936 *) future_libdirs="$future_libdirs $libdir" ;;
1940 dir="`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/"
1941 test "X$dir" = "X$file/" && dir=
1944 # See the names of the shared library.
1945 set dummy $library_names
1946 if test -n "$2"; then
1951 # Install the shared library and build the symlinks.
1952 $show "$install_prog $dir/$realname $destdir/$realname"
1953 $run eval "$install_prog $dir/$realname $destdir/$realname" || exit $?
1954 test "X$dlname" = "X$realname" && dlname=
1956 if test $# -gt 0; then
1957 # Delete the old symlinks.
1961 if test "X$linkname" != "X$realname"; then
1962 rmcmd="$rmcmd $destdir/$linkname"
1968 # ... and create new ones.
1971 if test "X$linkname" != "X$realname"; then
1972 test "X$dlname" = "X$linkname" && dlname=
1973 $show "(cd $destdir && $LN_S $realname $linkname)"
1974 $run eval "(cd $destdir && $LN_S $realname $linkname)"
1979 if test -n "$dlname"; then
1980 # Install the dynamically-loadable library.
1981 $show "$install_prog $dir/$dlname $destdir/$dlname"
1982 $run eval "$install_prog $dir/$dlname $destdir/$dlname" || exit $?
1985 # Do each command in the postinstall commands.
1986 lib="$destdir/$realname"
1987 eval cmds=\"$postinstall_cmds\"
1988 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
1989 for cmd in $cmds; do
1992 $run eval "$cmd" || exit $?
1997 # Install the pseudo-library for information purposes.
1998 name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
1999 $show "$install_prog $file $destdir/$name"
2000 $run eval "$install_prog $file $destdir/$name" || exit $?
2002 # Maybe install the static library, too.
2003 test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
2007 # Install (i.e. copy) a libtool object.
2009 # Figure out destination file name, if it wasn't already specified.
2010 if test -n "$destname"; then
2011 destfile="$destdir/$destname"
2013 destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
2014 destfile="$destdir/$destfile"
2017 # Deduce the name of the destination old-style object file.
2020 staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"`
2023 staticdest="$destfile"
2027 $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2
2033 # Install the libtool object if requested.
2034 if test -n "$destfile"; then
2035 $show "$install_prog $file $destfile"
2036 $run eval "$install_prog $file $destfile" || exit $?
2039 # Install the old object if enabled.
2040 if test "$build_old_libs" = yes; then
2041 # Deduce the name of the old-style object file.
2042 staticobj=`$echo "X$file" | $Xsed -e "$lo2o"`
2044 $show "$install_prog $staticobj $staticdest"
2045 $run eval "$install_prog \$staticobj \$staticdest" || exit $?
2051 # Figure out destination file name, if it wasn't already specified.
2052 if test -n "$destname"; then
2053 destfile="$destdir/$destname"
2055 destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
2056 destfile="$destdir/$destfile"
2059 # Do a test to see if this is really a libtool program.
2060 if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
2061 link_against_libtool_libs=
2064 # If there is no directory component, then add one.
2066 */* | *\\*) . $file ;;
2070 # Check the variables that should have been set.
2071 if test -z "$link_against_libtool_libs" || test -z "$finalize_command"; then
2072 $echo "$modename: invalid libtool wrapper script \`$file'" 1>&2
2077 for lib in $link_against_libtool_libs; do
2078 # Check to see that each library is installed.
2080 if test -f "$lib"; then
2081 # If there is no directory component, then add one.
2083 */* | *\\*) . $lib ;;
2087 libfile="$libdir/`$echo "X$lib" | $Xsed -e 's%^.*/%%g'`"
2088 if test -n "$libdir" && test ! -f "$libfile"; then
2089 $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
2094 if test "$hardcode_action" = relink; then
2095 if test "$finalize" = yes; then
2096 $echo "$modename: warning: relinking \`$file' on behalf of your buggy system linker" 1>&2
2097 $show "$finalize_command"
2098 if $run eval "$finalize_command"; then :
2100 $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
2103 file="$objdir/$file"T
2105 $echo "$modename: warning: cannot relink \`$file' on behalf of your buggy system linker" 1>&2
2108 # Install the binary that we compiled earlier.
2109 file=`$echo "X$file" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
2113 $show "$install_prog$stripme $file $destfile"
2114 $run eval "$install_prog\$stripme \$file \$destfile" || exit $?
2119 for file in $staticlibs; do
2120 name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
2122 # Set up the ranlib parameters.
2123 oldlib="$destdir/$name"
2125 $show "$install_prog $file $oldlib"
2126 $run eval "$install_prog \$file \$oldlib" || exit $?
2128 # Do each command in the postinstall commands.
2129 eval cmds=\"$old_postinstall_cmds\"
2130 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
2131 for cmd in $cmds; do
2134 $run eval "$cmd" || exit $?
2139 if test -n "$future_libdirs"; then
2140 $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2
2143 if test -n "$current_libdirs"; then
2144 # Maybe just do a dry run.
2145 test -n "$run" && current_libdirs=" -n$current_libdirs"
2146 exec $SHELL $0 --finish$current_libdirs
2153 # libtool finish mode
2155 modename="$modename: finish"
2159 if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
2162 libdirs="$libdirs $dir"
2165 for libdir in $libdirs; do
2166 if test -n "$finish_cmds"; then
2167 # Do each command in the finish commands.
2168 eval cmds=\"$finish_cmds\"
2169 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
2170 for cmd in $cmds; do
2173 $run eval "$cmd" || admincmds="$admincmds
2178 if test -n "$finish_eval"; then
2179 # Do the single finish_eval.
2180 eval cmds=\"$finish_eval\"
2181 $run eval "$cmds" || admincmds="$admincmds
2187 echo "----------------------------------------------------------------------"
2188 echo "Libraries have been installed in:"
2189 for libdir in $libdirs; do
2193 echo "To link against installed libraries in a given directory, LIBDIR,"
2194 echo "you must use the \`-LLIBDIR' flag during linking."
2196 echo " You will also need to do at least one of the following:"
2197 if test -n "$shlibpath_var"; then
2198 echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
2199 echo " during execution"
2201 if test -n "$runpath_var"; then
2202 echo " - add LIBDIR to the \`$runpath_var' environment variable"
2203 echo " during linking"
2205 if test -n "$hardcode_libdir_flag_spec"; then
2207 eval flag=\"$hardcode_libdir_flag_spec\"
2209 echo " - use the \`$flag' linker flag"
2211 if test -n "$admincmds"; then
2212 echo " - have your system administrator run these commands:$admincmds"
2214 if test -f /etc/ld.so.conf; then
2215 echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
2218 echo "See any operating system documentation about shared libraries for"
2219 echo "more information, such as the ld(1) and ld.so(8) manual pages."
2220 echo "----------------------------------------------------------------------"
2224 # libtool execute mode
2226 modename="$modename: execute"
2228 # The first argument is the command name.
2230 if test -z "$cmd"; then
2231 $echo "$modename: you must specify a COMMAND" 1>&2
2236 # Handle -dlopen flags immediately.
2237 for file in $execute_dlfiles; do
2238 if test ! -f "$file"; then
2239 $echo "$modename: \`$file' is not a file" 1>&2
2247 # Check to see that this really is a libtool archive.
2248 if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
2250 $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
2255 # Read the libtool library.
2259 # If there is no directory component, then add one.
2261 */* | *\\*) . $file ;;
2265 # Skip this library if it cannot be dlopened.
2266 if test -z "$dlname"; then
2267 # Warn if it was a shared library.
2268 test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'"
2272 dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
2273 test "X$dir" = "X$file" && dir=.
2275 if test -f "$dir/$objdir/$dlname"; then
2278 $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2
2284 # Just add the directory containing the .lo file.
2285 dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
2286 test "X$dir" = "X$file" && dir=.
2290 $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2
2295 # Get the absolute pathname.
2296 absdir=`cd "$dir" && pwd`
2297 test -n "$absdir" && dir="$absdir"
2299 # Now add the directory to shlibpath_var.
2300 if eval "test -z \"\$$shlibpath_var\""; then
2301 eval "$shlibpath_var=\"\$dir\""
2303 eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
2307 # This variable tells wrapper scripts just to set shlibpath_var
2308 # rather than running their programs.
2309 libtool_execute_magic="$magic"
2311 # Check if any of the arguments is a wrapper script.
2318 # Do a test to see if this is really a libtool program.
2319 if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
2320 # If there is no directory component, then add one.
2322 */* | *\\*) . $file ;;
2326 # Transform arg to wrapped name.
2327 file="$progdir/$program"
2331 # Quote arguments (to preserve shell metacharacters).
2332 file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
2333 args="$args \"$file\""
2336 if test -z "$run"; then
2337 # Export the shlibpath_var.
2338 eval "export $shlibpath_var"
2340 # Restore saved enviroment variables
2341 if test "${save_LC_ALL+set}" = set; then
2342 LC_ALL="$save_LC_ALL"; export LC_ALL
2344 if test "${save_LANG+set}" = set; then
2345 LANG="$save_LANG"; export LANG
2348 # Now actually exec the command.
2349 eval "exec \$cmd$args"
2351 $echo "$modename: cannot exec \$cmd$args"
2354 # Display what would be done.
2355 eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\""
2356 $echo "export $shlibpath_var"
2362 # libtool uninstall mode
2364 modename="$modename: uninstall"
2371 -*) rm="$rm $arg" ;;
2372 *) files="$files $arg" ;;
2376 if test -z "$rm"; then
2377 $echo "$modename: you must specify an RM program" 1>&2
2382 for file in $files; do
2383 dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
2384 test "X$dir" = "X$file" && dir=.
2385 name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
2391 # Possibly a libtool archive, so verify it.
2392 if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
2395 # Delete the libtool libraries and symlinks.
2396 for n in $library_names; do
2397 rmfiles="$rmfiles $dir/$n"
2398 test "X$n" = "X$dlname" && dlname=
2400 test -n "$dlname" && rmfiles="$rmfiles $dir/$dlname"
2401 test -n "$old_library" && rmfiles="$rmfiles $dir/$old_library"
2403 $show "$rm $rmfiles"
2406 if test -n "$library_names"; then
2407 # Do each command in the postuninstall commands.
2408 eval cmds=\"$postuninstall_cmds\"
2409 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
2410 for cmd in $cmds; do
2418 if test -n "$old_library"; then
2419 # Do each command in the old_postuninstall commands.
2420 eval cmds=\"$old_postuninstall_cmds\"
2421 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
2422 for cmd in $cmds; do
2430 # FIXME: should reinstall the best remaining shared library.
2435 if test "$build_old_libs" = yes; then
2436 oldobj=`$echo "X$name" | $Xsed -e "$lo2o"`
2437 rmfiles="$rmfiles $dir/$oldobj"
2439 $show "$rm $rmfiles"
2444 $show "$rm $rmfiles"
2453 $echo "$modename: you must specify a MODE" 1>&2
2454 $echo "$generic_help" 1>&2
2459 $echo "$modename: invalid operation mode \`$mode'" 1>&2
2460 $echo "$generic_help" 1>&2
2462 fi # test -z "$show_help"
2464 # We need to display help for each of the modes.
2467 "Usage: $modename [OPTION]... [MODE-ARG]...
2469 Provide generalized library-building support services.
2471 --config show all configuration variables
2472 --debug enable verbose shell tracing
2473 -n, --dry-run display commands without modifying any files
2474 --features display basic configuration information and exit
2475 --finish same as \`--mode=finish'
2476 --help display this help message and exit
2477 --mode=MODE use operation mode MODE [default=inferred from MODE-ARGS]
2478 --quiet same as \`--silent'
2479 --silent don't print informational messages
2480 --version print version information
2482 MODE must be one of the following:
2484 compile compile a source file into a libtool object
2485 execute automatically set library path, then run a program
2486 finish complete the installation of libtool libraries
2487 install install libraries or executables
2488 link create a library or an executable
2489 uninstall remove libraries from an installed directory
2491 MODE-ARGS vary depending on the MODE. Try \`$modename --help --mode=MODE' for
2492 a more detailed description of MODE."
2498 "Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
2500 Compile a source file into a libtool library object.
2502 This mode accepts the following additional options:
2504 -static always build a \`.o' file suitable for static linking
2506 COMPILE-COMMAND is a command to be used in creating a \`standard' object file
2507 from the given SOURCEFILE.
2509 The output file name is determined by removing the directory component from
2510 SOURCEFILE, then substituting the C source code suffix \`.c' with the
2511 library object suffix, \`.lo'."
2516 "Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]...
2518 Automatically set library path, then run a program.
2520 This mode accepts the following additional options:
2522 -dlopen FILE add the directory containing FILE to the library path
2524 This mode sets the library path environment variable according to \`-dlopen'
2527 If any of the ARGS are libtool executable wrappers, then they are translated
2528 into their corresponding uninstalled binary, and any of their required library
2529 directories are added to the library path.
2531 Then, COMMAND is executed, with ARGS as arguments."
2536 "Usage: $modename [OPTION]... --mode=finish [LIBDIR]...
2538 Complete the installation of libtool libraries.
2540 Each LIBDIR is a directory that contains libtool libraries.
2542 The commands that this mode executes may require superuser privileges. Use
2543 the \`--dry-run' option if you just want to see what would be executed."
2548 "Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND...
2550 Install executables or libraries.
2552 INSTALL-COMMAND is the installation command. The first component should be
2553 either the \`install' or \`cp' program.
2555 The rest of the components are interpreted as arguments to that command (only
2556 BSD-compatible install options are recognized)."
2561 "Usage: $modename [OPTION]... --mode=link LINK-COMMAND...
2563 Link object files or libraries together to form another library, or to
2564 create an executable program.
2566 LINK-COMMAND is a command using the C compiler that you would use to create
2567 a program from several object files.
2569 The following components of LINK-COMMAND are treated specially:
2571 -all-static do not do any dynamic linking at all
2572 -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
2573 -dlpreopen FILE link in FILE and add its symbols to dld_preloaded_symbols
2574 -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
2575 -LLIBDIR search LIBDIR for required installed libraries
2576 -lNAME OUTPUT-FILE requires the installed library libNAME
2577 -no-undefined declare that a library does not refer to external symbols
2578 -o OUTPUT-FILE create OUTPUT-FILE from the specified objects
2579 -release RELEASE specify package release information
2580 -rpath LIBDIR the created library will eventually be installed in LIBDIR
2581 -static do not do any dynamic linking of libtool libraries
2582 -version-info CURRENT[:REVISION[:AGE]]
2583 specify library version info [each variable defaults to 0]
2585 All other options (arguments beginning with \`-') are ignored.
2587 Every other argument is treated as a filename. Files ending in \`.la' are
2588 treated as uninstalled libtool libraries, other files are standard or library
2591 If the OUTPUT-FILE ends in \`.la', then a libtool library is created, only
2592 library objects (\`.lo' files) may be specified, and \`-rpath' is required.
2594 If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
2595 using \`ar' and \`ranlib', or on WIndows using \`lib'.
2597 If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
2598 is created, otherwise an executable program is created."
2603 "Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
2605 Remove libraries from an installation directory.
2607 RM is the name of the program to use to delete files associated with each FILE
2608 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
2611 If FILE is a libtool library, all the files associated with it are deleted.
2612 Otherwise, only FILE itself is deleted using RM."
2616 $echo "$modename: invalid operation mode \`$mode'" 1>&2
2623 $echo "Try \`$modename --help' for more information about other modes."