Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Boomerang: Unable to load libQtGUI

I installed boomerang on Fedora 17 and when executing ./boomerang-gui I get:

./boomerang-gui: error while loading shared libraries: libQtGui_debug.so.4: cannot open shared object file: No such file or director

I did a "sudo yum install qt-x11", but QT is already installed.

like image 387
user994165 Avatar asked Oct 07 '12 19:10

user994165


1 Answers

From the error:

./boomerang-gui: error while loading shared libraries: libQtGui_debug.so.4: cannot open shared object file: No such file or directory

It looks like the boomerang-gui has been linked with debug version of Qt library. So creating a symbolic link like below works.

sudo ln -s /usr/lib/i386-linux-gnu/libQtGui.so.4 /usr/lib/libQtGui_debug.so.4

and

sudo ln -s /usr/lib/i386-linux-gnu/libQtCore.so.4 /usr/lib/libQtCore_debug.so.4

Alternatively, from the ubuntu synaptic package manager you can install debug version of Qt library. (libqt4-dbg)

like image 68
Jay Bhaskar Avatar answered Oct 07 '22 20:10

Jay Bhaskar