This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Performance gcj & mysql
- From: Andrew Haley <aph at redhat dot com>
- To: ezer <andres dot a at adinet dot com dot uy>
- Cc: java at gcc dot gnu dot org
- Date: Mon, 08 Sep 2008 17:16:29 +0100
- Subject: Re: Performance gcj & mysql
- References: <19375453.post@talk.nabble.com>
ezer wrote:
> 1) How can i improve performance to do it better than jvm ?
Huh? Which JVM? If the answer is some all-singing high-performance
JIT, then you can't.
> 2) ./mysqlconnect stays dependant of the gcj libraries? When i uninstall gcj
> the executable complains about libgcj. Is there any way to have it totally
> independent, for example i want to copy the executable and mysql-5.0.8.o
> library without worring if have have gcj installed on that machine.
This is very difficult. The -static-libgcj option might help,
but I wouldn't guarantee it. For more details see:
http://gcc.gnu.org/wiki/Statically%20linking%20libgcj
Andrew.