Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "CDT/User/NewIn70"

< CDT
(Build)
(document limitation for GB18030)
Line 1: Line 1:
 
== Debug ==
 
== Debug ==
 
Support for GDB tracepoints.  See the [[CDT/designs/Tracepoints|wiki page]] for details.
 
Support for GDB tracepoints.  See the [[CDT/designs/Tracepoints|wiki page]] for details.
== Build ==
+
== Build ==
* Ability to save build console to a file. Details in [[http://bugs.eclipse.org/294106 Bug 294106]]
+
 
* Error highlighting in build console. Navigation from errors in build console to location in editor. Details in [[http://bugs.eclipse.org/295625 Bug 295625]]
+
*Ability to save build console to a file. Details in [[http://bugs.eclipse.org/294106 Bug 294106]]  
 +
*Error highlighting in build console. Navigation from errors in build console to location in editor. Details in [[http://bugs.eclipse.org/295625 Bug 295625]]
 +
*Cannot run or debug class in a project with GB18030 characters in workspace/project name.&nbsp; Most class libraries do not properly support the creation of a system process (via java.lang.Runtime.exec(...)) when the specified command line contains GB18030 characters. This limitation means the scanner discovery mechanism and debugger cannot launch applications when the command line it generates contains GB18030 characters. Details in [[http://bugs.eclipse.org/308803 Bug 308803]]
  
 
== Code Analysis ==
 
== Code Analysis ==
 
New code analysis framework is introduced, called Codan. See this [[CDT/designs/StaticAnalysis|wiki]] for details.
 
New code analysis framework is introduced, called Codan. See this [[CDT/designs/StaticAnalysis|wiki]] for details.

Revision as of 13:51, 26 April 2010

Debug

Support for GDB tracepoints. See the wiki page for details.

Build

  • Ability to save build console to a file. Details in [Bug 294106]
  • Error highlighting in build console. Navigation from errors in build console to location in editor. Details in [Bug 295625]
  • Cannot run or debug class in a project with GB18030 characters in workspace/project name.  Most class libraries do not properly support the creation of a system process (via java.lang.Runtime.exec(...)) when the specified command line contains GB18030 characters. This limitation means the scanner discovery mechanism and debugger cannot launch applications when the command line it generates contains GB18030 characters. Details in [Bug 308803]

Code Analysis

New code analysis framework is introduced, called Codan. See this wiki for details.

Back to the top