Fix problems found by David Edelsohn I caused
[official-gcc.git] / ltmain.sh
blobeee5763387b3d353de096ab878b1a7a53f2a92e0
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.
29 shift
30 elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
31 # Yippee, $echo works!
33 else
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%^.*/%%'`
40 modename="$progname"
42 # Constants.
43 PROGRAM=ltmain.sh
44 PACKAGE=libtool
45 VERSION=1.2b
47 default_mode=
48 help="Try \`$progname --help' for more information."
49 magic="%%%MAGIC variable%%%"
50 mkdir="mkdir"
51 mv="mv -f"
52 rm="rm -f"
54 # Sed substitution that helps us do robust quoting. It backslashifies
55 # metacharacters that are still active within double-quoted strings.
56 Xsed='sed -e s/^X//'
57 sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g'
59 # NLS nuisances.
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
74 exit 1
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
80 exit 1
83 # Global variables.
84 mode=$default_mode
85 nonopt=
86 prev=
87 prevopt=
88 run=
89 show="$echo"
90 show_help=
91 execute_dlfiles=
92 lo2o="s/\\.lo\$/.${objext}/"
93 los2o="s/\\.lo /.${objext} /g"
95 # Parse our command line options once, thoroughly.
96 while test $# -gt 0
98 arg="$1"
99 shift
101 case "$arg" in
102 -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
103 *) optarg= ;;
104 esac
106 # If the previous option needs an argument, assign it.
107 if test -n "$prev"; then
108 case "$prev" in
109 execute_dlfiles)
110 eval "$prev=\"\$$prev \$arg\""
113 eval "$prev=\$arg"
115 esac
117 prev=
118 prevopt=
119 continue
122 # Have we seen a non-optional argument yet?
123 case "$arg" in
124 --help)
125 show_help=yes
128 --version)
129 echo "$PROGRAM (GNU $PACKAGE) $VERSION"
130 exit 0
133 --config)
134 sed -e '1,/^### BEGIN LIBTOOL CONFIG/d' -e '/^### END LIBTOOL CONFIG/,$d' $0
135 exit 0
138 --debug)
139 echo "$progname: enabling shell trace mode"
140 set -x
143 --dry-run | -n)
144 run=:
147 --features)
148 echo "host: $host"
149 if test "$build_libtool_libs" = yes; then
150 echo "enable shared libraries"
151 else
152 echo "disable shared libraries"
154 if test "$build_old_libs" = yes; then
155 echo "enable static libraries"
156 else
157 echo "disable static libraries"
159 exit 0
162 --finish) mode="finish" ;;
164 --mode) prevopt="--mode" prev=mode ;;
165 --mode=*) mode="$optarg" ;;
167 --quiet | --silent)
168 show=:
171 -dlopen)
172 prevopt="-dlopen"
173 prev=execute_dlfiles
177 $echo "$modename: unrecognized option \`$arg'" 1>&2
178 $echo "$help" 1>&2
179 exit 1
183 nonopt="$arg"
184 break
186 esac
187 done
189 if test -n "$prevopt"; then
190 $echo "$modename: option \`$prevopt' requires an argument" 1>&2
191 $echo "$help" 1>&2
192 exit 1
195 if test -z "$show_help"; then
197 # Infer the operation mode.
198 if test -z "$mode"; then
199 case "$nonopt" in
200 *cc | *++ | gcc* | *-gcc*)
201 mode=link
202 for arg
204 case "$arg" in
206 mode=compile
207 break
209 esac
210 done
212 *db | *dbx | *strace | *truss)
213 mode=execute
215 *install*|cp|mv)
216 mode=install
218 *rm)
219 mode=uninstall
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
229 else
230 $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2
234 esac
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
240 $echo "$help" 1>&2
241 exit 1
244 # Change the help message to a mode-specific one.
245 generic_help="$help"
246 help="Try \`$modename --help --mode=$mode' for more information."
248 # These modes are in order of execution frequency so that they run quickly.
249 case "$mode" in
250 # libtool compile mode
251 compile)
252 modename="$modename: compile"
253 # Get the compilation command and the source file.
254 base_compile=
255 lastarg=
256 srcfile="$nonopt"
257 suppress_output=
259 for arg
261 # Accept any command-line options.
262 case "$arg" in
264 $echo "$modename: you cannot specify the output filename with \`-o'" 1>&2
265 $echo "$help" 1>&2
266 exit 1
269 -static)
270 build_old_libs=yes
271 continue
273 esac
275 # Accept the current argument as the source file.
276 lastarg="$srcfile"
277 srcfile="$arg"
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.
289 case "$lastarg" in
290 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
291 lastarg="\"$lastarg\""
293 esac
295 # Add the previous argument to base_compile.
296 if test -z "$base_compile"; then
297 base_compile="$lastarg"
298 else
299 base_compile="$base_compile $lastarg"
301 done
303 # Get the name of the library object.
304 libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
306 # Recognize several different file suffixes.
307 xform='[cCFSfms]'
308 case "$libobj" in
309 *.ada) xform=ada ;;
310 *.adb) xform=adb ;;
311 *.ads) xform=ads ;;
312 *.asm) xform=asm ;;
313 *.c++) xform=c++ ;;
314 *.cc) xform=cc ;;
315 *.cpp) xform=cpp ;;
316 *.cxx) xform=cxx ;;
317 *.f90) xform=f90 ;;
318 *.for) xform=for ;;
319 esac
321 libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`
323 case "$libobj" in
324 *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
326 $echo "$modename: cannot determine name of library object from \`$srcfile'" 1>&2
327 exit 1
329 esac
331 if test -z "$base_compile"; then
332 $echo "$modename: you must specify a compilation command" 1>&2
333 $echo "$help" 1>&2
334 exit 1
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
341 else
342 $run $rm $libobj
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 :
358 else
359 test -n "$obj" && $run $rm $obj
360 exit 1
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
367 exit $?
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 :
383 else
384 $run $rm $obj $libobj
385 exit 1
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 $?
396 exit 0
399 # libtool link mode
400 link)
401 modename="$modename: link"
402 CC="$nonopt"
403 allow_undefined=yes
404 compile_command="$CC"
405 finalize_command="$CC"
407 compile_shlibpath=
408 finalize_shlibpath=
409 convenience=
410 old_convenience=
411 deplibs=
412 dlfiles=
413 dlprefiles=
414 export_dynamic=no
415 generated=
416 hardcode_libdirs=
417 libobjs=
418 link_against_libtool_libs=
419 ltlibs=
420 objs=
421 prev=
422 prevarg=
423 release=
424 rpath=
425 perm_rpath=
426 temp_rpath=
427 vinfo=
429 # We need to know -static, to get the right output filenames.
430 for arg
432 case "$arg" in
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
438 build_old_libs=yes
439 break
441 esac
442 done
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
449 arg="$1"
450 shift
452 # If the previous option needs an argument, assign it.
453 if test -n "$prev"; then
454 case "$prev" in
455 output)
456 compile_command="$compile_command @OUTPUT@"
457 finalize_command="$finalize_command @OUTPUT@"
459 esac
461 case "$prev" in
462 dlfiles|dlprefiles)
463 case "$arg" in
464 *.la | *.lo) ;; # We handle these cases below.
466 dlprefiles="$dlprefiles $arg"
467 test "$prev" = dlfiles && dlfiles="$dlfiles $arg"
468 prev=
470 esac
472 release)
473 release="-$arg"
474 prev=
475 continue
477 rpath)
478 rpath="$rpath $arg"
479 prev=
480 continue
483 eval "$prev=\"\$arg\""
484 prev=
485 continue
487 esac
490 prevarg="$arg"
492 case "$arg" in
493 -all-static)
494 if test -n "$link_static_flag"; then
495 compile_command="$compile_command $link_static_flag"
496 finalize_command="$finalize_command $link_static_flag"
498 continue
501 -allow-undefined)
502 # FIXME: remove this flag sometime in the future.
503 $echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2
504 continue
507 -dlopen)
508 prev=dlfiles
509 continue
512 -dlpreopen)
513 prev=dlprefiles
514 continue
517 -export-dynamic)
518 if test "$export_dynamic" != yes; then
519 export_dynamic=yes
520 if test -n "$export_dynamic_flag_spec"; then
521 eval arg=\"$export_dynamic_flag_spec\"
522 else
523 arg=
526 # Add the symbol object into the linking commands.
527 compile_command="$compile_command @SYMFILE@"
528 finalize_command="$finalize_command @SYMFILE@"
532 -L*)
533 dir=`$echo "X$arg" | $Xsed -e 's%^-L\(.*\)$%\1%'`
534 case "$dir" in
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
540 exit 1
542 esac
543 deplibs="$deplibs $arg"
546 -l*) deplibs="$deplibs $arg" ;;
548 -no-undefined)
549 allow_undefined=no
550 continue
553 -o) prev=output ;;
555 -release)
556 prev=release
557 continue
560 -rpath)
561 prev=rpath
562 continue
565 -static)
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"
571 continue
574 -version-info)
575 prev=vinfo
576 continue
579 # Some other compiler flag.
580 -* | +*)
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"`
584 case "$arg" in
585 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
586 arg="\"$arg\""
588 esac
591 *.o | *.obj | *.a | *.lib)
592 # A standard object.
593 objs="$objs $arg"
596 *.lo)
597 # A library object.
598 if test "$prev" = dlfiles; then
599 dlfiles="$dlfiles $arg"
600 if test "$build_libtool_libs" = yes; then
601 prev=
602 continue
603 else
604 # If libtool objects are unsupported, then we need to preload.
605 prev=dlprefiles
609 if test "$prev" = dlprefiles; then
610 # Preload the old-style object.
611 dlprefiles="$dlprefiles "`$echo "X$arg" | $Xsed -e "$lo2o"`
612 prev=
614 libobjs="$libobjs $arg"
617 *.la)
618 # A libtool-controlled library.
620 dlname=
621 libdir=
622 library_names=
623 old_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 :
627 else
628 $echo "$modename: \`$arg' is not a valid libtool archive" 1>&2
629 exit 1
632 # If there is no directory component, then add one.
633 case "$arg" in
634 */* | *\\*) . $arg ;;
635 *) . ./$arg ;;
636 esac
638 # Get the name of the library we link against.
639 linklib=
640 for l in $old_library $library_names; do
641 linklib="$l"
642 done
644 if test -z "$linklib"; then
645 $echo "$modename: cannot find name of link library for \`$arg'" 1>&2
646 exit 1
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
653 dir="$objdir"
654 else
655 dir="$dir/$objdir"
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"
664 continue
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.
672 prev=dlprefiles
673 else
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"
678 prev=
679 continue
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"
689 else
690 dlprefiles="$dlprefiles $dir/$linklib"
692 prev=
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
700 *" $dir "*) ;;
701 *) temp_rpath="$temp_rpath $dir" ;;
702 esac
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@"
712 else
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"
720 esac
721 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
734 *" $libdir "*) ;;
735 *) perm_rpath="$perm_rpath $libdir" ;;
736 esac
740 lib_linked=yes
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 case "$host" in
747 *-*-sunos*)
748 compile_shlibpath="$compile_shlibpath$dir:"
750 esac
751 compile_command="$compile_command -L$dir -l$name"
752 elif test "$hardcode_shlibpath_var" = no; then
753 compile_shlibpath="$compile_shlibpath$dir:"
754 compile_command="$compile_command -l$name"
755 else
756 lib_linked=no
760 relink)
761 # We need an absolute path.
762 case "$dir" in
763 /* | [A-Za-z]:[/\\]*) ;;
765 absdir=`cd "$dir" && pwd`
766 if test -z "$absdir"; then
767 $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2
768 exit 1
770 dir="$absdir"
772 esac
774 if test "$hardcode_direct" = yes; then
775 compile_command="$compile_command $dir/$linklib"
776 elif test "$hardcode_minus_L" = yes; then
777 compile_command="$compile_command -L$dir -l$name"
778 elif test "$hardcode_shlibpath_var" = yes; then
779 compile_shlibpath="$compile_shlibpath$dir:"
780 compile_command="$compile_command -l$name"
781 else
782 lib_linked=no
787 lib_linked=no
789 esac
791 if test "$lib_linked" != yes; then
792 $echo "$modename: configuration error: unsupported hardcode properties"
793 exit 1
796 # Finalize command for both is simple: just hardcode it.
797 if test "$hardcode_direct" = yes; then
798 finalize_command="$finalize_command $libdir/$linklib"
799 elif test "$hardcode_minus_L" = yes; then
800 finalize_command="$finalize_command -L$libdir -l$name"
801 elif test "$hardcode_shlibpath_var" = yes; then
802 finalize_shlibpath="$finalize_shlibpath$libdir:"
803 finalize_command="$finalize_command -l$name"
804 else
805 # We cannot seem to hardcode it, guess we'll fake it.
806 finalize_command="$finalize_command -L$libdir -l$name"
808 else
809 # Transform directly to old archives if we don't build new libraries.
810 if test -n "$pic_flag" && test -z "$old_library"; then
811 $echo "$modename: cannot find static library for \`$arg'" 1>&2
812 exit 1
815 # Here we assume that one of hardcode_direct or hardcode_minus_L
816 # is not unsupported. This is valid on all known static and
817 # shared platforms.
818 if test "$hardcode_direct" != unsupported; then
819 test -n "$old_library" && linklib="$old_library"
820 compile_command="$compile_command $dir/$linklib"
821 finalize_command="$finalize_command $dir/$linklib"
822 else
823 compile_command="$compile_command -L$dir -l$name"
824 finalize_command="$finalize_command -L$dir -l$name"
828 # Add in any libraries that this one depends upon.
829 compile_command="$compile_command$dependency_libs"
830 finalize_command="$finalize_command$dependency_libs"
831 continue
834 # Some other compiler argument.
836 # Unknown arguments in both finalize_command and compile_command need
837 # to be aesthetically quoted because they are evaled later.
838 arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
839 case "$arg" in
840 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
841 arg="\"$arg\""
843 esac
845 esac
847 # Now actually substitute the argument into the commands.
848 if test -n "$arg"; then
849 compile_command="$compile_command $arg"
850 finalize_command="$finalize_command $arg"
852 done
854 if test -n "$prev"; then
855 $echo "$modename: the \`$prevarg' option requires an argument" 1>&2
856 $echo "$help" 1>&2
857 exit 1
860 oldlibs=
861 case "$output" in
863 $echo "$modename: you must specify an output file" 1>&2
864 $echo "$help" 1>&2
865 exit 1
868 */* | *\\*)
869 $echo "$modename: output file \`$output' must have no directory components" 1>&2
870 $echo "$help" 1>&2
871 exit 1
874 *.a | *.lib)
875 if test -n "$link_against_libtool_libs"; then
876 $echo "$modename: error: cannot link libtool libraries into archives" 1>&2
877 exit 1
880 if test -n "$deplibs"; then
881 $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2
884 if test -n "$dlfiles$dlprefiles"; then
885 $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2
888 if test -n "$rpath"; then
889 $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2
892 if test -n "$vinfo"; then
893 $echo "$modename: warning: \`-version-info' is ignored for archives" 1>&2
896 if test -n "$release"; then
897 $echo "$modename: warning: \`-release' is ignored for archives" 1>&2
900 # Now set the variables for building old libraries.
901 build_libtool_libs=no
902 oldlibs="$output"
905 *.la)
906 # Make sure we only generate libraries of the form `libNAME.la'.
907 case "$output" in
908 lib*) ;;
910 $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2
911 $echo "$help" 1>&2
912 exit 1
914 esac
916 name=`$echo "X$output" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
917 eval libname=\"$libname_spec\"
919 # All the library-specific variables (install_libdir is set above).
920 library_names=
921 old_library=
922 dlname=
924 if test -n "$objs"; then
925 $echo "$modename: cannot build libtool library \`$output' from non-libtool objects:$objs" 2>&1
926 exit 1
929 # How the heck are we supposed to write a wrapper for a shared library?
930 if test -n "$link_against_libtool_libs"; then
931 $echo "$modename: error: cannot link shared libraries into libtool libraries" 1>&2
932 exit 1
935 if test -n "$dlfiles$dlprefiles"; then
936 $echo "$modename: warning: \`-dlopen' is ignored for libtool libraries" 1>&2
939 set dummy $rpath
940 if test $# -gt 2; then
941 $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2
943 install_libdir="$2"
945 # Now set the variables for building old libraries.
946 oldlibs="$objdir/$libname.$libext"
947 if test -z "$rpath"; then
948 # Building a libtool convenience library.
949 oldlibs="$objdir/$libname.al $oldlibs"
950 build_libtool_libs=convenience
952 if test -n "$vinfo"; then
953 $echo "$modename: warning: \`-version-info' is ignored for convenience libraries" 1>&2
956 if test -n "$release"; then
957 $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2
959 else
961 # Parse the version information argument.
962 IFS="${IFS= }"; save_ifs="$IFS"; IFS=':'
963 set dummy $vinfo 0 0 0
964 IFS="$save_ifs"
966 if test -n "$8"; then
967 $echo "$modename: too many parameters to \`-version-info'" 1>&2
968 $echo "$help" 1>&2
969 exit 1
972 current="$2"
973 revision="$3"
974 age="$4"
976 # Check that each of the things are valid numbers.
977 case "$current" in
978 0 | [1-9] | [1-9][0-9]*) ;;
980 $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2
981 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
982 exit 1
984 esac
986 case "$revision" in
987 0 | [1-9] | [1-9][0-9]*) ;;
989 $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2
990 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
991 exit 1
993 esac
995 case "$age" in
996 0 | [1-9] | [1-9][0-9]*) ;;
998 $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2
999 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
1000 exit 1
1002 esac
1004 if test $age -gt $current; then
1005 $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
1006 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
1007 exit 1
1010 # Calculate the version variables.
1011 major=
1012 versuffix=
1013 verstring=
1014 case "$version_type" in
1015 none) ;;
1017 linux)
1018 major=.`expr $current - $age`
1019 versuffix="$major.$age.$revision"
1022 osf)
1023 major=`expr $current - $age`
1024 versuffix=".$current.$age.$revision"
1025 verstring="$current.$age.$revision"
1027 # Add in all the interfaces that we are compatible with.
1028 loop=$age
1029 while test $loop != 0; do
1030 iface=`expr $current - $loop`
1031 loop=`expr $loop - 1`
1032 verstring="$verstring:${iface}.0"
1033 done
1035 # Make executables depend on our current version.
1036 verstring="$verstring:${current}.0"
1039 sunos)
1040 major=".$current"
1041 versuffix=".$current.$revision"
1044 windows)
1045 # Like Linux, but with '-' rather than '.', since we only
1046 # want one extension on Windows 95.
1047 major=`expr $current - $age`
1048 versuffix="-$major-$age-$revision"
1052 $echo "$modename: unknown library version type \`$version_type'" 1>&2
1053 echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2
1054 exit 1
1056 esac
1058 # Clear the version info if we defaulted, and they specified a release.
1059 if test -z "$vinfo" && test -n "$release"; then
1060 major=
1061 versuffix=
1062 verstring="0.0"
1063 case "$host" in
1064 *-*-sunos*)
1065 versuffix=".0.0"
1067 esac
1070 # Check to see if the archive will have undefined symbols.
1071 if test "$allow_undefined" = yes; then
1072 if test "$allow_undefined_flag" = unsupported; then
1073 $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2
1074 build_libtool_libs=no
1075 build_old_libs=yes
1077 else
1078 # Don't allow undefined symbols.
1079 allow_undefined_flag="$no_undefined_flag"
1082 # Add libc to deplibs on all systems.
1083 dependency_libs="$deplibs"
1084 deplibs="$deplibs -lc"
1087 # Create the output directory, or remove our outputs if we need to.
1088 if test -d $objdir; then
1089 $show "${rm}r $objdir/$output $objdir/$libname.* $objdir/${libname}${release}.*"
1090 $run ${rm}r $objdir/$output $objdir/$libname.* $objdir/${libname}${release}.*
1091 else
1092 $show "$mkdir $objdir"
1093 $run $mkdir $objdir
1094 status=$?
1095 if test $status -ne 0 && test ! -d $objdir; then
1096 exit $status
1100 if test "$build_libtool_libs" = yes; then
1101 # Get the real and link names of the library.
1102 eval library_names=\"$library_names_spec\"
1103 set dummy $library_names
1104 realname="$2"
1105 shift; shift
1107 if test -n "$soname_spec"; then
1108 eval soname=\"$soname_spec\"
1109 else
1110 soname="$realname"
1113 lib="$objdir/$realname"
1114 for link
1116 linknames="$linknames $link"
1117 done
1119 # Use standard objects if they are PIC.
1120 test -z "$pic_flag" && libobjs=`$echo "X$libobjs " | $Xsed -e "$los2o" -e 's/ $//g'`
1122 # Transform .lo files to .o files.
1123 test "$build_old_libs" = yes && oldobjs="$objs"`$echo "X$libobjs " | $Xsed -e 's/[^ ]*\.a //g' -e 's/[^ ]*\.lib //g' -e "$los2o" -e 's/ $//g'`
1125 if test -n "$whole_archive_flag_spec"; then
1126 if test -n "$convenience"; then
1127 eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
1129 else
1130 for xlib in $convenience; do
1131 # Extract the objects.
1132 xdir="$xlib"x
1133 generated="$generated $xdir"
1134 xlib=`echo "$xlib" | $Xsed -e 's%^.*/%%'`
1136 $show "${rm}r $xdir"
1137 $run ${rm}r "$xdir"
1138 $show "mkdir $xdir"
1139 $run mkdir "$xdir"
1140 status=$?
1141 if test $status -ne 0 && test ! -d "$xdir"; then
1142 exit $status
1144 $show "(cd $xdir && $AR x ../$xlib)"
1145 $run eval "(cd \$xdir && $AR x ../\$xlib)" || exit $?
1147 libobjs="$libobjs `echo $xdir/*`"
1148 done
1151 # Do each of the archive commands.
1152 eval cmds=\"$archive_cmds\"
1153 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
1154 for cmd in $cmds; do
1155 IFS="$save_ifs"
1156 $show "$cmd"
1157 $run eval "$cmd" || exit $?
1158 done
1159 IFS="$save_ifs"
1161 # Create links to the real library.
1162 for linkname in $linknames; do
1163 if test "$realname" != "$linkname"; then
1164 $show "(cd $objdir && $LN_S $realname $linkname)"
1165 $run eval '(cd $objdir && $LN_S $realname $linkname)' || exit $?
1167 done
1169 # If -export-dynamic was specified, set the dlname.
1170 if test "$export_dynamic" = yes; then
1171 # On all known operating systems, these are identical.
1172 dlname="$soname"
1177 *.lo | *.o | *.obj)
1178 if test -n "$link_against_libtool_libs"; then
1179 $echo "$modename: error: cannot link libtool libraries into objects" 1>&2
1180 exit 1
1183 if test -n "$deplibs"; then
1184 $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2
1187 if test -n "$dlfiles$dlprefiles"; then
1188 $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2
1191 if test -n "$rpath"; then
1192 $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2
1195 if test -n "$vinfo"; then
1196 $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2
1199 if test -n "$release"; then
1200 $echo "$modename: warning: \`-release' is ignored for objects" 1>&2
1203 case "$output" in
1204 *.lo)
1205 if test -n "$objs"; then
1206 $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2
1207 exit 1
1209 libobj="$output"
1210 obj=`$echo "X$output" | $Xsed -e "$lo2o"`
1213 libobj=
1214 obj="$output"
1216 esac
1218 # Delete the old objects.
1219 $run $rm $obj $libobj
1221 # 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'`
1224 output="$obj"
1225 eval cmds=\"$reload_cmds\"
1226 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
1227 for cmd in $cmds; do
1228 IFS="$save_ifs"
1229 $show "$cmd"
1230 $run eval "$cmd" || exit $?
1231 done
1232 IFS="$save_ifs"
1234 # Exit if we aren't doing a library object file.
1235 test -z "$libobj" && exit 0
1237 if test "$build_libtool_libs" != yes; then
1238 # Create an invalid libtool object if no PIC, so that we don't
1239 # accidentally link it into a program.
1240 $show "echo timestamp > $libobj"
1241 $run eval "echo timestamp > $libobj" || exit $?
1242 exit 0
1245 if test -n "$pic_flag"; then
1246 # Only do commands if we really have different PIC objects.
1247 reload_objs="$libobjs"
1248 output="$libobj"
1249 eval cmds=\"$reload_cmds\"
1250 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
1251 for cmd in $cmds; do
1252 IFS="$save_ifs"
1253 $show "$cmd"
1254 $run eval "$cmd" || exit $?
1255 done
1256 IFS="$save_ifs"
1257 else
1258 # Just create a symlink.
1259 $show "$LN_S $obj $libobj"
1260 $run $LN_S $obj $libobj || exit $?
1263 exit 0
1267 if test -n "$vinfo"; then
1268 $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2
1271 if test -n "$release"; then
1272 $echo "$modename: warning: \`-release' is ignored for programs" 1>&2
1275 if test -n "$rpath"; then
1276 # If the user specified any rpath flags, then add them.
1277 for libdir in $rpath; do
1278 if test -n "$hardcode_libdir_flag_spec"; then
1279 if test -n "$hardcode_libdir_separator"; then
1280 if test -z "$hardcode_libdirs"; then
1281 # Put the magic libdir with the hardcode flag.
1282 hardcode_libdirs="$libdir"
1283 libdir="@HARDCODE_LIBDIRS@"
1284 else
1285 # Just accumulate the unique libdirs.
1286 case "$hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator" in
1287 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
1290 hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
1292 esac
1293 libdir=
1297 if test -n "$libdir"; then
1298 eval flag=\"$hardcode_libdir_flag_spec\"
1300 compile_command="$compile_command $flag"
1301 finalize_command="$finalize_command $flag"
1303 elif test -n "$runpath_var"; then
1304 case "$perm_rpath " in
1305 *" $libdir "*) ;;
1306 *) perm_rpath="$perm_rpath $libdir" ;;
1307 esac
1309 done
1312 # Substitute the hardcoded libdirs into the compile commands.
1313 if test -n "$hardcode_libdir_separator"; then
1314 compile_command=`$echo "X$compile_command" | $Xsed -e "s%@HARDCODE_LIBDIRS@%$hardcode_libdirs%g"`
1315 finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@HARDCODE_LIBDIRS@%$hardcode_libdirs%g"`
1318 if test -n "$libobjs" && test "$build_old_libs" = yes; then
1319 # Transform all the library objects into standard objects.
1320 compile_command=`$echo "X$compile_command " | $Xsed -e "$los2o" -e 's/ $//'`
1321 finalize_command=`$echo "X$finalize_command " | $Xsed -e "$los2o" -e 's/ $//'`
1324 if test "$export_dynamic" = yes && test -n "$NM" && test -n "$global_symbol_pipe"; then
1325 dlsyms="${output}S.c"
1326 else
1327 dlsyms=
1330 if test -n "$dlsyms"; then
1331 # Add our own program objects to the preloaded list.
1332 dlprefiles=`$echo "X$objs$dlprefiles " | $Xsed -e "$los2o" -e 's/ $//'`
1334 # Discover the nlist of each of the dlfiles.
1335 nlist="$objdir/${output}.nm"
1337 if test -d $objdir; then
1338 $show "$rm $nlist ${nlist}T"
1339 $run $rm "$nlist" "${nlist}T"
1340 else
1341 $show "$mkdir $objdir"
1342 $run $mkdir $objdir
1343 status=$?
1344 if test $status -ne 0 && test ! -d $objdir; then
1345 exit $status
1349 for arg in $dlprefiles; do
1350 $show "extracting global C symbols from \`$arg'"
1351 $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
1352 done
1354 # Parse the name list into a source file.
1355 $show "creating $objdir/$dlsyms"
1356 if test -z "$run"; then
1357 # Make sure we at least have an empty file.
1358 test -f "$nlist" || : > "$nlist"
1360 # Try sorting and uniquifying the output.
1361 if sort "$nlist" | uniq > "$nlist"T; then
1362 mv -f "$nlist"T "$nlist"
1363 wcout=`wc "$nlist" 2>/dev/null`
1364 count=`echo "X$wcout" | $Xsed -e 's/^[ ]*\([0-9][0-9]*\).*$/\1/'`
1365 (test "$count" -ge 0) 2>/dev/null || count=-1
1366 else
1367 $rm "$nlist"T
1368 count=-1
1371 case "$dlsyms" in
1372 "") ;;
1373 *.c)
1374 $echo > "$objdir/$dlsyms" "\
1375 /* $dlsyms - symbol resolution table for \`$output' dlsym emulation. */
1376 /* Generated by $PROGRAM - GNU $PACKAGE $VERSION */
1378 #ifdef __cplusplus
1379 extern \"C\" {
1380 #endif
1382 /* Prevent the only kind of declaration conflicts we can make. */
1383 #define dld_preloaded_symbol_count some_other_symbol
1384 #define dld_preloaded_symbols some_other_symbol
1386 /* External symbol declarations for the compiler. */\
1389 if test -f "$nlist"; then
1390 sed -e 's/^.* \(.*\)$/extern char \1;/' < "$nlist" >> "$objdir/$dlsyms"
1391 else
1392 echo '/* NONE */' >> "$objdir/$dlsyms"
1395 $echo >> "$objdir/$dlsyms" "\
1397 #undef dld_preloaded_symbol_count
1398 #undef dld_preloaded_symbols
1400 #if defined (__STDC__) && __STDC__
1401 # define __ptr_t void *
1402 #else
1403 # define __ptr_t char *
1404 #endif
1406 /* The number of symbols in dld_preloaded_symbols, -1 if unsorted. */
1407 int dld_preloaded_symbol_count = $count;
1409 /* The mapping between symbol names and symbols. */
1410 struct {
1411 char *name;
1412 __ptr_t address;
1414 dld_preloaded_symbols[] =
1418 if test -f "$nlist"; then
1419 sed 's/^\(.*\) \(.*\)$/ {"\1", (__ptr_t) \&\2},/' < "$nlist" >> "$objdir/$dlsyms"
1422 $echo >> "$objdir/$dlsyms" "\
1423 {0, (__ptr_t) 0}
1426 #ifdef __cplusplus
1428 #endif\
1433 $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2
1434 exit 1
1436 esac
1439 # Now compile the dynamic symbol file.
1440 $show "(cd $objdir && $CC -c$no_builtin_flag \"$dlsyms\")"
1441 $run eval '(cd $objdir && $CC -c$no_builtin_flag "$dlsyms")' || exit $?
1443 # Transform the symbol file into the correct name.
1444 compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$objdir/${output}S.${objext}%"`
1445 finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$objdir/${output}S.${objext}%"`
1446 elif test "$export_dynamic" != yes; then
1447 test -n "$dlfiles$dlprefiles" && $echo "$modename: warning: \`-dlopen' and \`-dlpreopen' are ignored without \`-export-dynamic'" 1>&2
1448 else
1449 # We keep going just in case the user didn't refer to
1450 # dld_preloaded_symbols. The linker will fail if global_symbol_pipe
1451 # really was required.
1452 $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2
1454 # Nullify the symbol file.
1455 compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
1456 finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
1459 if test -z "$link_against_libtool_libs" || test "$build_libtool_libs" != yes; then
1460 # Replace the output file specification.
1461 compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
1462 finalize_command=`$echo "X$finalize_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
1464 # We have no uninstalled library dependencies, so finalize right now.
1465 $show "$compile_command"
1466 $run eval "$compile_command"
1467 exit $?
1470 # Replace the output file specification.
1471 compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$objdir/$output"'%g'`
1472 finalize_command=`$echo "X$finalize_command" | $Xsed -e 's%@OUTPUT@%'"$objdir/$output"'T%g'`
1474 # Create the binary in the object directory, then wrap it.
1475 if test ! -d $objdir; then
1476 $show "$mkdir $objdir"
1477 $run $mkdir $objdir
1478 status=$?
1479 if test $status -ne 0 && test ! -d $objdir; then
1480 exit $status
1484 if test -n "$shlibpath_var"; then
1485 # We should set the shlibpath_var
1486 rpath=
1487 for dir in $temp_rpath; do
1488 case "$dir" in
1489 /* | [A-Za-z]:[/\\]*)
1490 # Absolute path.
1491 rpath="$rpath$dir:"
1494 # Relative path: add a thisdir entry.
1495 rpath="$rpath\$thisdir/$dir:"
1497 esac
1498 done
1499 temp_rpath="$rpath"
1502 # Delete the old output file.
1503 $run $rm $output
1505 if test -n "$compile_shlibpath"; then
1506 compile_command="$shlibpath_var=\"$compile_shlibpath\$$shlibpath_var\" $compile_command"
1508 if test -n "$finalize_shlibpath"; then
1509 finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
1512 if test -n "$runpath_var" && test -n "$perm_rpath"; then
1513 # We should set the runpath_var.
1514 rpath=
1515 for dir in $perm_rpath; do
1516 rpath="$rpath$dir:"
1517 done
1518 compile_command="$runpath_var=\"$rpath\$$runpath_var\" $compile_command"
1519 finalize_command="$runpath_var=\"$rpath\$$runpath_var\" $finalize_command"
1522 if test "$hardcode_action" = relink; then
1523 # AGH! Flame the AIX and HP-UX people for me, will ya?
1524 $echo "$modename: warning: using a buggy system linker" 1>&2
1525 $echo "$modename: relinking will be required before \`$output' can be installed" 1>&2
1528 $show "$compile_command"
1529 $run eval "$compile_command" || exit $?
1531 # Now create the wrapper script.
1532 $show "creating $output"
1534 # Quote the finalize command for shipping.
1535 finalize_command=`$echo "X$finalize_command" | $Xsed -e "$sed_quote_subst"`
1537 # Quote $echo for shipping.
1538 qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"`
1540 # Only actually do things if our run command is non-null.
1541 if test -z "$run"; then
1542 $rm $output
1543 trap "$rm $output; exit 1" 1 2 15
1545 $echo > $output "\
1546 #! $SHELL
1548 # $output - temporary wrapper script for $objdir/$output
1549 # Generated by $PROGRAM - GNU $PACKAGE $VERSION
1551 # The $output program cannot be directly executed until all the libtool
1552 # libraries that it depends on are installed.
1554 # This wrapper script should never be moved out of \``pwd`'.
1555 # If it is, it will not operate correctly.
1557 # Sed substitution that helps us do robust quoting. It backslashifies
1558 # metacharacters that are still active within double-quoted strings.
1559 Xsed='sed -e s/^X//'
1560 sed_quote_subst='$sed_quote_subst'
1562 # The HP-UX ksh and POSIX shell print the target directory to stdout
1563 # if CDPATH is set.
1564 if test \"\${CDPATH+set}\" = set; then CDPATH=; export CDPATH; fi
1566 # This environment variable determines our operation mode.
1567 if test \"\$libtool_install_magic\" = \"$magic\"; then
1568 # install mode needs the following variables:
1569 link_against_libtool_libs='$link_against_libtool_libs'
1570 finalize_command=\"$finalize_command\"
1571 else
1572 # When we are sourced in execute mode, \$file and \$echo are already set.
1573 if test \"\$libtool_execute_magic\" != \"$magic\"; then
1574 echo=\"$qecho\"
1575 file=\"\$0\"
1576 # Make sure echo works.
1577 if test \"X\$1\" = X--no-reexec; then
1578 # Discard the --no-reexec flag, and continue.
1579 shift
1580 elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then
1581 # Yippee, \$echo works!
1583 else
1584 # Restart under the correct shell, and then maybe \$echo will work.
1585 exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"}
1589 $echo >> $output "\
1591 # Find the directory that this script lives in.
1592 thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
1593 test \"x\$thisdir\" = \"x\$file\" && thisdir=.
1595 # Follow symbolic links until we get to the real thisdir.
1596 file=\`ls -ld \"\$file\" | sed -n 's/.*-> //p'\`
1597 while test -n \"\$file\"; do
1598 destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`
1600 # If there was a directory component, then change thisdir.
1601 if test \"x\$destdir\" != \"x\$file\"; then
1602 case \"\$destdir\" in
1603 /* | [A-Za-z]:[/\\]*) thisdir=\"\$destdir\" ;;
1604 *) thisdir=\"\$thisdir/\$destdir\" ;;
1605 esac
1608 file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\`
1609 file=\`ls -ld \"\$thisdir/\$file\" | sed -n 's/.*-> //p'\`
1610 done
1612 # Try to get the absolute directory name.
1613 absdir=\`cd \"\$thisdir\" && pwd\`
1614 test -n \"\$absdir\" && thisdir=\"\$absdir\"
1616 progdir=\"\$thisdir/$objdir\"
1617 program='$output'
1619 if test -f \"\$progdir/\$program\"; then"
1621 # Export our shlibpath_var if we have one.
1622 if test -n "$shlibpath_var" && test -n "$temp_rpath"; then
1623 $echo >> $output "\
1624 # Add our own library path to $shlibpath_var
1625 $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
1627 # Some systems cannot cope with colon-terminated $shlibpath_var
1628 $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/:*\$//'\`
1630 export $shlibpath_var
1634 $echo >> $output "\
1635 if test \"\$libtool_execute_magic\" != \"$magic\"; then
1636 # Run the actual program with our arguments.
1638 # Export the path to the program.
1639 PATH=\"\$progdir:\$PATH\"
1640 export PATH
1642 exec \$program \${1+\"\$@\"}
1644 \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\"
1645 exit 1
1647 else
1648 # The program doesn't exist.
1649 \$echo \"\$0: error: \$progdir/\$program does not exist\" 1>&2
1650 \$echo \"This script is just a wrapper for \$program.\" 1>&2
1651 echo \"See the $PACKAGE documentation for more information.\" 1>&2
1652 exit 1
1656 chmod +x $output
1658 exit 0
1660 esac
1662 # See if we need to build an old-fashioned archive.
1663 for oldlib in $oldlibs; do
1665 if test "$build_libtool_libs" = convenience; then
1666 oldobjs="$libobjs"
1667 addlibs="$convenience"
1668 build_libtool_libs=no
1669 else
1670 oldobjs="$objs"`$echo "X$libobjs " | $Xsed -e 's/[^ ]*\.a //g' -e 's/[^ ]*\.lib //g' -e "$los2o" -e 's/ $//g'`
1671 addlibs="$old_convenience"
1674 # Add in members from convenience archives.
1675 for xlib in $addlibs; do
1676 # Extract the objects.
1677 xdir="$xlib"x
1678 generated="$generated $xdir"
1679 xlib=`echo "$xlib" | $Xsed -e 's%^.*/%%'`
1681 $show "${rm}r $xdir"
1682 $run ${rm}r "$xdir"
1683 $show "mkdir $xdir"
1684 $run mkdir "$xdir"
1685 status=$?
1686 if test $status -ne 0 && test ! -d "$xdir"; then
1687 exit $status
1689 $show "(cd $xdir && $AR x ../$xlib)"
1690 $run eval "(cd \$xdir && $AR x ../\$xlib)" || exit $?
1692 oldobjs="$oldobjs `echo $xdir/*`"
1693 done
1695 # Do each command in the archive commands.
1696 if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
1697 eval cmds=\"$old_archive_from_new_cmds\"
1698 else
1699 eval cmds=\"$old_archive_cmds\"
1701 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
1702 for cmd in $cmds; do
1703 IFS="$save_ifs"
1704 $show "$cmd"
1705 $run eval "$cmd" || exit $?
1706 done
1707 IFS="$save_ifs"
1708 done
1710 if test -n "$generated"; then
1711 $show "${rm}r$generated"
1712 $run ${rm}r$generated
1715 # Now create the libtool archive.
1716 case "$output" in
1717 *.la)
1718 old_library=
1719 test "$build_old_libs" = yes && old_library="$libname.$libext"
1720 $show "creating $output"
1722 # Only create the output if not a dry run.
1723 if test -z "$run"; then
1724 $echo > $output "\
1725 # $output - a libtool library file
1726 # Generated by $PROGRAM - GNU $PACKAGE $VERSION
1728 # The name that we can dlopen(3).
1729 dlname='$dlname'
1731 # Names of this library.
1732 library_names='$library_names'
1734 # The name of the static archive.
1735 old_library='$old_library'
1737 # Libraries that this one depends upon.
1738 dependency_libs='$dependency_libs'
1740 # Version information for $libname.
1741 current=$current
1742 age=$age
1743 revision=$revision
1745 # Directory that this library needs to be installed in:
1746 libdir='$install_libdir'\
1750 # Do a symbolic link so that the libtool archive can be found in
1751 # LD_LIBRARY_PATH before the program is installed.
1752 $show "(cd $objdir && $LN_S ../$output $output)"
1753 $run eval "(cd $objdir && $LN_S ../$output $output)" || exit $?
1755 esac
1756 exit 0
1759 # libtool install mode
1760 install)
1761 modename="$modename: install"
1763 # There may be an optional sh(1) argument at the beginning of
1764 # install_prog (especially on Windows NT).
1765 if test "$nonopt" = "$SHELL" || test "$nonopt" = "/bin/sh"; then
1766 # Aesthetically quote it.
1767 arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
1768 case "$arg" in
1769 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
1770 arg="\"$arg\""
1772 esac
1773 install_prog="$arg "
1774 arg="$1"
1775 shift
1776 else
1777 install_prog=
1778 arg="$nonopt"
1781 # The real first argument should be the name of the installation program.
1782 # Aesthetically quote it.
1783 arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
1784 case "$arg" in
1785 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
1786 arg="\"$arg\""
1788 esac
1789 install_prog="$install_prog$arg"
1791 # We need to accept at least all the BSD install flags.
1792 dest=
1793 files=
1794 opts=
1795 prev=
1796 install_type=
1797 isdir=no
1798 stripme=
1799 for arg
1801 if test -n "$dest"; then
1802 files="$files $dest"
1803 dest="$arg"
1804 continue
1807 case "$arg" in
1808 -d) isdir=yes ;;
1809 -f) prev="-f" ;;
1810 -g) prev="-g" ;;
1811 -m) prev="-m" ;;
1812 -o) prev="-o" ;;
1814 stripme=" -s"
1815 continue
1817 -*) ;;
1820 # If the previous option needed an argument, then skip it.
1821 if test -n "$prev"; then
1822 prev=
1823 else
1824 dest="$arg"
1825 continue
1828 esac
1830 # Aesthetically quote the argument.
1831 arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
1832 case "$arg" in
1833 *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
1834 arg="\"$arg\""
1836 esac
1837 install_prog="$install_prog $arg"
1838 done
1840 if test -z "$install_prog"; then
1841 $echo "$modename: you must specify an install program" 1>&2
1842 $echo "$help" 1>&2
1843 exit 1
1846 if test -n "$prev"; then
1847 $echo "$modename: the \`$prev' option requires an argument" 1>&2
1848 $echo "$help" 1>&2
1849 exit 1
1852 if test -z "$files"; then
1853 if test -z "$dest"; then
1854 $echo "$modename: no file or destination specified" 1>&2
1855 else
1856 $echo "$modename: you must specify a destination" 1>&2
1858 $echo "$help" 1>&2
1859 exit 1
1862 # Strip any trailing slash from the destination.
1863 dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`
1865 # Check to see that the destination is a directory.
1866 test -d "$dest" && isdir=yes
1867 if test "$isdir" = yes; then
1868 destdir="$dest"
1869 destname=
1870 else
1871 destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
1872 test "X$destdir" = "X$dest" && destdir=.
1873 destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`
1875 # Not a directory, so check to see that there is only one file specified.
1876 set dummy $files
1877 if test $# -gt 2; then
1878 $echo "$modename: \`$dest' is not a directory" 1>&2
1879 $echo "$help" 1>&2
1880 exit 1
1883 case "$destdir" in
1884 /* | [A-Za-z]:[/\\]*) ;;
1886 for file in $files; do
1887 case "$file" in
1888 *.lo) ;;
1890 $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2
1891 $echo "$help" 1>&2
1892 exit 1
1894 esac
1895 done
1897 esac
1899 # This variable tells wrapper scripts just to set variables rather
1900 # than running their programs.
1901 libtool_install_magic="$magic"
1903 staticlibs=
1904 future_libdirs=
1905 current_libdirs=
1906 for file in $files; do
1908 # Do each installation.
1909 case "$file" in
1910 *.a | *.lib)
1911 # Do the static libraries later.
1912 staticlibs="$staticlibs $file"
1915 *.la)
1916 # Check to see that this really is a libtool archive.
1917 if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
1918 else
1919 $echo "$modename: \`$file' is not a valid libtool archive" 1>&2
1920 $echo "$help" 1>&2
1921 exit 1
1924 library_names=
1925 old_library=
1926 # If there is no directory component, then add one.
1927 case "$file" in
1928 */* | *\\*) . $file ;;
1929 *) . ./$file ;;
1930 esac
1932 # Add the libdir to current_libdirs if it is the destination.
1933 if test "X$destdir" = "X$libdir"; then
1934 case "$current_libdirs " in
1935 *" $libdir "*) ;;
1936 *) current_libdirs="$current_libdirs $libdir" ;;
1937 esac
1938 else
1939 # Note the libdir as a future libdir.
1940 case "$future_libdirs " in
1941 *" $libdir "*) ;;
1942 *) future_libdirs="$future_libdirs $libdir" ;;
1943 esac
1946 dir="`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/"
1947 test "X$dir" = "X$file/" && dir=
1948 dir="$dir$objdir"
1950 # See the names of the shared library.
1951 set dummy $library_names
1952 if test -n "$2"; then
1953 realname="$2"
1954 shift
1955 shift
1957 # Install the shared library and build the symlinks.
1958 $show "$install_prog $dir/$realname $destdir/$realname"
1959 $run eval "$install_prog $dir/$realname $destdir/$realname" || exit $?
1960 test "X$dlname" = "X$realname" && dlname=
1962 if test $# -gt 0; then
1963 # Delete the old symlinks.
1964 rmcmd="$rm"
1965 for linkname
1967 if test "X$linkname" != "X$realname"; then
1968 rmcmd="$rmcmd $destdir/$linkname"
1970 done
1971 $show "$rmcmd"
1972 $run $rmcmd
1974 # ... and create new ones.
1975 for linkname
1977 if test "X$linkname" != "X$realname"; then
1978 test "X$dlname" = "X$linkname" && dlname=
1979 $show "(cd $destdir && $LN_S $realname $linkname)"
1980 $run eval "(cd $destdir && $LN_S $realname $linkname)"
1982 done
1985 if test -n "$dlname"; then
1986 # Install the dynamically-loadable library.
1987 $show "$install_prog $dir/$dlname $destdir/$dlname"
1988 $run eval "$install_prog $dir/$dlname $destdir/$dlname" || exit $?
1991 # Do each command in the postinstall commands.
1992 lib="$destdir/$realname"
1993 eval cmds=\"$postinstall_cmds\"
1994 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
1995 for cmd in $cmds; do
1996 IFS="$save_ifs"
1997 $show "$cmd"
1998 $run eval "$cmd" || exit $?
1999 done
2000 IFS="$save_ifs"
2003 # Install the pseudo-library for information purposes.
2004 name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
2005 $show "$install_prog $file $destdir/$name"
2006 $run eval "$install_prog $file $destdir/$name" || exit $?
2008 # Maybe install the static library, too.
2009 test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
2012 *.lo)
2013 # Install (i.e. copy) a libtool object.
2015 # Figure out destination file name, if it wasn't already specified.
2016 if test -n "$destname"; then
2017 destfile="$destdir/$destname"
2018 else
2019 destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
2020 destfile="$destdir/$destfile"
2023 # Deduce the name of the destination old-style object file.
2024 case "$destfile" in
2025 *.lo)
2026 staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"`
2028 *.o | *.obj)
2029 staticdest="$destfile"
2030 destfile=
2033 $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2
2034 $echo "$help" 1>&2
2035 exit 1
2037 esac
2039 # Install the libtool object if requested.
2040 if test -n "$destfile"; then
2041 $show "$install_prog $file $destfile"
2042 $run eval "$install_prog $file $destfile" || exit $?
2045 # Install the old object if enabled.
2046 if test "$build_old_libs" = yes; then
2047 # Deduce the name of the old-style object file.
2048 staticobj=`$echo "X$file" | $Xsed -e "$lo2o"`
2050 $show "$install_prog $staticobj $staticdest"
2051 $run eval "$install_prog \$staticobj \$staticdest" || exit $?
2053 exit 0
2057 # Figure out destination file name, if it wasn't already specified.
2058 if test -n "$destname"; then
2059 destfile="$destdir/$destname"
2060 else
2061 destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
2062 destfile="$destdir/$destfile"
2065 # Do a test to see if this is really a libtool program.
2066 if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
2067 link_against_libtool_libs=
2068 finalize_command=
2070 # If there is no directory component, then add one.
2071 case "$file" in
2072 */* | *\\*) . $file ;;
2073 *) . ./$file ;;
2074 esac
2076 # Check the variables that should have been set.
2077 if test -z "$link_against_libtool_libs" || test -z "$finalize_command"; then
2078 $echo "$modename: invalid libtool wrapper script \`$file'" 1>&2
2079 exit 1
2082 finalize=yes
2083 for lib in $link_against_libtool_libs; do
2084 # Check to see that each library is installed.
2085 libdir=
2086 if test -f "$lib"; then
2087 # If there is no directory component, then add one.
2088 case "$lib" in
2089 */* | *\\*) . $lib ;;
2090 *) . ./$lib ;;
2091 esac
2093 libfile="$libdir/`$echo "X$lib" | $Xsed -e 's%^.*/%%g'`"
2094 if test -n "$libdir" && test ! -f "$libfile"; then
2095 $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
2096 finalize=no
2098 done
2100 if test "$hardcode_action" = relink; then
2101 if test "$finalize" = yes; then
2102 $echo "$modename: warning: relinking \`$file' on behalf of your buggy system linker" 1>&2
2103 $show "$finalize_command"
2104 if $run eval "$finalize_command"; then :
2105 else
2106 $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
2107 continue
2109 file="$objdir/$file"T
2110 else
2111 $echo "$modename: warning: cannot relink \`$file' on behalf of your buggy system linker" 1>&2
2113 else
2114 # Install the binary that we compiled earlier.
2115 file=`$echo "X$file" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
2119 $show "$install_prog$stripme $file $destfile"
2120 $run eval "$install_prog\$stripme \$file \$destfile" || exit $?
2122 esac
2123 done
2125 for file in $staticlibs; do
2126 name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
2128 # Set up the ranlib parameters.
2129 oldlib="$destdir/$name"
2131 $show "$install_prog $file $oldlib"
2132 $run eval "$install_prog \$file \$oldlib" || exit $?
2134 # Do each command in the postinstall commands.
2135 eval cmds=\"$old_postinstall_cmds\"
2136 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
2137 for cmd in $cmds; do
2138 IFS="$save_ifs"
2139 $show "$cmd"
2140 $run eval "$cmd" || exit $?
2141 done
2142 IFS="$save_ifs"
2143 done
2145 if test -n "$future_libdirs"; then
2146 $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2
2149 if test -n "$current_libdirs"; then
2150 # Maybe just do a dry run.
2151 test -n "$run" && current_libdirs=" -n$current_libdirs"
2152 exec $SHELL $0 --finish$current_libdirs
2153 exit 1
2156 exit 0
2159 # libtool finish mode
2160 finish)
2161 modename="$modename: finish"
2162 libdirs="$nonopt"
2163 admincmds=
2165 if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
2166 for dir
2168 libdirs="$libdirs $dir"
2169 done
2171 for libdir in $libdirs; do
2172 if test -n "$finish_cmds"; then
2173 # Do each command in the finish commands.
2174 eval cmds=\"$finish_cmds\"
2175 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
2176 for cmd in $cmds; do
2177 IFS="$save_ifs"
2178 $show "$cmd"
2179 $run eval "$cmd" || admincmds="$admincmds
2180 $cmd"
2181 done
2182 IFS="$save_ifs"
2184 if test -n "$finish_eval"; then
2185 # Do the single finish_eval.
2186 eval cmds=\"$finish_eval\"
2187 $run eval "$cmds" || admincmds="$admincmds
2188 $cmds"
2190 done
2193 echo "----------------------------------------------------------------------"
2194 echo "Libraries have been installed in:"
2195 for libdir in $libdirs; do
2196 echo " $libdir"
2197 done
2198 echo
2199 echo "To link against installed libraries in a given directory, LIBDIR,"
2200 echo "you must use the \`-LLIBDIR' flag during linking."
2201 echo
2202 echo " You will also need to do at least one of the following:"
2203 if test -n "$shlibpath_var"; then
2204 echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
2205 echo " during execution"
2207 if test -n "$runpath_var"; then
2208 echo " - add LIBDIR to the \`$runpath_var' environment variable"
2209 echo " during linking"
2211 if test -n "$hardcode_libdir_flag_spec"; then
2212 libdir=LIBDIR
2213 eval flag=\"$hardcode_libdir_flag_spec\"
2215 echo " - use the \`$flag' linker flag"
2217 if test -n "$admincmds"; then
2218 echo " - have your system administrator run these commands:$admincmds"
2220 if test -f /etc/ld.so.conf; then
2221 echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
2223 echo
2224 echo "See any operating system documentation about shared libraries for"
2225 echo "more information, such as the ld(1) and ld.so(8) manual pages."
2226 echo "----------------------------------------------------------------------"
2227 exit 0
2230 # libtool execute mode
2231 execute)
2232 modename="$modename: execute"
2234 # The first argument is the command name.
2235 cmd="$nonopt"
2236 if test -z "$cmd"; then
2237 $echo "$modename: you must specify a COMMAND" 1>&2
2238 $echo "$help"
2239 exit 1
2242 # Handle -dlopen flags immediately.
2243 for file in $execute_dlfiles; do
2244 if test ! -f "$file"; then
2245 $echo "$modename: \`$file' is not a file" 1>&2
2246 $echo "$help" 1>&2
2247 exit 1
2250 dir=
2251 case "$file" in
2252 *.la)
2253 # Check to see that this really is a libtool archive.
2254 if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
2255 else
2256 $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
2257 $echo "$help" 1>&2
2258 exit 1
2261 # Read the libtool library.
2262 dlname=
2263 library_names=
2265 # If there is no directory component, then add one.
2266 case "$file" in
2267 */* | *\\*) . $file ;;
2268 *) . ./$file ;;
2269 esac
2271 # Skip this library if it cannot be dlopened.
2272 if test -z "$dlname"; then
2273 # Warn if it was a shared library.
2274 test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'"
2275 continue
2278 dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
2279 test "X$dir" = "X$file" && dir=.
2281 if test -f "$dir/$objdir/$dlname"; then
2282 dir="$dir/$objdir"
2283 else
2284 $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2
2285 exit 1
2289 *.lo)
2290 # Just add the directory containing the .lo file.
2291 dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
2292 test "X$dir" = "X$file" && dir=.
2296 $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2
2297 continue
2299 esac
2301 # Get the absolute pathname.
2302 absdir=`cd "$dir" && pwd`
2303 test -n "$absdir" && dir="$absdir"
2305 # Now add the directory to shlibpath_var.
2306 if eval "test -z \"\$$shlibpath_var\""; then
2307 eval "$shlibpath_var=\"\$dir\""
2308 else
2309 eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
2311 done
2313 # This variable tells wrapper scripts just to set shlibpath_var
2314 # rather than running their programs.
2315 libtool_execute_magic="$magic"
2317 # Check if any of the arguments is a wrapper script.
2318 args=
2319 for file
2321 case "$file" in
2322 -*) ;;
2324 # Do a test to see if this is really a libtool program.
2325 if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
2326 # If there is no directory component, then add one.
2327 case "$file" in
2328 */* | *\\*) . $file ;;
2329 *) . ./$file ;;
2330 esac
2332 # Transform arg to wrapped name.
2333 file="$progdir/$program"
2336 esac
2337 # Quote arguments (to preserve shell metacharacters).
2338 file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
2339 args="$args \"$file\""
2340 done
2342 if test -z "$run"; then
2343 # Export the shlibpath_var.
2344 eval "export $shlibpath_var"
2346 # Restore saved enviroment variables
2347 if test "${save_LC_ALL+set}" = set; then
2348 LC_ALL="$save_LC_ALL"; export LC_ALL
2350 if test "${save_LANG+set}" = set; then
2351 LANG="$save_LANG"; export LANG
2354 # Now actually exec the command.
2355 eval "exec \$cmd$args"
2357 $echo "$modename: cannot exec \$cmd$args"
2358 exit 1
2359 else
2360 # Display what would be done.
2361 eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\""
2362 $echo "export $shlibpath_var"
2363 $echo "$cmd$args"
2364 exit 0
2368 # libtool uninstall mode
2369 uninstall)
2370 modename="$modename: uninstall"
2371 rm="$nonopt"
2372 files=
2374 for arg
2376 case "$arg" in
2377 -*) rm="$rm $arg" ;;
2378 *) files="$files $arg" ;;
2379 esac
2380 done
2382 if test -z "$rm"; then
2383 $echo "$modename: you must specify an RM program" 1>&2
2384 $echo "$help" 1>&2
2385 exit 1
2388 for file in $files; do
2389 dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
2390 test "X$dir" = "X$file" && dir=.
2391 name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
2393 rmfiles="$file"
2395 case "$name" in
2396 *.la)
2397 # Possibly a libtool archive, so verify it.
2398 if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
2399 . $dir/$name
2401 # Delete the libtool libraries and symlinks.
2402 for n in $library_names; do
2403 rmfiles="$rmfiles $dir/$n"
2404 test "X$n" = "X$dlname" && dlname=
2405 done
2406 test -n "$dlname" && rmfiles="$rmfiles $dir/$dlname"
2407 test -n "$old_library" && rmfiles="$rmfiles $dir/$old_library"
2409 $show "$rm $rmfiles"
2410 $run $rm $rmfiles
2412 if test -n "$library_names"; then
2413 # Do each command in the postuninstall commands.
2414 eval cmds=\"$postuninstall_cmds\"
2415 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
2416 for cmd in $cmds; do
2417 IFS="$save_ifs"
2418 $show "$cmd"
2419 $run eval "$cmd"
2420 done
2421 IFS="$save_ifs"
2424 if test -n "$old_library"; then
2425 # Do each command in the old_postuninstall commands.
2426 eval cmds=\"$old_postuninstall_cmds\"
2427 IFS="${IFS= }"; save_ifs="$IFS"; IFS=';'
2428 for cmd in $cmds; do
2429 IFS="$save_ifs"
2430 $show "$cmd"
2431 $run eval "$cmd"
2432 done
2433 IFS="$save_ifs"
2436 # FIXME: should reinstall the best remaining shared library.
2440 *.lo)
2441 if test "$build_old_libs" = yes; then
2442 oldobj=`$echo "X$name" | $Xsed -e "$lo2o"`
2443 rmfiles="$rmfiles $dir/$oldobj"
2445 $show "$rm $rmfiles"
2446 $run $rm $rmfiles
2450 $show "$rm $rmfiles"
2451 $run $rm $rmfiles
2453 esac
2454 done
2455 exit 0
2459 $echo "$modename: you must specify a MODE" 1>&2
2460 $echo "$generic_help" 1>&2
2461 exit 1
2463 esac
2465 $echo "$modename: invalid operation mode \`$mode'" 1>&2
2466 $echo "$generic_help" 1>&2
2467 exit 1
2468 fi # test -z "$show_help"
2470 # We need to display help for each of the modes.
2471 case "$mode" in
2472 "") $echo \
2473 "Usage: $modename [OPTION]... [MODE-ARG]...
2475 Provide generalized library-building support services.
2477 --config show all configuration variables
2478 --debug enable verbose shell tracing
2479 -n, --dry-run display commands without modifying any files
2480 --features display basic configuration information and exit
2481 --finish same as \`--mode=finish'
2482 --help display this help message and exit
2483 --mode=MODE use operation mode MODE [default=inferred from MODE-ARGS]
2484 --quiet same as \`--silent'
2485 --silent don't print informational messages
2486 --version print version information
2488 MODE must be one of the following:
2490 compile compile a source file into a libtool object
2491 execute automatically set library path, then run a program
2492 finish complete the installation of libtool libraries
2493 install install libraries or executables
2494 link create a library or an executable
2495 uninstall remove libraries from an installed directory
2497 MODE-ARGS vary depending on the MODE. Try \`$modename --help --mode=MODE' for
2498 a more detailed description of MODE."
2499 exit 0
2502 compile)
2503 $echo \
2504 "Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
2506 Compile a source file into a libtool library object.
2508 This mode accepts the following additional options:
2510 -static always build a \`.o' file suitable for static linking
2512 COMPILE-COMMAND is a command to be used in creating a \`standard' object file
2513 from the given SOURCEFILE.
2515 The output file name is determined by removing the directory component from
2516 SOURCEFILE, then substituting the C source code suffix \`.c' with the
2517 library object suffix, \`.lo'."
2520 execute)
2521 $echo \
2522 "Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]...
2524 Automatically set library path, then run a program.
2526 This mode accepts the following additional options:
2528 -dlopen FILE add the directory containing FILE to the library path
2530 This mode sets the library path environment variable according to \`-dlopen'
2531 flags.
2533 If any of the ARGS are libtool executable wrappers, then they are translated
2534 into their corresponding uninstalled binary, and any of their required library
2535 directories are added to the library path.
2537 Then, COMMAND is executed, with ARGS as arguments."
2540 finish)
2541 $echo \
2542 "Usage: $modename [OPTION]... --mode=finish [LIBDIR]...
2544 Complete the installation of libtool libraries.
2546 Each LIBDIR is a directory that contains libtool libraries.
2548 The commands that this mode executes may require superuser privileges. Use
2549 the \`--dry-run' option if you just want to see what would be executed."
2552 install)
2553 $echo \
2554 "Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND...
2556 Install executables or libraries.
2558 INSTALL-COMMAND is the installation command. The first component should be
2559 either the \`install' or \`cp' program.
2561 The rest of the components are interpreted as arguments to that command (only
2562 BSD-compatible install options are recognized)."
2565 link)
2566 $echo \
2567 "Usage: $modename [OPTION]... --mode=link LINK-COMMAND...
2569 Link object files or libraries together to form another library, or to
2570 create an executable program.
2572 LINK-COMMAND is a command using the C compiler that you would use to create
2573 a program from several object files.
2575 The following components of LINK-COMMAND are treated specially:
2577 -all-static do not do any dynamic linking at all
2578 -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
2579 -dlpreopen FILE link in FILE and add its symbols to dld_preloaded_symbols
2580 -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
2581 -LLIBDIR search LIBDIR for required installed libraries
2582 -lNAME OUTPUT-FILE requires the installed library libNAME
2583 -no-undefined declare that a library does not refer to external symbols
2584 -o OUTPUT-FILE create OUTPUT-FILE from the specified objects
2585 -release RELEASE specify package release information
2586 -rpath LIBDIR the created library will eventually be installed in LIBDIR
2587 -static do not do any dynamic linking of libtool libraries
2588 -version-info CURRENT[:REVISION[:AGE]]
2589 specify library version info [each variable defaults to 0]
2591 All other options (arguments beginning with \`-') are ignored.
2593 Every other argument is treated as a filename. Files ending in \`.la' are
2594 treated as uninstalled libtool libraries, other files are standard or library
2595 object files.
2597 If the OUTPUT-FILE ends in \`.la', then a libtool library is created, only
2598 library objects (\`.lo' files) may be specified, and \`-rpath' is required.
2600 If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
2601 using \`ar' and \`ranlib', or on WIndows using \`lib'.
2603 If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
2604 is created, otherwise an executable program is created."
2607 uninstall)
2608 $echo
2609 "Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
2611 Remove libraries from an installation directory.
2613 RM is the name of the program to use to delete files associated with each FILE
2614 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
2615 to RM.
2617 If FILE is a libtool library, all the files associated with it are deleted.
2618 Otherwise, only FILE itself is deleted using RM."
2622 $echo "$modename: invalid operation mode \`$mode'" 1>&2
2623 $echo "$help" 1>&2
2624 exit 1
2626 esac
2628 echo
2629 $echo "Try \`$modename --help' for more information about other modes."
2631 exit 0
2633 # Local Variables:
2634 # mode:shell-script
2635 # sh-indentation:2
2636 # End: