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)
Jay bhaskar
source share