Boomerang: Unable to load libQtGUI

I installed a boomerang on Fedora 17 and at runtime. / 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 "sudo yum install qt-x11", but QT is already installed.

+7
source share
1 answer

From the error: ./ boomerang -gui: error while loading shared libraries: libQtGui_debug.so.4: cannot open the file of shared objects: there is no such file or director

It seems that boomerang-gui has been linked to the debug version of the Qt library. So the links as shown below work.

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

From the ubuntu synaptic package manager, you can install the debug version of Qt lib. (libqt4-dbg)

+1
source

All Articles