Hi Angel,
afernan wrote:I've downloaded the build for Linux and doesn't run for me (using UBUNTU 16). Once unziped the executable (qgroundcontrol_aq) do nothing. I gave executable permission, of course.
"Nothing" is hard to diagnose. Try running it directly from a command prompt (terminal) and see if you get any useful messages.
Same with all previous versions.
Does that mean the previous Linux version I published here (Beta 1) worked OK?
But I can compile by myself (using qmake, make) and then It works. Both executable have exactly same size.
In adition, It doesnt compile using Qt Creator (the1.7Beta3 that compile with qmake, make) . I got following error:
- Code: Select all
Project ERROR: Unknown module(s) in QT: webkit webkitwidgets
I've verified that I have that library installed:
- Code: Select all
sudo apt-get install libqt5webkit5-dev
As I've tried to explain before, what `apt-get` does and what you get when you download/install Qt via the official packages are probably different, and probably get installed into different places on the system. You most likely have >1 version of Qt installed, possibly 3. Your QtCreator is most likely configured to use a different version from what what you get in a default terminal session.
You can configure QtCreator to use any compiler/build chain which exists on the system, e.g. using any number of different Qt versions installed in separate locations (aka. "Kits" in QtCreator settings). One project can be configured for multiple build types, using different installed Kits.
HTH,
-Max