1 # ltmain.sh - Provide generalized library-building support services.
2 # NOTE: Changing this file will not affect anything until you rerun configure.
4 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
5 # Free Software Foundation, Inc.
6 # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 # General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 # As a special exception to the GNU General Public License, if you
23 # distribute this file as part of a program that contains a
24 # configuration script generated by Autoconf, you may include it under
25 # the same distribution terms that you use for the rest of that program.
29 # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
30 # is ksh but when the shell is invoked as "sh" and the current value of
31 # the _XPG environment variable is not equal to 1 (one), the special
32 # positional parameter $0, within a function call, is the name of the
36 # The name of this program:
37 progname
=`echo "$progpath" | $SED $basename`
47 TIMESTAMP
=" (1.1220.2.235 2005/04/25 18:13:26)"
49 # See if we are running on zsh, and set the options which allow our
50 # commands through without removal of \ escapes.
51 if test -n "${ZSH_VERSION+set}" ; then
55 # Check that we have a working $echo.
56 if test "X$1" = X--no-reexec
; then
57 # Discard the --no-reexec flag, and continue.
59 elif test "X$1" = X--fallback-echo
; then
60 # Avoid inline document here, it may be left over
62 elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
63 # Yippee, $echo works!
66 # Restart under the correct shell, and then maybe $echo will work.
67 exec $SHELL "$progpath" --no-reexec ${1+"$@"}
70 if test "X$1" = X--fallback-echo
; then
71 # used as fallback echo
80 help="Try \`$progname --help' for more information."
81 magic
="%%%MAGIC variable%%%"
86 # Sed substitution that helps us do robust quoting. It backslashifies
87 # metacharacters that are still active within double-quoted strings.
88 Xsed
="${SED}"' -e 1s/^X//'
89 sed_quote_subst
='s/\([\\`\\"$\\\\]\)/\\\1/g'
90 # test EBCDIC or ASCII
91 case `echo A|tr A '\301'` in
92 A
) # EBCDIC based system
93 SP2NL
="tr '\100' '\n'"
94 NL2SP
="tr '\r\n' '\100\100'"
96 *) # Assume ASCII based system
97 SP2NL
="tr '\040' '\012'"
98 NL2SP
="tr '\015\012' '\040\040'"
103 # Only set LANG and LC_ALL to C if already set.
104 # These must not be set unconditionally because not all systems understand
105 # e.g. LANG=C (notably SCO).
106 # We save the old values to restore during execute mode.
107 if test "${LC_ALL+set}" = set; then
108 save_LC_ALL
="$LC_ALL"; LC_ALL
=C
; export LC_ALL
110 if test "${LANG+set}" = set; then
111 save_LANG
="$LANG"; LANG
=C
; export LANG
114 # Make sure IFS has a sensible default
119 if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
120 $echo "$modename: not configured to build any kind of library" 1>&2
121 $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2
134 lo2o
="s/\\.lo\$/.${objext}/"
135 o2lo
="s/\\.${objext}\$/.lo/"
136 quote_scanset
='[[~#^*{};<>?'"'"' ]'
138 #####################################
139 # Shell function definitions:
140 # This seems to be the best place for them
142 # func_win32_libid arg
143 # return the library type of file 'arg'
145 # Need a lot of goo to handle *both* DLLs and import libs
146 # Has to be a shell function in order to 'eat' the argument
147 # that is supplied when $file_magic_command is called.
150 win32_libid_type
="unknown"
151 win32_fileres
=`file -L $1 2>/dev/null`
152 case $win32_fileres in
153 *ar\ archive\ import\ library
*) # definitely import
154 win32_libid_type
="x86 archive import"
156 *ar\ archive
*) # could be an import, or static
157 if eval $OBJDUMP -f $1 |
$SED -e '10q' 2>/dev
/null | \
158 $EGREP -e 'file format pe-i386(.*architecture: i386)?' >/dev
/null
; then
159 win32_nmres
=`eval $NM -f posix -A $1 | \
160 sed -n -e '1,100{/ I /{x;/import/!{s/^/import/;h;p;};x;};}'`
161 if test "X$win32_nmres" = "Ximport" ; then
162 win32_libid_type
="x86 archive import"
164 win32_libid_type
="x86 archive static"
169 win32_libid_type
="x86 DLL"
171 *executable
*) # but shell scripts are "executable" too...
172 case $win32_fileres in
173 *MS\ Windows\ PE\ Intel
*)
174 win32_libid_type
="x86 DLL"
179 $echo $win32_libid_type
184 # Infer tagged configuration to use if any are available and
185 # if one wasn't chosen via the "--tag" command line option.
186 # Only attempt this if the compiler in the base compile
187 # command doesn't match the default compiler.
188 # arg is usually of the form 'gcc ...'
191 if test -n "$available_tags" && test -z "$tagname"; then
195 *$quote_scanset* |
*]* |
*\|
* |
*\
&* |
*\
(* |
*\
)* |
"")
199 CC_quoted
="$CC_quoted $arg"
202 # Blanks in the command may have been stripped by the calling shell,
203 # but not from the CC environment variable when configure was run.
204 " $CC "* |
"$CC "* |
" `$echo $CC` "* |
"`$echo $CC` "* |
" $CC_quoted"* |
"$CC_quoted "* |
" `$echo $CC_quoted` "* |
"`$echo $CC_quoted` "*) ;;
205 # Blanks at the start of $base_compile will cause this to fail
206 # if we don't check for them as well.
208 for z
in $available_tags; do
209 if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev
/null
; then
210 # Evaluate the configuration.
211 eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
214 # Double-quote args containing other shell metacharacters.
216 *$quote_scanset* |
*]* |
*\|
* |
*\
&* |
*\
(* |
*\
)* |
"")
220 CC_quoted
="$CC_quoted $arg"
223 " $CC "* |
"$CC "* |
" `$echo $CC` "* |
"`$echo $CC` "* |
" $CC_quoted"* |
"$CC_quoted "* |
" `$echo $CC_quoted` "* |
"`$echo $CC_quoted` "*)
224 # The compiler in the base compile command matches
225 # the one in the tagged configuration.
226 # Assume this is the tagged configuration we want.
233 # If $tagname still isn't set, then no tagged configuration
234 # was found and let the user know that the "--tag" command
235 # line option must be used.
236 if test -z "$tagname"; then
237 $echo "$modename: unable to infer tagged configuration"
238 $echo "$modename: specify a tag with \`--tag'" 1>&2
241 # $echo "$modename: using $tagname tagged configuration"
249 # func_extract_an_archive dir oldlib
250 func_extract_an_archive
()
252 f_ex_an_ar_dir
="$1"; shift
253 f_ex_an_ar_oldlib
="$1"
255 $show "(cd $f_ex_an_ar_dir && $AR x $f_ex_an_ar_oldlib)"
256 $run eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_oldlib)" ||
exit $?
257 if ($AR t
"$f_ex_an_ar_oldlib" |
sort |
sort -uc >/dev
/null
2>&1); then
260 $echo "$modename: ERROR: object name conflicts: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" 1>&2
265 # func_extract_archives gentop oldlib ...
266 func_extract_archives
()
268 my_gentop
="$1"; shift
276 $show "${rm}r $my_gentop"
277 $run ${rm}r
"$my_gentop"
278 $show "$mkdir $my_gentop"
279 $run $mkdir "$my_gentop"
281 if test "$my_status" -ne 0 && test ! -d "$my_gentop"; then
285 for my_xlib
in $my_oldlibs; do
286 # Extract the objects.
288 [\\/]* |
[A-Za-z
]:[\\/]*) my_xabs
="$my_xlib" ;;
289 *) my_xabs
=`pwd`"/$my_xlib" ;;
291 my_xlib
=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'`
292 my_xdir
="$my_gentop/$my_xlib"
294 $show "${rm}r $my_xdir"
295 $run ${rm}r
"$my_xdir"
296 $show "$mkdir $my_xdir"
297 $run $mkdir "$my_xdir"
299 if test "$status" -ne 0 && test ! -d "$my_xdir"; then
304 $show "Extracting $my_xabs"
305 # Do not bother doing anything if just a dry run
306 if test -z "$run"; then
307 darwin_orig_dir
=`pwd`
308 cd $my_xdir ||
exit $?
309 darwin_archive
=$my_xabs
311 darwin_base_archive
=`$echo "X$darwin_archive" | $Xsed -e 's%^.*/%%'`
312 darwin_arches
=`lipo -info "$darwin_archive" 2>/dev/null | $EGREP Architectures 2>/dev/null`
313 if test -n "$darwin_arches"; then
314 darwin_arches
=`echo "$darwin_arches" | $SED -e 's/.*are://'`
316 $show "$darwin_base_archive has multiple architectures $darwin_arches"
317 for darwin_arch
in $darwin_arches ; do
318 mkdir
-p "unfat-$$/${darwin_base_archive}-${darwin_arch}"
319 lipo
-thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}"
320 cd "unfat-$$/${darwin_base_archive}-${darwin_arch}"
321 func_extract_an_archive
"`pwd`" "${darwin_base_archive}"
323 $rm "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}"
324 done # $darwin_arches
325 ## Okay now we have a bunch of thin objects, gotta fatten them up :)
326 darwin_filelist
=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print| xargs basename | sort -u | $NL2SP`
329 for darwin_file
in $darwin_filelist; do
330 darwin_files
=`find unfat-$$ -name $darwin_file -print | $NL2SP`
331 lipo
-create -output "$darwin_file" $darwin_files
332 done # $darwin_filelist
334 cd "$darwin_orig_dir"
336 cd "$darwin_orig_dir"
337 func_extract_an_archive
"$my_xdir" "$my_xabs"
342 func_extract_an_archive
"$my_xdir" "$my_xabs"
345 my_oldobjs
="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
347 func_extract_archives_result
="$my_oldobjs"
349 # End of Shell function definitions
350 #####################################
353 eval std_shrext
=\"$shrext_cmds\"
355 # Parse our command line options once, thoroughly.
356 while test "$#" -gt 0
362 -*=*) optarg
=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
366 # If the previous option needs an argument, assign it.
367 if test -n "$prev"; then
370 execute_dlfiles
="$execute_dlfiles $arg"
374 preserve_args
="${preserve_args}=$arg"
376 # Check whether tagname contains only valid characters
379 $echo "$progname: invalid tag name: $tagname" 1>&2
386 # Don't test for the "default" C tag, as we know, it's there, but
387 # not specially marked.
390 if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "$progpath" > /dev
/null
; then
391 taglist
="$taglist $tagname"
392 # Evaluate the configuration.
393 eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`"
395 $echo "$progname: ignoring unknown tag $tagname" 1>&2
410 # Have we seen a non-optional argument yet?
417 $echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"
419 $echo "Copyright (C) 2005 Free Software Foundation, Inc."
420 $echo "This is free software; see the source for copying conditions. There is NO"
421 $echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
426 ${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $progpath
427 # Now print the configurations for the tags.
428 for tagname
in $taglist; do
429 ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath"
435 $echo "$progname: enabling shell trace mode"
437 preserve_args
="$preserve_args $arg"
446 if test "$build_libtool_libs" = yes; then
447 $echo "enable shared libraries"
449 $echo "disable shared libraries"
451 if test "$build_old_libs" = yes; then
452 $echo "enable static libraries"
454 $echo "disable static libraries"
459 --finish) mode
="finish" ;;
461 --mode) prevopt
="--mode" prev
=mode
;;
462 --mode=*) mode
="$optarg" ;;
464 --preserve-dup-deps) duplicate_deps
="yes" ;;
468 preserve_args
="$preserve_args $arg"
471 --tag) prevopt
="--tag" prev
=tag
;;
473 set tag
"$optarg" ${1+"$@"}
476 preserve_args
="$preserve_args --tag"
485 $echo "$modename: unrecognized option \`$arg'" 1>&2
497 if test -n "$prevopt"; then
498 $echo "$modename: option \`$prevopt' requires an argument" 1>&2
503 # If this variable is set in any of the actions, the command in it
504 # will be execed at the end. This prevents here-documents from being
505 # left over by shells.
508 if test -z "$show_help"; then
510 # Infer the operation mode.
511 if test -z "$mode"; then
512 $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2
513 $echo "*** Future versions of Libtool will require --mode=MODE be specified." 1>&2
515 *cc | cc
* |
*++ | gcc
* |
*-gcc* | g
++* | xlc
*)
527 *db |
*dbx |
*strace |
*truss
)
537 # If we have no mode, but dlfiles were specified, then do execute mode.
538 test -n "$execute_dlfiles" && mode
=execute
540 # Just use the default operation mode.
541 if test -z "$mode"; then
542 if test -n "$nonopt"; then
543 $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2
545 $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2
552 # Only execute mode is allowed to have -dlopen flags.
553 if test -n "$execute_dlfiles" && test "$mode" != execute
; then
554 $echo "$modename: unrecognized option \`-dlopen'" 1>&2
559 # Change the help message to a mode-specific one.
561 help="Try \`$modename --help --mode=$mode' for more information."
563 # These modes are in order of execution frequency so that they run quickly.
565 # libtool compile mode
567 modename
="$modename: compile"
568 # Get the compilation command and the source file.
570 srcfile
="$nonopt" # always keep a non-empty value in "srcfile"
581 # do not "continue". Instead, add this to base_compile
593 # Accept any command-line options.
596 if test -n "$libobj" ; then
597 $echo "$modename: you cannot specify \`-o' more than once" 1>&2
604 -static |
-prefer-pic |
-prefer-non-pic)
615 arg_mode
=arg
# the next one goes into the "base_compile" arg list
616 continue # The current "srcfile" will either be retained or
617 ;; # replaced later. I would guess that would be a bug.
620 args
=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
622 save_ifs
="$IFS"; IFS
=','
626 # Double-quote args containing other shell metacharacters.
627 # Many Bourne shells cannot handle close brackets correctly
628 # in scan sets, so we specify it separately.
630 *$quote_scanset* |
*]* |
*\|
* |
*\
&* |
*\
(* |
*\
)* |
"")
634 lastarg
="$lastarg $arg"
637 lastarg
=`$echo "X$lastarg" | $Xsed -e "s/^ //"`
639 # Add the arguments to base_compile.
640 base_compile
="$base_compile $lastarg"
645 # Accept the current argument as the source file.
646 # The previous "srcfile" becomes the current argument.
653 esac # case $arg_mode
655 # Aesthetically quote the previous argument.
656 lastarg
=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`
659 # Double-quote args containing other shell metacharacters.
660 # Many Bourne shells cannot handle close brackets correctly
661 # in scan sets, and some SunOS ksh mistreat backslash-escaping
662 # in scan sets (worked around with variable expansion),
663 # and furthermore cannot handle '|' '&' '(' ')' in scan sets
664 # at all, so we specify them separately.
665 *$quote_scanset* |
*]* |
*\|
* |
*\
&* |
*\
(* |
*\
)* |
"")
666 lastarg
="\"$lastarg\""
670 base_compile
="$base_compile $lastarg"
675 $echo "$modename: you must specify an argument for -Xcompile"
679 $echo "$modename: you must specify a target with \`-o'" 1>&2
683 # Get the name of the library object.
684 [ -z "$libobj" ] && libobj
=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
688 # Recognize several different file suffixes.
689 # If the user specifies -o file.o, it is replaced with file.lo
699 *.class
) xform
=class
;;
704 *.java
) xform
=java
;;
707 libobj
=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`
710 *.lo
) obj
=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
712 $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2
717 func_infer_tag
$base_compile
719 for arg
in $later; do
738 qlibobj
=`$echo "X$libobj" | $Xsed -e "$sed_quote_subst"`
740 *$quote_scanset* |
*]* |
*\|
* |
*\
&* |
*\
(* |
*\
)* |
"")
741 qlibobj
="\"$qlibobj\"" ;;
743 if test "X$libobj" != "X$qlibobj"; then
744 $echo "$modename: libobj name \`$libobj' may not contain shell special characters."
747 objname
=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
748 xdir
=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
749 if test "X$xdir" = "X$obj"; then
754 lobj
=${xdir}$objdir/$objname
756 if test -z "$base_compile"; then
757 $echo "$modename: you must specify a compilation command" 1>&2
762 # Delete any leftover library objects.
763 if test "$build_old_libs" = yes; then
764 removelist
="$obj $lobj $libobj ${libobj}T"
766 removelist
="$lobj $libobj ${libobj}T"
770 trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15
772 # On Cygwin there's no "real" PIC flag so we must build both object types
774 cygwin
* | mingw
* | pw32
* | os2
*)
778 if test "$pic_mode" = no
&& test "$deplibs_check_method" != pass_all
; then
779 # non-PIC code in shared libraries is not supported
783 # Calculate the filename of the output object if compiler does
784 # not support -o with -c
785 if test "$compiler_c_o" = no
; then
786 output_obj
=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.
${objext}
787 lockfile
="$output_obj.lock"
788 removelist
="$removelist $output_obj $lockfile"
789 trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15
796 # Lock this critical section if it is needed
797 # We use this script file to make the link, it avoids creating a new file
798 if test "$need_locks" = yes; then
799 until $run ln "$progpath" "$lockfile" 2>/dev
/null
; do
800 $show "Waiting for $lockfile to be removed"
803 elif test "$need_locks" = warn
; then
804 if test -f "$lockfile"; then
806 *** ERROR, $lockfile exists and contains:
807 `cat $lockfile 2>/dev/null`
809 This indicates that another process is trying to use the same
810 temporary object file, and libtool could not work around it because
811 your compiler does not support \`-c' and \`-o' together. If you
812 repeat this compilation, it may succeed, by chance, but you had better
813 avoid parallel builds (make -j) in this platform, or get a better
819 $echo "$srcfile" > "$lockfile"
822 if test -n "$fix_srcfile_path"; then
823 eval srcfile
=\"$fix_srcfile_path\"
825 qsrcfile
=`$echo "X$srcfile" | $Xsed -e "$sed_quote_subst"`
827 *$quote_scanset* |
*]* |
*\|
* |
*\
&* |
*\
(* |
*\
)* |
"")
828 qsrcfile
="\"$qsrcfile\"" ;;
831 $run $rm "$libobj" "${libobj}T"
833 # Create a libtool object file (analogous to a ".la" file),
834 # but don't create it if we're doing a dry run.
835 test -z "$run" && cat > ${libobj}T
<<EOF
836 # $libobj - a libtool object file
837 # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
839 # Please DO NOT delete this file!
840 # It is necessary for linking the library.
842 # Name of the PIC object.
845 # Only build a PIC object if we are building libtool libraries.
846 if test "$build_libtool_libs" = yes; then
847 # Without this assignment, base_compile gets emptied.
848 fbsd_hideous_sh_bug
=$base_compile
850 if test "$pic_mode" != no
; then
851 command="$base_compile $qsrcfile $pic_flag"
853 # Don't build PIC code
854 command="$base_compile $qsrcfile"
857 if test ! -d "${xdir}$objdir"; then
858 $show "$mkdir ${xdir}$objdir"
859 $run $mkdir ${xdir}$objdir
861 if test "$status" -ne 0 && test ! -d "${xdir}$objdir"; then
866 if test -z "$output_obj"; then
867 # Place PIC objects in $objdir
868 command="$command -o $lobj"
871 $run $rm "$lobj" "$output_obj"
874 if $run eval "$command"; then :
876 test -n "$output_obj" && $run $rm $removelist
880 if test "$need_locks" = warn
&&
881 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
883 *** ERROR, $lockfile contains:
884 `cat $lockfile 2>/dev/null`
886 but it should contain:
889 This indicates that another process is trying to use the same
890 temporary object file, and libtool could not work around it because
891 your compiler does not support \`-c' and \`-o' together. If you
892 repeat this compilation, it may succeed, by chance, but you had better
893 avoid parallel builds (make -j) in this platform, or get a better
900 # Just move the object if needed, then go on to compile the next one
901 if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then
902 $show "$mv $output_obj $lobj"
903 if $run $mv $output_obj $lobj; then :
911 # Append the name of the PIC object to the libtool object file.
912 test -z "$run" && cat >> ${libobj}T
<<EOF
913 pic_object='$objdir/$objname'
917 # Allow error messages only from the first compilation.
918 if test "$suppress_opt" = yes; then
919 suppress_output
=' >/dev/null 2>&1'
922 # No PIC object so indicate it doesn't exist in the libtool
924 test -z "$run" && cat >> ${libobj}T
<<EOF
930 # Only build a position-dependent object if we build old libraries.
931 if test "$build_old_libs" = yes; then
932 if test "$pic_mode" != yes; then
933 # Don't build PIC code
934 command="$base_compile $qsrcfile"
936 command="$base_compile $qsrcfile $pic_flag"
938 if test "$compiler_c_o" = yes; then
939 command="$command -o $obj"
942 # Suppress compiler output if we already did a PIC compilation.
943 command="$command$suppress_output"
944 $run $rm "$obj" "$output_obj"
946 if $run eval "$command"; then :
952 if test "$need_locks" = warn
&&
953 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
955 *** ERROR, $lockfile contains:
956 `cat $lockfile 2>/dev/null`
958 but it should contain:
961 This indicates that another process is trying to use the same
962 temporary object file, and libtool could not work around it because
963 your compiler does not support \`-c' and \`-o' together. If you
964 repeat this compilation, it may succeed, by chance, but you had better
965 avoid parallel builds (make -j) in this platform, or get a better
972 # Just move the object if needed
973 if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then
974 $show "$mv $output_obj $obj"
975 if $run $mv $output_obj $obj; then :
983 # Append the name of the non-PIC object the libtool object file.
984 # Only append if the libtool object file exists.
985 test -z "$run" && cat >> ${libobj}T
<<EOF
986 # Name of the non-PIC object.
987 non_pic_object='$objname'
991 # Append the name of the non-PIC object the libtool object file.
992 # Only append if the libtool object file exists.
993 test -z "$run" && cat >> ${libobj}T
<<EOF
994 # Name of the non-PIC object.
1000 $run $mv "${libobj}T" "${libobj}"
1002 # Unlock the critical section if it was locked
1003 if test "$need_locks" != no
; then
1004 $run $rm "$lockfile"
1012 modename
="$modename: link"
1014 *-*-cygwin* |
*-*-mingw* |
*-*-pw32* |
*-*-os2*)
1015 # It is impossible to link a dll without this setting, and
1016 # we shouldn't force the makefile maintainer to figure out
1017 # which system we are compiling for in order to pass an extra
1018 # flag for every libtool invocation.
1019 # allow_undefined=no
1021 # FIXME: Unfortunately, there are problems with the above when trying
1022 # to make a dll which has undefined symbols, in which case not
1023 # even a static library is built. For now, we need to specify
1024 # -no-undefined on the libtool link line when we can be certain
1025 # that all symbols are satisfied, otherwise we get a static library.
1032 libtool_args
="$nonopt"
1033 base_compile
="$nonopt $@"
1034 compile_command
="$nonopt"
1035 finalize_command
="$nonopt"
1048 lib_search_path
=`pwd`
1057 export_symbols_regex
=
1065 precious_files_regex
=
1066 prefer_static_libs
=no
1079 func_infer_tag
$base_compile
1081 # We need to know -static, to get the right output filenames.
1085 -all-static |
-static)
1086 if test "X$arg" = "X-all-static"; then
1087 if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
1088 $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2
1090 if test -n "$link_static_flag"; then
1091 dlopen_self
=$dlopen_self_static
1094 if test -z "$pic_flag" && test -n "$link_static_flag"; then
1095 dlopen_self
=$dlopen_self_static
1098 build_libtool_libs
=no
1100 prefer_static_libs
=yes
1106 # See if our shared archives depend on static archives.
1107 test -n "$old_archive_from_new_cmds" && build_old_libs
=yes
1109 # Go through the arguments, transforming them on the way.
1110 while test "$#" -gt 0; do
1114 *$quote_scanset* |
*]* |
*\|
* |
*\
&* |
*\
(* |
*\
)* |
"")
1115 qarg
=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test
1119 libtool_args
="$libtool_args $qarg"
1121 # If the previous option needs an argument, assign it.
1122 if test -n "$prev"; then
1125 compile_command
="$compile_command @OUTPUT@"
1126 finalize_command
="$finalize_command @OUTPUT@"
1132 if test "$preload" = no
; then
1133 # Add the symbol object into the linking commands.
1134 compile_command
="$compile_command @SYMFILE@"
1135 finalize_command
="$finalize_command @SYMFILE@"
1139 *.la |
*.lo
) ;; # We handle these cases below.
1141 if test "$dlself" = no
; then
1149 if test "$prev" = dlprefiles
; then
1151 elif test "$prev" = dlfiles
&& test "$dlopen_self" != yes; then
1161 if test "$prev" = dlfiles
; then
1162 dlfiles
="$dlfiles $arg"
1164 dlprefiles
="$dlprefiles $arg"
1172 export_symbols
="$arg"
1173 if test ! -f "$arg"; then
1174 $echo "$modename: symbol file \`$arg' does not exist"
1181 export_symbols_regex
="$arg"
1186 inst_prefix_dir
="$arg"
1191 precious_files_regex
="$arg"
1201 if test -f "$arg"; then
1204 for fil
in `cat $save_arg`
1206 # moreargs="$moreargs $fil"
1208 # A libtool-controlled object.
1210 # Check to see that this really is a libtool object.
1211 if (${SED} -e '2q' $arg |
grep "^# Generated by .*$PACKAGE") >/dev
/null
2>&1; then
1216 # If there is no directory component, then add one.
1218 */* |
*\\*) .
$arg ;;
1222 if test -z "$pic_object" || \
1223 test -z "$non_pic_object" ||
1224 test "$pic_object" = none
&& \
1225 test "$non_pic_object" = none
; then
1226 $echo "$modename: cannot find name of object for \`$arg'" 1>&2
1230 # Extract subdirectory from the argument.
1231 xdir
=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
1232 if test "X$xdir" = "X$arg"; then
1238 if test "$pic_object" != none
; then
1239 # Prepend the subdirectory the object is found in.
1240 pic_object
="$xdir$pic_object"
1242 if test "$prev" = dlfiles
; then
1243 if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
1244 dlfiles
="$dlfiles $pic_object"
1248 # If libtool objects are unsupported, then we need to preload.
1253 # CHECK ME: I think I busted this. -Ossama
1254 if test "$prev" = dlprefiles
; then
1255 # Preload the old-style object.
1256 dlprefiles
="$dlprefiles $pic_object"
1261 libobjs
="$libobjs $pic_object"
1266 if test "$non_pic_object" != none
; then
1267 # Prepend the subdirectory the object is found in.
1268 non_pic_object
="$xdir$non_pic_object"
1270 # A standard non-PIC object
1271 non_pic_objects
="$non_pic_objects $non_pic_object"
1272 if test -z "$pic_object" ||
test "$pic_object" = none
; then
1273 arg
="$non_pic_object"
1277 # Only an error if not doing a dry-run.
1278 if test -z "$run"; then
1279 $echo "$modename: \`$arg' is not a valid libtool object" 1>&2
1284 # Extract subdirectory from the argument.
1285 xdir
=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
1286 if test "X$xdir" = "X$arg"; then
1292 pic_object
=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
1293 non_pic_object
=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
1294 libobjs
="$libobjs $pic_object"
1295 non_pic_objects
="$non_pic_objects $non_pic_object"
1300 $echo "$modename: link input file \`$save_arg' does not exist"
1308 # We need an absolute path.
1310 [\\/]* |
[A-Za-z
]:[\\/]*) ;;
1312 $echo "$modename: only absolute run-paths are allowed" 1>&2
1316 if test "$prev" = rpath
; then
1319 *) rpath
="$rpath $arg" ;;
1324 *) xrpath
="$xrpath $arg" ;;
1331 compiler_flags
="$compiler_flags $qarg"
1333 compile_command
="$compile_command $qarg"
1334 finalize_command
="$finalize_command $qarg"
1338 linker_flags
="$linker_flags $qarg"
1339 compiler_flags
="$compiler_flags $wl$qarg"
1341 compile_command
="$compile_command $wl$qarg"
1342 finalize_command
="$finalize_command $wl$qarg"
1346 linker_flags
="$linker_flags $qarg"
1347 compiler_flags
="$compiler_flags $qarg"
1349 compile_command
="$compile_command $qarg"
1350 finalize_command
="$finalize_command $qarg"
1359 compiler_flags
="$compiler_flags $arg"
1364 eval "$prev=\"\$arg\""
1369 fi # test -n "$prev"
1375 if test -n "$link_static_flag"; then
1376 compile_command
="$compile_command $link_static_flag"
1377 finalize_command
="$finalize_command $link_static_flag"
1383 # FIXME: remove this flag sometime in the future.
1384 $echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2
1408 -export-symbols |
-export-symbols-regex)
1409 if test -n "$export_symbols" ||
test -n "$export_symbols_regex"; then
1410 $echo "$modename: more than one -exported-symbols argument is not allowed"
1413 if test "X$arg" = "X-export-symbols"; then
1422 prev
=darwin_framework
1423 compiler_flags
="$compiler_flags $arg"
1432 # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
1433 # so, if we see these flags be careful not to treat them like -L
1435 case $with_gcc/$host in
1436 no
/*-*-irix* |
/*-*-irix*)
1437 compile_command
="$compile_command $arg"
1438 finalize_command
="$finalize_command $arg"
1445 dir
=`$echo "X$arg" | $Xsed -e 's/^-L//'`
1446 # We need an absolute path.
1448 [\\/]* |
[A-Za-z
]:[\\/]*) ;;
1450 absdir
=`cd "$dir" && pwd`
1451 if test -z "$absdir"; then
1452 $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2
1461 deplibs
="$deplibs -L$dir"
1462 lib_search_path
="$lib_search_path $dir"
1466 *-*-cygwin* |
*-*-mingw* |
*-*-pw32* |
*-*-os2*)
1467 case :$dllsearchpath: in
1469 *) dllsearchpath
="$dllsearchpath:$dir";;
1477 if test "X$arg" = "X-lc" ||
test "X$arg" = "X-lm"; then
1479 *-*-cygwin* |
*-*-pw32* |
*-*-beos*)
1480 # These systems don't actually have a C or math library (as such)
1483 *-*-mingw* |
*-*-os2*)
1484 # These systems don't actually have a C library (as such)
1485 test "X$arg" = "X-lc" && continue
1487 *-*-openbsd* |
*-*-freebsd* |
*-*-dragonfly*)
1488 # Do not include libc due to us having libc/libc_r.
1489 test "X$arg" = "X-lc" && continue
1491 *-*-rhapsody* |
*-*-darwin1.
[012])
1492 # Rhapsody C and math libraries are in the System framework
1493 deplibs
="$deplibs -framework System"
1496 elif test "X$arg" = "X-lc_r"; then
1498 *-*-openbsd* |
*-*-freebsd* |
*-*-dragonfly*)
1499 # Do not include libc_r directly, use -pthread flag.
1504 deplibs
="$deplibs $arg"
1508 # Tru64 UNIX uses -model [arg] to determine the layout of C++
1509 # classes, name mangling, and exception handling.
1511 compile_command
="$compile_command $arg"
1512 compiler_flags
="$compiler_flags $arg"
1513 finalize_command
="$finalize_command $arg"
1518 -mt|
-mthreads|
-kthread|
-Kthread|
-pthread|
-pthreads|
--thread-safe)
1519 compiler_flags
="$compiler_flags $arg"
1520 compile_command
="$compile_command $arg"
1521 finalize_command
="$finalize_command $arg"
1530 # -64, -mips[0-9] enable 64-bit mode on the SGI compiler
1531 # -r[0-9][0-9]* specifies the processor on the SGI compiler
1532 # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler
1533 # +DA*, +DD* enable 64-bit mode on the HP compiler
1534 # -q* pass through compiler args for the IBM compiler
1535 # -m* pass through architecture-specific compiler args for GCC
1536 -64|
-mips[0-9]|
-r[0-9][0-9]*|
-xarch=*|
-xtarget=*|
+DA
*|
+DD
*|
-q*|
-m*)
1538 # Unknown arguments in both finalize_command and compile_command need
1539 # to be aesthetically quoted because they are evaled later.
1540 arg
=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
1542 *$quote_scanset* |
*]* |
*\|
* |
*\
&* |
*\
(* |
*\
)* |
"")
1546 compile_command
="$compile_command $arg"
1547 finalize_command
="$finalize_command $arg"
1548 if test "$with_gcc" = "yes" ; then
1549 compiler_flags
="$compiler_flags $arg"
1566 *-*-cygwin* |
*-*-mingw* |
*-*-pw32* |
*-*-os2*)
1567 # The PATH hackery in wrapper scripts is required on Windows
1568 # in order for the loader to find any dlls it needs.
1569 $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2
1570 $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2
1573 *) no_install
=yes ;;
1590 -precious-files-regex)
1611 dir
=`$echo "X$arg" | $Xsed -e 's/^-R//'`
1612 # We need an absolute path.
1614 [\\/]* |
[A-Za-z
]:[\\/]*) ;;
1616 $echo "$modename: only absolute run-paths are allowed" 1>&2
1622 *) xrpath
="$xrpath $dir" ;;
1628 # The effects of -static are defined in a previous loop.
1629 # We used to do the same as -all-static on platforms that
1630 # didn't have a PIC flag, but the assumption that the effects
1631 # would be equivalent was wrong. It would break on at least
1632 # Digital Unix and AIX.
1652 args
=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`
1654 save_ifs
="$IFS"; IFS
=','
1655 for flag
in $args; do
1658 *$quote_scanset* |
*]* |
*\|
* |
*\
&* |
*\
(* |
*\
)* |
"")
1663 compiler_flags
="$compiler_flags $flag"
1666 arg
=`$echo "X$arg" | $Xsed -e "s/^ //"`
1670 args
=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`
1672 save_ifs
="$IFS"; IFS
=','
1673 for flag
in $args; do
1676 *$quote_scanset* |
*]* |
*\|
* |
*\
&* |
*\
(* |
*\
)* |
"")
1681 compiler_flags
="$compiler_flags $wl$flag"
1682 linker_flags
="$linker_flags $flag"
1685 arg
=`$echo "X$arg" | $Xsed -e "s/^ //"`
1703 # Some other compiler flag.
1705 # Unknown arguments in both finalize_command and compile_command need
1706 # to be aesthetically quoted because they are evaled later.
1707 arg
=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
1709 *$quote_scanset* |
*]* |
*\|
* |
*\
&* |
*\
(* |
*\
)* |
"")
1716 # A standard object.
1721 # A libtool-controlled object.
1723 # Check to see that this really is a libtool object.
1724 if (${SED} -e '2q' $arg |
grep "^# Generated by .*$PACKAGE") >/dev
/null
2>&1; then
1729 # If there is no directory component, then add one.
1731 */* |
*\\*) .
$arg ;;
1735 if test -z "$pic_object" || \
1736 test -z "$non_pic_object" ||
1737 test "$pic_object" = none
&& \
1738 test "$non_pic_object" = none
; then
1739 $echo "$modename: cannot find name of object for \`$arg'" 1>&2
1743 # Extract subdirectory from the argument.
1744 xdir
=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
1745 if test "X$xdir" = "X$arg"; then
1751 if test "$pic_object" != none
; then
1752 # Prepend the subdirectory the object is found in.
1753 pic_object
="$xdir$pic_object"
1755 if test "$prev" = dlfiles
; then
1756 if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
1757 dlfiles
="$dlfiles $pic_object"
1761 # If libtool objects are unsupported, then we need to preload.
1766 # CHECK ME: I think I busted this. -Ossama
1767 if test "$prev" = dlprefiles
; then
1768 # Preload the old-style object.
1769 dlprefiles
="$dlprefiles $pic_object"
1774 libobjs
="$libobjs $pic_object"
1779 if test "$non_pic_object" != none
; then
1780 # Prepend the subdirectory the object is found in.
1781 non_pic_object
="$xdir$non_pic_object"
1783 # A standard non-PIC object
1784 non_pic_objects
="$non_pic_objects $non_pic_object"
1785 if test -z "$pic_object" ||
test "$pic_object" = none
; then
1786 arg
="$non_pic_object"
1790 # Only an error if not doing a dry-run.
1791 if test -z "$run"; then
1792 $echo "$modename: \`$arg' is not a valid libtool object" 1>&2
1797 # Extract subdirectory from the argument.
1798 xdir
=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
1799 if test "X$xdir" = "X$arg"; then
1805 pic_object
=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
1806 non_pic_object
=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
1807 libobjs
="$libobjs $pic_object"
1808 non_pic_objects
="$non_pic_objects $non_pic_object"
1815 deplibs
="$deplibs $arg"
1816 old_deplibs
="$old_deplibs $arg"
1821 # A libtool-controlled library.
1823 if test "$prev" = dlfiles
; then
1824 # This library was specified with -dlopen.
1825 dlfiles
="$dlfiles $arg"
1827 elif test "$prev" = dlprefiles
; then
1828 # The library was specified with -dlpreopen.
1829 dlprefiles
="$dlprefiles $arg"
1832 deplibs
="$deplibs $arg"
1837 # Some other compiler argument.
1839 # Unknown arguments in both finalize_command and compile_command need
1840 # to be aesthetically quoted because they are evaled later.
1841 arg
=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
1843 *$quote_scanset* |
*]* |
*\|
* |
*\
&* |
*\
(* |
*\
)* |
"")
1850 # Now actually substitute the argument into the commands.
1851 if test -n "$arg"; then
1852 compile_command
="$compile_command $arg"
1853 finalize_command
="$finalize_command $arg"
1855 done # argument parsing loop
1857 if test -n "$prev"; then
1858 $echo "$modename: the \`$prevarg' option requires an argument" 1>&2
1863 if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
1864 eval arg
=\"$export_dynamic_flag_spec\"
1865 compile_command
="$compile_command $arg"
1866 finalize_command
="$finalize_command $arg"
1870 # calculate the name of the file, without its directory
1871 outputname
=`$echo "X$output" | $Xsed -e 's%^.*/%%'`
1872 libobjs_save
="$libobjs"
1874 if test -n "$shlibpath_var"; then
1875 # get the directories listed in $shlibpath_var
1876 eval shlib_search_path
=\
`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`
1880 eval sys_lib_search_path
=\"$sys_lib_search_path_spec\"
1881 eval sys_lib_dlsearch_path
=\"$sys_lib_dlsearch_path_spec\"
1883 output_objdir
=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`
1884 if test "X$output_objdir" = "X$output"; then
1885 output_objdir
="$objdir"
1887 output_objdir
="$output_objdir/$objdir"
1889 # Create the object directory.
1890 if test ! -d "$output_objdir"; then
1891 $show "$mkdir $output_objdir"
1892 $run $mkdir $output_objdir
1894 if test "$status" -ne 0 && test ! -d "$output_objdir"; then
1899 # Determine the type of output
1902 $echo "$modename: you must specify an output file" 1>&2
1906 *.
$libext) linkmode
=oldlib
;;
1907 *.lo |
*.
$objext) linkmode
=obj
;;
1908 *.la
) linkmode
=lib
;;
1909 *) linkmode
=prog
;; # Anything else should be a program.
1913 *cygwin
* |
*mingw
* |
*pw32
*)
1914 # don't eliminate duplications in $postdeps and $predeps
1915 duplicate_compiler_generated_deps
=yes
1918 duplicate_compiler_generated_deps
=$duplicate_deps
1924 # Find all interdependent deplibs by searching for libraries
1925 # that are linked more than once (e.g. -la -lb -la)
1926 for deplib
in $deplibs; do
1927 if test "X$duplicate_deps" = "Xyes" ; then
1929 *" $deplib "*) specialdeplibs
="$specialdeplibs $deplib" ;;
1932 libs
="$libs $deplib"
1935 if test "$linkmode" = lib
; then
1936 libs
="$predeps $libs $compiler_lib_search_path $postdeps"
1938 # Compute libraries that are listed more than once in $predeps
1939 # $postdeps and mark them as special (i.e., whose duplicates are
1940 # not to be eliminated).
1942 if test "X$duplicate_compiler_generated_deps" = "Xyes" ; then
1943 for pre_post_dep
in $predeps $postdeps; do
1944 case "$pre_post_deps " in
1945 *" $pre_post_dep "*) specialdeplibs
="$specialdeplibs $pre_post_deps" ;;
1947 pre_post_deps
="$pre_post_deps $pre_post_dep"
1956 need_relink
=no
# whether we're linking any uninstalled libtool libraries
1957 notinst_deplibs
= # not-installed libtool libraries
1958 notinst_path
= # paths that contain not-installed libtool libraries
1962 for file in $dlfiles $dlprefiles; do
1966 $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2
1978 passes
="conv scan dlopen dlpreopen link"
1983 for pass
in $passes; do
1984 if test "$linkmode,$pass" = "lib,link" ||
1985 test "$linkmode,$pass" = "prog,scan"; then
1989 if test "$linkmode" = prog
; then
1991 dlopen
) libs
="$dlfiles" ;;
1992 dlpreopen
) libs
="$dlprefiles" ;;
1993 link
) libs
="$deplibs %DEPLIBS% $dependency_libs" ;;
1996 if test "$pass" = dlopen
; then
1997 # Collect dlpreopened libraries
1998 save_deplibs
="$deplibs"
2001 for deplib
in $libs; do
2005 -mt|
-mthreads|
-kthread|
-Kthread|
-pthread|
-pthreads|
--thread-safe)
2006 if test "$linkmode,$pass" = "prog,link"; then
2007 compile_deplibs
="$deplib $compile_deplibs"
2008 finalize_deplibs
="$deplib $finalize_deplibs"
2010 compiler_flags
="$compiler_flags $deplib"
2015 if test "$linkmode" != lib
&& test "$linkmode" != prog
; then
2016 $echo "$modename: warning: \`-l' is ignored for archives/objects" 1>&2
2019 name
=`$echo "X$deplib" | $Xsed -e 's/^-l//'`
2020 for searchdir
in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do
2021 for search_ext
in .la
$std_shrext .so .a
; do
2022 # Search the libtool library
2023 lib
="$searchdir/lib${name}${search_ext}"
2024 if test -f "$lib"; then
2025 if test "$search_ext" = ".la"; then
2034 if test "$found" != yes; then
2035 # deplib doesn't seem to be a libtool library
2036 if test "$linkmode,$pass" = "prog,link"; then
2037 compile_deplibs
="$deplib $compile_deplibs"
2038 finalize_deplibs
="$deplib $finalize_deplibs"
2040 deplibs
="$deplib $deplibs"
2041 test "$linkmode" = lib
&& newdependency_libs
="$deplib $newdependency_libs"
2044 else # deplib is a libtool library
2045 # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,
2046 # We need to do some special things here, and not later.
2047 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
2048 case " $predeps $postdeps " in
2050 if (${SED} -e '2q' $lib |
2051 grep "^# Generated by .*$PACKAGE") >/dev
/null
2>&1; then
2055 */* |
*\\*) .
$lib ;;
2058 for l
in $old_library $library_names; do
2061 if test "X$ll" = "X$old_library" ; then # only static version available
2063 ladir
=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
2064 test "X$ladir" = "X$lib" && ladir
="."
2065 lib
=$ladir/$old_library
2066 if test "$linkmode,$pass" = "prog,link"; then
2067 compile_deplibs
="$deplib $compile_deplibs"
2068 finalize_deplibs
="$deplib $finalize_deplibs"
2070 deplibs
="$deplib $deplibs"
2071 test "$linkmode" = lib
&& newdependency_libs
="$deplib $newdependency_libs"
2085 deplibs
="$deplib $deplibs"
2086 test "$pass" = conv
&& continue
2087 newdependency_libs
="$deplib $newdependency_libs"
2088 newlib_search_path
="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
2091 if test "$pass" = conv
; then
2092 deplibs
="$deplib $deplibs"
2095 if test "$pass" = scan
; then
2096 deplibs
="$deplib $deplibs"
2098 compile_deplibs
="$deplib $compile_deplibs"
2099 finalize_deplibs
="$deplib $finalize_deplibs"
2101 newlib_search_path
="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
2104 $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2
2110 if test "$pass" = link
; then
2111 dir
=`$echo "X$deplib" | $Xsed -e 's/^-R//'`
2112 # Make sure the xrpath contains only unique directories.
2115 *) xrpath
="$xrpath $dir" ;;
2118 deplibs
="$deplib $deplibs"
2121 *.la
) lib
="$deplib" ;;
2123 if test "$pass" = conv
; then
2124 deplibs
="$deplib $deplibs"
2130 case $deplibs_check_method in
2132 set dummy
$deplibs_check_method
2133 match_pattern_regex
=`expr "$deplibs_check_method" : "$2 \(.*\)"`
2134 if eval $echo \"$deplib\" 2>/dev
/null \
2136 |
$EGREP "$match_pattern_regex" > /dev
/null
; then
2144 if test "$valid_a_lib" != yes; then
2146 $echo "*** Warning: Trying to link with static lib archive $deplib."
2147 $echo "*** I have the capability to make that library automatically link in when"
2148 $echo "*** you link to this library. But I can only do this if you have a"
2149 $echo "*** shared version of the library, which you do not appear to have"
2150 $echo "*** because the file extensions .$libext of this argument makes me believe"
2151 $echo "*** that it is just a static archive that I should not used here."
2154 $echo "*** Warning: Linking the shared library $output against the"
2155 $echo "*** static library $deplib is not portable!"
2156 deplibs
="$deplib $deplibs"
2161 if test "$pass" != link
; then
2162 deplibs
="$deplib $deplibs"
2164 compile_deplibs
="$deplib $compile_deplibs"
2165 finalize_deplibs
="$deplib $finalize_deplibs"
2172 if test "$pass" = conv
; then
2173 deplibs
="$deplib $deplibs"
2174 elif test "$linkmode" = prog
; then
2175 if test "$pass" = dlpreopen ||
test "$dlopen_support" != yes ||
test "$build_libtool_libs" = no
; then
2176 # If there is no dlopen support or we're linking statically,
2177 # we need to preload.
2178 newdlprefiles
="$newdlprefiles $deplib"
2179 compile_deplibs
="$deplib $compile_deplibs"
2180 finalize_deplibs
="$deplib $finalize_deplibs"
2182 newdlfiles
="$newdlfiles $deplib"
2192 if test "$found" = yes ||
test -f "$lib"; then :
2194 $echo "$modename: cannot find the library \`$lib'" 1>&2
2198 # Check to see that this really is a libtool archive.
2199 if (${SED} -e '2q' $lib |
grep "^# Generated by .*$PACKAGE") >/dev
/null
2>&1; then :
2201 $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
2205 ladir
=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
2206 test "X$ladir" = "X$lib" && ladir
="."
2214 # If the library was installed with an old release of libtool,
2215 # it will not redefine variables installed, or shouldnotlink
2223 */* |
*\\*) .
$lib ;;
2227 if test "$linkmode,$pass" = "lib,link" ||
2228 test "$linkmode,$pass" = "prog,scan" ||
2229 { test "$linkmode" != prog
&& test "$linkmode" != lib
; }; then
2230 test -n "$dlopen" && dlfiles
="$dlfiles $dlopen"
2231 test -n "$dlpreopen" && dlprefiles
="$dlprefiles $dlpreopen"
2234 if test "$pass" = conv
; then
2235 # Only check for convenience libraries
2236 deplibs
="$lib $deplibs"
2237 if test -z "$libdir"; then
2238 if test -z "$old_library"; then
2239 $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
2242 # It is a libtool convenience library, so add in its objects.
2243 convenience
="$convenience $ladir/$objdir/$old_library"
2244 old_convenience
="$old_convenience $ladir/$objdir/$old_library"
2246 for deplib
in $dependency_libs; do
2247 deplibs
="$deplib $deplibs"
2248 if test "X$duplicate_deps" = "Xyes" ; then
2249 case "$tmp_libs " in
2250 *" $deplib "*) specialdeplibs
="$specialdeplibs $deplib" ;;
2253 tmp_libs
="$tmp_libs $deplib"
2255 elif test "$linkmode" != prog
&& test "$linkmode" != lib
; then
2256 $echo "$modename: \`$lib' is not a convenience library" 1>&2
2263 # Get the name of the library we link against.
2265 for l
in $old_library $library_names; do
2268 if test -z "$linklib"; then
2269 $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
2273 # This library was specified with -dlopen.
2274 if test "$pass" = dlopen
; then
2275 if test -z "$libdir"; then
2276 $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2
2279 if test -z "$dlname" ||
2280 test "$dlopen_support" != yes ||
2281 test "$build_libtool_libs" = no
; then
2282 # If there is no dlname, no dlopen support or we're linking
2283 # statically, we need to preload. We also need to preload any
2284 # dependent libraries so libltdl's deplib preloader doesn't
2285 # bomb out in the load deplibs phase.
2286 dlprefiles
="$dlprefiles $lib $dependency_libs"
2288 newdlfiles
="$newdlfiles $lib"
2293 # We need an absolute path.
2295 [\\/]* |
[A-Za-z
]:[\\/]*) abs_ladir
="$ladir" ;;
2297 abs_ladir
=`cd "$ladir" && pwd`
2298 if test -z "$abs_ladir"; then
2299 $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2
2300 $echo "$modename: passing it literally to the linker, although it might fail" 1>&2
2305 laname
=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
2307 # Find the relevant object directory and library name.
2308 if test "X$installed" = Xyes
; then
2309 if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
2310 $echo "$modename: warning: library \`$lib' was moved." 1>&2
2318 test "X$hardcode_automatic" = Xyes
&& avoidtemprpath
=yes
2320 if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then
2323 # Remove this search path later
2324 notinst_path
="$notinst_path $abs_ladir"
2326 dir
="$ladir/$objdir"
2327 absdir
="$abs_ladir/$objdir"
2328 # Remove this search path later
2329 notinst_path
="$notinst_path $abs_ladir"
2331 fi # $installed = yes
2332 name
=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
2334 # This library was specified with -dlpreopen.
2335 if test "$pass" = dlpreopen
; then
2336 if test -z "$libdir"; then
2337 $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2
2340 # Prefer using a static library (so that no silly _DYNAMIC symbols
2341 # are required to link).
2342 if test -n "$old_library"; then
2343 newdlprefiles
="$newdlprefiles $dir/$old_library"
2344 # Otherwise, use the dlname, so that lt_dlopen finds it.
2345 elif test -n "$dlname"; then
2346 newdlprefiles
="$newdlprefiles $dir/$dlname"
2348 newdlprefiles
="$newdlprefiles $dir/$linklib"
2350 fi # $pass = dlpreopen
2352 if test -z "$libdir"; then
2353 # Link the convenience library
2354 if test "$linkmode" = lib
; then
2355 deplibs
="$dir/$old_library $deplibs"
2356 elif test "$linkmode,$pass" = "prog,link"; then
2357 compile_deplibs
="$dir/$old_library $compile_deplibs"
2358 finalize_deplibs
="$dir/$old_library $finalize_deplibs"
2360 deplibs
="$lib $deplibs" # used for prog,scan pass
2366 if test "$linkmode" = prog
&& test "$pass" != link
; then
2367 newlib_search_path
="$newlib_search_path $ladir"
2368 deplibs
="$lib $deplibs"
2371 if test "$link_all_deplibs" != no ||
test -z "$library_names" ||
2372 test "$build_libtool_libs" = no
; then
2377 for deplib
in $dependency_libs; do
2379 -L*) newlib_search_path
="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test
2381 # Need to link against all dependency_libs?
2382 if test "$linkalldeplibs" = yes; then
2383 deplibs
="$deplib $deplibs"
2385 # Need to hardcode shared library paths
2386 # or/and link against static libraries
2387 newdependency_libs
="$deplib $newdependency_libs"
2389 if test "X$duplicate_deps" = "Xyes" ; then
2390 case "$tmp_libs " in
2391 *" $deplib "*) specialdeplibs
="$specialdeplibs $deplib" ;;
2394 tmp_libs
="$tmp_libs $deplib"
2397 fi # $linkmode = prog...
2399 if test "$linkmode,$pass" = "prog,link"; then
2400 if test -n "$library_names" &&
2401 { test "$prefer_static_libs" = no ||
test -z "$old_library"; }; then
2402 # We need to hardcode the library path
2403 if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then
2404 # Make sure the rpath contains only unique directories.
2405 case "$temp_rpath " in
2408 *) temp_rpath
="$temp_rpath $dir" ;;
2412 # Hardcode the library path.
2413 # Skip directories that are in the system default run-time
2415 case " $sys_lib_dlsearch_path " in
2418 case "$compile_rpath " in
2420 *) compile_rpath
="$compile_rpath $absdir"
2424 case " $sys_lib_dlsearch_path " in
2427 case "$finalize_rpath " in
2429 *) finalize_rpath
="$finalize_rpath $libdir"
2433 fi # $linkmode,$pass = prog,link...
2435 if test "$alldeplibs" = yes &&
2436 { test "$deplibs_check_method" = pass_all ||
2437 { test "$build_libtool_libs" = yes &&
2438 test -n "$library_names"; }; }; then
2439 # We only need to search for static libraries
2444 link_static
=no
# Whether the deplib will be linked statically
2445 if test -n "$library_names" &&
2446 { test "$prefer_static_libs" = no ||
test -z "$old_library"; }; then
2447 if test "$installed" = no
; then
2448 notinst_deplibs
="$notinst_deplibs $lib"
2451 # This is a shared library
2453 # Warn about portability, can't link against -module's on
2454 # some systems (darwin)
2455 if test "$shouldnotlink" = yes && test "$pass" = link
; then
2457 if test "$linkmode" = prog
; then
2458 $echo "*** Warning: Linking the executable $output against the loadable module"
2460 $echo "*** Warning: Linking the shared library $output against the loadable module"
2462 $echo "*** $linklib is not portable!"
2464 if test "$linkmode" = lib
&&
2465 test "$hardcode_into_libs" = yes; then
2466 # Hardcode the library path.
2467 # Skip directories that are in the system default run-time
2469 case " $sys_lib_dlsearch_path " in
2472 case "$compile_rpath " in
2474 *) compile_rpath
="$compile_rpath $absdir"
2478 case " $sys_lib_dlsearch_path " in
2481 case "$finalize_rpath " in
2483 *) finalize_rpath
="$finalize_rpath $libdir"
2489 if test -n "$old_archive_from_expsyms_cmds"; then
2490 # figure out the soname
2491 set dummy
$library_names
2494 libname
=`eval \\$echo \"$libname_spec\"`
2495 # use dlname if we got it. it's perfectly good, no?
2496 if test -n "$dlname"; then
2498 elif test -n "$soname_spec"; then
2502 major
=`expr $current - $age`
2506 eval soname
=\"$soname_spec\"
2511 # Make a new name for the extract_expsyms_cmds to use
2513 soname
=`$echo $soroot | ${SED} -e 's/^.*\///'`
2514 newlib
="libimp-`$echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a"
2516 # If the library has no export list, then create one now
2517 if test -f "$output_objdir/$soname-def"; then :
2519 $show "extracting exported symbol list from \`$soname'"
2520 save_ifs
="$IFS"; IFS
='~'
2521 cmds
=$extract_expsyms_cmds
2522 for cmd
in $cmds; do
2526 $run eval "$cmd" ||
exit $?
2532 if test -f "$output_objdir/$newlib"; then :; else
2533 $show "generating import library for \`$soname'"
2534 save_ifs
="$IFS"; IFS
='~'
2535 cmds
=$old_archive_from_expsyms_cmds
2536 for cmd
in $cmds; do
2540 $run eval "$cmd" ||
exit $?
2544 # make sure the library variables are pointing to the new library
2547 fi # test -n "$old_archive_from_expsyms_cmds"
2549 if test "$linkmode" = prog ||
test "$mode" != relink
; then
2554 case $hardcode_action in
2555 immediate | unsupported
)
2556 if test "$hardcode_direct" = no
; then
2559 *-*-sco3.2v5
* ) add_dir
="-L$dir" ;;
2561 # if the lib is a module then we can not link against
2562 # it, someone is ignoring the new warnings I added
2563 if /usr
/bin
/file -L $add 2> /dev
/null |
$EGREP "bundle" >/dev
/null
; then
2564 $echo "** Warning, lib $linklib is a module, not a shared library"
2565 if test -z "$old_library" ; then
2567 $echo "** And there doesn't seem to be a static archive available"
2568 $echo "** The link will probably fail, sorry"
2570 add
="$dir/$old_library"
2574 elif test "$hardcode_minus_L" = no
; then
2576 *-*-sunos*) add_shlibpath
="$dir" ;;
2580 elif test "$hardcode_shlibpath_var" = no
; then
2581 add_shlibpath
="$dir"
2588 if test "$hardcode_direct" = yes; then
2590 elif test "$hardcode_minus_L" = yes; then
2592 # Try looking first in the location we're being installed to.
2593 if test -n "$inst_prefix_dir"; then
2596 add_dir
="$add_dir -L$inst_prefix_dir$libdir"
2601 elif test "$hardcode_shlibpath_var" = yes; then
2602 add_shlibpath
="$dir"
2611 if test "$lib_linked" != yes; then
2612 $echo "$modename: configuration error: unsupported hardcode properties"
2616 if test -n "$add_shlibpath"; then
2617 case :$compile_shlibpath: in
2618 *":$add_shlibpath:"*) ;;
2619 *) compile_shlibpath
="$compile_shlibpath$add_shlibpath:" ;;
2622 if test "$linkmode" = prog
; then
2623 test -n "$add_dir" && compile_deplibs
="$add_dir $compile_deplibs"
2624 test -n "$add" && compile_deplibs
="$add $compile_deplibs"
2626 test -n "$add_dir" && deplibs
="$add_dir $deplibs"
2627 test -n "$add" && deplibs
="$add $deplibs"
2628 if test "$hardcode_direct" != yes && \
2629 test "$hardcode_minus_L" != yes && \
2630 test "$hardcode_shlibpath_var" = yes; then
2631 case :$finalize_shlibpath: in
2633 *) finalize_shlibpath
="$finalize_shlibpath$libdir:" ;;
2639 if test "$linkmode" = prog ||
test "$mode" = relink
; then
2643 # Finalize command for both is simple: just hardcode it.
2644 if test "$hardcode_direct" = yes; then
2645 add
="$libdir/$linklib"
2646 elif test "$hardcode_minus_L" = yes; then
2649 elif test "$hardcode_shlibpath_var" = yes; then
2650 case :$finalize_shlibpath: in
2652 *) finalize_shlibpath
="$finalize_shlibpath$libdir:" ;;
2655 elif test "$hardcode_automatic" = yes; then
2656 if test -n "$inst_prefix_dir" &&
2657 test -f "$inst_prefix_dir$libdir/$linklib" ; then
2658 add
="$inst_prefix_dir$libdir/$linklib"
2660 add
="$libdir/$linklib"
2663 # We cannot seem to hardcode it, guess we'll fake it.
2665 # Try looking first in the location we're being installed to.
2666 if test -n "$inst_prefix_dir"; then
2669 add_dir
="$add_dir -L$inst_prefix_dir$libdir"
2676 if test "$linkmode" = prog
; then
2677 test -n "$add_dir" && finalize_deplibs
="$add_dir $finalize_deplibs"
2678 test -n "$add" && finalize_deplibs
="$add $finalize_deplibs"
2680 test -n "$add_dir" && deplibs
="$add_dir $deplibs"
2681 test -n "$add" && deplibs
="$add $deplibs"
2684 elif test "$linkmode" = prog
; then
2685 # Here we assume that one of hardcode_direct or hardcode_minus_L
2686 # is not unsupported. This is valid on all known static and
2688 if test "$hardcode_direct" != unsupported
; then
2689 test -n "$old_library" && linklib
="$old_library"
2690 compile_deplibs
="$dir/$linklib $compile_deplibs"
2691 finalize_deplibs
="$dir/$linklib $finalize_deplibs"
2693 compile_deplibs
="-l$name -L$dir $compile_deplibs"
2694 finalize_deplibs
="-l$name -L$dir $finalize_deplibs"
2696 elif test "$build_libtool_libs" = yes; then
2697 # Not a shared library
2698 if test "$deplibs_check_method" != pass_all
; then
2699 # We're trying link a shared library against a static one
2700 # but the system doesn't support it.
2702 # Just print a warning and add the library to dependency_libs so
2703 # that the program can be linked against the static library.
2705 $echo "*** Warning: This system can not link to static lib archive $lib."
2706 $echo "*** I have the capability to make that library automatically link in when"
2707 $echo "*** you link to this library. But I can only do this if you have a"
2708 $echo "*** shared version of the library, which you do not appear to have."
2709 if test "$module" = yes; then
2710 $echo "*** But as you try to build a module library, libtool will still create "
2711 $echo "*** a static module, that should work as long as the dlopening application"
2712 $echo "*** is linked with the -dlopen flag to resolve symbols at runtime."
2713 if test -z "$global_symbol_pipe"; then
2715 $echo "*** However, this would only work if libtool was able to extract symbol"
2716 $echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
2717 $echo "*** not find such a program. So, this module is probably useless."
2718 $echo "*** \`nm' from GNU binutils and a full rebuild may help."
2720 if test "$build_old_libs" = no
; then
2721 build_libtool_libs
=module
2724 build_libtool_libs
=no
2728 convenience
="$convenience $dir/$old_library"
2729 old_convenience
="$old_convenience $dir/$old_library"
2730 deplibs
="$dir/$old_library $deplibs"
2733 fi # link shared/static library?
2735 if test "$linkmode" = lib
; then
2736 if test -n "$dependency_libs" &&
2737 { test "$hardcode_into_libs" != yes ||
2738 test "$build_old_libs" = yes ||
2739 test "$link_static" = yes; }; then
2740 # Extract -R from dependency_libs
2742 for libdir
in $dependency_libs; do
2744 -R*) temp_xrpath
=`$echo "X$libdir" | $Xsed -e 's/^-R//'`
2746 *" $temp_xrpath "*) ;;
2747 *) xrpath
="$xrpath $temp_xrpath";;
2749 *) temp_deplibs
="$temp_deplibs $libdir";;
2752 dependency_libs
="$temp_deplibs"
2755 newlib_search_path
="$newlib_search_path $absdir"
2756 # Link against this library
2757 test "$link_static" = no
&& newdependency_libs
="$abs_ladir/$laname $newdependency_libs"
2758 # ... and its dependency_libs
2760 for deplib
in $dependency_libs; do
2761 newdependency_libs
="$deplib $newdependency_libs"
2762 if test "X$duplicate_deps" = "Xyes" ; then
2763 case "$tmp_libs " in
2764 *" $deplib "*) specialdeplibs
="$specialdeplibs $deplib" ;;
2767 tmp_libs
="$tmp_libs $deplib"
2770 if test "$link_all_deplibs" != no
; then
2771 # Add the search paths of all dependency libraries
2772 for deplib
in $dependency_libs; do
2774 -L*) path
="$deplib" ;;
2776 dir
=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'`
2777 test "X$dir" = "X$deplib" && dir
="."
2778 # We need an absolute path.
2780 [\\/]* |
[A-Za-z
]:[\\/]*) absdir
="$dir" ;;
2782 absdir
=`cd "$dir" && pwd`
2783 if test -z "$absdir"; then
2784 $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2
2789 if grep "^installed=no" $deplib > /dev
/null
; then
2790 path
="$absdir/$objdir"
2792 eval libdir
=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
2793 if test -z "$libdir"; then
2794 $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
2797 if test "$absdir" != "$libdir"; then
2798 $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2
2805 # we do not want to link against static libs,
2806 # but need to link against shared
2807 eval deplibrary_names
=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib`
2808 if test -n "$deplibrary_names" ; then
2809 for tmp
in $deplibrary_names ; do
2812 if test -f "$path/$depdepl" ; then
2813 depdepl
="$path/$depdepl"
2815 # do not add paths which are already there
2816 case " $newlib_search_path " in
2818 *) newlib_search_path
="$newlib_search_path $path";;
2831 # Again, we only want to link against shared libraries
2832 eval tmp_libs
=`$echo "X$deplib" | $Xsed -e "s,^\-l,,"`
2833 for tmp
in $newlib_search_path ; do
2834 if test -f "$tmp/lib$tmp_libs.dylib" ; then
2835 eval depdepl
="$tmp/lib$tmp_libs.dylib"
2846 case " $deplibs " in
2848 *) deplibs
="$path $deplibs" ;;
2850 case " $deplibs " in
2852 *) deplibs
="$depdepl $deplibs" ;;
2855 fi # link_all_deplibs != no
2857 done # for deplib in $libs
2858 dependency_libs
="$newdependency_libs"
2859 if test "$pass" = dlpreopen
; then
2860 # Link the dlpreopened libraries before other libraries
2861 for deplib
in $save_deplibs; do
2862 deplibs
="$deplib $deplibs"
2865 if test "$pass" != dlopen
; then
2866 if test "$pass" != conv
; then
2867 # Make sure lib_search_path contains only unique directories.
2869 for dir
in $newlib_search_path; do
2870 case "$lib_search_path " in
2872 *) lib_search_path
="$lib_search_path $dir" ;;
2878 if test "$linkmode,$pass" != "prog,link"; then
2881 vars
="compile_deplibs finalize_deplibs"
2883 for var
in $vars dependency_libs
; do
2884 # Add libraries to $var in reverse order
2885 eval tmp_libs
=\"\$
$var\"
2887 for deplib
in $tmp_libs; do
2888 # FIXME: Pedantically, this is the right thing to do, so
2889 # that some nasty dependency loop isn't accidentally
2891 #new_libs="$deplib $new_libs"
2892 # Pragmatically, this seems to cause very few problems in
2895 -L*) new_libs
="$deplib $new_libs" ;;
2898 # And here is the reason: when a library appears more
2899 # than once as an explicit dependence of a library, or
2900 # is implicitly linked in more than once by the
2901 # compiler, it is considered special, and multiple
2902 # occurrences thereof are not removed. Compare this
2903 # with having the same library being listed as a
2904 # dependency of multiple other libraries: in this case,
2905 # we know (pedantically, we assume) the library does not
2906 # need to be listed more than once, so we keep only the
2907 # last copy. This is not always right, but it is rare
2908 # enough that we require users that really mean to play
2909 # such unportable linking tricks to link the library
2910 # using -Wl,-lname, so that libtool does not consider it
2911 # for duplicate removal.
2912 case " $specialdeplibs " in
2913 *" $deplib "*) new_libs
="$deplib $new_libs" ;;
2915 case " $new_libs " in
2917 *) new_libs
="$deplib $new_libs" ;;
2925 for deplib
in $new_libs; do
2928 case " $tmp_libs " in
2930 *) tmp_libs
="$tmp_libs $deplib" ;;
2933 *) tmp_libs
="$tmp_libs $deplib" ;;
2936 eval $var=\"$tmp_libs\"
2939 # Last step: remove runtime libs from dependency_libs
2940 # (they stay in deplibs)
2942 for i
in $dependency_libs ; do
2943 case " $predeps $postdeps $compiler_lib_search_path " in
2948 if test -n "$i" ; then
2949 tmp_libs
="$tmp_libs $i"
2952 dependency_libs
=$tmp_libs
2954 if test "$linkmode" = prog
; then
2955 dlfiles
="$newdlfiles"
2956 dlprefiles
="$newdlprefiles"
2961 if test -n "$deplibs"; then
2962 $echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2
2965 if test -n "$dlfiles$dlprefiles" ||
test "$dlself" != no
; then
2966 $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2
2969 if test -n "$rpath"; then
2970 $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2
2973 if test -n "$xrpath"; then
2974 $echo "$modename: warning: \`-R' is ignored for archives" 1>&2
2977 if test -n "$vinfo"; then
2978 $echo "$modename: warning: \`-version-info/-version-number' is ignored for archives" 1>&2
2981 if test -n "$release"; then
2982 $echo "$modename: warning: \`-release' is ignored for archives" 1>&2
2985 if test -n "$export_symbols" ||
test -n "$export_symbols_regex"; then
2986 $echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2
2989 # Now set the variables for building old libraries.
2990 build_libtool_libs
=no
2992 objs
="$objs$old_deplibs"
2996 # Make sure we only generate libraries of the form `libNAME.la'.
2999 name
=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
3000 eval shared_ext
=\"$shrext_cmds\"
3001 eval libname
=\"$libname_spec\"
3004 if test "$module" = no
; then
3005 $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2
3009 if test "$need_lib_prefix" != no
; then
3010 # Add the "lib" prefix for modules if required
3011 name
=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
3012 eval shared_ext
=\"$shrext_cmds\"
3013 eval libname
=\"$libname_spec\"
3015 libname
=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
3020 if test -n "$objs"; then
3021 if test "$deplibs_check_method" != pass_all
; then
3022 $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1
3026 $echo "*** Warning: Linking the shared library $output against the non-libtool"
3027 $echo "*** objects $objs is not portable!"
3028 libobjs
="$libobjs $objs"
3032 if test "$dlself" != no
; then
3033 $echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2
3037 if test "$#" -gt 2; then
3038 $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2
3043 if test -z "$rpath"; then
3044 if test "$build_libtool_libs" = yes; then
3045 # Building a libtool convenience library.
3046 # Some compilers have problems with a `.al' extension so
3047 # convenience libraries should have the same extension an
3048 # archive normally would.
3049 oldlibs
="$output_objdir/$libname.$libext $oldlibs"
3050 build_libtool_libs
=convenience
3054 if test -n "$vinfo"; then
3055 $echo "$modename: warning: \`-version-info/-version-number' is ignored for convenience libraries" 1>&2
3058 if test -n "$release"; then
3059 $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2
3063 # Parse the version information argument.
3064 save_ifs
="$IFS"; IFS
=':'
3065 set dummy
$vinfo 0 0 0
3068 if test -n "$8"; then
3069 $echo "$modename: too many parameters to \`-version-info'" 1>&2
3074 # convert absolute version numbers to libtool ages
3075 # this retains compatibility with .la files and attempts
3076 # to make the code below a bit more comprehensible
3078 case $vinfo_number in
3082 number_revision
="$4"
3084 # There are really only two kinds -- those that
3085 # use the current revision as the major version
3086 # and those that subtract age and use age as
3087 # a minor version. But, then there is irix
3088 # which has an extra 1 added just for fun
3090 case $version_type in
3091 darwin|linux|osf|windows
)
3092 current
=`expr $number_major + $number_minor`
3094 revision
="$number_revision"
3096 freebsd-aout|freebsd-elf|sunos
)
3097 current
="$number_major"
3098 revision
="$number_minor"
3102 current
=`expr $number_major + $number_minor - 1`
3104 revision
="$number_minor"
3115 # Check that each of the things are valid numbers.
3117 0|
[1-9]|
[1-9][0-9]|
[1-9][0-9][0-9]|
[1-9][0-9][0-9][0-9]|
[1-9][0-9][0-9][0-9][0-9]) ;;
3119 $echo "$modename: CURRENT \`$current' must be a nonnegative integer" 1>&2
3120 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
3126 0|
[1-9]|
[1-9][0-9]|
[1-9][0-9][0-9]|
[1-9][0-9][0-9][0-9]|
[1-9][0-9][0-9][0-9][0-9]) ;;
3128 $echo "$modename: REVISION \`$revision' must be a nonnegative integer" 1>&2
3129 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
3135 0|
[1-9]|
[1-9][0-9]|
[1-9][0-9][0-9]|
[1-9][0-9][0-9][0-9]|
[1-9][0-9][0-9][0-9][0-9]) ;;
3137 $echo "$modename: AGE \`$age' must be a nonnegative integer" 1>&2
3138 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
3143 if test "$age" -gt "$current"; then
3144 $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
3145 $echo "$modename: \`$vinfo' is not valid version information" 1>&2
3149 # Calculate the version variables.
3153 case $version_type in
3157 # Like Linux, but with the current version available in
3158 # verstring for coding it into the library header
3159 major
=.
`expr $current - $age`
3160 versuffix
="$major.$age.$revision"
3161 # Darwin ld doesn't like 0 for these options...
3162 minor_current
=`expr $current + 1`
3163 verstring
="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
3168 versuffix
=".$current.$revision";
3173 versuffix
=".$current";
3177 major
=`expr $current - $age + 1`
3179 case $version_type in
3180 nonstopux
) verstring_prefix
=nonstopux
;;
3181 *) verstring_prefix
=sgi
;;
3183 verstring
="$verstring_prefix$major.$revision"
3185 # Add in all the interfaces that we are compatible with.
3187 while test "$loop" -ne 0; do
3188 iface
=`expr $revision - $loop`
3189 loop
=`expr $loop - 1`
3190 verstring
="$verstring_prefix$major.$iface:$verstring"
3193 # Before this point, $major must not contain `.'.
3195 versuffix
="$major.$revision"
3199 major
=.
`expr $current - $age`
3200 versuffix
="$major.$age.$revision"
3204 major
=.
`expr $current - $age`
3205 versuffix
=".$current.$age.$revision"
3206 verstring
="$current.$age.$revision"
3208 # Add in all the interfaces that we are compatible with.
3210 while test "$loop" -ne 0; do
3211 iface
=`expr $current - $loop`
3212 loop
=`expr $loop - 1`
3213 verstring
="$verstring:${iface}.0"
3216 # Make executables depend on our current version.
3217 verstring
="$verstring:${current}.0"
3222 versuffix
=".$current.$revision"
3226 # Use '-' rather than '.', since we only want one
3227 # extension on DOS 8.3 filesystems.
3228 major
=`expr $current - $age`
3233 $echo "$modename: unknown library version type \`$version_type'" 1>&2
3234 $echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2
3239 # Clear the version info if we defaulted, and they specified a release.
3240 if test -z "$vinfo" && test -n "$release"; then
3242 case $version_type in
3244 # we can't check for "0.0" in archive_cmds due to quoting
3245 # problems, so we reset it completely
3252 if test "$need_version" = no
; then
3259 # Remove version info from name if versioning should be avoided
3260 if test "$avoid_version" = yes && test "$need_version" = no
; then
3266 # Check to see if the archive will have undefined symbols.
3267 if test "$allow_undefined" = yes; then
3268 if test "$allow_undefined_flag" = unsupported
; then
3269 $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2
3270 build_libtool_libs
=no
3274 # Don't allow undefined symbols.
3275 allow_undefined_flag
="$no_undefined_flag"
3279 if test "$mode" != relink
; then
3280 # Remove our outputs, but don't remove object files since they
3281 # may have been created when compiling PIC objects.
3283 tempremovelist
=`$echo "$output_objdir/*"`
3284 for p
in $tempremovelist; do
3288 $output_objdir/$outputname |
$output_objdir/$libname.
* |
$output_objdir/${libname}${release}.
*)
3289 if test "X$precious_files_regex" != "X"; then
3290 if echo $p |
$EGREP -e "$precious_files_regex" >/dev
/null
2>&1
3295 removelist
="$removelist $p"
3300 if test -n "$removelist"; then
3301 $show "${rm}r $removelist"
3302 $run ${rm}r
$removelist
3306 # Now set the variables for building old libraries.
3307 if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience
; then
3308 oldlibs
="$oldlibs $output_objdir/$libname.$libext"
3310 # Transform .lo files to .o files.
3311 oldobjs
="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP`
3314 # Eliminate all temporary directories.
3315 for path
in $notinst_path; do
3316 lib_search_path
=`$echo "$lib_search_path " | ${SED} -e 's% $path % %g'`
3317 deplibs
=`$echo "$deplibs " | ${SED} -e 's% -L$path % %g'`
3318 dependency_libs
=`$echo "$dependency_libs " | ${SED} -e 's% -L$path % %g'`
3321 if test -n "$xrpath"; then
3322 # If the user specified any rpath flags, then add them.
3324 for libdir
in $xrpath; do
3325 temp_xrpath
="$temp_xrpath -R$libdir"
3326 case "$finalize_rpath " in
3328 *) finalize_rpath
="$finalize_rpath $libdir" ;;
3331 if test "$hardcode_into_libs" != yes ||
test "$build_old_libs" = yes; then
3332 dependency_libs
="$temp_xrpath $dependency_libs"
3336 # Make sure dlfiles contains only unique files that won't be dlpreopened
3337 old_dlfiles
="$dlfiles"
3339 for lib
in $old_dlfiles; do
3340 case " $dlprefiles $dlfiles " in
3342 *) dlfiles
="$dlfiles $lib" ;;
3346 # Make sure dlprefiles contains only unique files
3347 old_dlprefiles
="$dlprefiles"
3349 for lib
in $old_dlprefiles; do
3350 case "$dlprefiles " in
3352 *) dlprefiles
="$dlprefiles $lib" ;;
3356 if test "$build_libtool_libs" = yes; then
3357 if test -n "$rpath"; then
3359 *-*-cygwin* |
*-*-mingw* |
*-*-pw32* |
*-*-os2* |
*-*-beos*)
3360 # these systems don't actually have a c library (as such)!
3362 *-*-rhapsody* |
*-*-darwin1.
[012])
3363 # Rhapsody C library is in the System framework
3364 deplibs
="$deplibs -framework System"
3367 # Don't link with libc until the a.out ld.so is fixed.
3369 *-*-openbsd* |
*-*-freebsd* |
*-*-dragonfly*)
3370 # Do not include libc due to us having libc/libc_r.
3371 test "X$arg" = "X-lc" && continue
3374 # Add libc to deplibs on all other systems if necessary.
3375 if test "$build_libtool_need_lc" = "yes"; then
3376 deplibs
="$deplibs -lc"
3382 # Transform deplibs into only deplibs that can be linked in shared.
3384 libname_save
=$libname
3385 release_save
=$release
3386 versuffix_save
=$versuffix
3388 # I'm not sure if I'm treating the release correctly. I think
3389 # release should show up in the -l (ie -lgmp5) so we don't want to
3390 # add it in twice. Is that correct?
3396 case $deplibs_check_method in
3398 # Don't check for shared/static. Everything works.
3399 # This might be a little naive. We might want to check
3400 # whether the library exists or not. But this is on
3401 # osf3 & osf4 and I'm not really sure... Just
3402 # implementing what was already the behavior.
3406 # This code stresses the "libraries are programs" paradigm to its
3407 # limits. Maybe even breaks it. We compile a program, linking it
3408 # against the deplibs as a proxy for the library. Then we can check
3409 # whether they linked in statically or dynamically with ldd.
3411 cat > conftest.c
<<EOF
3412 int main() { return 0; }
3415 $LTCC -o conftest conftest.c
$deplibs
3416 if test "$?" -eq 0 ; then
3417 ldd_output
=`ldd conftest`
3418 for i
in $deplibs; do
3419 name
="`expr $i : '-l\(.*\)'`"
3420 # If $name is empty we are operating on a -L argument.
3421 if test "$name" != "" && test "$name" -ne "0"; then
3422 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
3423 case " $predeps $postdeps " in
3425 newdeplibs
="$newdeplibs $i"
3430 if test -n "$i" ; then
3431 libname
=`eval \\$echo \"$libname_spec\"`
3432 deplib_matches
=`eval \\$echo \"$library_names_spec\"`
3433 set dummy
$deplib_matches
3435 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
3436 newdeplibs
="$newdeplibs $i"
3440 $echo "*** Warning: dynamic linker does not accept needed library $i."
3441 $echo "*** I have the capability to make that library automatically link in when"
3442 $echo "*** you link to this library. But I can only do this if you have a"
3443 $echo "*** shared version of the library, which I believe you do not have"
3444 $echo "*** because a test_compile did reveal that the linker did not use it for"
3445 $echo "*** its dynamic dependency list that programs get resolved with at runtime."
3449 newdeplibs
="$newdeplibs $i"
3453 # Error occurred in the first compile. Let's try to salvage
3454 # the situation: Compile a separate program for each library.
3455 for i
in $deplibs; do
3456 name
="`expr $i : '-l\(.*\)'`"
3457 # If $name is empty we are operating on a -L argument.
3458 if test "$name" != "" && test "$name" != "0"; then
3460 $LTCC -o conftest conftest.c
$i
3462 if test "$?" -eq 0 ; then
3463 ldd_output
=`ldd conftest`
3464 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
3465 case " $predeps $postdeps " in
3467 newdeplibs
="$newdeplibs $i"
3472 if test -n "$i" ; then
3473 libname
=`eval \\$echo \"$libname_spec\"`
3474 deplib_matches
=`eval \\$echo \"$library_names_spec\"`
3475 set dummy
$deplib_matches
3477 if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
3478 newdeplibs
="$newdeplibs $i"
3482 $echo "*** Warning: dynamic linker does not accept needed library $i."
3483 $echo "*** I have the capability to make that library automatically link in when"
3484 $echo "*** you link to this library. But I can only do this if you have a"
3485 $echo "*** shared version of the library, which you do not appear to have"
3486 $echo "*** because a test_compile did reveal that the linker did not use this one"
3487 $echo "*** as a dynamic dependency that programs can get resolved with at runtime."
3493 $echo "*** Warning! Library $i is needed by this library but I was not able to"
3494 $echo "*** make it link in! You will probably need to install it or some"
3495 $echo "*** library that it depends on before this library will be fully"
3496 $echo "*** functional. Installing it before continuing would be even better."
3499 newdeplibs
="$newdeplibs $i"
3505 set dummy
$deplibs_check_method
3506 file_magic_regex
=`expr "$deplibs_check_method" : "$2 \(.*\)"`
3507 for a_deplib
in $deplibs; do
3508 name
="`expr $a_deplib : '-l\(.*\)'`"
3509 # If $name is empty we are operating on a -L argument.
3510 if test "$name" != "" && test "$name" != "0"; then
3511 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
3512 case " $predeps $postdeps " in
3514 newdeplibs
="$newdeplibs $a_deplib"
3519 if test -n "$a_deplib" ; then
3520 libname
=`eval \\$echo \"$libname_spec\"`
3521 for i
in $lib_search_path $sys_lib_search_path $shlib_search_path; do
3522 potential_libs
=`ls $i/$libname[.-]* 2>/dev/null`
3523 for potent_lib
in $potential_libs; do
3524 # Follow soft links.
3525 if ls -lLd "$potent_lib" 2>/dev
/null \
3526 |
grep " -> " >/dev
/null
; then
3529 # The statement above tries to avoid entering an
3530 # endless loop below, in case of cyclic links.
3531 # We might still enter an endless loop, since a link
3532 # loop can be closed while we follow links,
3534 potlib
="$potent_lib"
3535 while test -h "$potlib" 2>/dev
/null
; do
3536 potliblink
=`ls -ld $potlib | ${SED} 's/.* -> //'`
3538 [\\/]* |
[A-Za-z
]:[\\/]*) potlib
="$potliblink";;
3539 *) potlib
=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;
3542 if eval $file_magic_cmd \"\
$potlib\" 2>/dev
/null \
3544 |
$EGREP "$file_magic_regex" > /dev
/null
; then
3545 newdeplibs
="$newdeplibs $a_deplib"
3552 if test -n "$a_deplib" ; then
3555 $echo "*** Warning: linker path does not have real file for library $a_deplib."
3556 $echo "*** I have the capability to make that library automatically link in when"
3557 $echo "*** you link to this library. But I can only do this if you have a"
3558 $echo "*** shared version of the library, which you do not appear to have"
3559 $echo "*** because I did check the linker path looking for a file starting"
3560 if test -z "$potlib" ; then
3561 $echo "*** with $libname but no candidates were found. (...for file magic test)"
3563 $echo "*** with $libname and none of the candidates passed a file format test"
3564 $echo "*** using a file magic. Last file checked: $potlib"
3568 # Add a -L argument.
3569 newdeplibs
="$newdeplibs $a_deplib"
3571 done # Gone through all deplibs.
3574 set dummy
$deplibs_check_method
3575 match_pattern_regex
=`expr "$deplibs_check_method" : "$2 \(.*\)"`
3576 for a_deplib
in $deplibs; do
3577 name
="`expr $a_deplib : '-l\(.*\)'`"
3578 # If $name is empty we are operating on a -L argument.
3579 if test -n "$name" && test "$name" != "0"; then
3580 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
3581 case " $predeps $postdeps " in
3583 newdeplibs
="$newdeplibs $a_deplib"
3588 if test -n "$a_deplib" ; then
3589 libname
=`eval \\$echo \"$libname_spec\"`
3590 for i
in $lib_search_path $sys_lib_search_path $shlib_search_path; do
3591 potential_libs
=`ls $i/$libname[.-]* 2>/dev/null`
3592 for potent_lib
in $potential_libs; do
3593 potlib
="$potent_lib" # see symlink-check above in file_magic test
3594 if eval $echo \"$potent_lib\" 2>/dev
/null \
3596 |
$EGREP "$match_pattern_regex" > /dev
/null
; then
3597 newdeplibs
="$newdeplibs $a_deplib"
3604 if test -n "$a_deplib" ; then
3607 $echo "*** Warning: linker path does not have real file for library $a_deplib."
3608 $echo "*** I have the capability to make that library automatically link in when"
3609 $echo "*** you link to this library. But I can only do this if you have a"
3610 $echo "*** shared version of the library, which you do not appear to have"
3611 $echo "*** because I did check the linker path looking for a file starting"
3612 if test -z "$potlib" ; then
3613 $echo "*** with $libname but no candidates were found. (...for regex pattern test)"
3615 $echo "*** with $libname and none of the candidates passed a file format test"
3616 $echo "*** using a regex pattern. Last file checked: $potlib"
3620 # Add a -L argument.
3621 newdeplibs
="$newdeplibs $a_deplib"
3623 done # Gone through all deplibs.
3627 tmp_deplibs
=`$echo "X $deplibs" | $Xsed -e 's/ -lc$//' \
3628 -e 's/ -[LR][^ ]*//g'`
3629 if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
3630 for i
in $predeps $postdeps ; do
3631 # can't use Xsed below, because $i might contain '/'
3632 tmp_deplibs
=`$echo "X $tmp_deplibs" | ${SED} -e "1s,^X,," -e "s,$i,,"`
3635 if $echo "X $tmp_deplibs" |
$Xsed -e 's/[ ]//g' \
3636 |
grep .
>/dev
/null
; then
3638 if test "X$deplibs_check_method" = "Xnone"; then
3639 $echo "*** Warning: inter-library dependencies are not supported in this platform."
3641 $echo "*** Warning: inter-library dependencies are not known to be supported."
3643 $echo "*** All declared inter-library dependencies are being dropped."
3648 versuffix
=$versuffix_save
3650 release
=$release_save
3651 libname
=$libname_save
3655 *-*-rhapsody* |
*-*-darwin1.
[012])
3656 # On Rhapsody replace the C library is the System framework
3657 newdeplibs
=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'`
3661 if test "$droppeddeps" = yes; then
3662 if test "$module" = yes; then
3664 $echo "*** Warning: libtool could not satisfy all declared inter-library"
3665 $echo "*** dependencies of module $libname. Therefore, libtool will create"
3666 $echo "*** a static module, that should work as long as the dlopening"
3667 $echo "*** application is linked with the -dlopen flag."
3668 if test -z "$global_symbol_pipe"; then
3670 $echo "*** However, this would only work if libtool was able to extract symbol"
3671 $echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
3672 $echo "*** not find such a program. So, this module is probably useless."
3673 $echo "*** \`nm' from GNU binutils and a full rebuild may help."
3675 if test "$build_old_libs" = no
; then
3676 oldlibs
="$output_objdir/$libname.$libext"
3677 build_libtool_libs
=module
3680 build_libtool_libs
=no
3683 $echo "*** The inter-library dependencies that have been dropped here will be"
3684 $echo "*** automatically added whenever a program is linked with this library"
3685 $echo "*** or is declared to -dlopen it."
3687 if test "$allow_undefined" = no
; then
3689 $echo "*** Since this library must not contain undefined symbols,"
3690 $echo "*** because either the platform does not support them or"
3691 $echo "*** it was explicitly requested with -no-undefined,"
3692 $echo "*** libtool will only create a static version of it."
3693 if test "$build_old_libs" = no
; then
3694 oldlibs
="$output_objdir/$libname.$libext"
3695 build_libtool_libs
=module
3698 build_libtool_libs
=no
3703 # Done checking deplibs!
3707 # All the library-specific variables (install_libdir is set above).
3712 # Test again, we may have decided not to build it any more
3713 if test "$build_libtool_libs" = yes; then
3714 if test "$hardcode_into_libs" = yes; then
3715 # Hardcode the library paths
3718 rpath
="$finalize_rpath"
3719 test "$mode" != relink
&& rpath
="$compile_rpath$rpath"
3720 for libdir
in $rpath; do
3721 if test -n "$hardcode_libdir_flag_spec"; then
3722 if test -n "$hardcode_libdir_separator"; then
3723 if test -z "$hardcode_libdirs"; then
3724 hardcode_libdirs
="$libdir"
3726 # Just accumulate the unique libdirs.
3727 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
3728 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
3731 hardcode_libdirs
="$hardcode_libdirs$hardcode_libdir_separator$libdir"
3736 eval flag
=\"$hardcode_libdir_flag_spec\"
3737 dep_rpath
="$dep_rpath $flag"
3739 elif test -n "$runpath_var"; then
3740 case "$perm_rpath " in
3742 *) perm_rpath
="$perm_rpath $libdir" ;;
3746 # Substitute the hardcoded libdirs into the rpath.
3747 if test -n "$hardcode_libdir_separator" &&
3748 test -n "$hardcode_libdirs"; then
3749 libdir
="$hardcode_libdirs"
3750 if test -n "$hardcode_libdir_flag_spec_ld"; then
3751 eval dep_rpath
=\"$hardcode_libdir_flag_spec_ld\"
3753 eval dep_rpath
=\"$hardcode_libdir_flag_spec\"
3756 if test -n "$runpath_var" && test -n "$perm_rpath"; then
3757 # We should set the runpath_var.
3759 for dir
in $perm_rpath; do
3762 eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var"
3764 test -n "$dep_rpath" && deplibs
="$dep_rpath $deplibs"
3767 shlibpath
="$finalize_shlibpath"
3768 test "$mode" != relink
&& shlibpath
="$compile_shlibpath$shlibpath"
3769 if test -n "$shlibpath"; then
3770 eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var"
3773 # Get the real and link names of the library.
3774 eval shared_ext
=\"$shrext_cmds\"
3775 eval library_names
=\"$library_names_spec\"
3776 set dummy
$library_names
3780 if test -n "$soname_spec"; then
3781 eval soname
=\"$soname_spec\"
3785 if test -z "$dlname"; then
3789 lib
="$output_objdir/$realname"
3792 linknames
="$linknames $link"
3795 # Use standard objects if they are pic
3796 test -z "$pic_flag" && libobjs
=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
3798 # Prepare the list of exported symbols
3799 if test -z "$export_symbols"; then
3800 if test "$always_export_symbols" = yes ||
test -n "$export_symbols_regex"; then
3801 $show "generating symbol list for \`$libname.la'"
3802 export_symbols
="$output_objdir/$libname.exp"
3803 $run $rm $export_symbols
3804 cmds
=$export_symbols_cmds
3805 save_ifs
="$IFS"; IFS
='~'
3806 for cmd
in $cmds; do
3809 if len
=`expr "X$cmd" : ".*"` &&
3810 test "$len" -le "$max_cmd_len" ||
test "$max_cmd_len" -le -1; then
3812 $run eval "$cmd" ||
exit $?
3813 skipped_export
=false
3815 # The command line is too long to execute in one step.
3816 $show "using reloadable object file for export list..."
3821 if test -n "$export_symbols_regex"; then
3822 $show "$EGREP -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\""
3823 $run eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
3824 $show "$mv \"${export_symbols}T\" \"$export_symbols\""
3825 $run eval '$mv "${export_symbols}T" "$export_symbols"'
3830 if test -n "$export_symbols" && test -n "$include_expsyms"; then
3831 $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"'
3835 for test_deplib
in $deplibs; do
3836 case " $convenience " in
3837 *" $test_deplib "*) ;;
3839 tmp_deplibs
="$tmp_deplibs $test_deplib"
3843 deplibs
="$tmp_deplibs"
3845 if test -n "$convenience"; then
3846 if test -n "$whole_archive_flag_spec"; then
3847 save_libobjs
=$libobjs
3848 eval libobjs
=\"\
$libobjs $whole_archive_flag_spec\"
3850 gentop
="$output_objdir/${outputname}x"
3851 generated
="$generated $gentop"
3853 func_extract_archives
$gentop $convenience
3854 libobjs
="$libobjs $func_extract_archives_result"
3858 if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
3859 eval flag
=\"$thread_safe_flag_spec\"
3860 linker_flags
="$linker_flags $flag"
3863 # Make a backup of the uninstalled library when relinking
3864 if test "$mode" = relink
; then
3865 $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' ||
exit $?
3868 # Do each of the archive commands.
3869 if test "$module" = yes && test -n "$module_cmds" ; then
3870 if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
3871 eval test_cmds
=\"$module_expsym_cmds\"
3872 cmds
=$module_expsym_cmds
3874 eval test_cmds
=\"$module_cmds\"
3878 if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
3879 eval test_cmds
=\"$archive_expsym_cmds\"
3880 cmds
=$archive_expsym_cmds
3882 eval test_cmds
=\"$archive_cmds\"
3887 if test "X$skipped_export" != "X:" && len
=`expr "X$test_cmds" : ".*"` &&
3888 test "$len" -le "$max_cmd_len" ||
test "$max_cmd_len" -le -1; then
3891 # The command line is too long to link in one step, link piecewise.
3892 $echo "creating reloadable object files..."
3894 # Save the value of $output and $libobjs because we want to
3895 # use them later. If we have whole_archive_flag_spec, we
3896 # want to use save_libobjs as it was before
3897 # whole_archive_flag_spec was expanded, because we can't
3898 # assume the linker understands whole_archive_flag_spec.
3899 # This may have to be revisited, in case too many
3900 # convenience libraries get linked in and end up exceeding
3902 if test -z "$convenience" ||
test -z "$whole_archive_flag_spec"; then
3903 save_libobjs
=$libobjs
3906 output_la
=`$echo "X$output" | $Xsed -e "$basename"`
3908 # Clear the reloadable object creation command queue and
3909 # initialize k to one.
3916 output
=$output_objdir/$output_la-${k}.
$objext
3917 # Loop over the list of objects to be linked.
3918 for obj
in $save_libobjs
3920 eval test_cmds
=\"$reload_cmds $objlist $last_robj\"
3921 if test "X$objlist" = X ||
3922 { len
=`expr "X$test_cmds" : ".*"` &&
3923 test "$len" -le "$max_cmd_len"; }; then
3924 objlist
="$objlist $obj"
3926 # The command $test_cmds is almost too long, add a
3927 # command to the queue.
3928 if test "$k" -eq 1 ; then
3929 # The first file doesn't have a previous command to add.
3930 eval concat_cmds
=\"$reload_cmds $objlist $last_robj\"
3932 # All subsequent reloadable object files will link in
3933 # the last one created.
3934 eval concat_cmds
=\"\
$concat_cmds~
$reload_cmds $objlist $last_robj\"
3936 last_robj
=$output_objdir/$output_la-${k}.
$objext
3938 output
=$output_objdir/$output_la-${k}.
$objext
3943 # Handle the remaining objects by creating one last
3944 # reloadable object file. All subsequent reloadable object
3945 # files will link in the last one created.
3946 test -z "$concat_cmds" || concat_cmds
=$concat_cmds~
3947 eval concat_cmds
=\"\
${concat_cmds}$reload_cmds $objlist $last_robj\"
3949 if ${skipped_export-false}; then
3950 $show "generating symbol list for \`$libname.la'"
3951 export_symbols
="$output_objdir/$libname.exp"
3952 $run $rm $export_symbols
3954 # Append the command to create the export file.
3955 eval concat_cmds
=\"\
$concat_cmds~
$export_symbols_cmds\"
3958 # Set up a command to remove the reloadable object files
3959 # after they are used.
3961 while test "$i" -lt "$k"
3964 delfiles
="$delfiles $output_objdir/$output_la-${i}.$objext"
3967 $echo "creating a temporary reloadable object file: $output"
3969 # Loop through the commands generated above and execute them.
3970 save_ifs
="$IFS"; IFS
='~'
3971 for cmd
in $concat_cmds; do
3974 $run eval "$cmd" ||
exit $?
3979 # Restore the value of output.
3982 if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then
3983 eval libobjs
=\"\
$libobjs $whole_archive_flag_spec\"
3985 # Expand the library linking commands again to reset the
3986 # value of $libobjs for piecewise linking.
3988 # Do each of the archive commands.
3989 if test "$module" = yes && test -n "$module_cmds" ; then
3990 if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then
3991 cmds
=$module_expsym_cmds
3996 if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
3997 cmds
=$archive_expsym_cmds
4003 # Append the command to remove the reloadable object files
4004 # to the just-reset $cmds.
4005 eval cmds
=\"\
$cmds~\
$rm $delfiles\"
4007 save_ifs
="$IFS"; IFS
='~'
4008 for cmd
in $cmds; do
4012 $run eval "$cmd" ||
exit $?
4016 # Restore the uninstalled library and exit
4017 if test "$mode" = relink
; then
4018 $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' ||
exit $?
4022 # Create links to the real library.
4023 for linkname
in $linknames; do
4024 if test "$realname" != "$linkname"; then
4025 $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)"
4026 $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' ||
exit $?
4030 # If -module or -export-dynamic was specified, set the dlname.
4031 if test "$module" = yes ||
test "$export_dynamic" = yes; then
4032 # On all known operating systems, these are identical.
4039 if test -n "$deplibs"; then
4040 $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2
4043 if test -n "$dlfiles$dlprefiles" ||
test "$dlself" != no
; then
4044 $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2
4047 if test -n "$rpath"; then
4048 $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2
4051 if test -n "$xrpath"; then
4052 $echo "$modename: warning: \`-R' is ignored for objects" 1>&2
4055 if test -n "$vinfo"; then
4056 $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2
4059 if test -n "$release"; then
4060 $echo "$modename: warning: \`-release' is ignored for objects" 1>&2
4065 if test -n "$objs$old_deplibs"; then
4066 $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2
4070 obj
=`$echo "X$output" | $Xsed -e "$lo2o"`
4078 # Delete the old objects.
4079 $run $rm $obj $libobj
4081 # Objects from convenience libraries. This assumes
4082 # single-version convenience libraries. Whenever we create
4083 # different ones for PIC/non-PIC, this we'll have to duplicate
4087 # reload_cmds runs $LD directly, so let us get rid of
4088 # -Wl from whole_archive_flag_spec
4091 if test -n "$convenience"; then
4092 if test -n "$whole_archive_flag_spec"; then
4093 eval reload_conv_objs
=\"\
$reload_objs $whole_archive_flag_spec\"
4095 gentop
="$output_objdir/${obj}x"
4096 generated
="$generated $gentop"
4098 func_extract_archives
$gentop $convenience
4099 reload_conv_objs
="$reload_objs $func_extract_archives_result"
4103 # Create the old-style object.
4104 reload_objs
="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test
4108 save_ifs
="$IFS"; IFS
='~'
4109 for cmd
in $cmds; do
4113 $run eval "$cmd" ||
exit $?
4117 # Exit if we aren't doing a library object file.
4118 if test -z "$libobj"; then
4119 if test -n "$gentop"; then
4120 $show "${rm}r $gentop"
4127 if test "$build_libtool_libs" != yes; then
4128 if test -n "$gentop"; then
4129 $show "${rm}r $gentop"
4133 # Create an invalid libtool object if no PIC, so that we don't
4134 # accidentally link it into a program.
4135 # $show "echo timestamp > $libobj"
4136 # $run eval "echo timestamp > $libobj" || exit $?
4140 if test -n "$pic_flag" ||
test "$pic_mode" != default
; then
4141 # Only do commands if we really have different PIC objects.
4142 reload_objs
="$libobjs $reload_conv_objs"
4145 save_ifs
="$IFS"; IFS
='~'
4146 for cmd
in $cmds; do
4150 $run eval "$cmd" ||
exit $?
4155 if test -n "$gentop"; then
4156 $show "${rm}r $gentop"
4165 *cygwin
*) output
=`$echo $output | ${SED} -e 's,.exe$,,;s,$,.exe,'` ;;
4167 if test -n "$vinfo"; then
4168 $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2
4171 if test -n "$release"; then
4172 $echo "$modename: warning: \`-release' is ignored for programs" 1>&2
4175 if test "$preload" = yes; then
4176 if test "$dlopen_support" = unknown
&& test "$dlopen_self" = unknown
&&
4177 test "$dlopen_self_static" = unknown
; then
4178 $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support."
4183 *-*-rhapsody* |
*-*-darwin1.
[012])
4184 # On Rhapsody replace the C library is the System framework
4185 compile_deplibs
=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
4186 finalize_deplibs
=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
4192 # Don't allow lazy linking, it breaks C++ global constructors
4193 if test "$tagname" = CXX
; then
4194 compile_command
="$compile_command ${wl}-bind_at_load"
4195 finalize_command
="$finalize_command ${wl}-bind_at_load"
4200 compile_command
="$compile_command $compile_deplibs"
4201 finalize_command
="$finalize_command $finalize_deplibs"
4203 if test -n "$rpath$xrpath"; then
4204 # If the user specified any rpath flags, then add them.
4205 for libdir
in $rpath $xrpath; do
4206 # This is the magic to use -rpath.
4207 case "$finalize_rpath " in
4209 *) finalize_rpath
="$finalize_rpath $libdir" ;;
4214 # Now hardcode the library paths
4217 for libdir
in $compile_rpath $finalize_rpath; do
4218 if test -n "$hardcode_libdir_flag_spec"; then
4219 if test -n "$hardcode_libdir_separator"; then
4220 if test -z "$hardcode_libdirs"; then
4221 hardcode_libdirs
="$libdir"
4223 # Just accumulate the unique libdirs.
4224 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
4225 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
4228 hardcode_libdirs
="$hardcode_libdirs$hardcode_libdir_separator$libdir"
4233 eval flag
=\"$hardcode_libdir_flag_spec\"
4234 rpath
="$rpath $flag"
4236 elif test -n "$runpath_var"; then
4237 case "$perm_rpath " in
4239 *) perm_rpath
="$perm_rpath $libdir" ;;
4243 *-*-cygwin* |
*-*-mingw* |
*-*-pw32* |
*-*-os2*)
4244 case :$dllsearchpath: in
4246 *) dllsearchpath
="$dllsearchpath:$libdir";;
4251 # Substitute the hardcoded libdirs into the rpath.
4252 if test -n "$hardcode_libdir_separator" &&
4253 test -n "$hardcode_libdirs"; then
4254 libdir
="$hardcode_libdirs"
4255 eval rpath
=\" $hardcode_libdir_flag_spec\"
4257 compile_rpath
="$rpath"
4261 for libdir
in $finalize_rpath; do
4262 if test -n "$hardcode_libdir_flag_spec"; then
4263 if test -n "$hardcode_libdir_separator"; then
4264 if test -z "$hardcode_libdirs"; then
4265 hardcode_libdirs
="$libdir"
4267 # Just accumulate the unique libdirs.
4268 case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
4269 *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
4272 hardcode_libdirs
="$hardcode_libdirs$hardcode_libdir_separator$libdir"
4277 eval flag
=\"$hardcode_libdir_flag_spec\"
4278 rpath
="$rpath $flag"
4280 elif test -n "$runpath_var"; then
4281 case "$finalize_perm_rpath " in
4283 *) finalize_perm_rpath
="$finalize_perm_rpath $libdir" ;;
4287 # Substitute the hardcoded libdirs into the rpath.
4288 if test -n "$hardcode_libdir_separator" &&
4289 test -n "$hardcode_libdirs"; then
4290 libdir
="$hardcode_libdirs"
4291 eval rpath
=\" $hardcode_libdir_flag_spec\"
4293 finalize_rpath
="$rpath"
4295 if test -n "$libobjs" && test "$build_old_libs" = yes; then
4296 # Transform all the library objects into standard objects.
4297 compile_command
=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
4298 finalize_command
=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
4302 if test -n "$dlfiles$dlprefiles" ||
test "$dlself" != no
; then
4303 if test -n "$NM" && test -n "$global_symbol_pipe"; then
4304 dlsyms
="${outputname}S.c"
4306 $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2
4310 if test -n "$dlsyms"; then
4314 # Discover the nlist of each of the dlfiles.
4315 nlist
="$output_objdir/${outputname}.nm"
4317 $show "$rm $nlist ${nlist}S ${nlist}T"
4318 $run $rm "$nlist" "${nlist}S" "${nlist}T"
4320 # Parse the name list into a source file.
4321 $show "creating $output_objdir/$dlsyms"
4323 test -z "$run" && $echo > "$output_objdir/$dlsyms" "\
4324 /* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */
4325 /* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */
4331 /* Prevent the only kind of declaration conflicts we can make. */
4332 #define lt_preloaded_symbols some_other_symbol
4334 /* External symbol declarations for the compiler. */\
4337 if test "$dlself" = yes; then
4338 $show "generating symbol list for \`$output'"
4340 test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist"
4342 # Add our own program objects to the symbol list.
4343 progfiles
=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
4344 for arg
in $progfiles; do
4345 $show "extracting global C symbols from \`$arg'"
4346 $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
4349 if test -n "$exclude_expsyms"; then
4350 $run eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
4351 $run eval '$mv "$nlist"T "$nlist"'
4354 if test -n "$export_symbols_regex"; then
4355 $run eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T'
4356 $run eval '$mv "$nlist"T "$nlist"'
4359 # Prepare the list of exported symbols
4360 if test -z "$export_symbols"; then
4361 export_symbols
="$output_objdir/$outputname.exp"
4362 $run $rm $export_symbols
4363 $run eval "${SED} -n -e '/^: @PROGRAM@$/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
4365 $run eval "${SED} -e 's/\([ ][.*^$]\)/\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"'
4366 $run eval 'grep -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T'
4367 $run eval 'mv "$nlist"T "$nlist"'
4371 for arg
in $dlprefiles; do
4372 $show "extracting global C symbols from \`$arg'"
4373 name
=`$echo "$arg" | ${SED} -e 's%^.*/%%'`
4374 $run eval '$echo ": $name " >> "$nlist"'
4375 $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
4378 if test -z "$run"; then
4379 # Make sure we have at least an empty file.
4380 test -f "$nlist" ||
: > "$nlist"
4382 if test -n "$exclude_expsyms"; then
4383 $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
4384 $mv "$nlist"T
"$nlist"
4387 # Try sorting and uniquifying the output.
4388 if grep -v "^: " < "$nlist" |
4389 if sort -k 3 </dev
/null
>/dev
/null
2>&1; then
4394 uniq > "$nlist"S
; then
4397 grep -v "^: " < "$nlist" > "$nlist"S
4400 if test -f "$nlist"S
; then
4401 eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"'
4403 $echo '/* NONE */' >> "$output_objdir/$dlsyms"
4406 $echo >> "$output_objdir/$dlsyms" "\
4408 #undef lt_preloaded_symbols
4410 #if defined (__STDC__) && __STDC__
4411 # define lt_ptr void *
4413 # define lt_ptr char *
4417 /* The mapping between symbol names and symbols. */
4421 *cygwin
* |
*mingw
* )
4422 $echo >> "$output_objdir/$dlsyms" "\
4423 /* DATA imports from DLLs on WIN32 can't be const, because
4424 runtime relocations are performed -- see ld's documentation
4430 $echo >> "$output_objdir/$dlsyms" "\
4437 $echo >> "$output_objdir/$dlsyms" "\
4441 lt_preloaded_symbols[] =
4445 eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$dlsyms"
4447 $echo >> "$output_objdir/$dlsyms" "\
4451 /* This works around a problem in FreeBSD linker */
4452 #ifdef FREEBSD_WORKAROUND
4453 static const void *lt_preloaded_setup() {
4454 return lt_preloaded_symbols;
4464 pic_flag_for_symtable
=
4466 # compiling the symbol table file with pic_flag works around
4467 # a FreeBSD bug that causes programs to crash when -lm is
4468 # linked before any other PIC object. But we must not use
4469 # pic_flag when linking with -static. The problem exists in
4470 # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
4471 *-*-freebsd2*|
*-*-freebsd3.0
*|
*-*-freebsdelf3.0
*)
4472 case "$compile_command " in
4474 *) pic_flag_for_symtable
=" $pic_flag -DFREEBSD_WORKAROUND";;
4477 case "$compile_command " in
4479 *) pic_flag_for_symtable
=" $pic_flag";;
4483 # Now compile the dynamic symbol file.
4484 $show "(cd $output_objdir && $LTCC -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")"
4485 $run eval '(cd $output_objdir && $LTCC -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' ||
exit $?
4487 # Clean up the generated files.
4488 $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T"
4489 $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T"
4491 # Transform the symbol file into the correct name.
4492 compile_command
=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
4493 finalize_command
=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
4496 $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2
4501 # We keep going just in case the user didn't refer to
4502 # lt_preloaded_symbols. The linker will fail if global_symbol_pipe
4503 # really was required.
4505 # Nullify the symbol file.
4506 compile_command
=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
4507 finalize_command
=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
4510 if test "$need_relink" = no ||
test "$build_libtool_libs" != yes; then
4511 # Replace the output file specification.
4512 compile_command
=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
4513 link_command
="$compile_command$compile_rpath"
4515 # We have no uninstalled library dependencies, so finalize right now.
4516 $show "$link_command"
4517 $run eval "$link_command"
4520 # Delete the generated files.
4521 if test -n "$dlsyms"; then
4522 $show "$rm $output_objdir/${outputname}S.${objext}"
4523 $run $rm "$output_objdir/${outputname}S.${objext}"
4529 if test -n "$shlibpath_var"; then
4530 # We should set the shlibpath_var
4532 for dir
in $temp_rpath; do
4534 [\\/]* |
[A-Za-z
]:[\\/]*)
4539 # Relative path: add a thisdir entry.
4540 rpath
="$rpath\$thisdir/$dir:"
4547 if test -n "$compile_shlibpath$finalize_shlibpath"; then
4548 compile_command
="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command"
4550 if test -n "$finalize_shlibpath"; then
4551 finalize_command
="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
4556 if test -n "$runpath_var"; then
4557 if test -n "$perm_rpath"; then
4558 # We should set the runpath_var.
4560 for dir
in $perm_rpath; do
4563 compile_var
="$runpath_var=\"$rpath\$$runpath_var\" "
4565 if test -n "$finalize_perm_rpath"; then
4566 # We should set the runpath_var.
4568 for dir
in $finalize_perm_rpath; do
4571 finalize_var
="$runpath_var=\"$rpath\$$runpath_var\" "
4575 if test "$no_install" = yes; then
4576 # We don't need to create a wrapper script.
4577 link_command
="$compile_var$compile_command$compile_rpath"
4578 # Replace the output file specification.
4579 link_command
=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
4580 # Delete the old output file.
4582 # Link the executable and exit
4583 $show "$link_command"
4584 $run eval "$link_command" ||
exit $?
4588 if test "$hardcode_action" = relink
; then
4589 # Fast installation is not supported
4590 link_command
="$compile_var$compile_command$compile_rpath"
4591 relink_command
="$finalize_var$finalize_command$finalize_rpath"
4593 $echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2
4594 $echo "$modename: \`$output' will be relinked during installation" 1>&2
4596 if test "$fast_install" != no
; then
4597 link_command
="$finalize_var$compile_command$finalize_rpath"
4598 if test "$fast_install" = yes; then
4599 relink_command
=`$echo "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'`
4601 # fast_install is set to needless
4605 link_command
="$compile_var$compile_command$compile_rpath"
4606 relink_command
="$finalize_var$finalize_command$finalize_rpath"
4610 # Replace the output file specification.
4611 link_command
=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
4613 # Delete the old output files.
4614 $run $rm $output $output_objdir/$outputname $output_objdir/lt-
$outputname
4616 $show "$link_command"
4617 $run eval "$link_command" ||
exit $?
4619 # Now create the wrapper script.
4620 $show "creating $output"
4622 # Quote the relink command for shipping.
4623 if test -n "$relink_command"; then
4624 # Preserve any variables that may affect compiler behavior
4625 for var
in $variables_saved_for_relink; do
4626 if eval test -z \"\
${$var+set}\"; then
4627 relink_command
="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
4628 elif eval var_value
=\$
$var; test -z "$var_value"; then
4629 relink_command
="$var=; export $var; $relink_command"
4631 var_value
=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
4632 relink_command
="$var=\"$var_value\"; export $var; $relink_command"
4635 relink_command
="(cd `pwd`; $relink_command)"
4636 relink_command
=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
4639 # Quote $echo for shipping.
4640 if test "X$echo" = "X$SHELL $progpath --fallback-echo"; then
4642 [\\/]* |
[A-Za-z
]:[\\/]*) qecho
="$SHELL $progpath --fallback-echo";;
4643 *) qecho
="$SHELL `pwd`/$progpath --fallback-echo";;
4645 qecho
=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"`
4647 qecho
=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"`
4650 # Only actually do things if our run command is non-null.
4651 if test -z "$run"; then
4652 # win32 will think the script is a binary if it has
4653 # a .exe suffix, so we strip it off here.
4655 *.exe
) output
=`$echo $output|${SED} 's,.exe$,,'` ;;
4657 # test for cygwin because mv fails w/o .exe extensions
4661 outputname
=`$echo $outputname|${SED} 's,.exe$,,'` ;;
4665 *cygwin
* |
*mingw
* )
4666 cwrappersource
=`$echo ${objdir}/lt-${outputname}.c`
4667 cwrapper
=`$echo ${output}.exe`
4668 $rm $cwrappersource $cwrapper
4669 trap "$rm $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
4671 cat > $cwrappersource <<EOF
4673 /* $cwrappersource - temporary wrapper executable for $objdir/$outputname
4674 Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
4676 The $output program cannot be directly executed until all the libtool
4677 libraries that it depends on are installed.
4679 This wrapper executable should never be moved out of the build directory.
4680 If it is, it will not operate correctly.
4682 Currently, it simply execs the wrapper *script* "/bin/sh $output",
4683 but could eventually absorb all of the scripts functionality and
4684 exec $objdir/$outputname directly.
4687 cat >> $cwrappersource<<"EOF"
4695 #if defined(PATH_MAX)
4696 # define LT_PATHMAX PATH_MAX
4697 #elif defined(MAXPATHLEN)
4698 # define LT_PATHMAX MAXPATHLEN
4700 # define LT_PATHMAX 1024
4703 #ifndef DIR_SEPARATOR
4704 #define DIR_SEPARATOR '/'
4707 #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \
4709 #define HAVE_DOS_BASED_FILE_SYSTEM
4710 #ifndef DIR_SEPARATOR_2
4711 #define DIR_SEPARATOR_2 '\\'
4715 #ifndef DIR_SEPARATOR_2
4716 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
4717 #else /* DIR_SEPARATOR_2 */
4718 # define IS_DIR_SEPARATOR(ch) \
4719 (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
4720 #endif /* DIR_SEPARATOR_2 */
4722 #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type)))
4723 #define XFREE(stale) do { \
4724 if (stale) { free ((void *) stale); stale = 0; } \
4727 const char *program_name = NULL;
4729 void * xmalloc (size_t num);
4730 char * xstrdup (const char *string);
4731 char * basename (const char *name);
4732 char * fnqualify(const char *path);
4733 char * strendzap(char *str, const char *pat);
4734 void lt_fatal (const char *message, ...);
4737 main (int argc, char *argv[])
4742 program_name = (char *) xstrdup ((char *) basename (argv[0]));
4743 newargz = XMALLOC(char *, argc+2);
4746 cat >> $cwrappersource <<EOF
4747 newargz[0] = "$SHELL";
4750 cat >> $cwrappersource <<"EOF"
4751 newargz
[1] = fnqualify
(argv
[0]);
4752 /* we know the
script has the same name
, without the .exe
*/
4753 /* so
make sure newargz
[1] doesn
't end in .exe */
4754 strendzap(newargz[1],".exe");
4755 for (i = 1; i < argc; i++)
4756 newargz[i+1] = xstrdup(argv[i]);
4757 newargz[argc+1] = NULL;
4760 cat >> $cwrappersource <<EOF
4761 execv("$SHELL",newargz);
4764 cat >> $cwrappersource <<"EOF"
4768 xmalloc (size_t num)
4770 void * p = (void *) malloc (num);
4772 lt_fatal ("Memory exhausted");
4778 xstrdup (const char *string)
4780 return string ? strcpy ((char *) xmalloc (strlen (string) + 1), string) : NULL
4785 basename (const char *name)
4789 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
4790 /* Skip over the disk name in MSDOS pathnames. */
4791 if (isalpha (name[0]) && name[1] == ':')
4795 for (base = name; *name; name++)
4796 if (IS_DIR_SEPARATOR (*name))
4798 return (char *) base;
4802 fnqualify(const char *path)
4806 char tmp[LT_PATHMAX + 1];
4808 assert(path != NULL);
4810 /* Is it qualified already? */
4811 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
4812 if (isalpha (path[0]) && path[1] == ':')
4813 return xstrdup (path);
4815 if (IS_DIR_SEPARATOR (path[0]))
4816 return xstrdup (path);
4818 /* prepend the current directory */
4819 /* doesn't handle
'~' */
4820 if (getcwd
(tmp
, LT_PATHMAX
) == NULL
)
4821 lt_fatal
("getcwd failed");
4822 size
= strlen
(tmp
) + 1 + strlen
(path
) + 1; /* +2 for '/' and
'\0' */
4823 p
= XMALLOC
(char
, size
);
4824 sprintf
(p
, "%s%c%s", tmp
, DIR_SEPARATOR
, path
);
4829 strendzap
(char
*str
, const char
*pat
)
4833 assert
(str
!= NULL
);
4834 assert
(pat
!= NULL
);
4837 patlen
= strlen
(pat
);
4841 str
+= len
- patlen
;
4842 if (strcmp
(str
, pat
) == 0)
4849 lt_error_core
(int exit_status
, const char
* mode
,
4850 const char
* message
, va_list ap
)
4852 fprintf
(stderr
, "%s: %s: ", program_name
, mode
);
4853 vfprintf
(stderr
, message
, ap
);
4854 fprintf
(stderr
, ".\n");
4856 if (exit_status
>= 0)
4861 lt_fatal
(const char
*message
, ...
)
4864 va_start
(ap
, message
);
4865 lt_error_core
(EXIT_FAILURE
, "FATAL", message
, ap
);
4869 # we should really use a build-platform specific compiler
4870 # here, but OTOH, the wrappers (shell script and this C one)
4871 # are only useful if you want to execute the "real" binary.
4872 # Since the "real" binary is built for $host, then this
4873 # wrapper might as well be built for $host, too.
4874 $run $LTCC -s -o $cwrapper $cwrappersource
4878 trap "$rm $output; exit $EXIT_FAILURE" 1 2 15
4883 # $output - temporary wrapper script for $objdir/$outputname
4884 # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
4886 # The $output program cannot be directly executed until all the libtool
4887 # libraries that it depends on are installed.
4889 # This wrapper script should never be moved out of the build directory.
4890 # If it is, it will not operate correctly.
4892 # Sed substitution that helps us do robust quoting. It backslashifies
4893 # metacharacters that are still active within double-quoted strings.
4894 Xsed='${SED} -e 1s/^X//'
4895 sed_quote_subst='$sed_quote_subst'
4897 # The HP-UX ksh and POSIX shell print the target directory to stdout
4899 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
4901 relink_command=\"$relink_command\"
4903 # This environment variable determines our operation mode.
4904 if test \"\$libtool_install_magic\" = \"$magic\"; then
4905 # install mode needs the following variable:
4906 notinst_deplibs='$notinst_deplibs'
4908 # When we are sourced in execute mode, \$file and \$echo are already set.
4909 if test \"\$libtool_execute_magic\" != \"$magic\"; then
4912 # Make sure echo works.
4913 if test \"X\$1\" = X--no-reexec; then
4914 # Discard the --no-reexec flag, and continue.
4916 elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then
4917 # Yippee, \$echo works!
4920 # Restart under the correct shell, and then maybe \$echo will work.
4921 exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"}
4927 # Find the directory that this script lives in.
4928 thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
4929 test \"x\$thisdir\" = \"x\$file\" && thisdir=.
4931 # Follow symbolic links until we get to the real thisdir.
4932 file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\`
4933 while test -n \"\$file\"; do
4934 destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`
4936 # If there was a directory component, then change thisdir.
4937 if test \"x\$destdir\" != \"x\$file\"; then
4938 case \"\$destdir\" in
4939 [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
4940 *) thisdir=\"\$thisdir/\$destdir\" ;;
4944 file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\`
4945 file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\`
4948 # Try to get the absolute directory name.
4949 absdir=\`cd \"\$thisdir\" && pwd\`
4950 test -n \"\$absdir\" && thisdir=\"\$absdir\"
4953 if test "$fast_install" = yes; then
4955 program=lt-'$outputname'$exeext
4956 progdir=\"\$thisdir/$objdir\"
4958 if test ! -f \"\$progdir/\$program\" || \\
4959 { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\
4960 test \"X\$file\" != \"X\$progdir/\$program\"; }; then
4962 file=\"\$\$-\$program\"
4964 if test ! -d \"\$progdir\"; then
4965 $mkdir \"\$progdir\"
4967 $rm \"\$progdir/\$file\"
4972 # relink executable if necessary
4973 if test -n \"\$relink_command\"; then
4974 if relink_command_output=\`eval \$relink_command 2>&1\`; then :
4976 $echo \"\$relink_command_output\" >&2
4977 $rm \"\$progdir/\$file\"
4982 $mv \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
4983 { $rm \"\$progdir/\$program\";
4984 $mv \"\$progdir/\$file\" \"\$progdir/\$program\"; }
4985 $rm \"\$progdir/\$file\"
4989 program='$outputname'
4990 progdir=\"\$thisdir/$objdir\"
4996 if test -f \"\$progdir/\$program\"; then"
4998 # Export our shlibpath_var if we have one.
4999 if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
5001 # Add our own library path to $shlibpath_var
5002 $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
5004 # Some systems cannot cope with colon-terminated $shlibpath_var
5005 # The second colon is a workaround for a bug in BeOS R4 sed
5006 $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\`
5008 export $shlibpath_var
5012 # fixup the dll searchpath if we need to.
5013 if test -n "$dllsearchpath"; then
5015 # Add the dll search path components to the executable PATH
5016 PATH=$dllsearchpath:\$PATH
5021 if test \"\$libtool_execute_magic\" != \"$magic\"; then
5022 # Run the actual program with our arguments.
5025 # Backslashes separate directories on plain windows
5026 *-*-mingw |
*-*-os2*)
5028 exec \$progdir\\\\\$program \${1+\"\$@\"}
5034 exec \$progdir/\$program \${1+\"\$@\"}
5039 \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\"
5043 # The program doesn't exist.
5044 \$echo \"\$0: error: \$progdir/\$program does not exist\" 1>&2
5045 \$echo \"This script is just a wrapper for \$program.\" 1>&2
5046 $echo \"See the $PACKAGE documentation for more information.\" 1>&2
5057 # See if we need to build an old-fashioned archive.
5058 for oldlib
in $oldlibs; do
5060 if test "$build_libtool_libs" = convenience
; then
5061 oldobjs
="$libobjs_save"
5062 addlibs
="$convenience"
5063 build_libtool_libs
=no
5065 if test "$build_libtool_libs" = module
; then
5066 oldobjs
="$libobjs_save"
5067 build_libtool_libs
=no
5069 oldobjs
="$old_deplibs $non_pic_objects"
5071 addlibs
="$old_convenience"
5074 if test -n "$addlibs"; then
5075 gentop
="$output_objdir/${outputname}x"
5076 generated
="$generated $gentop"
5078 func_extract_archives
$gentop $addlibs
5079 oldobjs
="$oldobjs $func_extract_archives_result"
5082 # Do each command in the archive commands.
5083 if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
5084 cmds
=$old_archive_from_new_cmds
5086 # POSIX demands no paths to be encoded in archives. We have
5087 # to avoid creating archives with duplicate basenames if we
5088 # might have to extract them afterwards, e.g., when creating a
5089 # static archive out of a convenience library, or when linking
5090 # the entirety of a libtool archive into another (currently
5091 # not supported by libtool).
5092 if (for obj
in $oldobjs
5094 $echo "X$obj" |
$Xsed -e 's%^.*/%%'
5095 done |
sort |
sort -uc >/dev
/null
2>&1); then
5098 $echo "copying selected object files to avoid basename conflicts..."
5100 if test -z "$gentop"; then
5101 gentop
="$output_objdir/${outputname}x"
5102 generated
="$generated $gentop"
5104 $show "${rm}r $gentop"
5105 $run ${rm}r
"$gentop"
5106 $show "$mkdir $gentop"
5107 $run $mkdir "$gentop"
5109 if test "$status" -ne 0 && test ! -d "$gentop"; then
5114 save_oldobjs
=$oldobjs
5117 for obj
in $save_oldobjs
5119 objbase
=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
5120 case " $oldobjs " in
5121 " ") oldobjs
=$obj ;;
5124 # Make sure we don't pick an alternate name that also
5126 newobj
=lt
$counter-$objbase
5127 counter
=`expr $counter + 1`
5128 case " $oldobjs " in
5129 *[\
/]"$newobj "*) ;;
5130 *) if test ! -f "$gentop/$newobj"; then break; fi ;;
5133 $show "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj"
5134 $run ln "$obj" "$gentop/$newobj" ||
5135 $run cp "$obj" "$gentop/$newobj"
5136 oldobjs
="$oldobjs $gentop/$newobj"
5138 *) oldobjs
="$oldobjs $obj" ;;
5143 eval cmds
=\"$old_archive_cmds\"
5145 if len
=`expr "X$cmds" : ".*"` &&
5146 test "$len" -le "$max_cmd_len" ||
test "$max_cmd_len" -le -1; then
5147 cmds
=$old_archive_cmds
5149 # the command line is too long to link in one step, link in parts
5150 $echo "using piecewise archive linking..."
5155 save_oldobjs
=$oldobjs
5157 # Is there a better way of finding the last object in the list?
5158 for obj
in $save_oldobjs
5162 for obj
in $save_oldobjs
5164 oldobjs
="$objlist $obj"
5165 objlist
="$objlist $obj"
5166 eval test_cmds
=\"$old_archive_cmds\"
5167 if len
=`expr "X$test_cmds" : ".*"` &&
5168 test "$len" -le "$max_cmd_len"; then
5171 # the above command should be used before it gets too long
5173 if test "$obj" = "$last_oldobj" ; then
5176 test -z "$concat_cmds" || concat_cmds
=$concat_cmds~
5177 eval concat_cmds
=\"\
${concat_cmds}$old_archive_cmds\"
5183 if test "X$oldobjs" = "X" ; then
5184 eval cmds
=\"\
$concat_cmds\"
5186 eval cmds
=\"\
$concat_cmds~\
$old_archive_cmds\"
5190 save_ifs
="$IFS"; IFS
='~'
5191 for cmd
in $cmds; do
5195 $run eval "$cmd" ||
exit $?
5200 if test -n "$generated"; then
5201 $show "${rm}r$generated"
5202 $run ${rm}r
$generated
5205 # Now create the libtool archive.
5209 test "$build_old_libs" = yes && old_library
="$libname.$libext"
5210 $show "creating $output"
5212 # Preserve any variables that may affect compiler behavior
5213 for var
in $variables_saved_for_relink; do
5214 if eval test -z \"\
${$var+set}\"; then
5215 relink_command
="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
5216 elif eval var_value
=\$
$var; test -z "$var_value"; then
5217 relink_command
="$var=; export $var; $relink_command"
5219 var_value
=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
5220 relink_command
="$var=\"$var_value\"; export $var; $relink_command"
5223 # Quote the link command for shipping.
5224 relink_command
="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
5225 relink_command
=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
5226 if test "$hardcode_automatic" = yes ; then
5231 # Only create the output if not a dry run.
5232 if test -z "$run"; then
5233 for installed
in no
yes; do
5234 if test "$installed" = yes; then
5235 if test -z "$install_libdir"; then
5238 output
="$output_objdir/$outputname"i
5239 # Replace all uninstalled libtool libraries with the installed ones
5241 for deplib
in $dependency_libs; do
5244 name
=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'`
5245 eval libdir
=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
5246 if test -z "$libdir"; then
5247 $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
5250 newdependency_libs
="$newdependency_libs $libdir/$name"
5252 *) newdependency_libs
="$newdependency_libs $deplib" ;;
5255 dependency_libs
="$newdependency_libs"
5257 for lib
in $dlfiles; do
5258 name
=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
5259 eval libdir
=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
5260 if test -z "$libdir"; then
5261 $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
5264 newdlfiles
="$newdlfiles $libdir/$name"
5266 dlfiles
="$newdlfiles"
5268 for lib
in $dlprefiles; do
5269 name
=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
5270 eval libdir
=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
5271 if test -z "$libdir"; then
5272 $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
5275 newdlprefiles
="$newdlprefiles $libdir/$name"
5277 dlprefiles
="$newdlprefiles"
5280 for lib
in $dlfiles; do
5282 [\\/]* |
[A-Za-z
]:[\\/]*) abs
="$lib" ;;
5283 *) abs
=`pwd`"/$lib" ;;
5285 newdlfiles
="$newdlfiles $abs"
5287 dlfiles
="$newdlfiles"
5289 for lib
in $dlprefiles; do
5291 [\\/]* |
[A-Za-z
]:[\\/]*) abs
="$lib" ;;
5292 *) abs
=`pwd`"/$lib" ;;
5294 newdlprefiles
="$newdlprefiles $abs"
5296 dlprefiles
="$newdlprefiles"
5299 # place dlname in correct position for cygwin
5301 case $host,$output,$installed,$module,$dlname in
5302 *cygwin
*,*lai
,yes,no
,*.dll |
*mingw
*,*lai
,yes,no
,*.dll
) tdlname
=..
/bin
/$dlname ;;
5305 # $outputname - a libtool library file
5306 # Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
5308 # Please DO NOT delete this file!
5309 # It is necessary for linking the library.
5311 # The name that we can dlopen(3).
5314 # Names of this library.
5315 library_names='$library_names'
5317 # The name of the static archive.
5318 old_library='$old_library'
5320 # Libraries that this one depends upon.
5321 dependency_libs='$dependency_libs'
5323 # Version information for $libname.
5328 # Is this an already installed library?
5329 installed=$installed
5331 # Should we warn about portability when linking against -modules?
5332 shouldnotlink=$module
5334 # Files to dlopen/dlpreopen
5336 dlpreopen='$dlprefiles'
5338 # Directory that this library needs to be installed in:
5339 libdir='$install_libdir'"
5340 if test "$installed" = no
&& test "$need_relink" = yes; then
5342 relink_command=\"$relink_command\""
5347 # Do a symbolic link so that the libtool archive can be found in
5348 # LD_LIBRARY_PATH before the program is installed.
5349 $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)"
5350 $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' ||
exit $?
5356 # libtool install mode
5358 modename
="$modename: install"
5360 # There may be an optional sh(1) argument at the beginning of
5361 # install_prog (especially on Windows NT).
5362 if test "$nonopt" = "$SHELL" ||
test "$nonopt" = /bin
/sh ||
5363 # Allow the use of GNU shtool's install command.
5364 $echo "X$nonopt" |
$Xsed |
grep shtool
> /dev
/null
; then
5365 # Aesthetically quote it.
5366 arg
=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
5368 *$quote_scanset* |
*]* |
*\|
* |
*\
&* |
*\
(* |
*\
)* |
"")
5372 install_prog
="$arg "
5380 # The real first argument should be the name of the installation program.
5381 # Aesthetically quote it.
5382 arg
=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
5384 *$quote_scanset* |
*]* |
*\|
* |
*\
&* |
*\
(* |
*\
)* |
"")
5388 install_prog
="$install_prog$arg"
5390 # We need to accept at least all the BSD install flags.
5400 if test -n "$dest"; then
5401 files
="$files $dest"
5419 # If the previous option needed an argument, then skip it.
5420 if test -n "$prev"; then
5429 # Aesthetically quote the argument.
5430 arg
=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
5432 *$quote_scanset* |
*]* |
*\|
* |
*\
&* |
*\
(* |
*\
)* |
"")
5436 install_prog
="$install_prog $arg"
5439 if test -z "$install_prog"; then
5440 $echo "$modename: you must specify an install program" 1>&2
5445 if test -n "$prev"; then
5446 $echo "$modename: the \`$prev' option requires an argument" 1>&2
5451 if test -z "$files"; then
5452 if test -z "$dest"; then
5453 $echo "$modename: no file or destination specified" 1>&2
5455 $echo "$modename: you must specify a destination" 1>&2
5461 # Strip any trailing slash from the destination.
5462 dest
=`$echo "X$dest" | $Xsed -e 's%/$%%'`
5464 # Check to see that the destination is a directory.
5465 test -d "$dest" && isdir
=yes
5466 if test "$isdir" = yes; then
5470 destdir
=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
5471 test "X$destdir" = "X$dest" && destdir
=.
5472 destname
=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`
5474 # Not a directory, so check to see that there is only one file specified.
5476 if test "$#" -gt 2; then
5477 $echo "$modename: \`$dest' is not a directory" 1>&2
5483 [\\/]* |
[A-Za-z
]:[\\/]*) ;;
5485 for file in $files; do
5489 $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2
5498 # This variable tells wrapper scripts just to set variables rather
5499 # than running their programs.
5500 libtool_install_magic
="$magic"
5505 for file in $files; do
5507 # Do each installation.
5510 # Do the static libraries later.
5511 staticlibs
="$staticlibs $file"
5515 # Check to see that this really is a libtool archive.
5516 if (${SED} -e '2q' $file |
grep "^# Generated by .*$PACKAGE") >/dev
/null
2>&1; then :
5518 $echo "$modename: \`$file' is not a valid libtool archive" 1>&2
5526 # If there is no directory component, then add one.
5528 */* |
*\\*) .
$file ;;
5532 # Add the libdir to current_libdirs if it is the destination.
5533 if test "X$destdir" = "X$libdir"; then
5534 case "$current_libdirs " in
5536 *) current_libdirs
="$current_libdirs $libdir" ;;
5539 # Note the libdir as a future libdir.
5540 case "$future_libdirs " in
5542 *) future_libdirs
="$future_libdirs $libdir" ;;
5546 dir
=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/
5547 test "X$dir" = "X$file/" && dir
=
5550 if test -n "$relink_command"; then
5551 # Determine the prefix the user has applied to our future dir.
5552 inst_prefix_dir
=`$echo "$destdir" | $SED "s%$libdir\$%%"`
5554 # Don't allow the user to place us outside of our expected
5555 # location b/c this prevents finding dependent libraries that
5556 # are installed to the same prefix.
5557 # At present, this check doesn't affect windows .dll's that
5558 # are installed into $libdir/../bin (currently, that works fine)
5559 # but it's something to keep an eye on.
5560 if test "$inst_prefix_dir" = "$destdir"; then
5561 $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2
5565 if test -n "$inst_prefix_dir"; then
5566 # Stick the inst_prefix_dir data into the link command.
5567 relink_command
=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
5569 relink_command
=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
5572 $echo "$modename: warning: relinking \`$file'" 1>&2
5573 $show "$relink_command"
5574 if $run eval "$relink_command"; then :
5576 $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
5581 # See the names of the shared library.
5582 set dummy
$library_names
5583 if test -n "$2"; then
5589 test -n "$relink_command" && srcname
="$realname"T
5591 # Install the shared library and build the symlinks.
5592 $show "$install_prog $dir/$srcname $destdir/$realname"
5593 $run eval "$install_prog $dir/$srcname $destdir/$realname" ||
exit $?
5594 if test -n "$stripme" && test -n "$striplib"; then
5595 $show "$striplib $destdir/$realname"
5596 $run eval "$striplib $destdir/$realname" ||
exit $?
5599 if test "$#" -gt 0; then
5600 # Delete the old symlinks, and create new ones.
5603 if test "$linkname" != "$realname"; then
5604 $show "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
5605 $run eval "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
5610 # Do each command in the postinstall commands.
5611 lib
="$destdir/$realname"
5612 cmds
=$postinstall_cmds
5613 save_ifs
="$IFS"; IFS
='~'
5614 for cmd
in $cmds; do
5618 $run eval "$cmd" ||
exit $?
5623 # Install the pseudo-library for information purposes.
5624 name
=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
5625 instname
="$dir/$name"i
5626 $show "$install_prog $instname $destdir/$name"
5627 $run eval "$install_prog $instname $destdir/$name" ||
exit $?
5629 # Maybe install the static library, too.
5630 test -n "$old_library" && staticlibs
="$staticlibs $dir/$old_library"
5634 # Install (i.e. copy) a libtool object.
5636 # Figure out destination file name, if it wasn't already specified.
5637 if test -n "$destname"; then
5638 destfile
="$destdir/$destname"
5640 destfile
=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
5641 destfile
="$destdir/$destfile"
5644 # Deduce the name of the destination old-style object file.
5647 staticdest
=`$echo "X$destfile" | $Xsed -e "$lo2o"`
5650 staticdest
="$destfile"
5654 $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2
5660 # Install the libtool object if requested.
5661 if test -n "$destfile"; then
5662 $show "$install_prog $file $destfile"
5663 $run eval "$install_prog $file $destfile" ||
exit $?
5666 # Install the old object if enabled.
5667 if test "$build_old_libs" = yes; then
5668 # Deduce the name of the old-style object file.
5669 staticobj
=`$echo "X$file" | $Xsed -e "$lo2o"`
5671 $show "$install_prog $staticobj $staticdest"
5672 $run eval "$install_prog \$staticobj \$staticdest" ||
exit $?
5678 # Figure out destination file name, if it wasn't already specified.
5679 if test -n "$destname"; then
5680 destfile
="$destdir/$destname"
5682 destfile
=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
5683 destfile
="$destdir/$destfile"
5686 # If the file is missing, and there is a .exe on the end, strip it
5687 # because it is most likely a libtool script we actually want to
5692 if test ! -f "$file"; then
5693 file=`$echo $file|${SED} 's,.exe$,,'`
5699 # Do a test to see if this is really a libtool program.
5702 wrapper
=`$echo $file | ${SED} -e 's,.exe$,,'`
5708 if (${SED} -e '4q' $wrapper |
grep "^# Generated by .*$PACKAGE")>/dev
/null
2>&1; then
5712 # To insure that "foo" is sourced, and not "foo.exe",
5713 # finese the cygwin/MSYS system by explicitly sourcing "foo."
5714 # which disallows the automatic-append-.exe behavior.
5716 *cygwin
* |
*mingw
*) wrapperdot
=${wrapper}.
;;
5717 *) wrapperdot
=${wrapper} ;;
5719 # If there is no directory component, then add one.
5721 */* |
*\\*) .
${wrapperdot} ;;
5722 *) . .
/${wrapperdot} ;;
5725 # Check the variables that should have been set.
5726 if test -z "$notinst_deplibs"; then
5727 $echo "$modename: invalid libtool wrapper script \`$wrapper'" 1>&2
5732 for lib
in $notinst_deplibs; do
5733 # Check to see that each library is installed.
5735 if test -f "$lib"; then
5736 # If there is no directory component, then add one.
5738 */* |
*\\*) .
$lib ;;
5742 libfile
="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test
5743 if test -n "$libdir" && test ! -f "$libfile"; then
5744 $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
5750 # To insure that "foo" is sourced, and not "foo.exe",
5751 # finese the cygwin/MSYS system by explicitly sourcing "foo."
5752 # which disallows the automatic-append-.exe behavior.
5754 *cygwin
* |
*mingw
*) wrapperdot
=${wrapper}.
;;
5755 *) wrapperdot
=${wrapper} ;;
5757 # If there is no directory component, then add one.
5759 */* |
*\\*) .
${wrapperdot} ;;
5760 *) . .
/${wrapperdot} ;;
5764 if test "$fast_install" = no
&& test -n "$relink_command"; then
5765 if test "$finalize" = yes && test -z "$run"; then
5767 test -n "$TMPDIR" && tmpdir
="$TMPDIR"
5768 tmpdir
="$tmpdir/libtool-$$"
5771 if $mkdir "$tmpdir"; then
5775 $echo "$modename: error: cannot create temporary directory \`$tmpdir'" 1>&2
5778 file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'`
5779 outputname
="$tmpdir/$file"
5780 # Replace the output file specification.
5781 relink_command
=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'`
5783 $show "$relink_command"
5784 if $run eval "$relink_command"; then :
5786 $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
5792 $echo "$modename: warning: cannot relink \`$file'" 1>&2
5795 # Install the binary that we compiled earlier.
5796 file=`$echo "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
5800 # remove .exe since cygwin /usr/bin/install will append another
5802 case $install_prog,$host in
5803 */usr
/bin
/install*,*cygwin
*)
5804 case $file:$destfile in
5809 destfile
=$destfile.exe
5812 destfile
=`$echo $destfile | ${SED} -e 's,.exe$,,'`
5817 $show "$install_prog$stripme $file $destfile"
5818 $run eval "$install_prog\$stripme \$file \$destfile" ||
exit $?
5819 test -n "$outputname" && ${rm}r
"$tmpdir"
5824 for file in $staticlibs; do
5825 name
=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
5827 # Set up the ranlib parameters.
5828 oldlib
="$destdir/$name"
5830 $show "$install_prog $file $oldlib"
5831 $run eval "$install_prog \$file \$oldlib" ||
exit $?
5833 if test -n "$stripme" && test -n "$old_striplib"; then
5834 $show "$old_striplib $oldlib"
5835 $run eval "$old_striplib $oldlib" ||
exit $?
5838 # Do each command in the postinstall commands.
5839 cmds
=$old_postinstall_cmds
5840 save_ifs
="$IFS"; IFS
='~'
5841 for cmd
in $cmds; do
5845 $run eval "$cmd" ||
exit $?
5850 if test -n "$future_libdirs"; then
5851 $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2
5854 if test -n "$current_libdirs"; then
5855 # Maybe just do a dry run.
5856 test -n "$run" && current_libdirs
=" -n$current_libdirs"
5857 exec_cmd
='$SHELL $progpath $preserve_args --finish$current_libdirs'
5863 # libtool finish mode
5865 modename
="$modename: finish"
5869 if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
5872 libdirs
="$libdirs $dir"
5875 for libdir
in $libdirs; do
5876 if test -n "$finish_cmds"; then
5877 # Do each command in the finish commands.
5879 save_ifs
="$IFS"; IFS
='~'
5880 for cmd
in $cmds; do
5884 $run eval "$cmd" || admincmds
="$admincmds
5889 if test -n "$finish_eval"; then
5890 # Do the single finish_eval.
5891 eval cmds
=\"$finish_eval\"
5892 $run eval "$cmds" || admincmds
="$admincmds
5898 # Exit here if they wanted silent mode.
5899 test "$show" = : && exit $EXIT_SUCCESS
5901 $echo "----------------------------------------------------------------------"
5902 $echo "Libraries have been installed in:"
5903 for libdir
in $libdirs; do
5907 $echo "If you ever happen to want to link against installed libraries"
5908 $echo "in a given directory, LIBDIR, you must either use libtool, and"
5909 $echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
5910 $echo "flag during linking and do at least one of the following:"
5911 if test -n "$shlibpath_var"; then
5912 $echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
5913 $echo " during execution"
5915 if test -n "$runpath_var"; then
5916 $echo " - add LIBDIR to the \`$runpath_var' environment variable"
5917 $echo " during linking"
5919 if test -n "$hardcode_libdir_flag_spec"; then
5921 eval flag
=\"$hardcode_libdir_flag_spec\"
5923 $echo " - use the \`$flag' linker flag"
5925 if test -n "$admincmds"; then
5926 $echo " - have your system administrator run these commands:$admincmds"
5928 if test -f /etc
/ld.so.conf
; then
5929 $echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
5932 $echo "See any operating system documentation about shared libraries for"
5933 $echo "more information, such as the ld(1) and ld.so(8) manual pages."
5934 $echo "----------------------------------------------------------------------"
5938 # libtool execute mode
5940 modename
="$modename: execute"
5942 # The first argument is the command name.
5944 if test -z "$cmd"; then
5945 $echo "$modename: you must specify a COMMAND" 1>&2
5950 # Handle -dlopen flags immediately.
5951 for file in $execute_dlfiles; do
5952 if test ! -f "$file"; then
5953 $echo "$modename: \`$file' is not a file" 1>&2
5961 # Check to see that this really is a libtool archive.
5962 if (${SED} -e '2q' $file |
grep "^# Generated by .*$PACKAGE") >/dev
/null
2>&1; then :
5964 $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
5969 # Read the libtool library.
5973 # If there is no directory component, then add one.
5975 */* |
*\\*) .
$file ;;
5979 # Skip this library if it cannot be dlopened.
5980 if test -z "$dlname"; then
5981 # Warn if it was a shared library.
5982 test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'"
5986 dir
=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
5987 test "X$dir" = "X$file" && dir
=.
5989 if test -f "$dir/$objdir/$dlname"; then
5992 $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2
5998 # Just add the directory containing the .lo file.
5999 dir
=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
6000 test "X$dir" = "X$file" && dir
=.
6004 $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2
6009 # Get the absolute pathname.
6010 absdir
=`cd "$dir" && pwd`
6011 test -n "$absdir" && dir
="$absdir"
6013 # Now add the directory to shlibpath_var.
6014 if eval "test -z \"\$$shlibpath_var\""; then
6015 eval "$shlibpath_var=\"\$dir\""
6017 eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
6021 # This variable tells wrapper scripts just to set shlibpath_var
6022 # rather than running their programs.
6023 libtool_execute_magic
="$magic"
6025 # Check if any of the arguments is a wrapper script.
6032 # Do a test to see if this is really a libtool program.
6033 if (${SED} -e '4q' $file |
grep "^# Generated by .*$PACKAGE") >/dev
/null
2>&1; then
6034 # If there is no directory component, then add one.
6036 */* |
*\\*) .
$file ;;
6040 # Transform arg to wrapped name.
6041 file="$progdir/$program"
6045 # Quote arguments (to preserve shell metacharacters).
6046 file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
6047 args
="$args \"$file\""
6050 if test -z "$run"; then
6051 if test -n "$shlibpath_var"; then
6052 # Export the shlibpath_var.
6053 eval "export $shlibpath_var"
6056 # Restore saved environment variables
6057 if test "${save_LC_ALL+set}" = set; then
6058 LC_ALL
="$save_LC_ALL"; export LC_ALL
6060 if test "${save_LANG+set}" = set; then
6061 LANG
="$save_LANG"; export LANG
6064 # Now prepare to actually exec the command.
6065 exec_cmd
="\$cmd$args"
6067 # Display what would be done.
6068 if test -n "$shlibpath_var"; then
6069 eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\""
6070 $echo "export $shlibpath_var"
6077 # libtool clean and uninstall mode
6079 modename
="$modename: $mode"
6085 # This variable tells wrapper scripts just to set variables rather
6086 # than running their programs.
6087 libtool_install_magic
="$magic"
6092 -f) rm="$rm $arg"; rmforce
=yes ;;
6093 -*) rm="$rm $arg" ;;
6094 *) files
="$files $arg" ;;
6098 if test -z "$rm"; then
6099 $echo "$modename: you must specify an RM program" 1>&2
6106 origobjdir
="$objdir"
6107 for file in $files; do
6108 dir
=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
6109 if test "X$dir" = "X$file"; then
6111 objdir
="$origobjdir"
6113 objdir
="$dir/$origobjdir"
6115 name
=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
6116 test "$mode" = uninstall
&& objdir
="$dir"
6118 # Remember objdir for removal later, being careful to avoid duplicates
6119 if test "$mode" = clean
; then
6122 *) rmdirs
="$rmdirs $objdir" ;;
6126 # Don't error if the file doesn't exist and rm -f was used.
6127 if (test -L "$file") >/dev
/null
2>&1 \
6128 ||
(test -h "$file") >/dev
/null
2>&1 \
6129 ||
test -f "$file"; then
6131 elif test -d "$file"; then
6134 elif test "$rmforce" = yes; then
6142 # Possibly a libtool archive, so verify it.
6143 if (${SED} -e '2q' $file |
grep "^# Generated by .*$PACKAGE") >/dev
/null
2>&1; then
6146 # Delete the libtool libraries and symlinks.
6147 for n
in $library_names; do
6148 rmfiles
="$rmfiles $objdir/$n"
6150 test -n "$old_library" && rmfiles
="$rmfiles $objdir/$old_library"
6151 test "$mode" = clean
&& rmfiles
="$rmfiles $objdir/$name $objdir/${name}i"
6153 if test "$mode" = uninstall
; then
6154 if test -n "$library_names"; then
6155 # Do each command in the postuninstall commands.
6156 cmds
=$postuninstall_cmds
6157 save_ifs
="$IFS"; IFS
='~'
6158 for cmd
in $cmds; do
6163 if test "$?" -ne 0 && test "$rmforce" != yes; then
6170 if test -n "$old_library"; then
6171 # Do each command in the old_postuninstall commands.
6172 cmds
=$old_postuninstall_cmds
6173 save_ifs
="$IFS"; IFS
='~'
6174 for cmd
in $cmds; do
6179 if test "$?" -ne 0 && test "$rmforce" != yes; then
6185 # FIXME: should reinstall the best remaining shared library.
6191 # Possibly a libtool object, so verify it.
6192 if (${SED} -e '2q' $file |
grep "^# Generated by .*$PACKAGE") >/dev
/null
2>&1; then
6197 # Add PIC object to the list of files to remove.
6198 if test -n "$pic_object" \
6199 && test "$pic_object" != none
; then
6200 rmfiles
="$rmfiles $dir/$pic_object"
6203 # Add non-PIC object to the list of files to remove.
6204 if test -n "$non_pic_object" \
6205 && test "$non_pic_object" != none
; then
6206 rmfiles
="$rmfiles $dir/$non_pic_object"
6212 if test "$mode" = clean
; then
6216 file=`$echo $file|${SED} 's,.exe$,,'`
6217 noexename
=`$echo $name|${SED} 's,.exe$,,'`
6218 # $file with .exe has already been added to rmfiles,
6219 # add $file without .exe
6220 rmfiles
="$rmfiles $file"
6223 # Do a test to see if this is a libtool program.
6224 if (${SED} -e '4q' $file |
grep "^# Generated by .*$PACKAGE") >/dev
/null
2>&1; then
6228 # note $name still contains .exe if it was in $file originally
6229 # as does the version of $file that was added into $rmfiles
6230 rmfiles
="$rmfiles $objdir/$name $objdir/${name}S.${objext}"
6231 if test "$fast_install" = yes && test -n "$relink_command"; then
6232 rmfiles
="$rmfiles $objdir/lt-$name"
6234 if test "X$noexename" != "X$name" ; then
6235 rmfiles
="$rmfiles $objdir/lt-${noexename}.c"
6241 $show "$rm $rmfiles"
6242 $run $rm $rmfiles || exit_status
=1
6244 objdir
="$origobjdir"
6246 # Try to remove the ${objdir}s in the directories where we deleted files
6247 for dir
in $rmdirs; do
6248 if test -d "$dir"; then
6250 $run rmdir $dir >/dev
/null
2>&1
6258 $echo "$modename: you must specify a MODE" 1>&2
6259 $echo "$generic_help" 1>&2
6264 if test -z "$exec_cmd"; then
6265 $echo "$modename: invalid operation mode \`$mode'" 1>&2
6266 $echo "$generic_help" 1>&2
6269 fi # test -z "$show_help"
6271 if test -n "$exec_cmd"; then
6276 # We need to display help for each of the modes.
6279 "Usage: $modename [OPTION]... [MODE-ARG]...
6281 Provide generalized library-building support services.
6283 --config show all configuration variables
6284 --debug enable verbose shell tracing
6285 -n, --dry-run display commands without modifying any files
6286 --features display basic configuration information and exit
6287 --finish same as \`--mode=finish'
6288 --help display this help message and exit
6289 --mode=MODE use operation mode MODE [default=inferred from MODE-ARGS]
6290 --quiet same as \`--silent'
6291 --silent don't print informational messages
6292 --tag=TAG use configuration variables from tag TAG
6293 --version print version information
6295 MODE must be one of the following:
6297 clean remove files from the build directory
6298 compile compile a source file into a libtool object
6299 execute automatically set library path, then run a program
6300 finish complete the installation of libtool libraries
6301 install install libraries or executables
6302 link create a library or an executable
6303 uninstall remove libraries from an installed directory
6305 MODE-ARGS vary depending on the MODE. Try \`$modename --help --mode=MODE' for
6306 a more detailed description of MODE.
6308 Report bugs to <bug-libtool@gnu.org>."
6314 "Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
6316 Remove files from the build directory.
6318 RM is the name of the program to use to delete files associated with each FILE
6319 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
6322 If FILE is a libtool library, object or program, all the files associated
6323 with it are deleted. Otherwise, only FILE itself is deleted using RM."
6328 "Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
6330 Compile a source file into a libtool library object.
6332 This mode accepts the following additional options:
6334 -o OUTPUT-FILE set the output file name to OUTPUT-FILE
6335 -prefer-pic try to building PIC objects only
6336 -prefer-non-pic try to building non-PIC objects only
6337 -static always build a \`.o' file suitable for static linking
6339 COMPILE-COMMAND is a command to be used in creating a \`standard' object file
6340 from the given SOURCEFILE.
6342 The output file name is determined by removing the directory component from
6343 SOURCEFILE, then substituting the C source code suffix \`.c' with the
6344 library object suffix, \`.lo'."
6349 "Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]...
6351 Automatically set library path, then run a program.
6353 This mode accepts the following additional options:
6355 -dlopen FILE add the directory containing FILE to the library path
6357 This mode sets the library path environment variable according to \`-dlopen'
6360 If any of the ARGS are libtool executable wrappers, then they are translated
6361 into their corresponding uninstalled binary, and any of their required library
6362 directories are added to the library path.
6364 Then, COMMAND is executed, with ARGS as arguments."
6369 "Usage: $modename [OPTION]... --mode=finish [LIBDIR]...
6371 Complete the installation of libtool libraries.
6373 Each LIBDIR is a directory that contains libtool libraries.
6375 The commands that this mode executes may require superuser privileges. Use
6376 the \`--dry-run' option if you just want to see what would be executed."
6381 "Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND...
6383 Install executables or libraries.
6385 INSTALL-COMMAND is the installation command. The first component should be
6386 either the \`install' or \`cp' program.
6388 The rest of the components are interpreted as arguments to that command (only
6389 BSD-compatible install options are recognized)."
6394 "Usage: $modename [OPTION]... --mode=link LINK-COMMAND...
6396 Link object files or libraries together to form another library, or to
6397 create an executable program.
6399 LINK-COMMAND is a command using the C compiler that you would use to create
6400 a program from several object files.
6402 The following components of LINK-COMMAND are treated specially:
6404 -all-static do not do any dynamic linking at all
6405 -avoid-version do not add a version suffix if possible
6406 -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
6407 -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols
6408 -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
6409 -export-symbols SYMFILE
6410 try to export only the symbols listed in SYMFILE
6411 -export-symbols-regex REGEX
6412 try to export only the symbols matching REGEX
6413 -LLIBDIR search LIBDIR for required installed libraries
6414 -lNAME OUTPUT-FILE requires the installed library libNAME
6415 -module build a library that can dlopened
6416 -no-fast-install disable the fast-install mode
6417 -no-install link a not-installable executable
6418 -no-undefined declare that a library does not refer to external symbols
6419 -o OUTPUT-FILE create OUTPUT-FILE from the specified objects
6420 -objectlist FILE Use a list of object files found in FILE to specify objects
6421 -precious-files-regex REGEX
6422 don't remove output files matching REGEX
6423 -release RELEASE specify package release information
6424 -rpath LIBDIR the created library will eventually be installed in LIBDIR
6425 -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries
6426 -static do not do any dynamic linking of libtool libraries
6427 -version-info CURRENT[:REVISION[:AGE]]
6428 specify library version info [each variable defaults to 0]
6430 All other options (arguments beginning with \`-') are ignored.
6432 Every other argument is treated as a filename. Files ending in \`.la' are
6433 treated as uninstalled libtool libraries, other files are standard or library
6436 If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
6437 only library objects (\`.lo' files) may be specified, and \`-rpath' is
6438 required, except when creating a convenience library.
6440 If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
6441 using \`ar' and \`ranlib', or on Windows using \`lib'.
6443 If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
6444 is created, otherwise an executable program is created."
6449 "Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
6451 Remove libraries from an installation directory.
6453 RM is the name of the program to use to delete files associated with each FILE
6454 (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
6457 If FILE is a libtool library, all the files associated with it are deleted.
6458 Otherwise, only FILE itself is deleted using RM."
6462 $echo "$modename: invalid operation mode \`$mode'" 1>&2
6469 $echo "Try \`$modename --help' for more information about other modes."
6473 # The TAGs below are defined such that we never get into a situation
6474 # in which we disable both kinds of libraries. Given conflicting
6475 # choices, we go for a static library, that is the most portable,
6476 # since we can't tell whether shared libraries were disabled because
6477 # the user asked for that or because the platform doesn't support
6478 # them. This is particularly important on AIX, because we don't
6479 # support having both static and shared libraries enabled at the same
6480 # time on that platform, so we default to a shared-only configuration.
6481 # If a disable-shared tag is given, we'll fallback to a static-only
6482 # configuration. But we'll never go from static-only to shared-only.
6484 # ### BEGIN LIBTOOL TAG CONFIG: disable-shared
6485 build_libtool_libs
=no
6487 # ### END LIBTOOL TAG CONFIG: disable-shared
6489 # ### BEGIN LIBTOOL TAG CONFIG: disable-static
6490 build_old_libs
=`case $build_libtool_libs in yes) $echo no;; *) $echo yes;; esac`
6491 # ### END LIBTOOL TAG CONFIG: disable-static