diff --git a/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_whatsnew.htm b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_whatsnew.htm index f8e4ff5e229..e9ec9648c2f 100644 --- a/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_whatsnew.htm +++ b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_whatsnew.htm @@ -15,8 +15,8 @@ tr {vertical-align: top;} -

CDT 7.0 - New and Noteworthy

-

See What's new in CDT 7.0 on the CDT wiki +

CDT 8.0 - New and Noteworthy

+

See What's new in CDT 8.0 on the CDT Wiki which may contain more recent information.

@@ -33,51 +33,112 @@ which may contain more recent information. - + + + + - - + + + + - @@ -89,20 +150,34 @@ which may contain more recent information. - - + + + + + @@ -112,144 +187,70 @@ which may contain more recent information. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - @@ -305,17 +514,15 @@ which may contain more recent information. - - @@ -334,7 +541,11 @@ which may contain more recent information.
-

Sort Lines

+

Override_Markers

The new Sort Lines command that sorts selected lines alphabetically. + +

In C++ files, method declarations and definitions are annotated on the vertical bar using three types of symbols:

+
    +
  • Override (green triangle) indicating that a virtual method in one of base classes is overridden, +
  • +
  • Implement (empty blue triangle) indicating that a pure virtual (abstract) method in one of base classes is overridden, +
  • +
  • Shadow (dark blue triangle) indicating that a method in one of base classes with the same paremeter set is shadowed. +
  • +
+

Image:CDTOverrideMarkers.png

+

+

As in JDT, the annotations have the action which allows to go to the declaration in base. +

In case of multiple inheritance, the messages also contain the name of direct base class of the overriding method's class if the overrided method's class is further up the inheritance hierarchy. +

+

Contrary to JDT, several messages are sometimes generated on one marker (e.g. when the same method is overridden through several base classes). +

+
+

Selection Expansion

+
+

The C++ editor now allows to expand the selection to enclosing, next and previous nodes of the AST, as well as restore the hierarchy. +

+

Image:CDTExpandSelection.png

+

+

The behaviour is strictly analogous to JDT and the actions are located in "Edit -> Expand Selection To" menu. +

-

Surround with

+

Camel Case Completion

-

Surround with

+

The C/C++ now supports camel case completion similar to the one of the JDT. The following additional features are available: +

+
  • underscore notation (I): FB matches FooBar as well as FOO_BAR or Foo_Bar +
  • underscore notation (II): you can also type the underscore in the text, in which case matches are explicitly required to contain the underscore. F_B matches FOO_BAR, but not FooBar. +
  • you don't need to specify all segments: It is OK to omit segments (not the first, however): OTh matches OneTwoThree, even though no characters for Two are specified. +
  • a segment in the matching name can consist of only upper case letters: IOT matches IONETWO. +
+

Image:CDTCamelCaseCompletionDemo.png

+

-

Templates View support

+

Configurable Name Style

Added Templates View support. -

Templates View

+
+

User-configurable name styles for constants, variables, class fields, getters and setters, and for header, source and test files. +

+

Image:NameStyle.png

+

-

Outline View Groupings

+

New Code Formatting Options

Option to group macro definitions in the Outline view. -

Outline View Groupings

-

 

+
+

New options for formatting of constructor initializer lists, stream output expressions, and inline comments. Numerous improvements to the code formatter. +

+

Image:CodeStyle.png

+

+
+

New Code Templates

+
+

New code templates for namespace and class declarations and for C++ test files. +

+

Image:CodeTemplates.png

+

-
Codan
+
Code Analysis (Codan)
-

Code Analysis

+

Unresolved Symbols

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

Codan

-

 

+
+

Codan now has a checker which generates Problems on instances of ProblemBindings in AST, generated by the Parser. This allows to reveal many errors while typing. +

Quick fixes are provided for a subset of problems. As for now, the available fixes are: +

+
  • Name resolution problem: +
    • Create Local Variable +
    • Create Field +
    • Create Parameter +
    +
+

Image:CDTNameResolutionFix.png

-

Getters and setters

+

Rename Refactoring as Quick Fix

Choice where to place getters and setters during refactoring. + +

Rename in workspace option in quick fix.

+

Image:RenameInWorkspace.png

-

Refactoring History

+

Lightweight Rename Refactoring

Introduced Refactoring History for the CDT Refactorings -

Getters and setters

-

 

+
+

JDT-style rename refactoring.

+

Image:RenameRefactoring.png

+

