Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be 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/NewIn94"

< CDT
(http://eclip.se/520163 headless build improvements)
(API modifications)
Line 40: Line 40:
 
= API modifications =
 
= API modifications =
 
----
 
----
 +
{| style="width: 100%;"
 +
|- style="vertical-align:top;"
 +
! style="width: 30%; text-align:left;" | org.eclipse.cdt.debug.gdbjtag.ui
 +
|
 +
# The method '''GDBJtagStartupTab#createRunOptionGroup(Composite)''' has been deprecated because the the content of the run options group and the run commands group has been merged within the Startup page of the UI (see [http://eclip.se/525692 bug 525692]). Extenders should use override '''GDBJtagStartupTab#createRunGroup(Composite)''' instead.
 +
|}
 +
----
 +
 
= Bugs Fixed in this Release =
 
= Bugs Fixed in this Release =
 
----
 
----
 
See Bugzilla report [https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&classification=Tools&product=CDT&query_format=advanced&resolution=FIXED&target_milestone=9.4.0 Bugs Fixed in CDT 9.4]
 
See Bugzilla report [https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&classification=Tools&product=CDT&query_format=advanced&resolution=FIXED&target_milestone=9.4.0 Bugs Fixed in CDT 9.4]

Revision as of 12:40, 8 October 2017


Release


This is the New & Noteworthy page for CDT 9.4 which will be part of Eclipse Oxygen (either .1 or .2)


Editor


Code Analysis


Parser


Build


Headless Build Headless build has three new command line arguments:
  • -marker-type which specifies which marker types to consider when failing a build. Can be all (default) cdt (shortcut for C/C++ Problems) or any marker ID. Can be specified multiple times to check for multiple markers. Can be used to, for example, prevent C/C++ Scanner errors from causing build failures.
  • -printErrorMarkers prints all error markers (debugging option) at the end of a build. Can be used to diagnose why build has failed (specific error markers).
  • -help display help.

See (bug 520163).


Debug


API modifications


org.eclipse.cdt.debug.gdbjtag.ui
  1. The method GDBJtagStartupTab#createRunOptionGroup(Composite) has been deprecated because the the content of the run options group and the run commands group has been merged within the Startup page of the UI (see bug 525692). Extenders should use override GDBJtagStartupTab#createRunGroup(Composite) instead.

Bugs Fixed in this Release


See Bugzilla report Bugs Fixed in CDT 9.4

Back to the top