wxCrafter on opensuse 12.3
Posted: Wed May 15, 2013 1:28 pm
As reported in bug #890, wxcrafter doesn't load on openSUSE 12.3 because libwx_gtk2u_webview library is not found.
Here is my solution:
To avoid the libwx_gtk2u_webview-2.9.so.4 => not found when doingjust do the following:
Then compile and install Codelite from sources (not from distro RPM package), and install wxCrafter.so in /usr/lib64/codelite/.
Hope it will work as it did for me
Here is my solution:
To avoid the libwx_gtk2u_webview-2.9.so.4 => not found when doing
Code: Select all
ldd /usr/lib64/codelite/wxCrafter.so
- copy libwx_gtk2u_webview-2.9.so.4.0.0 from /usr/lib64/wx-2.9-wxcontainer/ to /usr/local/lib64/wx-2.9-wxcontainer/;
link it as libwx_gtk2u_webview-2.9.so.4;
do an ldconfig
Code: Select all
su
cp /usr/lib64/wx-2.9-wxcontainer/libwx_gtk2u_webview-2.9.so.4.0.0 /usr/local/lib64/libwx_gtk2u_webview-2.9.so.4.0.0
ln -s /usr/local/lib64/libwx_gtk2u_webview-2.9.so.4.0.0 /usr/local/lib64/libwx_gtk2u_webview-2.9.so.4
ldconfig
Hope it will work as it did for me