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

< CDT
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{warning|Note: Some of the contents of this page are out of date, however it serves a useful reference with pointers for the original design considerations of various components.}}
  
 
== Documented Components  ==
 
== Documented Components  ==
  
The following documents provide further information about some of the key components in Eclipse CDT. These documents are in addition to the API documentation that is part of the code. In addition there are [[CDT/Archive/designs archived design documents]] that contain information and discussion about components as they were implemented. The archived documents do contain useful information, but some of it may be out of date and links may be broken. Documentation that is relevant and up to date should be listed here.
+
The following documents provide further information about some of the key components in Eclipse CDT. These documents are in addition to the API documentation that is part of the code. In addition there are [[CDT/Archive/designs | archived design documents]] that contain information and discussion about components as they were implemented. The archived documents do contain useful information, but some of it may be out of date and links may be broken. Documentation that is relevant and up to date should be listed here.
  
*Build
+
*[[CDT/designs/MBS|Managed Build System Support]] Information about the CDT Managed Build System  
**[[CDT/designs/MBS|Managed Build System Support]] Information about the CDT Managed Build System  
+
*[[CDT/cdt-debug-dsf-gdb-extensibility|DSF-GDB extensibility]]
 +
*[[CDT/designs/Overview of Parsing|Overview of the DOM parsers]] High level explanation of parsing in CDT.
 +
*[[CDT/designs/PDOM|PDOM &amp; Indexing]] The indexer architecture
 +
*[http://help.eclipse.org/latest/topic/org.eclipse.cdt.doc.isv/guide/projectTemplateEngine/index.html Project Templates]
 +
*[[CDT/HowTo extend CDT with custom file templates| HowTo extend CDT with custom file templates]]
 +
*[[CDT/LaunchBar| LaunchBar]]
 +
*[[CDT/EnvironmentVariables| About environment variables]]
  
*Debug
+
== New Components that are being discussed ==
**[[CDT/cdt-debug-dsf-gdb-extensibility|DSF-GDB extensibility]]
+
*[[CDT/designs/FutureMBS|Future Managed Build System]] Documentation on the future managed build system
 
+
*Parser
+
**[[CDT/designs/Overview of Parsing|Overview of the DOM parsers]] High level explanation of parsing in CDT.
+
 
+
*Indexer
+
**[[CDT/designs/PDOM|PDOM &amp; Indexing]] The indexer architecture
+
+
*DOM/AST Tooling
+
**[http://r2.ifs.hsr.ch/cdtrefactoring Refactoring]
+
**[[CDT/designs/StaticAnalysis|Static Analysis]] Proposal for Static Analysis Framework for C/C++.
+
*Project Model
+
**[https://bugs.eclipse.org/bugs/show_bug.cgi?id=115935 Project Model] Proposal Bug for a new *DT "Project Model".
+
***[https://bugs.eclipse.org/bugs/attachment.cgi?id=46637 Core] Design Document, [https://bugs.eclipse.org/bugs/attachment.cgi?id=50311 UI] Design Document
+
***[http://dev.eclipse.org/mhonarc/lists/cdt-dev/pptJ3i1bRlrRG.ppt Core] (.ppt), [http://dev.eclipse.org/mhonarc/lists/cdt-dev/pptvZhcaSJnGf.ppt UI] (.ppt)
+
**[[CDT/designs/EFS|EFS Support]] Transitioning CDT to full EFS integration
+
**[[CDT:Flexible Project Structure]] This is a project to allow for more flexible project structures in Eclipse as required for many CDT users.
+
**Project Templates: [http://help.eclipse.org/help33/topic/org.eclipse.cdt.doc.isv/guide/projectTemplateEngine/index.html CDT Plug-in Developer Guide &gt; Programmer's Guide &gt; Project Template Engine]
+
**[[HowTo extend CDT with custom file templates]]
+
*API
+
**[[CDT/cdt-core/designs/CommandLauncher|CommandLauncher]] - overriding CDT command launch behaviour
+
 
+
== Parser ==
+
** [[CDT/designs/Overview of Parsing | Overview of the DOM parsers]] High level explanation of parsing in CDT.
+
** [[CDT/designs/C99 and UPC Parser Overview | C99/UPC parsers]] High level overview of the new C99/UPC parsers.
+
 
+
== Indexer ==
+
** [[CDT/designs/PDOM | PDOM & Indexing]] The new indexer architecture for CDT 3.1.
+
 
+
== DOM/AST Tooling ==
+
** [http://r2.ifs.hsr.ch/cdtrefactoring Refactoring]
+
** [[CDT/designs/StaticAnalysis | Static Analysis]] Proposal for Static Analysis Framework for C/C++.
+
 
+
 
+
== Project Model ==
+
** [https://bugs.eclipse.org/bugs/show_bug.cgi?id=115935 Project Model] Proposal Bug for a new *DT "Project Model".
+
*** [https://bugs.eclipse.org/bugs/attachment.cgi?id=46637 Core] Design Document, [https://bugs.eclipse.org/bugs/attachment.cgi?id=50311 UI] Design Document
+
*** [http://dev.eclipse.org/mhonarc/lists/cdt-dev/pptJ3i1bRlrRG.ppt Core] (.ppt), [http://dev.eclipse.org/mhonarc/lists/cdt-dev/pptvZhcaSJnGf.ppt UI] (.ppt)
+
** [[CDT/designs/EFS | EFS Support]] Transitioning CDT to full EFS integration
+
** [[CDT:Flexible Project Structure]] This is a project to allow for more flexible project structures in Eclipse as required for many CDT users.
+
** Project Templates: [http://help.eclipse.org/topic/org.eclipse.cdt.doc.isv/guide/projectTemplateEngine/index.html CDT Plug-in Developer Guide > Programmer's Guide > Project Template Engine]
+
** [[HowTo_extend_CDT_with_custom_file_templates]]
+
 
+
 
+
== Archived Design Documents ==
+
 
+
In addition the above documents, there are numerous archived design documents that can be explorer that may have some useful information, but may be out of date. See [[CDT/Archive/designs]]
+

Latest revision as of 22:08, 3 October 2022

Warning2.png
Note: Some of the contents of this page are out of date, however it serves a useful reference with pointers for the original design considerations of various components.


Documented Components

The following documents provide further information about some of the key components in Eclipse CDT. These documents are in addition to the API documentation that is part of the code. In addition there are archived design documents that contain information and discussion about components as they were implemented. The archived documents do contain useful information, but some of it may be out of date and links may be broken. Documentation that is relevant and up to date should be listed here.

New Components that are being discussed

Back to the top