Toggle Function Definition

+
+

Toggle Function Definition moves a function definition inside an C/C++ source editor from one + position to another and preserves correctness. +

+

Image:cdt_t_toggle_member.png

+
-

Edit While Building

+

Build Console

Allow saving files while external Makefile builds are in progress + +
  • The "C-Build console" is now named "CDT Build Console" +
  • It is now possible to open the CDT Build Console before performing a build. See bug 320765. Note that operations on the console will require the user to first select a project. The below screenshot shows the new access to the CDT Build Console. +
+

Image:CDTConsoleStart.jpg

+
  • "CDT Global Build Console" got introduced. This console combines output from all referenced projects being built in one view. See bug 309113. +
+

Image:CDTGlobalBuildConsole.jpg

+
  • Differentiate color highlighting in build output for error, warning and info problem markers. See bug 307211. +
+

Image:Bug 307211.png

-

Console Error Highlighting

+

Error Parsers

Compiler errors and warnings are now highlighted in the build console. - Navigation from errors in build console to location in editor is possible - with double-click on the highlighted line. -

Console Error Highlighting

+
+
  • Added ability to reset individual error parsers in preferences. Also icons to indicate status, such as "user", "extension" icons and "wrench" overlay for customized parsers, bug 302720. +
+

Image:Bug-302720-ResetErrorParser.png

-

Regex Error Parser

+

Make Targets

Regular Expression Error Parser introduced. The parser is user-configurable and can be used - to parse errors from non-standard compilers -

Regex Error Parser

+
+
  • Rebuild Last Target F9 got a new option in preferences - to rebuild last target from a whole project including subfolders. This preference is the default now. bug 333113. +
+

Image:Bug-333113-LastMakeTarget.png

+

+
  • Source folders are shown in collapsed form now in Make Targets View, similarly as they are shown in Project Explorer. bug 339015. +
+

Image:Bug-339015-MakeTargetView-SrcRoots.png

+

-

Save Log

+

Managed Build

Added ability to save build log to a file -

Save Log

+
+
  • By default, there will be a space added after "-o" option and its value in compiler/linker commands in the generated makefiles. That stands for other applicable options as well. See bug 232373. +
    g++  -o "Hello.exe"  ./src/Hello.o
    +				
+
-

Run Last Target

+

Scanner Discovery

New keyboard bindings Run Last Make Target F9/Shift-F9 -

Run Last Target

-
-

Project Context Menu

-
Organized project context menu related to build. -

Project Context Menu

-
-

Build Selected Configurations

-
Reworked Build Selected Configurations dialog. -

Build Selected Configurations

-
-

Build Preferences

-
Organized build preferences under Build page. -

Build Preferences

-
-

New Icons

-
New icons and decorations. -

New Icons

-
-

Import Includes

-
Import/Export in Includes and Symbols tabs on the Paths and Symbols project properties. -

Import Includes

-
-

MinGW and Cygwin

-
Better algorithms to recognize MinGW and Cygwin toolchains, see - bug 303900 (Cygwin 1.7) and - bug 195572 (MINGW) for details. -
-

Hello World

-
When a Hello World project is created, open generated file automatically. -
-

Headless Builder

-
Headless Builder has been improved: supports configuration selection, - returns error code if built projects have error markers. -
-

GCC options

-
ManagedBuild GCC toolchain supports pre included header files, i.e. -include switch to gcc +
  • It is possible now to clear old built-in include paths and symbols left after compiler upgrade in Paths&Symbols in project properties. The "Clear" button was introduced on "Scanner Discovery" page. See bug 206372. +
  • You can now inspect the output of command to collect built-in compiler include paths and symbols, bug 342069. +
+

Image:DiscoveryTab.png

-

References

-
-
    -
  • CDT Project References can be ordered. Referenced paths and symbols automatically track this order.
  • -
  • References to library projects are automatically linked in.
  • -
  • A configuration can reference another configuration in the same project.
  • -
-
-

UPC

-
-
    -
  • New UPC project wizard supports the Berkeley UPC toolchain.
  • -
-

 

-
@@ -258,46 +259,254 @@ which may contain more recent information.
-

Non-Stop

+

Project-less debugging

Support for Non-Stop Debugging (stopping one or more threads while the others continue to execute). - Requires GDB 7.0 or newer. -

Non-Stop debugging

+
+

CDT can now be used to debug any binary, without needing to specify or even create a project in Eclipse. This is supported for all types of debugging (local, remote, attach, and post-mortem sessions). +

