On 05/29/2015 05:40 PM, Charles Z Henry wrote:
You should have a /usr/lib/libc.so or /usr/lib64/libc.so
and /usr/lib/libm.so or /usr/lib64/libm.so
as the OP indicated that they are using "apt-get", it seems they are on Debian (or a derivative). Debian does not use /usr/lib64/ but has another multi-arch naming scheme that is more generic and supports more than a single architecture.
you should have:
/usr/lib/${HOST_TRIPLET}/libc.so /usr/lib/${HOST_TRIPLET}/libm.so
where ${HOST_TRIPLET} is something like "x86_64-linux-gnu" (on a 64bit system) or "i386-linux-gnu" (on 32bit)
gfasmrd IOhannes