* Re: [Qemu-devel] /usr/bin/ld: cannot find -lm
2004-07-20 2:37 [Qemu-devel] /usr/bin/ld: cannot find -lm Darrin Ritter
@ 2004-07-19 12:20 ` vaise
2004-07-19 15:35 ` Michael L Torrie
1 sibling, 0 replies; 5+ messages in thread
From: vaise @ 2004-07-19 12:20 UTC (permalink / raw)
To: qemu-devel
On Tuesday 20 July 2004 04:37, Darrin Ritter wrote:
> hi
>
> Im trying to compile qemu 0.6.0 from source and I am getting this error:
>
> /usr/bin/ld: cannot find -lm
>
> what library file is make looking for as I cant find ´lm´anyware in my
> list of packages
>
I don't remeber the pakage, but it has already been said on this list.
So you will find easily with the "find" tool on the archive page.
Dsant
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] /usr/bin/ld: cannot find -lm
2004-07-20 2:37 [Qemu-devel] /usr/bin/ld: cannot find -lm Darrin Ritter
2004-07-19 12:20 ` vaise
@ 2004-07-19 15:35 ` Michael L Torrie
2004-07-22 3:05 ` Darrin Ritter
1 sibling, 1 reply; 5+ messages in thread
From: Michael L Torrie @ 2004-07-19 15:35 UTC (permalink / raw)
To: qemu-devel
On Mon, 2004-07-19 at 20:37, Darrin Ritter wrote:
> hi
>
> Im trying to compile qemu 0.6.0 from source and I am getting this error:
>
> /usr/bin/ld: cannot find -lm
This refers to libm.so which is the math library, part of the standard c
library (glibc). If your compiler can't find it, perhaps you need to
install the glibc-devel? libm.so is usually in /usr/lib/libm.so, and is
usually a symlink to /lib/libm-<version>.so
Michael
>
> what library file is make looking for as I cant find ´lm´anyware in my
> list of packages
>
> I am having trouble getting windows 95 or 98 to load onto the virtual
> disk when I get to where the system reboots it ends up failing to
> complete the install and I end up with illegal operations or BSOD´s,
> currently this is with the binary file that is on the website, if i
> compile it will this improve its stability?
>
> sorry that this is not more organized, Great program BTW I am impressed
> with how fast it boots the win 98 boot floppy as it caches the results
> of the last boot
>
> cheers DarR!N
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
--
Michael L Torrie <torriem@chem.byu.edu>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] /usr/bin/ld: cannot find -lm
@ 2004-07-20 2:37 Darrin Ritter
2004-07-19 12:20 ` vaise
2004-07-19 15:35 ` Michael L Torrie
0 siblings, 2 replies; 5+ messages in thread
From: Darrin Ritter @ 2004-07-20 2:37 UTC (permalink / raw)
To: qemu
hi
Im trying to compile qemu 0.6.0 from source and I am getting this error:
/usr/bin/ld: cannot find -lm
what library file is make looking for as I cant find ´lm´anyware in my
list of packages
I am having trouble getting windows 95 or 98 to load onto the virtual
disk when I get to where the system reboots it ends up failing to
complete the install and I end up with illegal operations or BSOD´s,
currently this is with the binary file that is on the website, if i
compile it will this improve its stability?
sorry that this is not more organized, Great program BTW I am impressed
with how fast it boots the win 98 boot floppy as it caches the results
of the last boot
cheers DarR!N
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] /usr/bin/ld: cannot find -lm
2004-07-22 3:05 ` Darrin Ritter
@ 2004-07-21 16:17 ` Damien Mascord
0 siblings, 0 replies; 5+ messages in thread
From: Damien Mascord @ 2004-07-21 16:17 UTC (permalink / raw)
To: qemu-devel
Hi,
Remember if you are compiling with static, you will need the .a form
rather than the .so form.
Damien
Darrin Ritter wrote:
> thanks michael
>
> I have the following library:
>
> [dv@George lib]$ ls -la libm.so
> lrwxrwxrwx 1 root root 19 Jul 20 23:52 libm.so -> ../../lib/libm.so.6*
>
> what do you suggest i check next
>
> DarR!N
>
> Michael L Torrie wrote:
>
>> On Mon, 2004-07-19 at 20:37, Darrin Ritter wrote:
>>
>>
>>> hi
>>>
>>> Im trying to compile qemu 0.6.0 from source and I am getting this
>>> error:
>>>
>>> /usr/bin/ld: cannot find -lm
>>>
>>
>>
>> This refers to libm.so which is the math library, part of the standard c
>> library (glibc). If your compiler can't find it, perhaps you need to
>> install the glibc-devel? libm.so is usually in /usr/lib/libm.so, and is
>> usually a symlink to /lib/libm-<version>.so
>>
>> Michael
>>
>>
>>
>>
>>> what library file is make looking for as I cant find ´lm´anyware in
>>> my list of packages
>>>
>>> I am having trouble getting windows 95 or 98 to load onto the
>>> virtual disk when I get to where the system reboots it ends up
>>> failing to complete the install and I end up with illegal operations
>>> or BSOD´s, currently this is with the binary file that is on the
>>> website, if i compile it will this improve its stability?
>>>
>>> sorry that this is not more organized, Great program BTW I am
>>> impressed with how fast it boots the win 98 boot floppy as it caches
>>> the results of the last boot
>>>
>>> cheers DarR!N
>>>
>>>
>>> _______________________________________________
>>> Qemu-devel mailing list
>>> Qemu-devel@nongnu.org
>>> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>>>
>>
>
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] /usr/bin/ld: cannot find -lm
2004-07-19 15:35 ` Michael L Torrie
@ 2004-07-22 3:05 ` Darrin Ritter
2004-07-21 16:17 ` Damien Mascord
0 siblings, 1 reply; 5+ messages in thread
From: Darrin Ritter @ 2004-07-22 3:05 UTC (permalink / raw)
To: qemu-devel
thanks michael
I have the following library:
[dv@George lib]$ ls -la libm.so
lrwxrwxrwx 1 root root 19 Jul 20 23:52 libm.so -> ../../lib/libm.so.6*
what do you suggest i check next
DarR!N
Michael L Torrie wrote:
>On Mon, 2004-07-19 at 20:37, Darrin Ritter wrote:
>
>
>>hi
>>
>>Im trying to compile qemu 0.6.0 from source and I am getting this error:
>>
>>/usr/bin/ld: cannot find -lm
>>
>>
>
>This refers to libm.so which is the math library, part of the standard c
>library (glibc). If your compiler can't find it, perhaps you need to
>install the glibc-devel? libm.so is usually in /usr/lib/libm.so, and is
>usually a symlink to /lib/libm-<version>.so
>
>Michael
>
>
>
>
>>what library file is make looking for as I cant find ´lm´anyware in my
>>list of packages
>>
>>I am having trouble getting windows 95 or 98 to load onto the virtual
>>disk when I get to where the system reboots it ends up failing to
>>complete the install and I end up with illegal operations or BSOD´s,
>>currently this is with the binary file that is on the website, if i
>>compile it will this improve its stability?
>>
>>sorry that this is not more organized, Great program BTW I am impressed
>>with how fast it boots the win 98 boot floppy as it caches the results
>>of the last boot
>>
>>cheers DarR!N
>>
>>
>>_______________________________________________
>>Qemu-devel mailing list
>>Qemu-devel@nongnu.org
>>http://lists.nongnu.org/mailman/listinfo/qemu-devel
>>
>>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2004-07-21 16:07 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-07-20 2:37 [Qemu-devel] /usr/bin/ld: cannot find -lm Darrin Ritter
2004-07-19 12:20 ` vaise
2004-07-19 15:35 ` Michael L Torrie
2004-07-22 3:05 ` Darrin Ritter
2004-07-21 16:17 ` Damien Mascord
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).