Furthermore, for an attach session (local or remote), there is even no need to specify the binary; for a local attach, GDB can find the binary automatically, while for a remote attach, CDT will prompt for it when it needs it. +

+

Image:Noprojectdebug.png

+

This feature was completed April 26th, 2011 as part of Bug 343861

-

Features

+

Support for full pretty-printing of complex structures

-
    -
  • DSF-GDB. The default debugger for the CDT is now using a different debugging framework and is called DSF-GDB. - It provides better support for newer GDB versions, such as 6.7, 6.8 and 7.x, for older versions you would - have to edit preferences to use the old framework (CDI) by default. See full list of DSF-GDB features - here. -
  • -
  • GDB Tracepoints are now supported. See the - wiki page. Available in DSF-GDB only. -
  • -
  • Reverse Debugging which allows to undo execution. - Requires GDB 7.0 or newer and only available on Linux. Available in DSF-GDB only. - A webinar on the topic is available here. -
  • -
  • Run To Line feature now allows to run to any line in the program, instead of only lines within the same method. -
  • -
  • Pretty Printing feature of GDB is supported. Requires GDB 7.0 or newer as well as python, and GDB's python pretty-printers. - Some information available here. -
  • -
  • Interrupts on Windows platform while debugging application got improved support. -
  • -
-

 

+

With the proper setup of GDB, DSF-GDB will now print complex structures such as Maps, Lists and Vectors, in a user-friendly fashion, within the Variables and Expressions views, as well as the advanced Debug hover of the Editor. See below on how to setup GDB for this feature to work. +


Without pretty-printing: +

+

Image:NoPrettyPrint.png

+


With pretty-printing: +

+

Image:FullPrettyPrint.png

+


This feature has been contributed by Jens Elmenthaler to CDT 8.0 as of November 4th, 2010, as part of Bug 302121 +


Configuring GDB for pretty-printing: +

+
  • You will need to have python installed on your machine +
+
  • If you want to pretty-print STL structures, you will need the Python pretty-printers for STL. Check-out the latest Python libstdc++ printers to a place on your machine. (Note that you can create your own pretty-printers for any complex-structure). In a local directory, do: +
       svn co svn://gcc.gnu.org/svn/gcc/trunk/libstdc++-v3/python
    +				
    +
+
  • You will need to create a gdbinit file to tell GDB where the pretty-printers are. Create a gdbinit file with the following 6 lines. The path needs to match where the python module above was checked-out. So if checked out to: /home/marc/gdb_printers/, the path would be as written in the example: +
     python
    +import sys
    +sys.path.insert(0, '/home/marc/gdb_printers/python')
    +from libstdcxx.v6.printers import register_libstdcxx_printers
    +register_libstdcxx_printers (None)
    +end
    +				
    +
+
  • You will need GDB 7.0 or later. GDB 7.2 is recommended because it has some bug fixes for the pretty-printing. +
+
  • In your DSF-GDB launch, make sure you use the right GDB and the right gdbinit file +
+
+

Support for pending breakpoints

+
+

When a breakpoint is set in a dynamically-linked library that was not loaded yet, the breakpoint will now work, once the library is loaded. See bug 248595. This feature is currently only supported when using GDB 6.8 or later. +

+
+

Showing cores in Debug view labels

+
+

By using the enhancements of GDB 7.1, DSF-GDB now shows the core on which each thread runs as an extra part of the Debug View label. The list of all cores on which a process is located is also added as a label. The below image shows the new feature. +

+

Image:CoreLabels.png

+

This feature has been implemented for CDT 8.0 as of July 6th, 2010, as part of Bug 318230. The feature will be enabled automatically as long as GDB 7.1 or greater is used. +

+
+

Showing cores and owner in attach prompter

+
+

DSF-GDB now shows the owner of a process as an extra part of the process prompt for an attach session. The owner id will be shown starting with GDB 7.0. For a Remote attach session (using gdbserver --multi), the cores on which a process is located will also be shown. Showing the cores starts with GDB 7.1. The below image shows the new feature. +

Image:UserAndCores.jpg

+

This feature has been implemented for CDT 8.0 as of July 30th, 2010, as part of Bug 318230 comment 21. The feature will be enabled automatically as long as the proper version of GDB is used. +

+
+

Pin & Clone

+
+

Variables, Expressions, Registers, Disassembly, and Memory Browser now supports opening multiple instances, and pin the view input to the selected debug context(s) in the Debug view. This can be used, for example, to easily compare the data of different threads. +

