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

< CDT
(eplv2 and code cleanup)
(4 intermediate revisions by 2 users not shown)
Line 16: Line 16:
 
This is the New & Noteworthy page for CDT 9.10 which is part of Eclipse 2019-12 Simultaneous Release
 
This is the New & Noteworthy page for CDT 9.10 which is part of Eclipse 2019-12 Simultaneous Release
 
----
 
----
 
+
{| style="width: 100%;"
 +
|- style="vertical-align:top;"
 +
! style="width: 30%; text-align:left;" | EPL v2
 +
| Launchbar and tools.templates is now released under the Eclipse Public License v2 ([http://eclip.se/553232 bug 553232] and [http://eclip.se/553230 bug 553230]).
 +
|}
 +
----
 +
{| style="width: 100%;"
 +
|- style="vertical-align:top;"
 +
! style="width: 30%; text-align:left;" | Code formatting and clean-up
 +
| Launchbar and tools.templates has had a code clean-up. This involved reformatting all Java code with Eclipse's latest code formatter, fixing end of lines and enforcing code formatting with a new gerrit job and Save actions when editing code. See ([http://eclip.se/553233 bug 553233] and [http://eclip.se/553231 bug 553231]).
 +
|}
 +
----
  
 
<!--
 
<!--
Line 30: Line 41:
 
-->
 
-->
  
<!--
 
 
= Code Analysis =
 
= Code Analysis =
 
----
 
----
 +
{| style="width: 100%;"
 +
|- style="vertical-align:top;"
 +
! style="width: 30%; text-align:left;" | Float comparison
 +
|
 +
Added a new checker to verify direct float number comparison.  See [https://bugs.eclipse.org/bugs/show_bug.cgi?id=548730 Bug 545704].
 +
|}
 +
{| style="width: 100%;"
 +
|- style="vertical-align:top;"
 +
! style="width: 30%; text-align:left;" | Functions/Methods blacklist
 +
|
 +
Added a new checker to verify the usage of not allowed methods and/or functions.  See [https://bugs.eclipse.org/bugs/show_bug.cgi?id=548730 Bug 545954].
 +
|}
 +
{| style="width: 100%;"
 +
|- style="vertical-align:top;"
 +
! style="width: 30%; text-align:left;" | Variable initialization
 +
|
 +
Added a new checker to verify if variables are static in header file or if multiple declarations of variables are on the same line.  See [https://bugs.eclipse.org/bugs/show_bug.cgi?id=548730 Bug 545977].
 +
|}
 +
{| style="width: 100%;"
 +
|- style="vertical-align:top;"
 +
! style="width: 30%; text-align:left;" | Return of local variables addresses
 +
|
 +
Added a new checker to verify if a method or function returns the address of a local variable.  See [https://bugs.eclipse.org/bugs/show_bug.cgi?id=548730 Bug 546173].
 +
|}
 
----
 
----
-->
 
  
 
<!--
 
<!--
Line 59: Line 92:
 
[[File:Compilation Database Parser.png]]
 
[[File:Compilation Database Parser.png]]
  
Note that for CMake projects (Core build) compilation database parsing is already done automatically. The new parser aims to give more flexibility for other project types.
+
Note that for CMake projects (Core build), compilation database parsing is already done automatically. The new parser aims to give more flexibility for other project types.
 
|}
 
|}
 
----
 
----
Line 76: Line 109:
 
-->
 
-->
  
<!--
 
 
= API modifications =
 
= API modifications =
 
----
 
----
 +
{| style="width: 100%;"
 +
|- style="vertical-align:top;"
 +
! style="width: 30%; text-align:left;" | org.eclipse.cdt.ui.actions.DeleteResConfigsAction and ExcludeFromBuildAction
 +
|
 +
The classes '''DeleteResConfigsAction''' and '''ExcludeFromBuildAction''' have been removed since they have been unused and deprecated since CDT 8.0. Developers should use '''DeleteResConfigsHandler''' and '''ExcludeFromBuildHandler''' 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.9.0 Bugs Fixed in CDT 9.10]
+
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.10.0 Bugs Fixed in CDT 9.10]
 
----
 
----

Revision as of 17:36, 19 November 2019


Release


This is the New & Noteworthy page for CDT 9.10 which is part of Eclipse 2019-12 Simultaneous Release


EPL v2 Launchbar and tools.templates is now released under the Eclipse Public License v2 (bug 553232 and bug 553230).

Code formatting and clean-up Launchbar and tools.templates has had a code clean-up. This involved reformatting all Java code with Eclipse's latest code formatter, fixing end of lines and enforcing code formatting with a new gerrit job and Save actions when editing code. See (bug 553233 and bug 553231).


Code Analysis


Float comparison

Added a new checker to verify direct float number comparison. See Bug 545704.

Functions/Methods blacklist

Added a new checker to verify the usage of not allowed methods and/or functions. See Bug 545954.

Variable initialization

Added a new checker to verify if variables are static in header file or if multiple declarations of variables are on the same line. See Bug 545977.

Return of local variables addresses

Added a new checker to verify if a method or function returns the address of a local variable. See Bug 546173.



Build


New language settings provider: Compilation Database Parser

For managed build projects, it is now possible to specify the path to a compile_commands.json and reuses existing build output parsers (GCC, MSVC) to detect all the language entries for each file (macros, includes, etc). With this, there is no need to do a full build and in fact no need to have a working build configured in CDT for indexing to work and be fully configured. See Bug 548730.

Compilation Database Parser.png

Note that for CMake projects (Core build), compilation database parsing is already done automatically. The new parser aims to give more flexibility for other project types.




API modifications


org.eclipse.cdt.ui.actions.DeleteResConfigsAction and ExcludeFromBuildAction

The classes DeleteResConfigsAction and ExcludeFromBuildAction have been removed since they have been unused and deprecated since CDT 8.0. Developers should use DeleteResConfigsHandler and ExcludeFromBuildHandler instead.


Bugs Fixed in this Release


See Bugzilla report Bugs Fixed in CDT 9.10


Back to the top