Okay, i think i've found out whats the problem:
Code:
darkbyte@lenovo:~/Letöltések$ export LD_LIBRARY_PATH=/usr/lib32/; ./stereo_tool_gui_BETA30
./stereo_tool_gui_BETA30: error while loading shared libraries: libwx_gtk2u_richtext-2.8.so.0: cannot open shared object file: No such file or directory
darkbyte@lenovo:~/Letöltések$ export LD_LIBRARY_PATH=/usr/lib64/; ./stereo_tool_gui_BETA30
./stereo_tool_gui_BETA30: error while loading shared libraries: libwx_gtk2u_richtext-2.8.so.0: wrong ELF class: ELFCLASS64
Because i'm running a 64bit OS i don't have the x86 verisons of the libwx libraries. If i force it to use the x64 libs i get an error because your executable is linked for x86 architecture.
I think there are two options:
- Compile an x64 version of Stereo Tool
- Find a way to install the 32bit libs on my system (i'll give it a go)
Mod: okay i've managed to get the missing libraries. I had to install getlibs:
http://ubuntuforums.org/showthread.php?t=474790 then i executed
Code:
sudo getlibs stereo_tool_gui_BETA30
which downloaded the missing libs.
Now i get the segmentation fault as you do.
