<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On 1 May 2013 17:16, Gorm J. Siiger <span dir="ltr"><<a href="mailto:gjs@sonnit.dk" target="_blank">gjs@sonnit.dk</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

/usr/bin/ld: cannot find -lc</blockquote></div><br>Install the glibc-static package and try again.</div><div class="gmail_extra"><br></div><div class="gmail_extra" style>The "-lc" means the "c" library, named libc.  The compiler replaces "-l" with "lib".  The same type of error saying "cannot find -lMOO" would mean that it couldn't find the library file libMOO.  For a dynamic library, this would be libMOO.so, and for a static library would be libMOO.a.  So you're missing the file "libc.so".</div>

<div class="gmail_extra" style><br></div><div class="gmail_extra" style>You can then use "yum provides */libMOO.so" to find what package to install.</div><div class="gmail_extra"><br></div><div class="gmail_extra" style>

J</div><div class="gmail_extra" style><br></div></div>