by Florian Weimer <fw@[EMAIL PROTECTED]
>
Mar 2, 2007 at 01:45 PM
* aloha kakuikanu:
> I'm getting:
>
> "The code of method mTokens() is exceeding the 65535 bytes limit"
>
> The method is antlr generated, so I struggle to find any workaround.
> Perhaps I'm missing some magic JVM parameter setting?
Anything that compiles to class files in a straightforward way will
hit this limit, as Chris explained.
There are basically two workarounds: Use a compiler that synthesizes
additional cl***** to work around the limit (I don't know if one
exists), or a compiler that does not compile to class files, such as
an earlier GCJ version. The latter approach might work if your
intention is to get the code running. (Nowadays, GCJ uses class files
as well.)