+

Image:PinCloneDebug.png

+

This feature has been implemented for CDT 8.0 as of Feb 15th, 2011, as part of Bug 327263, Bug 331781, and Bug 334566. +

+
+

Multi-process Debugging

+
+

CDT now supports debugging multiple processes in a single debug session. It allows to attach/detach and start/stop processes repeatedly and easily. +

Requirements: +

+
  • GDB 7.2 or greater +
  • Currently, only Non-Stop debugging sessions support multiple processes. +
  • Note that this feature was developed and tested on Linux systems, and may not work on Windows. +
+

To use multi-process debugging, simply launch an application as you normally would, locally or remotely, using gdbserver, and make sure to select Non-stop mode in the Debugger tab. Then, use the Debug View's "Connect" button to trigger a dialog with allows you to either attach to a running process, or to create a new process using the "New..." button. Currently, the "New..." button is only supported for Local debug sessions. +

+

Image:MultiAttachDialog.png

+


+

You will then have the newly selected process added to your debug session, where you can control it and examine it. You can use the "Disconnect" button to remove processes from your debug session, or you can use the "Connect" button to add new ones. +

+

Image:MultiProducerConsumer.png

+


+

An option to automatically attach to a forked process is also available. This means that whenever any process you are currently debugging forks a new process, that new process will be added to your debug session. +

+


+

+
+

C/C++ Remote Application launch

+
+

The optional "C/C++ Remote Application" launch configuration type has been made permanent for CDT. +

+

Image:Debugconfig.jpg

+

The "GDB (DSF) Remote System Process" launch delegate has been renamed to "GDB (DSF) Manual Remote Debugging" and has been moved from "C/C++ Application" to "C/C++ Remote Application". As was the case for CDT 7.0, the optional RSE Remote Launch delegate of org.eclipse.cdt.launch.remote, is still part of "C/C++ Remote Application". +

This optional remote launch now provides a new DSF-GDB-based launch delegate called "GDB (DSF) Automatic Remote Debugging". This launch is very similar to the existing "GDB (DSF) Manual Remote Debugging" delegate, except that the automatic one will automatically download the application to the remote target and start gdbserver with the application. +

+

Image:RemoteDelegates.jpg

+

By default, the user will be shown the "GDB (DSF) Manual Remote Debugging". However, if the optional feature of Remote Launch is installed, the default will automatically become the more feature-rich "GDB (DSF) Automatic Remote Debugging". +

Finally, the run-mode RSE Remote Launch delegate no longer shows the Debugger or Source tabs, since they were not relevant, in run-mode. +

+
+

New set of preferences

+
+

A set of new preferences have been added to Preferences->C/C++->Debug->GDB to allow users to have a better debugging experience. These new preference are: +

+
  • Default GDB path and initialization file: default path for the location of GDB as well as for the GDB initialization file. +
  • Default behavior for Stop on startup: default behavior to stop the execution on startup, and on what symbol. +
  • Default Non-stop mode: default behavior to automatically enable non-stop mode or not. Non-stop mode allows to control the execution of threads and processes independently. +
  • Default limit for GDB Traces: limits the amount of traces printed on the gdb traces console +
  • Default enabling of pretty-printing: assuming a pretty-printing enabled GDB, automatically enabled pretty-printing in CDT +
  • Default child limit for pretty-printing: default to control the amount of children automatically shown by a pretty-printer +
+

Image:DefaultGdbPreference.png

+


The values of most of these preferences will be used to populate the corresponding entries of the Debugger tab, whenever a new launch is created. +

+

Image:LaunchDefaultGdb.png

+


This feature has been implemented for CDT 8.0 as as part of Bug 120162, Bug 347245 and Bug 335895. +

+
+

Extra node for debugged process no longer shown

+
+

The debugged process extra launch node has been removed from the Debug view. This node was felt to waste space, especially when dealing with multi-process debugging as we would have needed many of them. The Debug view already shows the debugged process as a container of threads, right below the launch node. +

+

Image:WithInferior.png

+
API Changes and Migration to CDT 8.0
+
+

+
+

The changes affecting compatibility are listed here. Keep in mind that this list likely does not list all the issues, only some of them. +

+
+

General

