[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.pde] Re: PDE Build -> debugInfo

Debug info is a compiler argument[1]: -g
In your top build configuration build.properties file, set "compilerArg=-g"

This property is passed in the generated javac ant calls with:
<compilerarg line="${compilerArg}" compiler="${build.compiler}"/>

This will affect all bundles being compiled.

[1]http://help.eclipse.org/ganymede/index.jsp?topic=/org.eclipse.jdt.doc.isv/guide/jdt_api_compile.htm

-Andrew

Michael Heiß wrote:
Hy,

I am running a headless build for my eclipse application and everything works find :) For code coverage i need to include full debug info to the compiled classes but i dont't know how to do this.

(Need the debug info for code coverage with emma)

Thanks!
Michael