Hi Alexandros,
I built Ofelia external on Ubuntu 18.04 LTS and it seems like the binary is incompatible in newer Ubuntu and some other distros.
Maybe you could try something like the following script which I found from this post: https://forum.openframeworks.cc/t/building-executables-that-run-in-the-futur...
$ sudo ln -s /usr/lib/libGLEW.so /usr/lib/libGLEW.so.2.0
If this doesn't work, I would suggest building the external yourself following the instruction from: https://github.com/cuinjune/ofxOfelia#build-requirements
I will try to make Ofelia binary work across different versions and distros in the close future. If anyone has a good idea to do this, please let me know.
Best Zack
On 8/24/19 1:20 PM, Zack Lee wrote:
Maybe you could try something like the following script which I found from this post: https://forum.openframeworks.cc/t/building-executables-that-run-in-the-futur...
$ sudo ln -s /usr/lib/libGLEW.so /usr/lib/libGLEW.so.2.0
this sounds like a super good way to shoot your system (in general).
(also note, that *if* you go that route, you probably at least should put the symlink into /usr/local/lib/.)
gfmasrd IOhannes
On 24/8/19 12:20 μ.μ., Zack Lee wrote:
Hi Alexandros,
I built Ofelia external on Ubuntu 18.04 LTS and it seems like the binary is incompatible in newer Ubuntu and some other distros.
Maybe you could try something like the following script which I found from this post: https://forum.openframeworks.cc/t/building-executables-that-run-in-the-futur...
$ sudo ln -s /usr/lib/libGLEW.so /usr/lib/libGLEW.so.2.0 If this doesn't work, I would suggest building the external yourself following the instruction from: https://github.com/cuinjune/ofxOfelia#build-requirements
I built the external following the instructions from the link you provided and it worked fine, thanks a lot for the help and for sharing this great project!