vote up 3 vote down star
1

Is there a way to set Eclipse report compile errors same as javac?

I stumble upon few cases where something is working in eclipse, and cannot be compiled with javac. I understand that eclipse uses ECJ and that cannot be changed, but can it anywhere be set that everything that cannot compile with javac be a compile error in Eclipse? (since there are few things that you can make compile errors in Eclipse even if they are ok)

Examples are from @SuiteClasses({A.class,B.class,}) (last comma is the problem), to subtle generic problems that I fully don't understand.

flag

71% accept rate
I had known Eclipse used ECJ, but I hadn't realized there was a difference between what it could and could not compile compared to Sun's implementation. I thought there was some standard or specification that had to be followed. – Jason Sep 23 at 16:53
Yes, I've experienced similar problems as OP. The rule of thumb is that Eclipse is more tolerant than javac/ant. So committing a compiling code to CVS may cause the continuous-integration server to fail with the build on compilation. – GrzegorzOledzki Sep 23 at 21:25

2 Answers

vote up 2 vote down check

Eclipse uses ECJ for compilation via the Java Builder that is responsible for compiling and indexing all Java source files in order to make incremental compilation easier (making it easier for errors to be reported), apart from aiding refactoring and search operations.

ECJ happens to be the default and only compiler used by the Java builder; the compiler used cannot be configured. One cannot change it. However, you could attempt to add your own builder that uses an Ant build script relying on the javac compiler of the Sun JDK.

link|flag
Could you explain how to change eclipse to use ant build script, or give some links related to it? – Sarmun Sep 23 at 22:36
1  
@Sarmun - Try this link eclipsezone.com/eclipse/forums/… – Jason Sep 24 at 4:28
@Jason, that's a pretty good link. – Vineet Reynolds Sep 24 at 17:34
great, thanks!! – Sarmun Sep 24 at 22:13
vote up 0 vote down

You can make eclipse build use ant, that will in turn use javac.

link|flag

Your Answer

Get an OpenID
or

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