[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.platform.pde] Re: PDE Build -> debugInfo
|
- From: Andrew Niefer <aniefer@xxxxxxxxxx>
- Date: Wed, 24 Sep 2008 11:30:14 -0400
- Newsgroups: eclipse.platform.pde
- Organization: EclipseCorner
- User-agent: Thunderbird 2.0.0.16 (Windows/20080708)
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