Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] weaving into jars with large classes

There hasn't been any recent work on this limitation.  I don't know
what your aspect does, but you could avoid weaving that class by
adjusting the pointcuts involved - if it is simply a tracing aspect,
maybe avoiding this problematic class isn't the end of the world.

Andy.

On 09/08/06, Arjun Singh <aasingh@xxxxxxxxx> wrote:
Hello,

I tried using the iajc ant task to weave an aspect into several jar
files.  It seems as if some of the jars contain large classes that
produce errors such as the following:

     [iajc] error at
org\eclipse\cdt\internal\core\dom\parser\GCCBuiltinSymbolProvider.java::0
problem generating method
  org.eclipse.cdt.internal.core.dom.parser.GCCBuiltinSymbolProvider.<clinit>
: Code size too big: 73608

This is related to https://bugs.eclipse.org/bugs/show_bug.cgi?id=138384

Has there been any recent work on this limitation?  Is there a way to
get around the above error?

Thanks,
Arjun
_______________________________________________
aspectj-users mailing list
aspectj-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/aspectj-users



Back to the top