mirror of
https://https.git.savannah.gnu.org/git/libtool.git
synced 2026-01-27 01:44:28 +00:00
* ltmain.in (deplib): The cygwin environment doesn't actually have
-lm, and although the linker fakes having one, specifiying it to libtool will break ILD, so we ignore it when generating dependencies.
This commit is contained in:
parent
125219f71f
commit
c61b75ee1e
@ -1,4 +1,9 @@
|
||||
1999-02-12 Gary V. Vaughan <gvaughan@oranda.demon.co.uk>
|
||||
|
||||
* ltmain.in (deplib): The cygwin environment doesn't actually have
|
||||
-lm, and although the linker fakes having one, specifiying it to
|
||||
libtool will break ILD, so we ignore it when generating
|
||||
dependencies.
|
||||
|
||||
* ltmain.in: Applied Thomas Tanner's latest ild.diff. I seem to
|
||||
be spending all my time merging these diffs rather than adding to
|
||||
|
||||
@ -1398,6 +1398,15 @@ compiler."
|
||||
continue
|
||||
;;
|
||||
-l*)
|
||||
case "$host" in
|
||||
*-*-cygwin*)
|
||||
# The cygwin environment doesn't actually have -lm, and
|
||||
# although the linker fakes having one, specifiying it to
|
||||
# libtool will break ILD!
|
||||
case "$deplib" in
|
||||
-lm) continue ;;
|
||||
esac
|
||||
esac
|
||||
name="`expr $deplib : '-l\(.*\)'`"
|
||||
libname=`eval \\$echo \"$libname_spec\"`
|
||||
found=no
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user