When I compile my project in eclipse indigo using JDK 7, I get the following error dialog

enter image description here

with the following stacktrace

Exception in thread "main" java.lang.VerifyError: Expecting a stackmap frame at branch target 32 in method ... at offset 0
    at java.lang.Class.getDeclaredMethods0(Native Method)
    at java.lang.Class.privateGetDeclaredMethods(Unknown Source)
    at java.lang.Class.getMethod0(Unknown Source)
    at java.lang.Class.getMethod(Unknown Source)
    at sun.launcher.LauncherHelper.getMainMethod(Unknown Source)
    at sun.launcher.LauncherHelper.checkAndLoadMain(Unknown Source)

I've found a relevant bug here and used the suggested workaround of using jvm option -XX:-UseSplitVerifier and although it works, this bug still confuses me.

Does anyone know why this is happening and why the workaround...works?

--Note--

The project compiles fine using JDK 6.

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

Bug 353467 speaks about "using -XX:-UseSplitVerifier to activate the old verifier".
That is consistent with the JDK TM 6 Adoption Guide which describes that option as:

Traditional verifier can be forced with the -XX:-UseSplitVerifier flag.

Missing or incorrect StackMapTable attributes for version 50.0 class files can result in VerifyError exceptions.
Tools that rewrite bytecode in version 50.0 class files and do not correctly update the StackMapTable may fail to verify and trigger exceptions.

So the comment from 2011-10-03 does point out that:

AspectJ now auto activates the previously optional setting to create stackmaps if the classes are Java7.

link|improve this answer
"believed fixed. AspectJ now auto activates the previously optional setting to create stackmaps if the classes are Java7. Please reopen if still an issue."...so I guess this is still an issue then? – mre Nov 1 '11 at 18:18
@mre: in the current releases of Eclipse, it is possibly still an issue. But it should be fixed in the current 3.8M3/4.2M3 release. – VonC Nov 1 '11 at 18:41
Thanks, I will try that build. – mre Nov 1 '11 at 18:51
I can't verify that the build fixes the problem because there's no AspectJ Development Tool available for Eclipse 3.8..:/ – mre Nov 2 '11 at 14:08
@mre surely you can add AspectJ as a plugin through one of the update site listed in eclipse.org/ajdt/downloads? – VonC Nov 2 '11 at 15:08
show 2 more comments
feedback

mre, can you share your source code(or an extracted sample) which shows this error on running? I believe this is a bug in the eclipse java compiler and needs to be fixed.

Please open a bug on the eclipse bugzilla as well, if you can provide the code sample.

link|improve this answer
feedback

i had the same problem

i deleted my JDK 1.7 system librarie from the project and added the 1.6 JDK. then run the project again and i didn't get the error. i added the JDK 1.7 again and it still works perfect now.

dunno why it works but it works, other students from my class had the same issue and we fixed it!!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.