Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions NewAndNoteworthy/CDT-11.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ Please see the corresponding issue for more details.
- `org.eclipse.cdt.lsp.cquery`
- `org.eclipse.cdt.lsp.ui`

## GNU removed from display name language for C/C++

C and C++ have been renamed from "GNU C" and "GNU C++" to just "C" and "C++". If you have exported settings with CDT prior to CDT 10.5 they may not import
successfully with CDT 11. See #178

# Build

## Scanner Discovery able to consider all flags
Expand Down
4 changes: 2 additions & 2 deletions core/org.eclipse.cdt.core/plugin.properties
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ PDOMProviderName=PDOM Provider
fastIndexer.name=Fast Indexer

# Built-in languages
language.name.gcc= GNU C
language.name.gpp= GNU C++
language.name.gcc= C
language.name.gpp= C++
language.name.asm= Assembly

CConfigurationDataProvider.name = CConfigurationData provider
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ private static void assertNoSettingsImported(IProject project) {
// {badXML6}
// <cdtprojectproperties>
// <section name="org.eclipse.cdt.internal.ui.wizards.settingswizards.Macros">
// <language name="GNU C++">
// <language name="C++">
// <macro>
// <name>aaaa</name>
// </macro>
Expand All @@ -257,7 +257,7 @@ private static void assertNoSettingsImported(IProject project) {
// {badXML7}
// <cdtprojectproperties>
// <section name="org.eclipse.cdt.internal.ui.wizards.settingswizards.Macros">
// <language name="GNU C++">
// <language name="C++">
// <macro>
// <name>aaaa</name><value></value><value></value>
// </macro>
Expand All @@ -268,7 +268,7 @@ private static void assertNoSettingsImported(IProject project) {
// {badXML8}
// <cdtprojectproperties>
// <section name="org.eclipse.cdt.internal.ui.wizards.settingswizards.IncludePaths">
// <language name="GNU C++">
// <language name="C++">
// <includepath>C:\WINDOWS</includepath><invalid></invalid>
// </language>
// </section>
Expand Down