Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 36083 Details for
Bug 131377
Related to bug 131373, the build script should set up the log file name inside a compiler argument
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Last patch
patch_131377.txt (text/plain), 2.04 KB, created by
Olivier Thomann
on 2006-03-10 15:45:15 EST
(
hide
)
Description:
Last patch
Filename:
MIME Type:
Creator:
Olivier Thomann
Created:
2006-03-10 15:45:15 EST
Size:
2.04 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.pde.build >Index: src/org/eclipse/pde/internal/build/builder/ModelBuildScriptGenerator.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/builder/ModelBuildScriptGenerator.java,v >retrieving revision 1.83 >diff -u -r1.83 ModelBuildScriptGenerator.java >--- src/org/eclipse/pde/internal/build/builder/ModelBuildScriptGenerator.java 10 Mar 2006 19:56:13 -0000 1.83 >+++ src/org/eclipse/pde/internal/build/builder/ModelBuildScriptGenerator.java 10 Mar 2006 20:46:05 -0000 >@@ -678,7 +678,7 @@ > script.printComment(Messages.build_compilerSetting); > script.printProperty(PROPERTY_JAVAC_FAIL_ON_ERROR, "false"); //$NON-NLS-1$ > script.printProperty(PROPERTY_JAVAC_DEBUG_INFO, "on"); //$NON-NLS-1$ >- script.printProperty(PROPERTY_JAVAC_VERBOSE, "true"); //$NON-NLS-1$ >+ script.printProperty(PROPERTY_JAVAC_VERBOSE, "false"); //$NON-NLS-1$ > script.printProperty(PROPERTY_JAVAC_COMPILERARG, ""); //$NON-NLS-1$ > > if (javacSource == null) >Index: src/org/eclipse/pde/internal/build/ant/JavacTask.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/ant/JavacTask.java,v >retrieving revision 1.24 >diff -u -r1.24 JavacTask.java >--- src/org/eclipse/pde/internal/build/ant/JavacTask.java 7 Dec 2005 22:34:39 -0000 1.24 >+++ src/org/eclipse/pde/internal/build/ant/JavacTask.java 10 Mar 2006 20:46:05 -0000 >@@ -75,6 +75,9 @@ > if (compileArgsFile != null) { > script.println("<compilerarg value=\"@" + compileArgsFile + "\" compiler=\"" + IXMLConstants.JDT_COMPILER_ADAPTER + "\"/>"); //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$ > } >+ if (destdir != null) { >+ script.println("<compilerarg line=\"-log " + destdir + ".log\" compiler=\"" + IXMLConstants.JDT_COMPILER_ADAPTER + "\"/>"); //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$ >+ } > script.indent--; > script.printEndTag("javac"); //$NON-NLS-1$ > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 131377
:
36077
|
36082
| 36083 |
36149