SHADERed icon indicating copy to clipboard operation
SHADERed copied to clipboard

Libglew version incompatibility

Open Boyfinn opened this issue 9 months ago • 0 comments

This is not that big of a deal, but the software seems to depend on libGLEW 2.1 on Linux. In the Ubuntu 24 repositories, the latest version for libGLEW-dev is 2.2.0. But by default, when launching the application it expects 2.1: ./SHADERed: error while loading shared libraries: libGLEW.so.2.1: cannot open shared object file: No such file or directory The simplest workaround is just making a linking symbol to the older version with something like: sudo ln -s /usr/lib/x86_64-linux-gnu/libGLEW.so.2.2 /usr/lib/x86_64-linux-gnu/libGLEW.so.2.1, which works fine. But if there is anything that could be done to patch this in the source that would be greatly appreciated.

Boyfinn avatar Apr 01 '25 23:04 Boyfinn