Building v 3.7.0 and later fails to build on my Ubuntu 18.4 #1667
-
Hi, First time poster. I have a problem building later versions of jamulus on my Ubuntu Linux 18.4 box. Building 3.6.2 works fine using the build instructions here. But for 3.7.0 and later, it does not work. I get error-messages related to "qInfo", see below. Is this a known issue? I tried to search the Issues section and googled a bit, but could not find anything relevant. Here is an example of the error messages I get:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi!
Not that I'd know of. Quite to the contrary -- the official .debs are built on Ubuntu 18.04: jamulus/.github/workflows/autobuild.yml Line 105 in f015f88 So, I suspect there must be a difference between your build and our autobuild job. Can you try comparing/testing the autobuild scripts on your machine? Are there any other error messages before those you posted here? Not sure if you are aware, but meanwhile official deb packages are provided as part of the release. Maybe this would be an alternative for you as well. cc @gilgongo Kind regards |
Beta Was this translation helpful? Give feedback.
-
Ah, I think this is the culprit:
Qt being in /opt is a definite hint that this is not the system-provided Qt. Also, it seems to be older. I assume that you have installed this version of Qt in addition? If you are no longer using it, it might be best to remove it. If you want to keep it, you would have to look into removing it from the relevant environment variables ( |
Beta Was this translation helpful? Give feedback.
Ah, I think this is the culprit:
Qt being in /opt is a definite hint that this is not the system-provided Qt. Also, it seems to be older. I assume that you have installed this version of Qt in addition? If you are no longer using it, it might be best to remove it. If you want to keep it, you would have to look into removing it from the relevant environment variables (
env | grep /opt/qt
might be a pointer what to unset/override for building Jamulus with the tested system Qt).