Error while compiling in Qt (Ubuntu) - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T09:47:14Zhttp://stackoverflow.com/feeds/question/1034371http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1034371/error-while-compiling-in-qt-ubuntu0Error while compiling in Qt (Ubuntu)udpsunil2009-06-23T18:41:50Z2009-06-23T19:00:45Z
<p>Hello,</p>
<p>I am getting the following error while compiling a sample program in Qt 4.5 in Ubuntu OS.</p>
<pre><code>/usr/bin/ld: cannot find -lgthread-2.0
collect2: ld returned 1 exit status
</code></pre>
http://stackoverflow.com/questions/1034371/error-while-compiling-in-qt-ubuntu/1034494#10344940Answer by udpsunil for Error while compiling in Qt (Ubuntu)udpsunil2009-06-23T19:00:45Z2009-06-23T19:00:45Z<p>I found the solution, I installed the library libqt4-dev by typing the command</p>
<pre><code>sudo apt-get install libqt4-dev
</code></pre>
<p>and the problem got solved.</p>