Error compliation on Ubuntu 20.10 x64 #1716
Replies: 4 comments 1 reply
-
Thanks for the report. I'm struggling to understand how this can happen.
I don't think we are linking against libGL explicitly, so this would rather be a default Qt thing. I don't have Ubuntu in this version around, but I might try in a chroot if time permits. |
Beta Was this translation helpful? Give feedback.
-
Looks like it may be related to proprietary OpenGL drivers? |
Beta Was this translation helpful? Give feedback.
-
Hi @hoffie, yes I use Nvidia proprietary drivers ... This is the output of the compilation error : |
Beta Was this translation helpful? Give feedback.
-
Please also note that as of the upcoming 3.8.0 release, we are saying that preferred method of supporting Ubuntu (and other platforms) is to use the binaries generated by the autobuild process in the Jamulus repository. I'll move this to a discussion until/unless a reproducible bug is found. |
Beta Was this translation helpful? Give feedback.
-
Hi all,
For informations, I've tried to build Jamulus on Ubuntu 20.10 x64, but I'd a problem with libGL, I solved it with a symbolic link (see below)
When I try to build latest Jamulus on Ubuntu 20.10 x64, i've this error message : /usr/bin/ld: cannot find -lGL
Install Ubuntu 20.10 x64 and try to compile Jamulus
I've launched :
sudo apt-get install build-essential qt5-qmake qtdeclarative5-dev qt5-default qttools5-dev-tools libjack-jackd2-dev
qmake Jamulus.pro
make clean
make
Ubuntu 20.10 x64
Jamulus Release 3.8.0rc1
I've solved the problem with installing :
sudo apt-get install libgl1-mesa-dev
sudo ln -s /usr/lib/x86_64-linux-gnu/libGL.so.1 /usr/lib/x86_64-linux-gnu/libGL.so
sudo ldconfig
Beta Was this translation helpful? Give feedback.
All reactions