Solved minecraft-client shared library error

I can load up the client fine but when I go to play I get this.
Code:
.minecraft/versions/1.9.2/1.9.2-natives-3265359166302/liblwjgl64.so: Shared object "libm.so.6" not found, required by "liblwjgl64.so"

The libm.so.6 looks like it's in the /compat/linux/lib. I'm not sure how I can link this library.

Thanks in advance for any ideas.
 
I have the same problem.

This is, what the minecraft-console sais:
Code:
Exception in thread "main" java.lang.UnsatisfiedLinkError: /usr/home/one/.minecraft/versions/1.9.2/1.9.2-natives-1022514640516/liblwjgl64.so: Shared object "libm.so.6" not found, required by "liblwjgl64.so"
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1857)
    at java.lang.Runtime.loadLibrary0(Runtime.java:870)
    at java.lang.System.loadLibrary(System.java:1122)
    at org.lwjgl.Sys$1.run(Sys.java:72)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.lwjgl.Sys.doLoadLibrary(Sys.java:66)
    at org.lwjgl.Sys.loadLibrary(Sys.java:87)
    at org.lwjgl.Sys.<clinit>(Sys.java:117)
    at bcc.I(SourceFile:2745)
    at net.minecraft.client.main.Main.main(SourceFile:39)

Info:
Code:
% locate libX11.so.
/compat/linux/usr/lib/libX11.so.6
/compat/linux/usr/lib/libX11.so.6.3.0
/usr/local/lib/libX11.so.6
/usr/local/lib/libX11.so.6.3.0
 
Back
Top