This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: error in native code execution
- From: Andrew Haley <aph at redhat dot com>
- To: mohammed hegazy <engmohheg at hotmail dot com>
- Cc: gcc-help at gcc dot gnu dot org, reyad at disi dot unitn dot it
- Date: Thu, 16 Jul 2009 12:17:24 +0100
- Subject: Re: error in native code execution
- References: <SNT106-W498A8EA4A4BB7EF5B92307A3210@phx.gbl>
mohammed hegazy wrote:
> Dear All,
> i forgot to say The error in the log that i sent is :
> java.lang.UnsatisfiedLinkError: registerNatives
This is because edu.emory.mathcs.backport.java.util.concurrent uses
a native library that you haven't got.
There is no need to use this library: replace all uses of
edu.emory.mathcs.backport.java.util.concurrent.*
with java.util.concurrent.* and all will be well.
Andrew.