Re: I got UnsatisfiedLinkError

2008-10-08 Thread Lothar Kimmeringer

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
library libstdc++.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 Google-Web-Toolkit@googlegroups.com
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
-~--~~~~--~~--~--~---



Re: I got UnsatisfiedLinkError

2008-10-08 Thread Lothar Kimmeringer

LoneWolf schrieb:
 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.

Most likely Ubuntu 8.04 is only shipped with the Standard C++
Library Version 6.

 After running this command:
 sudo apt-get install libstdc++5
 Every thing is ok now.

Good.

 BTW, do use openSuse 11? I'm curious about it and I need developer's
 opinion regarding it.

We have it running on one server. What exactly do you want to
know? VMWare doesn't run very well on it, because the version
1.0.x needs 32 Bit Perl for the administrative tools which
I don't find anywhere in the package-manager of SuSE (only
the shared libraries, no binaries). So you can start Guests,
but can't make any backups of them...

Java works.


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 Google-Web-Toolkit@googlegroups.com
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
-~--~~~~--~~--~--~---



Re: I got UnsatisfiedLinkError

2008-10-08 Thread LoneWolf

Is it well supported? what about the community? is it stable as they
said?

On Oct 8, 1:50 pm, Lothar Kimmeringer [EMAIL PROTECTED] wrote:
 LoneWolf schrieb:

  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.

 Most likely Ubuntu 8.04 is only shipped with the Standard C++
 Library Version 6.

  After running this command:
  sudo apt-get install libstdc++5
  Every thing is ok now.

 Good.

  BTW, do use openSuse 11? I'm curious about it and I need developer's
  opinion regarding it.

 We have it running on one server. What exactly do you want to
 know? VMWare doesn't run very well on it, because the version
 1.0.x needs 32 Bit Perl for the administrative tools which
 I don't find anywhere in the package-manager of SuSE (only
 the shared libraries, no binaries). So you can start Guests,
 but can't make any backups of them...

 Java works.

 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 Google-Web-Toolkit@googlegroups.com
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
-~--~~~~--~~--~--~---



I got UnsatisfiedLinkError

2008-10-08 Thread LoneWolf

Hey,
I'm trying to run GWT in the hosted mode (external Tomcat container):
=
path id=gwt.classpath
pathelement location=${src.dir}/
pathelement location=${classes.dir}/
pathelement location=${gwt.home}/gwt-user.jar/
pathelement location=${gwt.home}/gwt-dev-linux.jar/
/path
target name=Run-GWT
java classpathref=gwt.classpath fork=true
classname=com.google.gwt.dev.GWTShell
arg line=-logLevel DEBUG/
arg line=-noserver/
arg line=-port 8080/
arg line=home.html/
/java
/target
=
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


Platform:
Java 1.6.0_06
Ubuntu 8.04
GWT 1.4.61

Any ideas?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
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
-~--~~~~--~~--~--~---



Re: I got UnsatisfiedLinkError

2008-10-08 Thread LoneWolf

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
 library libstdc++.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 Google-Web-Toolkit@googlegroups.com
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
-~--~~~~--~~--~--~---