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/NewIn90"

< CDT
(API modifications)
Line 17: Line 17:
 
With CDT 9.0, some public API are being modified.  Below is the list of changes that are not backwards-compatible that extenders could trip on.
 
With CDT 9.0, some public API are being modified.  Below is the list of changes that are not backwards-compatible that extenders could trip on.
  
#
+
'''org.eclipse.cdt.dsf.gdb'''
 +
# The deprecated protected method GdbLaunchDelegate.newServiceFactory(String) has been removed.  It has been replaced with GdbLaunchDelegate.newServiceFactory(ILaunchConfiguration, String)

Revision as of 12:41, 25 November 2015

General

Editor

Parser

Build

  • The "Symbols" settings category (gnu.c.compiler.category.symbols) under "GCC C compiler" has been removed and its content has been merged with the Preprocessor (gnu.c.compiler.category.preprocessor) category. link

Debug

Bugs Fixed in this Release

See Bugzilla report Bugs Fixed in CDT 9.0

API modifications

With CDT 9.0, some public API are being modified. Below is the list of changes that are not backwards-compatible that extenders could trip on.

org.eclipse.cdt.dsf.gdb

  1. The deprecated protected method GdbLaunchDelegate.newServiceFactory(String) has been removed. It has been replaced with GdbLaunchDelegate.newServiceFactory(ILaunchConfiguration, String)

Back to the top