I know this topic is a little old, but I just had a similar issue with Fedora 8 and this is how I resolved it, so hopefully it will help someone else down the line. The issue in general appears to be an issue with the standard C++ libraries that the embedded Mozilla browser uses when you use the "shell" mode. It can't seem to find versions it likes on a number of linux distributions.
This may or may not be critical, but the first thing I did was install the following compatibility libraries. Find the current versions by doing this command as root: yum search libstdc++ and then install the compat-** libraries it reports. For me it was: yum install compat-libstdc++-296-2.96-139 compat-libstdc++-33-3.2.3-62 These were the C++ rpm packages already installed on my system: libstdc++-4.1.2-33 libstdc++-devel-4.1.2-33 The second thing I did was add the gwt mozilla directory to my linker path (in my .bash_profile file) by following directions as described here (as applicable for my gwt installation path): http://mozammel.wordpress.com/2007/04/13/gwt-hosted-browser-problem-in-debian-etch/ Logging out and in again (to get the linker path environment variable updated) did the trick. Hope this helps, Todd On Oct 8, 6:32 am, LoneWolf <[EMAIL PROTECTED]> wrote: > For me it is mysterious, because when I was using Ubuntu 7.10, every > thing was going ok but when I installed a fresh copy of Ubuntu 8.04 , > I got the exception. > After running this command: > sudo apt-get install libstdc++5 > Every thing is ok now. > BTW, do use openSuse 11? I'm curious about it and I need developer's > opinion regarding it. > Thanks. > > On Oct 8, 1:20 pm, Lothar Kimmeringer <[EMAIL PROTECTED]> wrote: > > > LoneWolf schrieb: > > > > But I got this exception: > > > java.lang.UnsatisfiedLinkError: /media/sda4/Frameworks/gwt- > > > linux-1.4.61/mozilla-1.7.12/libxpcom.so:libstdc++.so.5: cannot open > > > shared object file: No such file or directory > > > What's mysterious about this error-message? The shared > > librarylibstdc++.so.5 can't be found, i.e. you have to > > install it. > > > > Any ideas? > > > Install the library. Ubuntu should provide some kind > > of package-manager to do this (I use SuSE, so I can't > > tell in detail how to do this. Look for Standard C++ > > Library Version 5. It's possible that other libraries > > are missing as well, you can check in advance by entering > > ldd /media/sda4/Frameworks/gwt-linux-1.4.61/mozilla-1.7.12/libxpcom.so > > or just wait for the next error-message coming up > > after the install of beforementioned library. > > > Regards, Lothar --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
