Closed vollstock closed 3 years ago
For new projects, I recommend getting libGL and related libraries from https://github.com/NVIDIA/libglvnd rather than from the NVIDIA driver installer. nvidia-installer checks whether libglvnd's libraries are present at install time to decide what to do.
you mean I shold ship this with my OS?
Yes, I recommend that.
Thanks, will have a look :-)
I am the maintainer of ther Tooloop open media server. When installting the driver using this code it seems, the file
/usr/lib/libGL.so
is missing.Compiling an opeframeworks app, fails with this message:
It’s expecting
/usr/lib/libGL.so
but onlylibGL.so.1
is there, which itself is a link to/usr/lib/x86_64-linux-gnu/libGL.so.1
When adding a link from
/usr/lib/libGL.so
to/usr/lib/libGL.so.1
solves that issue.Therefor in my install script I have this code now:
Sorry I am not very knowledged with this so I'm asking. Shouldn't the installer add this link in the first place?