+
+
  1. Deprecated class org.eclipse.core.runtime.PluginVersionIdentifier has been changed to use org.osgi.framework.Version. See bug 318581 +
    • Affected packages: org.eclipse.cdt.managedbuilder.*. +
    +
  2. Use default check box was removed from the New C++ Class dialog. Few protected members related to that check box were removed from org.eclipse.cdt.ui.wizards.NewClassCreationWizardPage class. +
+


+

+
+

DSF-GDB

+
+
  1. The interface org.eclipse.cdt.dsf.mi.service.command.output.MIListThreadGroupsInfo.IThreadGroupInfo has four new methods. See bug 318230 comment 21 +
    • String getUser() +
    • String getType() +
    • String getCores() +
    • String getExecutable() +
    +
  2. The interface org.eclipse.cdt.dsf.gdb.service.command.IGDBControl has a new method: List<String> getFeatures(). See bug 322658 +
  3. The interface org.eclipse.cdt.dsf.gdb.service.command.IGDBControl no longer has the three methods: start(...), restart(...) and canRestart(...). Those methods are moved to org.eclipse.cdt.dsf.gdb.service.IGDBProcesses and have a new signature. +
  4. org.eclipse.cdt.dsf.gdb.service.command.GDBControl and org.eclipse.cdt.dsf.gdb.service.command.GDBControl_7_0 no longer implement the five methods: start(...), restart(...), canRestart(...), startOrRestart(...), useContinueCommand(...) which are now implemented in org.eclipse.cdt.dsf.gdb.service.command.GDBProcesses and org.eclipse.cdt.dsf.gdb.service.command.GDBProcesses_7_0 +
  5. All the constructors of class org.eclipse.cdt.dsf.mi.service.command.commands.MIBreakInsert now take an extra parameter at the end of the parameter list: boolean allowPending. When this parameter is set to true, -break-insert will be used with the -f option, which asks GDB to make the breakpoint pending if the installation fails. This flag can only be enabled for GDB >= 6.8. See bug 248595 +
  6. The interface org.eclipse.cdt.dsf.debug.service.IProcesses.IMIProcesses has a new method: IMIContainerDMContext createContainerContextFromGroupId(...). See bug 317500 +
  7. The file of constants org.eclipse.cdt.dsf.gdb.internal.ui.preferences.IGdbDebugPreferenceConstants has been removed. It was deprecated and had already been replaced by org.eclipse.cdt.dsf.gdb.IGdbDebugPreferenceConstants +
  8. The interface org.eclipse.cdt.dsf.mi.service.IMIRunControl has a new method: IRunMode getRunMode(). See bug 334463 +
  9. FinalLaunchSequence has dramatically changed. +
  10. GdbLaunch#addInferiorProcess() is removed. +
  11. GDBControl.InferiorInputOutputInitStep is removed. +
  12. GDBControl_7_0.InferiorInputOutputInitStep is removed. +
  13. The interface IMIRunControl has the new method isTargetAcceptingCommands() as part of Bug 339047 +
  14. IGDBControl, GDBControl and GDBControl_7_0, no longer have the three methods: initInferiorInputOutput(), createInferiorProcess() and getInferiorProcess() as part of Bug 237308 +
  15. MIInferiorProcess's constructors have changed, and many of its public methods are removed (getState(), getPid(), setPid(), etc) as part of Bug 237308 +
  16. CommandFactory#createMIInferiorTTYSet() has changed signature as part of Bug 237308 +
  17. The constructor to MIInferiorTTYSet has changed signature as part of Bug 237308 +
  18. IGDBProcesses gets the new method attachDebuggerToProcess() as part of Bug 237306 +
  19. GdbInferiorProcess no longer exists. Its base class, MIInferiorProcess should be used directly. +
  20. GDBBackend.doInitialize(), GDBControl.doInitialize() and GDBControl_7_0.doInitialize() are now private. Having them as public was a bug that would break versioning of the service. See Bug 341465 +
  21. GDBControlDMContext no longer implements IBreakpointsTargetDMContext or IDisassemblyDMContext. Although not an API breaking change it has significant impacts. Mostly that code such as +
+
(IBreakpointsTargetDMContext)fCommandControl.getContext() // Will fail with an Invalid Cast exception
+(IDisassemblyDMContext)fCommandControl.getContext() // Will fail with an Invalid Cast exception
+				
+

will now fail because the command control context is no longer an IBreakpointsTargetDMContext/IDisassemblyDMContext. Instead, MIContainerDMC now implements IBreakpointsTargetDMContext/IDisassemblyDMContext. This change was necessary to fully support multi-process and was done in bug 335324 and bug 344298. +

