[SOLVED]Qt 5.0.1 for Linux x64 - Qt Creator needs compiler!
-
After downloading Qt 5.0.1 for Linux x64 I got this error message when I tried to build "Hello world" application!
@:-1: error: Qt Creator needs a compiler set up to build. Configure a compiler in the kit options.@
@Error while building/deploying project untitled1 (kit: Desktop Qt 5.0.1 GCC 64bit)
When executing step 'Make'@ -
Qt does not ship the whole toolchain in the package. You need to install "dependencies":http://qt-project.org/wiki/Building_Qt_5_from_Git and compiler yourself (G++ or clang).
Example for Debian/ Ubuntu:
@
sudo apt-get install build-essential
@ -
[quote author="sierdzio" date="1360479185"]Qt does not ship the whole toolchain in the package. You need to install "dependencies":http://qt-project.org/wiki/Building_Qt_5_from_Git and compiler yourself (G++ or clang).
Example for Debian/ Ubuntu:
@
sudo apt-get install build-essential
@[/quote]build-essential didn't fix the issue but after installing the other requirements it worked.... thx