This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: gcj performance on Solaris 2.6
- To: Jeff Sturm <jsturm at one-point dot com>
- Subject: Re: gcj performance on Solaris 2.6
- From: Tom Tromey <tromey at redhat dot com>
- Date: 30 Jul 2001 22:58:33 -0600
- Cc: java at gcc dot gnu dot org
- References: <Pine.LNX.4.10.10107310005480.3469-100000@mars.deadcafe.org>
- Reply-To: tromey at redhat dot com
>>>>> "Jeff" == Jeff Sturm <jsturm@one-point.com> writes:
Jeff> How would you suggest I get this into the specs? I'm still weak
Jeff> on that part of the compiler.
One way, if it works, would be to add it in libgcj.spec. That is a
very easy (though a bit obscure). You'd have to test to make sure the
user can successfully disable it though.
Otherwise, one way would be to add something like this to the @java
entry in lang-specs.h:
%{!fno-keep-inline-functions:-fkeep-inline-functions}
This is still a bit obscure. I think it would be nicer to explicitly
initalize flag_keep_inline_functions somewhere. But that might not be
(easily) possible.
Tom