+
+

Codan

+
+

The class org.eclipse.cdt.codan.core.cxx.model.CxxModelsCache is no longer a singleton.

+
+
Bugs Fixed

Fixed

All Bugzilla tasks closed in this release: - - CDT 7.0 bug fixes - -

 

+
Bugzilla tasks completed for this release: + + CDT 8.0 bug fixes
+
Known Limitations
-

See also CDT 6.0 - New and Noteworthy to learn what's new in previous CDT versions.

+

To learn what's new in CDT releases see:

+

CDT - New and Noteworthy

+

CDT 7.0 - New and Noteworthy

+

CDT 6.0 - New and Noteworthy

+

CDT 5.0 - New and Noteworthy

Back to Top diff --git a/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_whatsnew_60.htm b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_whatsnew_60.htm index 280b9a97598..27f4c93ce54 100644 --- a/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_whatsnew_60.htm +++ b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_whatsnew_60.htm @@ -453,6 +453,12 @@ See What's New in CDT 5.0

Back to Top

 

+

To learn what's new in CDT releases see:

+

CDT - New and Noteworthy

+

CDT 7.0 - New and Noteworthy

+

CDT 6.0 - New and Noteworthy

+

CDT 5.0 - New and Noteworthy

+ diff --git a/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_whatsnew_70.htm b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_whatsnew_70.htm new file mode 100644 index 00000000000..7e1ba1034c9 --- /dev/null +++ b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_whatsnew_70.htm @@ -0,0 +1,349 @@ + + + + + + + + + +CDT New and Noteworthy + + + +

CDT 7.0 - New and Noteworthy

+

See What's new in CDT 7.0 on the CDT wiki +which may contain more recent information. +

+ + + + + + +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
Editor
+
+

Sort Lines

+
The new Sort Lines command that sorts selected lines alphabetically. +
+

Surround with

+
+

Surround with

+
+

Templates View support

+
Added Templates View support. +

Templates View

+
+

Outline View Groupings

+
Option to group macro definitions in the Outline view. +

Outline View Groupings

+

 

+
+
Codan
+
+

Code Analysis

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

Codan

+

 

+
+
Refactoring
+
+

Getters and setters

+
Choice where to place getters and setters during refactoring. +
+

Refactoring History

+
Introduced Refactoring History for the CDT Refactorings +

Getters and setters

+

 

+
+
Build
+
+

Edit While Building

+
Allow saving files while external Makefile builds are in progress +
+

Console Error Highlighting

+
Compiler errors and warnings are now highlighted in the build console. + Navigation from errors in build console to location in editor is possible + with double-click on the highlighted line. +

Console Error Highlighting

+
+

Regex Error Parser

+
Regular Expression Error Parser introduced. The parser is user-configurable and can be used + to parse errors from non-standard compilers +

Regex Error Parser

+
+

Save Log

+
Added ability to save build log to a file +

Save Log

+
+

Run Last Target

+
New keyboard bindings Run Last Make Target F9/Shift-F9 +

Run Last Target

+
+

Project Context Menu

+
Organized project context menu related to build. +

Project Context Menu

+
+

Build Selected Configurations

+
Reworked Build Selected Configurations dialog. +

Build Selected Configurations

+
+

Build Preferences

+
Organized build preferences under Build page. +

Build Preferences

+
+

New Icons

+
New icons and decorations. +

New Icons

+
+

Import Includes

+
Import/Export in Includes and Symbols tabs on the Paths and Symbols project properties. +

Import Includes

+
+

MinGW and Cygwin

+
Better algorithms to recognize MinGW and Cygwin toolchains, see + bug 303900 (Cygwin 1.7) and + bug 195572 (MINGW) for details. +
+

Hello World

+
When a Hello World project is created, open generated file automatically. +
+

Headless Builder

+
Headless Builder has been improved: supports configuration selection, + returns error code if built projects have error markers. +
+

GCC options

+
ManagedBuild GCC toolchain supports pre included header files, i.e. -include switch to gcc +
+

References

+
+
    +
  • CDT Project References can be ordered. Referenced paths and symbols automatically track this order.
  • +
  • References to library projects are automatically linked in.
  • +
  • A configuration can reference another configuration in the same project.
  • +
+
+

UPC

+
+
    +
  • New UPC project wizard supports the Berkeley UPC toolchain.
  • +
+

 

+
+
Debug
+
+

Non-Stop

+
Support for Non-Stop Debugging (stopping one or more threads while the others continue to execute). + Requires GDB 7.0 or newer. +

Non-Stop debugging

+
+

Features

+
+
    +
  • DSF-GDB. The default debugger for the CDT is now using a different debugging framework and is called DSF-GDB. + It provides better support for newer GDB versions, such as 6.7, 6.8 and 7.x, for older versions you would + have to edit preferences to use the old framework (CDI) by default. See full list of DSF-GDB features + here. +
  • +
  • GDB Tracepoints are now supported. See the + wiki page. Available in DSF-GDB only. +
  • +
  • Reverse Debugging which allows to undo execution. + Requires GDB 7.0 or newer and only available on Linux. Available in DSF-GDB only. + A webinar on the topic is available here. +
  • +
  • Run To Line feature now allows to run to any line in the program, instead of only lines within the same method. +
  • +
  • Pretty Printing feature of GDB is supported. Requires GDB 7.0 or newer as well as python, and GDB's python pretty-printers. + Some information available here. +
  • +
  • Interrupts on Windows platform while debugging application got improved support. +
  • +
+

 

+
+
Bugs Fixed
+
+

Fixed

+
All Bugzilla tasks closed in this release: + + CDT 7.0 bug fixes + +

 

+
+
Known Limitations
+
+

Limitations

+
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 +
+ +

To learn what's new in CDT releases see:

+

CDT - New and Noteworthy

+

CDT 7.0 - New and Noteworthy

+

CDT 6.0 - New and Noteworthy

+

CDT 5.0 - New and Noteworthy

+ +

Back to Top + +

 

+ + + + diff --git a/doc/org.eclipse.cdt.doc.user/images/80/AutoAttachOption.png b/doc/org.eclipse.cdt.doc.user/images/80/AutoAttachOption.png new file mode 100644 index 00000000000..d883808d065 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/AutoAttachOption.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/Bug-302720-ResetErrorParser.png b/doc/org.eclipse.cdt.doc.user/images/80/Bug-302720-ResetErrorParser.png new file mode 100644 index 00000000000..dbe98f699b2 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/Bug-302720-ResetErrorParser.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/Bug-333113-LastMakeTarget.png b/doc/org.eclipse.cdt.doc.user/images/80/Bug-333113-LastMakeTarget.png new file mode 100644 index 00000000000..ca98dd0c8cb Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/Bug-333113-LastMakeTarget.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/Bug-339015-MakeTargetView-SrcRoots.png b/doc/org.eclipse.cdt.doc.user/images/80/Bug-339015-MakeTargetView-SrcRoots.png new file mode 100644 index 00000000000..c11ebc18e3a Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/Bug-339015-MakeTargetView-SrcRoots.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/Bug_307211.png b/doc/org.eclipse.cdt.doc.user/images/80/Bug_307211.png new file mode 100644 index 00000000000..8bb393ff906 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/Bug_307211.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/CDTCamelCaseCompletionDemo.png b/doc/org.eclipse.cdt.doc.user/images/80/CDTCamelCaseCompletionDemo.png new file mode 100644 index 00000000000..d2a7ec75016 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/CDTCamelCaseCompletionDemo.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/CDTConsoleStart.jpg b/doc/org.eclipse.cdt.doc.user/images/80/CDTConsoleStart.jpg new file mode 100644 index 00000000000..f2450907a63 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/CDTConsoleStart.jpg differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/CDTExpandSelection.png b/doc/org.eclipse.cdt.doc.user/images/80/CDTExpandSelection.png new file mode 100644 index 00000000000..9b4259fe87c Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/CDTExpandSelection.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/CDTGlobalBuildConsole.jpg b/doc/org.eclipse.cdt.doc.user/images/80/CDTGlobalBuildConsole.jpg new file mode 100644 index 00000000000..ebc4d5eeb56 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/CDTGlobalBuildConsole.jpg differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/CDTNameResolutionFix.png b/doc/org.eclipse.cdt.doc.user/images/80/CDTNameResolutionFix.png new file mode 100644 index 00000000000..e87fd9da77f Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/CDTNameResolutionFix.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/CDTOverrideMarkers.png b/doc/org.eclipse.cdt.doc.user/images/80/CDTOverrideMarkers.png new file mode 100644 index 00000000000..c02f182122c Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/CDTOverrideMarkers.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/Cdt_t_toggle_member.png b/doc/org.eclipse.cdt.doc.user/images/80/Cdt_t_toggle_member.png new file mode 100644 index 00000000000..7c594e1600f Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/Cdt_t_toggle_member.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/CodeStyle.png b/doc/org.eclipse.cdt.doc.user/images/80/CodeStyle.png new file mode 100644 index 00000000000..12d343f4d83 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/CodeStyle.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/CodeTemplates.png b/doc/org.eclipse.cdt.doc.user/images/80/CodeTemplates.png new file mode 100644 index 00000000000..92908a1abb3 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/CodeTemplates.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/CoreLabels.png b/doc/org.eclipse.cdt.doc.user/images/80/CoreLabels.png new file mode 100644 index 00000000000..c67352a27e7 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/CoreLabels.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/Debugconfig.jpg b/doc/org.eclipse.cdt.doc.user/images/80/Debugconfig.jpg new file mode 100644 index 00000000000..f5660250e7e Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/Debugconfig.jpg differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/DefaultGdbPreference.png b/doc/org.eclipse.cdt.doc.user/images/80/DefaultGdbPreference.png new file mode 100644 index 00000000000..9634675e3bd Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/DefaultGdbPreference.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/DiscoveryTab.png b/doc/org.eclipse.cdt.doc.user/images/80/DiscoveryTab.png new file mode 100644 index 00000000000..b233d1b8ff5 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/DiscoveryTab.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/FullPrettyPrint.png b/doc/org.eclipse.cdt.doc.user/images/80/FullPrettyPrint.png new file mode 100644 index 00000000000..686ca371ab3 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/FullPrettyPrint.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/GlobalBuildConsole.jpg b/doc/org.eclipse.cdt.doc.user/images/80/GlobalBuildConsole.jpg new file mode 100644 index 00000000000..ebc4d5eeb56 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/GlobalBuildConsole.jpg differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/LaunchDefaultGdb.png b/doc/org.eclipse.cdt.doc.user/images/80/LaunchDefaultGdb.png new file mode 100644 index 00000000000..1323c869b48 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/LaunchDefaultGdb.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/MultiAttachDialog.png b/doc/org.eclipse.cdt.doc.user/images/80/MultiAttachDialog.png new file mode 100644 index 00000000000..0c1e29bf87b Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/MultiAttachDialog.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/MultiProducerConsumer.png b/doc/org.eclipse.cdt.doc.user/images/80/MultiProducerConsumer.png new file mode 100644 index 00000000000..0b168467ae8 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/MultiProducerConsumer.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/NameStyle.png b/doc/org.eclipse.cdt.doc.user/images/80/NameStyle.png new file mode 100644 index 00000000000..4a8decd5009 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/NameStyle.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/NoPrettyPrint.png b/doc/org.eclipse.cdt.doc.user/images/80/NoPrettyPrint.png new file mode 100644 index 00000000000..8c50530da18 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/NoPrettyPrint.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/Noprojectdebug.png b/doc/org.eclipse.cdt.doc.user/images/80/Noprojectdebug.png new file mode 100644 index 00000000000..cdd94c1d3af Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/Noprojectdebug.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/PinCloneDebug.png b/doc/org.eclipse.cdt.doc.user/images/80/PinCloneDebug.png new file mode 100644 index 00000000000..e50d8904985 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/PinCloneDebug.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/RemoteDelegates.jpg b/doc/org.eclipse.cdt.doc.user/images/80/RemoteDelegates.jpg new file mode 100644 index 00000000000..745ef1f5b85 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/RemoteDelegates.jpg differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/RenameInWorkspace.png b/doc/org.eclipse.cdt.doc.user/images/80/RenameInWorkspace.png new file mode 100644 index 00000000000..804de81015e Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/RenameInWorkspace.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/RenameRefactoring.png b/doc/org.eclipse.cdt.doc.user/images/80/RenameRefactoring.png new file mode 100644 index 00000000000..985542e0724 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/RenameRefactoring.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/UserAndCores.jpg b/doc/org.eclipse.cdt.doc.user/images/80/UserAndCores.jpg new file mode 100644 index 00000000000..5a3d824958b Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/UserAndCores.jpg differ diff --git a/doc/org.eclipse.cdt.doc.user/images/80/WithInferior.png b/doc/org.eclipse.cdt.doc.user/images/80/WithInferior.png new file mode 100644 index 00000000000..e0c7c8c2031 Binary files /dev/null and b/doc/org.eclipse.cdt.doc.user/images/80/WithInferior.png differ