- The Eclipse Foundation makes available all content in this plug-in
- ("Content"). Unless otherwise indicated below, the Content
- is provided to you under the terms and conditions of the Eclipse
- Public License Version 2.0 ("EPL"). A copy of the EPL is
- available at https://www.eclipse.org/legal/epl-2.0.
- For purposes of the EPL, "Program" will mean the Content.
-
-
-
- If you did not receive this Content directly from the Eclipse
- Foundation, the Content is being redistributed by another party
- ("Redistributor") and different terms and conditions may
- apply to your use of any object code in the Content. Check the
- Redistributor's license that was provided with the Content. If no such
- license exists, contact the Redistributor. Unless otherwise indicated
- below, the terms and conditions of the EPL still apply to any source
- code in the Content and such source code may be obtained at https://www.eclipse.org.
-
Depending on how you obtained the Stand-alone Debugger, you might have also received
-a toolchain.
-However, if you downloaded the Stand-alone Debugger from the Eclipse web site, then you will require a toolchain before
-you can debug any projects.
-
-
The Stand-alone Debugger uses plug-ins from the CDT (C/C++ Development Tools) project pertaining to
-debugging an application. These CDT debugging components require some GNU toolchain elements such as
-the gdb debugger and gcc compiler. The Stand-alone Debugger does allow editing files but does not support rebuilding
-a project; a user can do that outside of the Stand-alone Debugger either either from the command line or using
-the full CDT IDE which supports edit/compile/build/debug.
-
-
Each platform that runs the Stand-alone Debugger requires different steps to acquire the GNU toolchain.
-
-
Windows
-
For windows, MinGW and Cygwin are the two main platform choices for acquiring the GNU toolchain.
-It is important to understand the difference between them.
-Cygwin produces executables that use the Cygwin POSIX runtime. Note that this runtime is GPL licensed.
-MinGW produces native Windows executables that do not require a separate runtime.
-
-
-
For MinGW, it is recommended to use the MinGW installer, mingw-get, to manage your
-MinGW installation. Download and run the latest mingw-get-inst package from the
-MinGW Downloads page.
-
-
Note that the Wascana IDE has been discontinued.
-
-
-
Cygwin can be installed from the Cygwin site at
-https://www.cygwin.com. You need to manually select
-the gdb and gcc packages. The gcc package is used to figure out default include paths
-and built-in macros for indexing the code for navigation purposes.
-
-
-
The Windows SDK provides the Visual C++ compiler and header files and libraries required
-to create Windows applications.
-
Note: For this release, the integration should be considered beta quality. It is not recommended for
-production use.
-
-
-
-
Linux
-
All Linux distributions include the GNU toolchain. They may not, however, be installed by default.
-For instructions about installing the GNU toolchain for Linux, see the instructions for your particular distribution.
-
-
Mac OS X
-The Stand-alone Debugger supports the Apple GNU toolchain that is included in with the Xcode IDE. It can be downloaded
-from the Apple's developer site, https://developer.apple.com
-
-
Other Platforms
-
The GNU toolchain is supported on all platforms that the Stand-alone Debugger supports. For instructions about installing the GNU toolchain
-on your platform, see your platform vendor.
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_brkpnts.htm b/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_brkpnts.htm
deleted file mode 100644
index c2cae29339e..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_brkpnts.htm
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-Breakpoints
-
-
-
-
-
-
Breakpoints
-
-
A breakpoint suspends the execution of a program at the location where the breakpoint is set.
-To set a line breakpoint, right-click in the marker bar area on the left side of an editor beside
-the line where you want the program to be suspended, then choose Toggle Breakpoint. You can
-also double-click on the marker bar next to the source code line. A new breakpoint marker appears
-on the marker bar, directly to the left of the line where you added the breakpoint. Also, the new
-breakpoint appears in the Breakpoints view list.
-
-
Once set, a breakpoint can be enabled and disabled by right-clicking on its icon or by
-right-clicking on its description in the Breakpoints view.
-
-
-
-
When a breakpoint is enabled, it causes the program to suspend whenever it is hit.
-Enabled breakpoints are indicated with a blue
- circle.
-Enabled breakpoints that are successfully installed
-are indicated with a checkmark overlay.
-
When a breakpoint is disabled, it will not affect the execution of the program.
-Disabled breakpoints are indicated with a white
- circle.
-
-
-
-
-
-
-
Note: Execution will also suspend
-if Stop at main() on startup is enabled
-on the Launch Configuration dialog.
-To access the Launch Configuration dialog,
-from the menu bar choose Run > Debug.
-
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_build_over.htm b/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_build_over.htm
deleted file mode 100644
index e95b6ebfe67..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_build_over.htm
+++ /dev/null
@@ -1,162 +0,0 @@
-
-
-
-
-
- Building C/C++ projects
-
-
-
-
-
Building C/C++ projects
-
The CDT relies on an external make utility, such as GNU make, to
-build a project. The CDT can generate makefiles automatically when you
-create a Managed Make C project or a Managed Make C++ project. You have
-the option of creating a Standard Make C project or a Standard Make C++
-project and providing the makefile yourself.
-
Required utilities
-
You must install and configure the following utilities:
-
-
-
Build (e.g. make).
-
Compile (e.g. gcc).
-
Debug (e.g. gdb).
-
-Note: while make, gcc and gdb are the examples used in the
-documentation, virtually any similar set of tools or utilities could be
-used.
-
-
Tip: Cygwin contains these utilities (make, gcc and gdb) for
-a Windows environment. While running the cygwin installation,
-ensure gcc and make are selected since they are not
-installed by default. For more information, see https://www.cygwin.com. If you are a
-Red Hat user, all that you need to do to build your project is included
-in the Red Hat Linux installation.
-For other operating systems, please refer to your installation
-documentation.
-
-
Build terminology
-
The CDT uses a number of terms to describe the scope of the build.
-
Build Project
-
This is an incremental build (make all, assuming all is defined in
-your makefile). Only the components affected by modified files in that
-particular project are built.
-
Rebuild Project
-
Builds every file in the project whether or not a file has been
-modified since the last build. A rebuild is a clean followed by a build.
-
For more information on builds, see:
-
-
Workbench User Guide > Concepts > Workbench > Builds
-
Workbench User Guide > Tasks > Building resources
-
-
Build-related information is displayed as follows:
-
-
The Console view displays the output of the build tools.
-
The Problems view displays a list of compiler errors and warnings
-related to your projects.
-
For Standard Make projects, the Makefile targets are displayed in
-the Make Targets view.
-
-
For more information about the Problems view, see Workbench User
-Guide > Reference > User interface information > Views and
-editors > Problems view.
-
-
Getting a makefile
-
You can either create a C/C++ project for which you supply the makefile
-or create a C/C++ project for which the CDT generates makefiles
-automatically.
-
To create a new project, from the menu bar choose File > New
-> Project. In the dialog that appears, expand the C/C++ group
-and choose e.g. C Project
-
-
In the resulting wizard page, to create a project for which you supply the makefile,
-select Makefile project and choose one of the alternatives under that.
-An empty project, or a simple "Hello World" can be created.
-You edit and manage the makefile yourself.
-
-
-
To create a project for which the CDT supplies a basic makefile,
-select another project type, e.g. Executable and choose one of the examples
-under that, or choose Empty Project.
-
-
-
Setting build preferences
-
You can set build preferences in Eclipse:
-
-
Build order
-
If certain projects must be built before others, you can set the build
-order. If your project refers to another project, the CDT must
-build the other project first. To set the build order, from the menu
-bar select Window > Preferences and choose General > Preferences > Build Order.
-
When you set the build order, the CDT does not rebuild projects
-that depend on a project; you must rebuild all projects to ensure all
-changes are propagated.
-
-
Automatic save
-
You can set the CDT to perform an automatic save of all
-modified resources when you perform a manual build. In the preferences dialog,
-select General > Workspace and check Save automatically before build.
-By default,
-this feature is not enabled.
-
-
-
Controlling the building of your project
-
For a Makefile project, the C/C++ compiler that a project uses
-is controlled by the project's Properties setting.
-To view a project's properties, right-click on the project and select Properties.
-In the dialog that appears, the C/C++ Build
-page enables you to control a variety of settings, including:
-
-
Build Command
-
On the Builder Settings tab, this controls which make is used. To change it, uncheck Use
- default build command and change it or add arguments to the make command.
-
-
Build Setting
-
On the Behaviour tab, this controls whether the compiler will Stop on first build error or not
- (keep going). Unchecking Stop on first build error will force the compiler to attempt to build all referenced
- projects even if the current project has errors.
-
-
Workbench Build Behavior
-
On the Behaviour tab, this controls which makefile target will be built depending on the scope of the
- build, e.g. all or clean.
-
-
For a standard (non-Makefile) project (often called "Managed Build" or "Managed Make" project from
-earlier CDT version), the project properties dialog enables
-you to manage the build configurations of your project. For additional
-information see:
Comments are lines in a source file that have been marked to be ignored by the compiler.
-Two styles of comments are supported by current C/C++ compilers:
-
-
/* text */
-
// text
-
-
-
Comment
-
You can quickly comment out one or more lines of code by inserting the leading
-characters // at the beginning of the line. To do so, select the line
-(or lines) of code you want to comment out and press CTRL+/ (slash).
-
-
Uncomment
-
To uncomment select the line (or lines) of code, and press CTRL+\
-(backslash).
-
-
Tip: The characters /* */ on lines that are
-already commented out, are not affected when you comment and uncomment code.
-
-
Multiline comment
-
You can use the Content Assist feature to insert a multi-line comment before a function.
-Type com+Ctrl+Space, and the following code is entered at the cursor location:
-
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_content_assist.htm b/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_content_assist.htm
deleted file mode 100644
index 714d7094d69..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_content_assist.htm
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-
-
-
-
- Content Assist
-
-
-
-
-
-
Content Assist
-
-
Content Assist is a set of tools built into the CDT that can reduce the number of keystrokes you must
-type to create your code. The Content Assist plug-in consists of several components that forecast what
-a developer will type, based on the current context, scope, and prefix.
-
-
Code completion
-
-
Content assist provides code completion anywhere in the document. For the current project a list is
-displayed of the elements that begin with the letter combination you entered, and
-the relevance of each proposal is determined in the following order:
-
-
-
Fields
-
Variables
-
Methods
-
Functions
-
Classes
-
Structs
-
Unions
-
Namespaces
-
Enumerations
-
-
-You trigger the Code completion feature when you call Content Assist (such as when you type Ctrl+Space), but it is auto-activated when you type
-., -> or ::.
-
-
-
-
You can view the signature of each item on the list in a pop-up by pointing to it. You can then select an item in the list to insert it directly into your code.
-
-
Templates
-
-
You can create and save templates for frequently used sections of code, which will be inserted according to scope. The Content Assist feature also provides quick access to code
-templates.
-
-
When you enter a letter combination in the C/C++ editor, and type CTRL+SPACE (or right-click and click Content Assist), a
-list of code elements and templates that start with the letter combination that you typed is displayed.
-
-
You can then select a template from the list and it is inserted directly into your code.
-
-
-
-
For example, the template do while statement contains the following code:
-
-
-
-
When you select the do template from the list, you insert the following code:
-
-
do {
-} while (condition);
-
-
-
If the completion engine finds only one proposal in your templates, that proposal is inserted at the current cursor position.
-For example if you create a new .cpp file and type mai+CTRL+SPACE the following code is inserted at the cursor location:
-
int
-main(int argc, char **argv) {
-
-}
-
-
No Completions
-
-
If you invoke Content Assist, but no completions are found a message will be displayed on the status to inform you that the Content Assist parser has timed out.
When using the Stand-alone Debugger, you will be using the Debug
-perspective. The Debug perspective lets you manage the debugging or running of a program
-in the Eclipse Workbench. You can control the execution of your program by setting
-breakpoints, suspending launched programs, stepping through your code, and
-examining the contents of variables.
-
The Debug perspective displays the following information:
-
-
-
The stack frame for the suspended threads
-for each target that you are debugging
-
Each thread in your program represented as a node in the tree
-
The process for each program that you are running
-
-
The Debug perspective also drives the C/C++ Editor. As you step
-through your program, the C/C++ Editor highlights the location of the
-execution pointer.
-
-
Variables
-
-
You can view information about the variables in a selected stack frame in the
-Variables view. When execution stops, the changed values are
-by default highlighted in red. Like the other debug-related views, the Variables view does
-not refresh as you run your executable. A refresh occurs when execution stops.
-
-
Expressions
-
-
An expression is a snippet of code that can be evaluated to produce a result.
-The context for an expression depends on the particular debug model. Some
-expressions may need to be evaluated at a specific location in the program so
-that the variables can be referenced. You can view information about expressions
-in the Expressions view.
-
-
Registers
-
-
You can view information about the registers in a selected stack frame.
-Values that have changed are highlighted in the Registers view when your program
-stops.
-
-
Memory
-
-
You can inspect and change your process memory.
-
-
Disassembly
-
-
You can view disassembled code mixed with source information.
-
-
Modules
-
-
You can view information about the modules (executables and shared libraries) loaded
-in the current debug session.
-
-
Signals
-
-
You can view the signals defined on the selected debug target and how the
-debugger handles each one.
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_discovery_options.htm b/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_discovery_options.htm
deleted file mode 100644
index 7e466d64120..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_discovery_options.htm
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
-
-
-
- Views in the C/C++ perspective
-
-
-
-
-
-
Discovery options
-
-
For projects where the IDE generates a makefile to build the project automatically, the IDE has more information about the internal build state of the make project compared to those projects where you provide a makefile to build the project.
-
-
For example, a makefile includes build information and other settings, such as include file paths (-I) and macro definitions (-D), which are standard to the build tools (such as the compiler and linker). When the makefile is automatically created for you, this information is known to Eclipse to a greater extent then when you create and manage the makefile for a project yourself. The type of information affects the search capabilities and Code Assist abilities of Eclipse. Therefore, in this example, the purpose of Discovery Options is for improved search and Code Assist capability for projects where Eclipse does not manage the makefile for you. For example, in an open source file of an editor view, to see the declaration for a function that the code calls, you select the function, right click, and select Open Declaration from the context menu. If the location of the include file (that was coded in the makefile for the project) containing the function declaration was in some directory, the CDT would not find the declaration because it has no visibility for that include path. Consequently, you can use Discovery Options in the CDT to enhance the IDE build state by parsing the build process output to extract build path information that the CDT searching mechanism uses to locate and open the include file. By default, the CDT uses GNU* tools (gcc, etc.). If you want to build your projects using another compiler, use the settings described here.
-
-
Scanner configuration discovery is tightly linked to project's build process. The first part of scanner discovery begins during the make build for make projects where you provide the makefile. The Eclipse CDT parses the build output for compiler commands with options that specify the definition of the preprocessor symbols and include search paths (for the gcc compiler, -D and -I), and then it stores the information as the project's discovered scanner configuration.
-
-
Next, after the build process completes, it is implemented as a separate Eclipse builder where it runs a generate scanner info command, and then parses the output (properties specified on the Discover Options tab for Builds in the Project Properties window).
-
-
For C++, the default generate scanner information command is gcc -E -P -v myfile.c | myfile.cpp. This command reads the compiler's configuration file and prints the information that includes compiler's internally defined preprocessor symbols and include search paths.
-
-
A single scanner configuration is applicable to all the files in a project. Although Eclipse discovers the information for each compilation unit, it stores the scanner configuration on a per project basis. This means that Eclipse applies a single, cumulative scanner configuration to all files in a project.
-
-
The following situations identify circumstances when certain parts of the scanner configuration are in conflict:
-
-
Symbol definitions that contradict
-
An incorrect order for the include paths
-
Internal scanner information may not be applicable to all the files in a project (for a single compiler), because some files might be compiled with a different compiler, or have target specific options specified.
-
-
-
-
Note: Only basic command line options are supported. In addition, only basic scanner configuration related command line options are recognized (for example, -D and -I for gcc). For some of the commands, their relative position in the command line is important. For information about these options, see the documentation for the utilities you are using.
-
-
The Stand-alone Debugger provides an editor that gives you specific support for editing C/C++ code.
-This C/C++ editor is invoked automatically when you open a C/C++ source file. While you are able
-to modify the contents of a file, if you save those changes, you will need to rebuild the project outside of the Stand-alone Debugger
-to synchronize the debug information in the executable with the source files used.
-
-
The C/C++ editor includes the following features:
-
-
Syntax highlighting
-
Content/code assist
-
Code folding
-
Integrated debugging features
-
-
-
You can customize some of the operation of the Editor view from the Window > Preferences > C/C++ > Editor preferences dialog.
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_indexer.htm b/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_indexer.htm
deleted file mode 100644
index 4c1005a43b6..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_indexer.htm
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
-
- C/C++ Indexer
-
-
-
-
-
C/C++ Indexer
-
The C/C++ indexer uses the parser to create a database of your
-source and header files that provides the basis for C/C++ search,
-navigation features and parts of content assist.
-
The indexer runs on a background thread and reacts to resource
-change events such as:
-
-
-
C/C++ project creation/deletion
-
Source files creation/deletion
-
File imports
-
Source file content changes
-
-
It is possible to customize the behavior of the indexer through the
-use of source folders or even turn it off completely. This customizable
-behavior is available on a per-project basis (i.e. it is possible to
-have different indexer settings for each project in your workspace).
-
-
CDT supports the contribution of additional indexers, with 2
-indexers being provided with the default CDT release:
-
-
-
Fast C/C++ Indexer : provides fastest indexing capabilities - both
-declarations and cross reference information. This is the recommended indexer.
-
-
Full C/C++ Indexer : provides even more accurate indexing capabilities at the cost of performance - both
-declarations and cross reference information.
-
The Full C/C++ Indexer is a new indexer for CDT 3.0 which makes use
-of the new DOM. It creates a full index of the project's source
-providing both declaration and cross reference information to the
-various clients that make use of the index. In comparison with the
-previous versions of the indexer, the new C/C++ indexer provides
-quicker and more accurate results.
-
-
This indexer provides the most complete set of information but can
-be potentially long running, especially on larger projects.
-
The indexer progress bar shows the progress status of the indexing
-jobs in the progress views.
-
The indexing jobs can be temporarily paused by pressing the stop
-button on the progress bar. This will cause the indexer to wait until
-the next time the user runs a search job or makes a change to an
-indexed element (by such actions as modifying an existing source file,
-deleting a file, creating a new file, moving file and so on). The
-indexer at this point will resume with the previously postponed
-indexing job before moving on to the new one.
-
If you wish to cease indexing all together, you can cancel an
-indexing job and disable the indexer through the properties.
A makefile is a text file that is referenced by the make command that describes the building of targets, and contains information such as source-level dependencies and build-order dependencies.
-
The CDT can generate a makefile for you, such projects are called Managed Make projects. Some projects, known as Standard Make projects, allow you to define your own makefile.
-
-
Sample Makefile
-
-# A sample Makefile
-# This Makefile demonstrates and explains
-# Make Macros, Macro Expansions,
-# Rules, Targets, Dependencies, Commands, Goals
-# Artificial Targets, Pattern Rule, Dependency Rule.
-
-# Comments start with a # and go to the end of the line.
-
-# Here is a simple Make Macro.
-LINK_TARGET = test_me.exe
-
-# Here is a Make Macro that uses the backslash to extend to multiple lines.
-# This allows quick modification of more object files.
-OBJS = \
- Test1.o \
- Test2.o \
- Main.o
-
-# Here is a Make Macro defined by two Macro Expansions.
-# A Macro Expansion may be treated as a textual replacement of the Make Macro.
-# Macro Expansions are introduced with $ and enclosed in (parentheses).
-REBUILDABLES = $(OBJS) $(LINK_TARGET)
-
-# Make Macros do not need to be defined before their Macro Expansions,
-# but they normally should be defined before they appear in any Rules.
-# Consequently Make Macros often appear first in a Makefile.
-
-# Here is a simple Rule (used for "cleaning" your build environment).
-# It has a Target named "clean" (left of the colon ":" on the first line),
-# no Dependencies (right of the colon),
-# and two Commands (indented by tabs on the lines that follow).
-# The space before the colon is not required but added here for clarity.
-clean :
- rm -f $(REBUILDABLES)
- echo Clean done
-
-# There are two standard Targets your Makefile should probably have:
-# "all" and "clean", because they are often command-line Goals.
-# Also, these are both typically Artificial Targets, because they don't typically
-# correspond to real files named "all" or "clean".
-
-# The rule for "all" is used to incrementally build your system.
-# It does this by expressing a dependency on the results of that system,
-# which in turn have their own rules and dependencies.
-all : $(LINK_TARGET)
- echo All done
-
-# There is no required order to the list of rules as they appear in the Makefile.
-# Make will build its own dependency tree and only execute each rule only once
-# its dependencies' rules have been executed successfully.
-
-# Here is a Rule that uses some built-in Make Macros in its command:
-# $@ expands to the rule's target, in this case "test_me.exe".
-# $^ expands to the rule's dependencies, in this case the three files
-# main.o, test1.o, and test2.o.
-$(LINK_TARGET) : $(OBJS)
- g++ -g -o $@ $^
-
-# Here is a Pattern Rule, often used for compile-line.
-# It says how to create a file with a .o suffix, given a file with a .cpp suffix.
-# The rule's command uses some built-in Make Macros:
-# $@ for the pattern-matched target
-# $lt; for the pattern-matched dependency
-%.o : %.cpp
- g++ -g -o $@ -c $<
-
-# These are Dependency Rules, which are rules without any command.
-# Dependency Rules indicate that if any file to the right of the colon changes,
-# the target to the left of the colon should be considered out-of-date.
-# The commands for making an out-of-date target up-to-date may be found elsewhere
-# (in this case, by the Pattern Rule above).
-# Dependency Rules are often used to capture header file dependencies.
-Main.o : Main.h Test1.h Test2.h
-Test1.o : Test1.h Test2.h
-Test2.o : Test2.h
-
-# Alternatively to manually capturing dependencies, several automated
-# dependency generators exist. Here is one possibility (commented out)...
-# %.dep : %.cpp
-# g++ -M $(FLAGS) $< > $@
-# include $(OBJS:.o=.dep)
-
-
-
-
Frequently Asked Questions:
-Your Console view can be very useful for debugging a build.
-
-
Q1. My Console view says Error launching builder. What does that mean?
Most probably, the build command (by default "make") is not on your path. You can put it on your path and restart Eclipse.
-You can also change the build command to something that is on your path. If you are using MinGW tools to compile, you should replace the build command with "mingw32-make".
-
-
Q2. My Console view says No rule to make target 'X'.
-
-make -k clean all
-make: *** No rule to make target 'clean'.
-make: *** No rule to make target 'all'.
-
-
-
By default, the make program looks for a file most commonly called "Makefile" or "makefile".
-If it cannot find such a file in the working directory, or if that file is empty or the file does not
-contain rules for the command line goals ("clean" and "all" in this case), it will normally fail
-with an error message similar to those shown.
-
-
If you already have a valid Makefile, you may need to change the working directory of your build. The default working directory for the build command is the project's root directory. You can change this by specifying an alternate Build Directory in the Make Project properties.
-Or, if your Makefile is named something else (eg. buildFile.mk), you can specify the name by setting the default Build command to make -f buildFile.mk.
-
-
If you do not have a valid Makefile, create a new file named Makefile in the root directory. You can then add the contents of the sample Makefile (above), and modify it as appropriate.
-
-
Q3. My Console view says "missing separator".
-
-make -k clean all
-makefile:12: *** missing separator. Stop.
-
-
The standard syntax of Makefiles dictates that every line in a build rule must be preceded by a Tab character.
-This Tab character is often accidentally replaced with spaces, and because both result in white-space indentation,
-this problem is easily overlooked. In the sample provided, the error message can be pinpointed to line 12 of the
-file "makefile"; to fix the problem, insert a tab at the beginning of that line.
-
-
Q4. My Console view says Target 'all' not remade because of errors.
The likely culprit here is that g++ is not on your Path.
-
The Error 255 is produced by make as a result of its command shell not being able to find a command for a particular rule.
-Messages from the standard error stream (the lines saying Error 255) and standard output stream (all the other lines) are merged in the Console view here.
-
-
Q5. What's with the -k flag?
-
-
The -k flag tells make to continue making other independent rules even when one rule fails.
-This is helpful for build large projects.
-
You can remove the -k flag by turning on Project Properties > C/C++ Make Project > Make Builder > Stop on first build error
-
-
Q6. My Console view looks like:
-
-mingw32-make clean all
-process_begin: CreateProcess((null), rm -f Test1.o Test2.o Main.o test_me.exe, ...) failed.
-make (e=2): The system cannot find the file specified.
-
-mingw32-make: *** [clean] Error 2
-rm -f Test1.o Test2.o Main.o test_me.exe
-
-
-
This means that mingw32-make was unable to find the utility "rm". Unfortunately, MinGW does not come with "rm". To correct this, replace the clean rule in your Makefile with:
The leading minus sign tells make to consider the clean rule to be successful even if the del command returns failure. This may be acceptable since the del command will fail if the specified files to be deleted do not exist yet (or anymore).
-
-
-
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_open_declarations.htm b/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_open_declarations.htm
deleted file mode 100644
index 583b72b891e..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_open_declarations.htm
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
-
-Open Declaration
-
-
-
-
-
-
Open Declaration
-
-
You can select an element name in your code and quickly navigate to its declaration.
-
-
-
-
Open declaration will attempt to navigate to the exact definition of the selected element if the selected element is a reference or a declaration.
-Otherwise, it will attempt to navigate to a declaration of the selected element.
-Open declaration requires your file to have the proper include paths set up to the declaration.
-If for any reason open declaration cannot find the declaration, it will display the following message in the status line:
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_outlineview.htm b/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_outlineview.htm
deleted file mode 100644
index 28b23746941..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_outlineview.htm
+++ /dev/null
@@ -1,131 +0,0 @@
-
-
-
-
-
-
- Outline view
-
-
-
-
-
-
Outline view
-
-
The Outline view displays an outline of a structured C/C++ file that is currently
-open in the editor area, by listing the structural elements.
-
-
-
-
The Outline view shows the following elements in the source file in the order
-in which they occur:
-
-
-
Class
-
Namespace
-
Include
-
Enum
-
Enumerator
-
Field private
-
Field protected
-
Field public
-
Include
-
Method private
-
Method protected
-
Method public
-
Struct
-
Typedef
-
Union
-
Variable
-
Function
-
Macro Definition
-
-
-
You can also sort the list
-alphabetically. When you select an element in the Outline view, the C/C++
-editor highlights both the selected item and the marker bar (left margin). For example, to move
-to the start of main() in the C/C++ editor, click main() in the Outline
-view.
-
-
For more information about the marker bar, see Workbench User Guide > Reference > User interface
-information > Views and editors > Editor area.
-
-
Filtering the Outline View
-
-
You can filter the Outline view by choosing to display or hide the following
-items:
-
-
-
Fields
-
Static members
-
Non-public members
-
-
-
You can select an element in the Outline view, and perform the following actions:
-
-
Open the C/C++ Search window box. The Search string box is populated and
- the element type is selected.
-
Complete a text-based search, of a workspace or a specified working set for the
- selected element.
-
Open a selected .h file in the editor.
-
Rename Refactor
-
-
-
Icons
-
-
-
Icon
-
Description
-
-
-
-
Collapse All
-
-
-
-
Sort items alphabetically
-
-
-
-
Hide Fields
-
-
-
-
Hide Static Members
-
-
-
-
Hide Non-Public Members
-
-
-
-
Hide Inactive Elements
-
-
-
-
For more information about the Eclipse workbench, see Workbench User Guide > Tasks > Upgrading Eclipse.
-
For more information about Working sets, see Workbench User Guide > Concepts > Working sets.
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_over_cdt.htm b/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_over_cdt.htm
deleted file mode 100644
index b4133f6ad9f..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_over_cdt.htm
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
-
-
- CDT overview
-
-
-
-
-
CDT Overview
-
The C/C++ Development Toolkit (CDT) is a set of Eclipse plug-ins that provide
-C and C++ extensions to the Eclipse workbench. For more information about
-Eclipse, see Workbench User Guide > Concepts > Workbench.
-
-
The full CDT provides a C/C++ IDE that simplifies many of the same tools that you can use from the command line. The CDT can also communicate with many external utilities and interpret their responses, for example:
-
-Note: while make, gcc and gdb are the examples used in the documentation, virtually any similar set of tools or utilities could be used.
-
-
The Stand-alone Debugger application is built from various Eclipse plug-ins from the CDT pertaining to Debug and Edit. Plug-ins associated
-with Build and Compile are not included. Though it is possible to edit files within the Stand-alone Debugger, any changes
-will require a rebuild which will have to be performed outside of the Debugger. If you want a full C/C++ IDE, then it is suggested to use the full CDT
-instead which incorporates the C/C++ Debugger within it.
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_over_dbg.htm b/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_over_dbg.htm
deleted file mode 100644
index a7f0489d55a..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_over_dbg.htm
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
-
-
-
-
-Debug overview
-
-
-
-
-
-
Debug overview
-
-
The debugger lets you see what's going on "inside" a program while it
-executes.
-
In order to debug your application, you must use executables compiled for
-debugging. These executables contain additional debug information that lets the
-debugger make direct associations between the source code and the binaries
-generated from that original source.
-
The Stand-alone debugger uses GDB as the underlying debug engine. It translates each
-user interface action into a sequence of GDB commands and processes the output from GDB to
-display the current state of the program being debugged.
-
Tip: Editing the source after compiling causes the line numbering to be out of
-step because the debug information is tied directly to the source. Similarly,
-debugging optimized binaries can also cause unexpected jumps in the execution
-trace.
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_perspectives.htm b/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_perspectives.htm
deleted file mode 100644
index 9d452fad811..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_perspectives.htm
+++ /dev/null
@@ -1,76 +0,0 @@
-
-
-
-
-
-
-Perspectives available to C/C++ developers
-
-
-
-
-
Perspective
-
-
A perspective is a layout of views (development tools) in the Workbench window.
-Each type of perspective is a combination of views, menus, and toolbars that enable you to perform a particular task.
-In the Stand-alone Debugger, you only have the choice of the Debug perspective which has views that
-enable you to debug programs. When ever you use the Stand-alone Debugger, you will be placed into the Debug
-perspective.
-
-
-
-Selecting / Opening Views:
-
-
You can add views to the perspective. From the menu bar choose Window > Show View and open a category then select a new view from the Show View dialog.
-
To reset the Debug perspective to its original layout, from the menu bar choose Window > Reset Perspective.
-
-
-
-
The C/C++ development tools contribute the following perspectives to the workbench:
-
-
-
-
There a several additional views that may be useful during a debug session. You can add them by clicking Window > Show View > C/C++ to show them in the C/C++ perspective.
-
Debug perspective views
-
-
The Debug perspective is tuned for debugging your C/C++ program.
-By default it includes an editor area and the following views:
-
There a several additional views that may be useful during a debug session. You can add them by clicking Window > Show View > Debug to show them in the Debug perspective.
-
-
Additional C/C++ views
-
-
There are some additional C/C++ views that are provided that may be accessed using Window > Show View > C/C++.
-These will normally not be needed for debugging but may be helpful if there are problems and the user has an understanding
-of the full CDT IDE. The additional views are:
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_proj_file_views.htm b/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_proj_file_views.htm
deleted file mode 100644
index f0d9c0219a1..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_proj_file_views.htm
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-Project file views
-
-
-
-
-
-
Project file views
-
-
Projects files and elements are displayed in the C/C++ Projects view and in the ProjectExplorer view.
-
-
C/C++ Projects view
-
Displays, in a tree structure, only elements relevant to C and C++ projects. In this view you can do the following:
-
-
Browse the elements of C/C++ source files
-
-
-
Import or Export files and projects
-
Manage existing files (cut, paste, delete, move or rename)
-
Open files in the editor view
-
Open projects in a new window
-
-
Restore deleted files from local history
-
Search
-
-
-Files that you select in the C/C++ Projects view affect the information that is displayed in other views.
-
-
-
-
Project Explorer view
-
-
The Project Explorer view provides a hierarchical view of all the resources in the workbench, not just your C/C++ resources.
-From this view, you can open files for editing or select resources for operations such as exporting.
-
-
Right-click any resource in the Project Explorer view to open a pop-up menu from which you can perform operations such as
-copy, move, create new resources, compare resources, or perform team operations. For a description of what each menu
-item does, select an item and press F1.
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_projects.htm b/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_projects.htm
deleted file mode 100644
index 57f965eef7a..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_projects.htm
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
- CDT projects
-
-
-
-
-
C/C++ projects
-
-
Normally, before you can work with plug-ins provided by the CDT, you must create an Eclipse project to store your
-source code, makefiles, binaries, and related files. However, when you use the Stand-alone Debugger, a project is created
-for your executable automatically (usually the Executables project if only dealing with one executable).
-The project created on your behalf just contains the executable and links to the source files specified in the debug
-info. In most cases, you do not need to know about the project to debug, but if you wish to see the various files used
-and browse them directly with the editor, you can find the project in the C/C++ Projects view. While you are allowed to import
-files into the C/C++ project, this action is normally used for adding files to a project that can build. Since the Stand-alone
-Debugger does not contain CDT (C/C++ Developer Tools) build capability, adding files does nothing to aid in debugging and can
-confuse the indexer if the source has errors in it.
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_scanner_discovery.htm b/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_scanner_discovery.htm
deleted file mode 100644
index 889fec4e3c1..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_scanner_discovery.htm
+++ /dev/null
@@ -1,108 +0,0 @@
-
-
-
-
-
-
- Scanner Discovery
-
-
-
-
-
Scanner Discovery
-
-
-
General
-Scanner Discovery (sometimes called Autodiscovery) is a method of finding include paths and predefined preprocessor macros which the compiler uses during compilation of the code.
-
-
-
-Even a simplest C/C++ program just printing "Hello World" needs to include system headers. Consider:
-
-Indexer needs to be able to find headers stdio.h and stdlib.h and parse them to provide accurate index.
-In this example, the headers define prototype of function puts and macro EXIT_SUCCESS.
-
-
-
-
-The Stand-alone Debugger will try to discover include paths and preprocessor symbols automatically.
-There are 2 main ways to discover those:
-
-
-
Built-in Settings.
-The debugger will try to detect built-in compiler symbols and include paths running the compiler with special options and parse the output of this special run.
-Most compilers provide such an option to print built-in include paths and symbols. Built-in settings are implied and do not get passed to the compiler during regular compilation.
-
-
Build Output Parser (BOP).
-Another method that the debugger employs is to analyze build output you provide to its Build Output Parser.
-Often, include paths are supplied to the compiler with -I options, and macros with -D options
-and BOP will try to find those in the output.
-That method relies on verbose build output of your build where all these options are actually printed by make. To
-specify build output either use the -b command-line option or else specify the location of the
-build log when using the File > New Executable... dialog.
-
-
-
-
-The debugger uses Language Settings Providers to discover the settings (starting with version CDT 8.1). Typically Language settings Providers are specialized.
-One will provide built-in compiler settings and another one settings detected by Build output Parser.
-
-
-
-The setting entries found by Scanner Discovery can be inspected in project properties on "Preprocessor Include Paths, Macros etc." page.
-Each Language Settings Provider can be expanded to show the entries it discovered.
-
-
-
-
-
-
-
-
-If information retrieved by auto-discovery is insufficient a user can enter additional include paths and macros manually under "User Settings Entries".
-
-
-
-
Console View
-
-The output of built-in compiler specs detectors can be inspected to troubleshoot problems running the command.
-To do so, enable checkbox "Allocate console in the Console View".
-
-
-
-
-
-
-When checkbox "Allocate console in the Console View" is enabled, output of each run of the provider will be directed to a special console in the Console View.
-
You can conduct a fully or partially qualified name search. Further
-qualifying a search increases the accuracy and relevance of search results. The
-sections below provide guidance on how to control the scope of your search
-through the use of search delimiters, correct syntax, and wildcards.
-
-
You can search for:
-
-
language constructs within:
-
-
projects in your workspace
-
selected resources from various views
-
working sets
-
-
a working set for references to particular elements
-
declarations of particular elements
-
definitions of particular elements
-
references of particular elements
-
-
-
-For information on working sets, see Workbench User Guide > Concepts > Workbench > Working sets
-
-
-
What you can search for
-
The table below lists the element types that you can search for and special
- considerations to note when searching for a given element type. You can search
- for some or all of the element types matching a search string that you
- specify. If you choose to search for matching elements, all types, macros, and typdefs are included in the search.
-
-
-
Element
-
Note
-
-
-
Class/Struct
-
Searches for classes and structs.
You can further qualify
- the search by specifying "class" or "struct" in front of the name
- that you are
- searching for. Specifying "class" or "struct" also allows you to
- search for anonymous classes and structures.
-
-
-
Function
-
Searches for global functions or functions in a namespace
- (functions that are not members of a class, struct, or union).
You can
- specify parameters to further qualify your search. When specifying a
- parameter list, everything between the parentheses should be valid C/C++
- syntax.
-
Do not specify the return type of the function.
-
-
-
Variable
-
Searches for variables that are not members of a class,
- struct, or union.
-
-
-
Union
-
Searches for unions.
Anonymous unions can be searched for by
- specifying "union" as the search pattern.
-
-
-
Method
-
Searches for methods that are members of a class, struct, or
- union.
Searching for methods also finds constructors and destructors. See
- above note for functions.
-
-
-
Field
-
Searches for fields that are members of a class, struct, or
- union.
-
-
-
Enumeration
-
Searches for enumerations.
-
-
-
Enumerator
-
Searches for enumerators.
-
-
-
Namespace
-
Searches for namespaces.
-
-
-
-
How you can limit your search
-
-
You can limit your search to one or all of the following:
-
-
-
Declarations
-
References
-
Definitions (for functions, methods, variables and fields)
-
-
-
You can control the scope of the search by specifying which of the following
-is to be searched:
-
-
Workspace
-
Working Set
-
Selected Resources
-
-
-
Wildcard characters
-
You can use wildcard characters to further refine your search.
-
-
-
Use this wildcard character
-
To search for this
-
-
-
*
-
Any string
Tip:
- Use the character sequence \* to search for
- operators that begin with *. See syntax examples in the table below.
-
-
-
?
-
A single character
-
-
-
::
-
Nested elements
-
-
-
-
Syntax examples
-
The table below provides syntax examples and an explanation for each example
-to help you conduct an effective search.
-
-
-
Syntax
-
Searches for this
-
-
-
::*::*::A
-
A nested element two levels deep
-
-
-
::*::*::A?
-
Any two-letter name that begins with A and is two levels
- deep
-
-
-
::A
-
Searches for A not nested in anything
-
-
-
-
operator \*
-
Finds only operator *
-
-
-
operator \*=
-
Finds only operator *=
-
-
-
operator *
-
Finds all operators
-
-
-
class
-
Searches for anonymous classes
-
-
-
struct
-
Searches for anonymous structs
-
-
-
union
-
Searches for anonymous unions
-
-
-
Search results
-
Search results are displayed in the Search view. You can sort your search by Name, Parent Name and Path. You can also repeat
-your last search.
-
-
Search Concepts
-
-
Declarations
-
According to the ANSI C++ Spec, a declaration is a statement that introduces a name into a translation unit or re-declares a name that has been previously introduced by a previous declaration.
-
All C/C++ search elements can be searched for declarations.
-
-
Definitions
-
Most declarations are also definitions; in other words, they also define the entity for they declare the name for. However there are some elements that can have separate definitions from their declarations.
-
For C/C++ search the following elements can be searched for definitions:
-
-
Functions/Methods - the definition is where the code implementation resides
-
Variable:
-
-
Extern - the definition is where the variable is initialized
-
Non extern - the definition of a variable is where it is declared
-
-
Field:
-
-
Static fields - the definition of a static field is where it gets initialized
-
Non static fields - the definition corresponds to the fields declaration
-
-
Namespace - the definition of a namespace is the same as its declaration
-
-
-
References
-
By selecting references, C/C++ search will return all of the places the selected element is used.
-
-
All Occurrences
-
Selecting 'All Occurrences' in the Limit To section will result in a search for declarations, definitions (if applicable) and references for whatever element or elements have been selected.
-
-
Any Element
-
Selecting 'Any Element' in the Search For section will result in a search for all of the listed elements plus macros and typedefs.
-
-
-
For more information, see:
-
Workbench User Guide > Concepts > Views > Search view
-
Workbench User Guide > Tasks > Navigating and finding resources
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_standalone_intro.htm b/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_standalone_intro.htm
deleted file mode 100644
index db7b6cf90e4..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_standalone_intro.htm
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
- Introduction
-
-
-
-
-
Introduction
-
The Stand-alone Debugger is an Eclipse application which packages the
-Eclipse plug-ins from the CDT (C/C++ Development Tools) project into an
-application that can be started from a command-line script. The debugger
-removes some of the plug-ins that would be found in the full CDT set that
-are related to building and project set-up. This simplifies the UI for
-the end-user who is only interested in debugging and is not interested in
-using Eclipse to build the application itself.
-
In addition, the Stand-alone debugger helps to simplify debugging in that
-it hides Eclipse-specific concepts such as the Eclipse project and launch
-configuration. While these concepts are hidden, they still are used underneath
-and an experienced Eclipse user can still access them. Subsequent documentation
-here will attempt to point out where such concepts are being automated by the
-Stand-alone Debugger and how they can still be accessed.
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_templates.htm b/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_templates.htm
deleted file mode 100644
index ab72db5d9c6..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_templates.htm
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-Templates
-
-
-
-
-
-
Templates
-
-
- Templates are sections of code that occur frequently enough that you
- would like to be able to insert them with a few keystrokes. This
- function is known as Content Assist; the sections of
- code that are inserted are known as templates.
-
-
- To insert an existing Content Assist template into a file, such as
- one for an if statement, type the initial character
- ("i" in this case), then press Ctrl+Space.
- The templates that begin with that character appear. Double-click on
- a template to insert it into a file.
-
-
-
- You can edit the existing Content Assist templates or create new
- ones using the C/C++
- > Editor > Templates preference pane.
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_views.htm b/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_views.htm
deleted file mode 100644
index 77a6fd1d8c3..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_c_views.htm
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
-
-
- Views in the C/C++ perspective
-
-
-
-
-
-
C/C++ Views
-
-
The C/C++ views are panels that help you perform the tasks involved in managing C/C++ programs.
-These views can be added to the perspective for your Eclipse window.
-
-Changing Views:
-
-
You can add views to a perspective. From the menu bar choose Window > Show View and select a new view from one of the
- categories of views in the Show View dialog.
-
To reset the current perspective to its original layout, from the menu bar choose Window > Reset Perspective.
-
-
-
The following views are commonly used in the C/C++ perspective:
-
-
-
Project Explorer
Shows all of the file system's files under your workspace directory.
-
Console
Displays your program's output, as well as the output from your build tools.
-
Editor
The C/C++ editor view provides specialized features for editing C/C++ related files.
-
Outline
Displays the structure of the file currently open in an editor.
-
Problems
-
If you encounter any errors during a build they will be displayed in the Problems view.
-
Properties
Shows the attributes of the item currently selected in a view or an editor.
-
Tasks
Lists tasks that want to keep track of, either as a schedule of things to do or a history of things that have been done.
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_o_home.htm b/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_o_home.htm
deleted file mode 100644
index ea5e422bc4d..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/concepts/cdt_o_home.htm
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-
-
- C/C++ Development User Guide
-
-
-
-
-
C/C++ Development User Guide
-
-
The C/C++ Development Toolkit (CDT) is a collection of Eclipse-based features that provides the capability
-to create, edit, navigate, build, and debug projects that use C and/or C++ as a programming language.
-
-
The CDT does not include the necessary compilers and debuggers to convert C/C++ code into executable
-programs and to debug those programs, but it does provide the frameworks that allow such tools to
-be integrated in a consistent fashion.
-This allows you to mix and match such tools depending on your project requirements.
-
-
Often, commercial distributions of the CDT include the necessary tools and integrations. If yours does
-not, the base CDT does provide support for integration with the GNU tools for build and debug. Please see the
-Before you begin section for installation instructions
-Please enter your text here.
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/html/subtopic.html b/debug/org.eclipse.cdt.debug.application.doc/html/subtopic.html
deleted file mode 100644
index 8a61c501d6a..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/html/subtopic.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
- Sub Topic
-
-
-
-
Sub Topic
-Please enter your text here.
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/html/toc.html b/debug/org.eclipse.cdt.debug.application.doc/html/toc.html
deleted file mode 100644
index 326f0a9ff3c..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/html/toc.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
- Table of Contents
-
-
-
-
Table of Contents
-Please enter your text here.
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/add_breakpoint.png b/debug/org.eclipse.cdt.debug.application.doc/images/add_breakpoint.png
deleted file mode 100644
index f8196f53020..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/add_breakpoint.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/alphab_sort_co.gif b/debug/org.eclipse.cdt.debug.application.doc/images/alphab_sort_co.gif
deleted file mode 100644
index 6d772441d0d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/alphab_sort_co.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/btn_columns.png b/debug/org.eclipse.cdt.debug.application.doc/images/btn_columns.png
deleted file mode 100644
index 3833e627033..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/btn_columns.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/btn_import_executables.png b/debug/org.eclipse.cdt.debug.application.doc/images/btn_import_executables.png
deleted file mode 100644
index ae639c2fa1e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/btn_import_executables.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/btn_restart.png b/debug/org.eclipse.cdt.debug.application.doc/images/btn_restart.png
deleted file mode 100644
index a161f8522f0..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/btn_restart.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/builder_settings.png b/debug/org.eclipse.cdt.debug.application.doc/images/builder_settings.png
deleted file mode 100644
index 526e58fe3f9..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/builder_settings.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/c_cpp_preferences.png b/debug/org.eclipse.cdt.debug.application.doc/images/c_cpp_preferences.png
deleted file mode 100644
index d744b925748..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/c_cpp_preferences.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/c_element_filters.png b/debug/org.eclipse.cdt.debug.application.doc/images/c_element_filters.png
deleted file mode 100644
index f282d48e112..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/c_element_filters.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/c_exe_obj.png b/debug/org.eclipse.cdt.debug.application.doc/images/c_exe_obj.png
deleted file mode 100644
index 9f89f36da17..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/c_exe_obj.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/c_file_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/c_file_obj.gif
deleted file mode 100644
index bd603cff7a2..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/c_file_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/c_object_file.png b/debug/org.eclipse.cdt.debug.application.doc/images/c_object_file.png
deleted file mode 100644
index 29c5bb72797..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/c_object_file.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/c_ovr.gif b/debug/org.eclipse.cdt.debug.application.doc/images/c_ovr.gif
deleted file mode 100644
index f4496021a73..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/c_ovr.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/c_paths.png b/debug/org.eclipse.cdt.debug.application.doc/images/c_paths.png
deleted file mode 100644
index 3c1d51c7ade..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/c_paths.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_autobuild.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_autobuild.png
deleted file mode 100644
index 85e53202698..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_autobuild.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_buildenv_newenvvar.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_buildenv_newenvvar.png
deleted file mode 100644
index 0bec0a2f6af..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_buildenv_newenvvar.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_buildenv_selectvar.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_buildenv_selectvar.png
deleted file mode 100644
index f18ef803c7b..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_buildenv_selectvar.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_ca_no_completions.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_ca_no_completions.png
deleted file mode 100644
index 623e2005595..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_ca_no_completions.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_bp_filter.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_bp_filter.png
deleted file mode 100644
index ce5f16c7392..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_bp_filter.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_exes01.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_exes01.png
deleted file mode 100644
index 16cb90d5eca..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_exes01.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_exes02.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_exes02.png
deleted file mode 100644
index f1854831ac2..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_exes02.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_exes03.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_exes03.png
deleted file mode 100644
index 615a4d7dea2..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_exes03.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_exes04.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_exes04.png
deleted file mode 100644
index 057916c770b..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_exes04.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_exes05.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_exes05.png
deleted file mode 100644
index b6c958213ff..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_exes05.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_hover_modes.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_hover_modes.png
deleted file mode 100644
index 3b3b885a6d2..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_hover_modes.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_run01.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_run01.png
deleted file mode 100644
index a208560ce3d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_debug_run01.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_dlg_define_build_var.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_dlg_define_build_var.png
deleted file mode 100644
index 9190d6ea25a..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_dlg_define_build_var.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_dlg_edit_build_var.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_dlg_edit_build_var.png
deleted file mode 100644
index 049a6e3cc52..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_dlg_edit_build_var.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_dsfgdb_preferences_page.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_dsfgdb_preferences_page.png
deleted file mode 100644
index 0d2ec5e54c0..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_dsfgdb_preferences_page.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_error_workbench.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_error_workbench.png
deleted file mode 100644
index f2b1f8e9267..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_error_workbench.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_file_inc.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_file_inc.png
deleted file mode 100644
index 34064a3ce34..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_file_inc.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_file_steps.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_file_steps.png
deleted file mode 100644
index 373e77abd02..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_file_steps.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_file_sym.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_file_sym.png
deleted file mode 100644
index 5106e6c7fcc..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_file_sym.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_file_toolsett.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_file_toolsett.png
deleted file mode 100644
index 4f635421f7e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_file_toolsett.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_fold_resource.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_fold_resource.png
deleted file mode 100644
index 7f6a74e59ee..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_fold_resource.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_fold_toolsett.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_fold_toolsett.png
deleted file mode 100644
index 9d2c58addf5..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_fold_toolsett.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_inline_rename.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_inline_rename.png
deleted file mode 100644
index 44047e88db8..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_inline_rename.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_menu_toggle_comments.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_menu_toggle_comments.png
deleted file mode 100644
index 524c13a74ec..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_menu_toggle_comments.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_menubar.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_menubar.png
deleted file mode 100644
index 44a91de3a73..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_menubar.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_new_brk_action.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_new_brk_action.png
deleted file mode 100644
index 7d186805056..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_new_brk_action.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_open_element.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_open_element.png
deleted file mode 100644
index 4f6307c519a..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_open_element.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref-multi-cfg.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref-multi-cfg.png
deleted file mode 100644
index ad7a53afb5a..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref-multi-cfg.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref-prop-pages.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref-prop-pages.png
deleted file mode 100644
index e6312702060..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref-prop-pages.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref-wizard-defaults.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref-wizard-defaults.png
deleted file mode 100644
index dfbbd0516e9..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref-wizard-defaults.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref-wizard-toolchains.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref-wizard-toolchains.png
deleted file mode 100644
index f8d4aa698f5..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref-wizard-toolchains.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_brk_action.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_brk_action.png
deleted file mode 100644
index 2ce105461ed..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_brk_action.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_brk_action_properties.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_brk_action_properties.png
deleted file mode 100644
index 7f113aadb1d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_brk_action_properties.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_build_console.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_build_console.png
deleted file mode 100644
index c254fff19ab..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_build_console.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_build_vars.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_build_vars.png
deleted file mode 100644
index 850d2eb2de2..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_build_vars.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_file_types.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_file_types.png
deleted file mode 100644
index e65ff03cd9e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_file_types.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_new_task_tag_dlg.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_new_task_tag_dlg.png
deleted file mode 100644
index 2235581638e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_new_task_tag_dlg.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_task_tags.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_task_tags.png
deleted file mode 100644
index e7299985c19..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_pref_task_tags.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_refactor.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_refactor.png
deleted file mode 100644
index 22a4375c9ca..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_refactor.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_rename_dialog.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_rename_dialog.png
deleted file mode 100644
index 4be0a7d5ff5..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_rename_dialog.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_select_type.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_select_type.png
deleted file mode 100644
index c143d88b76d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_select_type.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_set_src_folder.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_set_src_folder.png
deleted file mode 100644
index 406a2df6538..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_set_src_folder.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_1.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_1.png
deleted file mode 100644
index 08c9d7dbca3..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_1.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_2.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_2.png
deleted file mode 100644
index 3fe998ade0a..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_2.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_3.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_3.png
deleted file mode 100644
index 0850083f0c7..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_3.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_4.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_4.png
deleted file mode 100644
index f67b3352fe3..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_4.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_5.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_5.png
deleted file mode 100644
index 4918ac1d02f..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_5.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_6.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_6.png
deleted file mode 100644
index ba3fd341ebc..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_proj_new_with_template_6.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_toggle_selection.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_toggle_selection.png
deleted file mode 100644
index 5f68cbc0aee..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_toggle_selection.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_toggle_selection2.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_toggle_selection2.png
deleted file mode 100644
index 1831f1f276d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_toggle_selection2.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_toggle_selection3.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_toggle_selection3.png
deleted file mode 100644
index 00a6913dedd..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_t_toggle_selection3.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_toolbar.png b/debug/org.eclipse.cdt.debug.application.doc/images/cdt_toolbar.png
deleted file mode 100644
index 4c23103af2d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/cdt_toolbar.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/class_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/class_obj.gif
deleted file mode 100644
index 6279478c51b..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/class_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/code_style_preferences.png b/debug/org.eclipse.cdt.debug.application.doc/images/code_style_preferences.png
deleted file mode 100644
index 333d16d75a3..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/code_style_preferences.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/code_templates.png b/debug/org.eclipse.cdt.debug.application.doc/images/code_templates.png
deleted file mode 100644
index eae5d39f033..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/code_templates.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/code_templates_new.png b/debug/org.eclipse.cdt.debug.application.doc/images/code_templates_new.png
deleted file mode 100644
index 622b125f0f8..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/code_templates_new.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/codetemplates_example.png b/debug/org.eclipse.cdt.debug.application.doc/images/codetemplates_example.png
deleted file mode 100644
index 8cb7ff0d044..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/codetemplates_example.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/command_link.png b/debug/org.eclipse.cdt.debug.application.doc/images/command_link.png
deleted file mode 100644
index 28ced874ea8..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/command_link.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/console_build.png b/debug/org.eclipse.cdt.debug.application.doc/images/console_build.png
deleted file mode 100644
index 00442e80653..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/console_build.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/container_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/container_obj.gif
deleted file mode 100644
index d90a51c0220..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/container_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/contentAssist_adv_preferences.png b/debug/org.eclipse.cdt.debug.application.doc/images/contentAssist_adv_preferences.png
deleted file mode 100644
index a16a70165ee..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/contentAssist_adv_preferences.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/contentAssist_example.png b/debug/org.eclipse.cdt.debug.application.doc/images/contentAssist_example.png
deleted file mode 100644
index 61021414b28..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/contentAssist_example.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/contentAssist_preferences.png b/debug/org.eclipse.cdt.debug.application.doc/images/contentAssist_preferences.png
deleted file mode 100644
index e82399fc0e1..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/contentAssist_preferences.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/convert_proj.png b/debug/org.eclipse.cdt.debug.application.doc/images/convert_proj.png
deleted file mode 100644
index 10de9a70363..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/convert_proj.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/create_make_target.png b/debug/org.eclipse.cdt.debug.application.doc/images/create_make_target.png
deleted file mode 100644
index 929061a8c24..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/create_make_target.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/create_make_target_win.png b/debug/org.eclipse.cdt.debug.application.doc/images/create_make_target_win.png
deleted file mode 100644
index d47c50532a5..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/create_make_target_win.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/customize_perspective.png b/debug/org.eclipse.cdt.debug.application.doc/images/customize_perspective.png
deleted file mode 100644
index cc8e556fd5f..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/customize_perspective.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/debug_pref.png b/debug/org.eclipse.cdt.debug.application.doc/images/debug_pref.png
deleted file mode 100644
index 45cfa3d7bf7..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/debug_pref.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/debug_src_path_mapping.png b/debug/org.eclipse.cdt.debug.application.doc/images/debug_src_path_mapping.png
deleted file mode 100644
index 2aec2603279..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/debug_src_path_mapping.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/debug_src_pref.png b/debug/org.eclipse.cdt.debug.application.doc/images/debug_src_pref.png
deleted file mode 100644
index ad7730a482a..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/debug_src_pref.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/define_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/define_obj.gif
deleted file mode 100644
index 87d583e1dd3..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/define_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/discovery_preferences.png b/debug/org.eclipse.cdt.debug.application.doc/images/discovery_preferences.png
deleted file mode 100644
index 7efe392b4d9..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/discovery_preferences.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/dprop_make_discovery_file.png b/debug/org.eclipse.cdt.debug.application.doc/images/dprop_make_discovery_file.png
deleted file mode 100644
index 8cc935e77d7..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/dprop_make_discovery_file.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/edited_ovr.gif b/debug/org.eclipse.cdt.debug.application.doc/images/edited_ovr.gif
deleted file mode 100644
index f272e8c7321..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/edited_ovr.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/editor_c_codetemplates_use.png b/debug/org.eclipse.cdt.debug.application.doc/images/editor_c_codetemplates_use.png
deleted file mode 100644
index 06a03fc2c30..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/editor_c_codetemplates_use.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/editor_color_preferences.png b/debug/org.eclipse.cdt.debug.application.doc/images/editor_color_preferences.png
deleted file mode 100644
index 888b89f7f71..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/editor_color_preferences.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/editor_folding_preferences.png b/debug/org.eclipse.cdt.debug.application.doc/images/editor_folding_preferences.png
deleted file mode 100644
index c3eb6e98e2b..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/editor_folding_preferences.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/editor_general_preferences.png b/debug/org.eclipse.cdt.debug.application.doc/images/editor_general_preferences.png
deleted file mode 100644
index 1ebb1bea8b0..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/editor_general_preferences.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/editor_hover_preferences.png b/debug/org.eclipse.cdt.debug.application.doc/images/editor_hover_preferences.png
deleted file mode 100644
index d33d29295ef..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/editor_hover_preferences.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/editor_mark_preferences.png b/debug/org.eclipse.cdt.debug.application.doc/images/editor_mark_preferences.png
deleted file mode 100644
index 5ec7a3b77bd..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/editor_mark_preferences.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/editor_save_actions_preferences.png b/debug/org.eclipse.cdt.debug.application.doc/images/editor_save_actions_preferences.png
deleted file mode 100644
index 90391346f16..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/editor_save_actions_preferences.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/editor_scalability_preferences.png b/debug/org.eclipse.cdt.debug.application.doc/images/editor_scalability_preferences.png
deleted file mode 100644
index 529f94196c8..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/editor_scalability_preferences.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/editor_typing_preferences.png b/debug/org.eclipse.cdt.debug.application.doc/images/editor_typing_preferences.png
deleted file mode 100644
index 5da772cfde0..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/editor_typing_preferences.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/enum_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/enum_obj.gif
deleted file mode 100644
index a441bef7dc2..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/enum_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/enumerator_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/enumerator_obj.gif
deleted file mode 100644
index ec911412eff..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/enumerator_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/error_co.gif b/debug/org.eclipse.cdt.debug.application.doc/images/error_co.gif
deleted file mode 100644
index 119dcccd5a7..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/error_co.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/field_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/field_obj.gif
deleted file mode 100644
index 240749472c6..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/field_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/field_private_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/field_private_obj.gif
deleted file mode 100644
index 567c7786e3c..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/field_private_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/field_protected_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/field_protected_obj.gif
deleted file mode 100644
index 4234e04bba6..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/field_protected_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/field_public_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/field_public_obj.gif
deleted file mode 100644
index 63a390c8326..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/field_public_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/fields_co.gif b/debug/org.eclipse.cdt.debug.application.doc/images/fields_co.gif
deleted file mode 100644
index e14ce565b4f..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/fields_co.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/file_menu.png b/debug/org.eclipse.cdt.debug.application.doc/images/file_menu.png
deleted file mode 100644
index 85972352369..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/file_menu.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/file_new_conv.png b/debug/org.eclipse.cdt.debug.application.doc/images/file_new_conv.png
deleted file mode 100644
index e6d4efd513a..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/file_new_conv.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/fileprop_language_mappings.png b/debug/org.eclipse.cdt.debug.application.doc/images/fileprop_language_mappings.png
deleted file mode 100644
index 141cca65290..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/fileprop_language_mappings.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/find_replace_dialog.png b/debug/org.eclipse.cdt.debug.application.doc/images/find_replace_dialog.png
deleted file mode 100644
index 97e73ca6942..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/find_replace_dialog.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/function_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/function_obj.gif
deleted file mode 100644
index 92075a8a352..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/function_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/hierarchy_co.gif b/debug/org.eclipse.cdt.debug.application.doc/images/hierarchy_co.gif
deleted file mode 100644
index 45b6b132268..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/hierarchy_co.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/history_list.gif b/debug/org.eclipse.cdt.debug.application.doc/images/history_list.gif
deleted file mode 100644
index 364c0e70b1d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/history_list.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_add_mem_monitor.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_add_mem_monitor.png
deleted file mode 100644
index 1f9218ccfea..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_add_mem_monitor.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_annotation_next.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_annotation_next.png
deleted file mode 100644
index 69c09556f06..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_annotation_next.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_annotation_prev.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_annotation_prev.png
deleted file mode 100644
index ff1378e80e5..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_annotation_prev.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_back.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_back.png
deleted file mode 100644
index a64dbbc19e4..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_back.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_breakpoint_disable.gif b/debug/org.eclipse.cdt.debug.application.doc/images/icon_breakpoint_disable.gif
deleted file mode 100644
index 7d190f165d0..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_breakpoint_disable.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_breakpoint_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/icon_breakpoint_obj.gif
deleted file mode 100644
index 06d007905b2..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_breakpoint_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_build_make_target.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_build_make_target.png
deleted file mode 100644
index acc6050601d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_build_make_target.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_clear_console.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_clear_console.png
deleted file mode 100644
index 12fc6d11bae..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_clear_console.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_collapse_all.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_collapse_all.png
deleted file mode 100644
index 349d4ead802..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_collapse_all.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_disp_console.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_disp_console.png
deleted file mode 100644
index 4f5bf01ddf3..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_disp_console.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_max.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_max.png
deleted file mode 100644
index 748b94f9975..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_max.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_min.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_min.png
deleted file mode 100644
index 23f67fc0049..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_min.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_pin.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_pin.png
deleted file mode 100644
index 20a31aae06f..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_pin.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_rem_all_term.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_rem_all_term.png
deleted file mode 100644
index 8b85f300b47..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_rem_all_term.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_scroll_lock.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_scroll_lock.png
deleted file mode 100644
index 61266355b14..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_scroll_lock.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_terminate.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_terminate.png
deleted file mode 100644
index 6b0c4a414fb..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_con_terminate.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_copy_to_clipboard.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_copy_to_clipboard.png
deleted file mode 100644
index 177d228de90..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_copy_to_clipboard.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_copy_stack.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_copy_stack.png
deleted file mode 100644
index 4c018d1ed10..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_copy_stack.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_debug.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_debug.png
deleted file mode 100644
index 2637d2a1976..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_debug.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_drop_to_frame.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_drop_to_frame.png
deleted file mode 100644
index d5c9d707fda..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_drop_to_frame.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_launch_instance.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_launch_instance.png
deleted file mode 100644
index 1c3b22f55eb..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_launch_instance.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_restart.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_restart.png
deleted file mode 100644
index 6af462ebb80..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_restart.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_resume.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_resume.png
deleted file mode 100644
index 2b2372eba58..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_resume.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_stack_frame.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_stack_frame.png
deleted file mode 100644
index e5ffd063e9e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_stack_frame.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_step_mode.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_step_mode.png
deleted file mode 100644
index 23104c5795b..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_step_mode.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_stepinto.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_stepinto.png
deleted file mode 100644
index 839bd1f2ee9..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_stepinto.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_stepover.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_stepover.png
deleted file mode 100644
index 4498b2f4d1d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_stepover.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_stepreturn.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_stepreturn.png
deleted file mode 100644
index ae4e0428fda..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_stepreturn.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_suspend.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_suspend.png
deleted file mode 100644
index 882c8c4a44f..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_suspend.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_terminate.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_terminate.png
deleted file mode 100644
index 4679b93757a..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_terminate.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_terminate_all.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_terminate_all.png
deleted file mode 100644
index ae8f92c79b8..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_terminate_all.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_terminate_all2.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_terminate_all2.png
deleted file mode 100644
index b10ae9d3ca5..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_terminate_all2.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_terminate_relaunch.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_terminate_relaunch.png
deleted file mode 100644
index 88712aa9e72..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_terminate_relaunch.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_terminate_remove.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_terminate_remove.png
deleted file mode 100644
index 592ae953956..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_terminate_remove.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_use_step_filters.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_use_step_filters.png
deleted file mode 100644
index 7940cd9a65b..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_db_use_step_filters.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_debug.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_debug.png
deleted file mode 100644
index 7228e2c3fe2..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_debug.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_debugt_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/icon_debugt_obj.gif
deleted file mode 100644
index d139cde9dd4..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_debugt_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_disconnect.gif b/debug/org.eclipse.cdt.debug.application.doc/images/icon_disconnect.gif
deleted file mode 100644
index f1d5fb31e51..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_disconnect.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_edit_make_target.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_edit_make_target.png
deleted file mode 100644
index 6107ff02908..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_edit_make_target.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_error.gif b/debug/org.eclipse.cdt.debug.application.doc/images/icon_error.gif
deleted file mode 100644
index 2cd37c2548e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_error.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_expand_all.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_expand_all.png
deleted file mode 100644
index ce2626a43bd..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_expand_all.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_forward.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_forward.png
deleted file mode 100644
index 00f4fcbd2fc..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_forward.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_hide_inactive_includes.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_hide_inactive_includes.png
deleted file mode 100644
index 8725dfe1ab5..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_hide_inactive_includes.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_hide_make_targets.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_hide_make_targets.png
deleted file mode 100644
index 41c10268273..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_hide_make_targets.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_hide_sys_includes.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_hide_sys_includes.png
deleted file mode 100644
index 05902bf3986..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_hide_sys_includes.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_hide_variables_more.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_hide_variables_more.png
deleted file mode 100644
index 2fa91d342ec..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_hide_variables_more.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_home.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_home.png
deleted file mode 100644
index 4dde23152d1..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_home.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_info.gif b/debug/org.eclipse.cdt.debug.application.doc/images/icon_info.gif
deleted file mode 100644
index 745b884ff03..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_info.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_last_edit_loc.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_last_edit_loc.png
deleted file mode 100644
index 37afeaf07c9..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_last_edit_loc.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_link_mem_rendering.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_link_mem_rendering.png
deleted file mode 100644
index 7e56e3059a9..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_link_mem_rendering.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_link_with_editor.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_link_with_editor.png
deleted file mode 100644
index 229b72b7c1e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_link_with_editor.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_load_all_modules.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_load_all_modules.png
deleted file mode 100644
index 86d532ddfb7..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_load_all_modules.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_menu.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_menu.png
deleted file mode 100644
index 2309096651a..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_menu.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_menu_white.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_menu_white.png
deleted file mode 100644
index 43bf94ae0c1..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_menu_white.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_new_make_target.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_new_make_target.png
deleted file mode 100644
index e813698f13a..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_new_make_target.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_new_memory_view.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_new_memory_view.png
deleted file mode 100644
index 2ceac484b32..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_new_memory_view.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_next.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_next.png
deleted file mode 100644
index ffe567acea5..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_next.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_next_error.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_next_error.png
deleted file mode 100644
index bc8f3d7273b..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_next_error.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_open_console.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_open_console.png
deleted file mode 100644
index 5e6881240ef..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_open_console.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_open_element.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_open_element.png
deleted file mode 100644
index 2a81e195c57..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_open_element.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_pin.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_pin.png
deleted file mode 100644
index 1125cde1181..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_pin.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_pin_memory.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_pin_memory.png
deleted file mode 100644
index 4e061e0bcea..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_pin_memory.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_prev_error.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_prev_error.png
deleted file mode 100644
index 5008ac79867..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_prev_error.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_previous.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_previous.png
deleted file mode 100644
index a28d38a8463..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_previous.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_refresh_view_contents.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_refresh_view_contents.png
deleted file mode 100644
index f38eecc63f4..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_refresh_view_contents.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_cast_to_type.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_cast_to_type.png
deleted file mode 100644
index 1c212946f4e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_cast_to_type.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_change_value.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_change_value.png
deleted file mode 100644
index f48aab8884c..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_change_value.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_copy_registers.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_copy_registers.png
deleted file mode 100644
index 01b5f3e2860..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_copy_registers.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_create_watch_expr.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_create_watch_expr.png
deleted file mode 100644
index 9498b71aa69..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_create_watch_expr.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_disable.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_disable.png
deleted file mode 100644
index 54fd32b7a3f..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_disable.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_display_array.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_display_array.png
deleted file mode 100644
index 6610c96f57e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_display_array.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_enable.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_enable.png
deleted file mode 100644
index dc35833e1a2..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_reg_enable.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_remove.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_remove.png
deleted file mode 100644
index b18352b718f..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_remove.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_repeat_search.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_repeat_search.png
deleted file mode 100644
index dde5909d205..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_repeat_search.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_reset_mem_monitor.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_reset_mem_monitor.png
deleted file mode 100644
index 6b959506a2d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_reset_mem_monitor.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_resume_at_line.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_resume_at_line.png
deleted file mode 100644
index 7d6ecfc8384..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_resume_at_line.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_resume_signal.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_resume_signal.png
deleted file mode 100644
index b38dede9c7d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_resume_signal.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_run.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_run.png
deleted file mode 100644
index 53bdc58a96c..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_run.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_run_to_line.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_run_to_line.png
deleted file mode 100644
index 38b038d1926..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_run_to_line.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_save_output_file.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_save_output_file.png
deleted file mode 100644
index e0142150fc4..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_save_output_file.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_search.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_search.png
deleted file mode 100644
index a5612ded300..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_search.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_callees.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_callees.png
deleted file mode 100644
index b2d60af4864..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_callees.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_callers.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_callers.png
deleted file mode 100644
index d01117ed579..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_callers.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_error.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_error.png
deleted file mode 100644
index a2e6b313fe0..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_error.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_history_list.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_history_list.png
deleted file mode 100644
index 09f66df68ff..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_history_list.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_logical_struct.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_logical_struct.png
deleted file mode 100644
index d15fc83e792..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_logical_struct.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_next_reference.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_next_reference.png
deleted file mode 100644
index 688ca3fde99..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_next_reference.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_prev_reference.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_prev_reference.png
deleted file mode 100644
index 1de1ccd3aca..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_prev_reference.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_prev_search.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_prev_search.png
deleted file mode 100644
index f8026985901..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_prev_search.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_type_names.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_type_names.png
deleted file mode 100644
index d5f12fb7772..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_show_type_names.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_switch_mem_monitor.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_switch_mem_monitor.png
deleted file mode 100644
index dcaa093081c..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_switch_mem_monitor.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_thread1.gif b/debug/org.eclipse.cdt.debug.application.doc/images/icon_thread1.gif
deleted file mode 100644
index 7e4a43cd78c..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_thread1.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_thread2.gif b/debug/org.eclipse.cdt.debug.application.doc/images/icon_thread2.gif
deleted file mode 100644
index fb5175f5c68..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_thread2.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_thread3.gif b/debug/org.eclipse.cdt.debug.application.doc/images/icon_thread3.gif
deleted file mode 100644
index f2a16394e6d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_thread3.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_toggle_memory_monitor.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_toggle_memory_monitor.png
deleted file mode 100644
index 1c5983aee67..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_toggle_memory_monitor.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_toggle_split_pane.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_toggle_split_pane.png
deleted file mode 100644
index bfea8457511..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_toggle_split_pane.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_up.png b/debug/org.eclipse.cdt.debug.application.doc/images/icon_up.png
deleted file mode 100644
index d1869d2b5a9..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_up.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/icon_warning.gif b/debug/org.eclipse.cdt.debug.application.doc/images/icon_warning.gif
deleted file mode 100644
index 1e5f5eb367c..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/icon_warning.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/inactive_co.gif b/debug/org.eclipse.cdt.debug.application.doc/images/inactive_co.gif
deleted file mode 100644
index d03b6a99d68..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/inactive_co.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/include_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/include_obj.gif
deleted file mode 100644
index 1855ca9e20e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/include_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/indexedFile.gif b/debug/org.eclipse.cdt.debug.application.doc/images/indexedFile.gif
deleted file mode 100644
index 9b4c11c4572..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/indexedFile.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/indexer_preference_page.png b/debug/org.eclipse.cdt.debug.application.doc/images/indexer_preference_page.png
deleted file mode 100644
index 19b9b3e660b..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/indexer_preference_page.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/installed_ovr.gif b/debug/org.eclipse.cdt.debug.application.doc/images/installed_ovr.gif
deleted file mode 100644
index 899610a858b..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/installed_ovr.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/intl_05.gif b/debug/org.eclipse.cdt.debug.application.doc/images/intl_05.gif
deleted file mode 100644
index 7399ac410d1..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/intl_05.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/intl_07.gif b/debug/org.eclipse.cdt.debug.application.doc/images/intl_07.gif
deleted file mode 100644
index dfa08425906..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/intl_07.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/make_settings_prefs.png b/debug/org.eclipse.cdt.debug.application.doc/images/make_settings_prefs.png
deleted file mode 100644
index 5fe338c8596..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/make_settings_prefs.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/make_targets.png b/debug/org.eclipse.cdt.debug.application.doc/images/make_targets.png
deleted file mode 100644
index 9875ceb6a32..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/make_targets.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/makefile.gif b/debug/org.eclipse.cdt.debug.application.doc/images/makefile.gif
deleted file mode 100644
index 7afb4948ba7..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/makefile.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/makefile_editor_folding_prefs.png b/debug/org.eclipse.cdt.debug.application.doc/images/makefile_editor_folding_prefs.png
deleted file mode 100644
index 57362ecd77f..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/makefile_editor_folding_prefs.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/makefile_editor_prefs.png b/debug/org.eclipse.cdt.debug.application.doc/images/makefile_editor_prefs.png
deleted file mode 100644
index baaa0a5f617..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/makefile_editor_prefs.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/manage_defined_symbols.png b/debug/org.eclipse.cdt.debug.application.doc/images/manage_defined_symbols.png
deleted file mode 100644
index 649d56e384c..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/manage_defined_symbols.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/mark_occurrences.png b/debug/org.eclipse.cdt.debug.application.doc/images/mark_occurrences.png
deleted file mode 100644
index 6cef6c72c3e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/mark_occurrences.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/method_private_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/method_private_obj.gif
deleted file mode 100644
index 75bfeb8cfa6..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/method_private_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/method_protected_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/method_protected_obj.gif
deleted file mode 100644
index 563743d393f..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/method_protected_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/method_public_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/method_public_obj.gif
deleted file mode 100644
index 7d24707ee82..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/method_public_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/mfile_build.PNG b/debug/org.eclipse.cdt.debug.application.doc/images/mfile_build.PNG
deleted file mode 100644
index 2efed6e7869..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/mfile_build.PNG and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/mfile_build_rcbs.png b/debug/org.eclipse.cdt.debug.application.doc/images/mfile_build_rcbs.png
deleted file mode 100644
index cc6ba2cfd92..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/mfile_build_rcbs.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/mfile_info.PNG b/debug/org.eclipse.cdt.debug.application.doc/images/mfile_info.PNG
deleted file mode 100644
index aef7171ac6d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/mfile_info.PNG and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/mpref.png b/debug/org.eclipse.cdt.debug.application.doc/images/mpref.png
deleted file mode 100644
index ecc5cf7ec9d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/mpref.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/mpref_discovopts.png b/debug/org.eclipse.cdt.debug.application.doc/images/mpref_discovopts.png
deleted file mode 100644
index caf74ec2129..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/mpref_discovopts.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/mpref_macro.PNG b/debug/org.eclipse.cdt.debug.application.doc/images/mpref_macro.PNG
deleted file mode 100644
index 2e8941a8b9e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/mpref_macro.PNG and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/mpref_toolchain.png b/debug/org.eclipse.cdt.debug.application.doc/images/mpref_toolchain.png
deleted file mode 100644
index 62d82208e63..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/mpref_toolchain.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/mprop_refactoring_history.png b/debug/org.eclipse.cdt.debug.application.doc/images/mprop_refactoring_history.png
deleted file mode 100644
index 506915f6758..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/mprop_refactoring_history.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/namespace_declared_obj.png b/debug/org.eclipse.cdt.debug.application.doc/images/namespace_declared_obj.png
deleted file mode 100644
index 0dd626ecc25..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/namespace_declared_obj.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/namespace_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/namespace_obj.gif
deleted file mode 100644
index c70cce0ecdf..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/namespace_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/new_make-behavior.png b/debug/org.eclipse.cdt.debug.application.doc/images/new_make-behavior.png
deleted file mode 100644
index a88c7719ee2..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/new_make-behavior.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/new_make-binary_parser.png b/debug/org.eclipse.cdt.debug.application.doc/images/new_make-binary_parser.png
deleted file mode 100644
index 4ac3fd615a7..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/new_make-binary_parser.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/new_make-builder.png b/debug/org.eclipse.cdt.debug.application.doc/images/new_make-builder.png
deleted file mode 100644
index f00244c9bec..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/new_make-builder.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/new_make-error_parser.png b/debug/org.eclipse.cdt.debug.application.doc/images/new_make-error_parser.png
deleted file mode 100644
index 55c487cdb9d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/new_make-error_parser.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/new_make_disc_options.png b/debug/org.eclipse.cdt.debug.application.doc/images/new_make_disc_options.png
deleted file mode 100644
index 9ea934786ee..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/new_make_disc_options.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_convert.png b/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_convert.png
deleted file mode 100644
index 32b6dab45ce..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_convert.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_convert_candidate.png b/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_convert_candidate.png
deleted file mode 100644
index 2b9dd856496..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_convert_candidate.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_wz_config.png b/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_wz_config.png
deleted file mode 100644
index ad81aea0d7f..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_wz_config.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_wz_name.png b/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_wz_name.png
deleted file mode 100644
index 2f0c46eea14..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_wz_name.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_wz_toolchain.png b/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_wz_toolchain.png
deleted file mode 100644
index aa0b1ee7ac6..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_wz_toolchain.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_wz_type.png b/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_wz_type.png
deleted file mode 100644
index f6d3cecbb89..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/new_proj_wz_type.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/new_project_wizard.png b/debug/org.eclipse.cdt.debug.application.doc/images/new_project_wizard.png
deleted file mode 100644
index 68ba7e97b51..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/new_project_wizard.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/ng00_04a.gif b/debug/org.eclipse.cdt.debug.application.doc/images/ng00_04a.gif
deleted file mode 100644
index c5ebdbf97cd..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/ng00_04a.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/ng00_05a.gif b/debug/org.eclipse.cdt.debug.application.doc/images/ng00_05a.gif
deleted file mode 100644
index aaaab23c08c..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/ng00_05a.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/ng00_07.gif b/debug/org.eclipse.cdt.debug.application.doc/images/ng00_07.gif
deleted file mode 100644
index 6a0de57b071..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/ng00_07.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/ng03_04.gif b/debug/org.eclipse.cdt.debug.application.doc/images/ng03_04.gif
deleted file mode 100644
index df5c0a3b5df..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/ng03_04.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/ngconcepts.gif b/debug/org.eclipse.cdt.debug.application.doc/images/ngconcepts.gif
deleted file mode 100644
index c304d54745a..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/ngconcepts.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/ngref.gif b/debug/org.eclipse.cdt.debug.application.doc/images/ngref.gif
deleted file mode 100644
index c113299234b..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/ngref.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/ngtasks.gif b/debug/org.eclipse.cdt.debug.application.doc/images/ngtasks.gif
deleted file mode 100644
index 2a3a7110634..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/ngtasks.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/nokiaCopyright.png b/debug/org.eclipse.cdt.debug.application.doc/images/nokiaCopyright.png
deleted file mode 100644
index 4a7958868ee..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/nokiaCopyright.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/openDeclaration.png b/debug/org.eclipse.cdt.debug.application.doc/images/openDeclaration.png
deleted file mode 100644
index ee3d69ec82e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/openDeclaration.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/open_declaration_error.png b/debug/org.eclipse.cdt.debug.application.doc/images/open_declaration_error.png
deleted file mode 100644
index 5860b37e15f..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/open_declaration_error.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/outlineView.png b/debug/org.eclipse.cdt.debug.application.doc/images/outlineView.png
deleted file mode 100644
index 6a2c58c667b..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/outlineView.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/path_inherit_co.gif b/debug/org.eclipse.cdt.debug.application.doc/images/path_inherit_co.gif
deleted file mode 100644
index 85e21898780..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/path_inherit_co.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/pref_panel_build.png b/debug/org.eclipse.cdt.debug.application.doc/images/pref_panel_build.png
deleted file mode 100644
index e035b7aca87..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/pref_panel_build.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/pref_panel_code_templates.png b/debug/org.eclipse.cdt.debug.application.doc/images/pref_panel_code_templates.png
deleted file mode 100644
index 6715294bc23..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/pref_panel_code_templates.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/pref_panel_edit_template_dlg.png b/debug/org.eclipse.cdt.debug.application.doc/images/pref_panel_edit_template_dlg.png
deleted file mode 100644
index e04f709e1c4..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/pref_panel_edit_template_dlg.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/pref_traditional_memory_prefs.png b/debug/org.eclipse.cdt.debug.application.doc/images/pref_traditional_memory_prefs.png
deleted file mode 100644
index 17a1783ab6d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/pref_traditional_memory_prefs.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/progress_stop.gif b/debug/org.eclipse.cdt.debug.application.doc/images/progress_stop.gif
deleted file mode 100644
index dc47edf0695..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/progress_stop.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/project_new_cppfile.png b/debug/org.eclipse.cdt.debug.application.doc/images/project_new_cppfile.png
deleted file mode 100644
index b267152b34b..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/project_new_cppfile.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/project_new_file.png b/debug/org.eclipse.cdt.debug.application.doc/images/project_new_file.png
deleted file mode 100644
index 300f29fbf8e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/project_new_file.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/project_new_file_name.png b/debug/org.eclipse.cdt.debug.application.doc/images/project_new_file_name.png
deleted file mode 100644
index 5fb029e387d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/project_new_file_name.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/project_new_makefile.png b/debug/org.eclipse.cdt.debug.application.doc/images/project_new_makefile.png
deleted file mode 100644
index 0795992740c..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/project_new_makefile.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/project_rename.png b/debug/org.eclipse.cdt.debug.application.doc/images/project_rename.png
deleted file mode 100644
index e998ae1feef..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/project_rename.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/projects_filters.png b/debug/org.eclipse.cdt.debug.application.doc/images/projects_filters.png
deleted file mode 100644
index 4c30f0287d8..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/projects_filters.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/projects_properties.png b/debug/org.eclipse.cdt.debug.application.doc/images/projects_properties.png
deleted file mode 100644
index e3ee4388ca4..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/projects_properties.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_artifact.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_artifact.png
deleted file mode 100644
index 08833ad29b0..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_artifact.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_bin.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_bin.png
deleted file mode 100644
index 9dec92f9223..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_bin.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_builders.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_builders.png
deleted file mode 100644
index b13c0870088..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_builders.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_builders_editbldr.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_builders_editbldr.png
deleted file mode 100644
index 487fcc37be6..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_builders_editbldr.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_builders_imprtlnchcnfg.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_builders_imprtlnchcnfg.png
deleted file mode 100644
index 8872fd0a930..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_builders_imprtlnchcnfg.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_builders_newbldr.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_builders_newbldr.png
deleted file mode 100644
index cdd5c1b7ef8..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_builders_newbldr.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_cbuild.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_cbuild.png
deleted file mode 100644
index dd3a7a477fa..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_cbuild.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_cbuild2.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_cbuild2.png
deleted file mode 100644
index a8734b24818..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_cbuild2.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_cbuild_selbldvar.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_cbuild_selbldvar.png
deleted file mode 100644
index d0e1407751b..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_cbuild_selbldvar.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_cfgs.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_cfgs.png
deleted file mode 100644
index 3f3f965ab19..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_cfgs.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_crefs.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_crefs.png
deleted file mode 100644
index 8b00965c192..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_crefs.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_doc.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_doc.png
deleted file mode 100644
index c4f7570208e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_doc.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_environment.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_environment.png
deleted file mode 100644
index 86d4672794e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_environment.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_error.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_error.png
deleted file mode 100644
index 9daaa437d09..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_error.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_exp.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_exp.png
deleted file mode 100644
index 3055c05d5fd..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_exp.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_file_lang.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_file_lang.png
deleted file mode 100644
index d4955157278..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_file_lang.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_ftypes.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_ftypes.png
deleted file mode 100644
index 8f156b84ca9..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_ftypes.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_general.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_general.png
deleted file mode 100644
index 38335cf416e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_general.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_inc.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_inc.png
deleted file mode 100644
index 4a1e1e593fd..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_inc.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_index.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_index.png
deleted file mode 100644
index 5ebe8a627f2..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_index.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_lang.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_lang.png
deleted file mode 100644
index b842fc6060c..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_lang.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_lib.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_lib.png
deleted file mode 100644
index accc73cf82c..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_lib.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_libpath.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_libpath.png
deleted file mode 100644
index 200d6f11a43..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_libpath.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_mng_add.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_mng_add.png
deleted file mode 100644
index b530fe04423..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_mng_add.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_mng_dialog.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_mng_dialog.png
deleted file mode 100644
index a706473b5d5..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_mng_dialog.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_mng_rename.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_mng_rename.png
deleted file mode 100644
index 92f43f4205c..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_mng_rename.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_outloc.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_outloc.png
deleted file mode 100644
index 430de894cfb..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_outloc.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_refs.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_refs.png
deleted file mode 100644
index 4f081afd1b9..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_refs.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_resource.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_resource.png
deleted file mode 100644
index 96139bd17ec..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_resource.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_rundeb.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_rundeb.png
deleted file mode 100644
index 3541515aa39..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_rundeb.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_srcloc.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_srcloc.png
deleted file mode 100644
index 80eac73c05a..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_srcloc.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_steps.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_steps.png
deleted file mode 100644
index 3b68d33bade..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_steps.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_symb.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_symb.png
deleted file mode 100644
index df2d72f8d0d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_symb.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_tool.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_tool.png
deleted file mode 100644
index 42650d6c51e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_tool.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_tree.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_tree.png
deleted file mode 100644
index 6edf8991a89..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_tree.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/prop_variables.png b/debug/org.eclipse.cdt.debug.application.doc/images/prop_variables.png
deleted file mode 100644
index da12969851e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/prop_variables.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/public_co.gif b/debug/org.eclipse.cdt.debug.application.doc/images/public_co.gif
deleted file mode 100644
index 18103b11fc7..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/public_co.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/ref-79.gif b/debug/org.eclipse.cdt.debug.application.doc/images/ref-79.gif
deleted file mode 100644
index 7ef1a62ba7d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/ref-79.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/refresh_nav.gif b/debug/org.eclipse.cdt.debug.application.doc/images/refresh_nav.gif
deleted file mode 100644
index 3ca04d06ff9..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/refresh_nav.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/rh03_04.gif b/debug/org.eclipse.cdt.debug.application.doc/images/rh03_04.gif
deleted file mode 100644
index 5a49b645267..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/rh03_04.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/run_arguments.png b/debug/org.eclipse.cdt.debug.application.doc/images/run_arguments.png
deleted file mode 100644
index 9c3e28422af..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/run_arguments.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/run_common.png b/debug/org.eclipse.cdt.debug.application.doc/images/run_common.png
deleted file mode 100644
index 3de5b7bd39b..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/run_common.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/run_common_folder.png b/debug/org.eclipse.cdt.debug.application.doc/images/run_common_folder.png
deleted file mode 100644
index 017bd390987..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/run_common_folder.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/run_config.png b/debug/org.eclipse.cdt.debug.application.doc/images/run_config.png
deleted file mode 100644
index 20b25d19757..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/run_config.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_arguments.png b/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_arguments.png
deleted file mode 100644
index f7049ffcb98..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_arguments.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_common.png b/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_common.png
deleted file mode 100644
index c9b4b6da5f7..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_common.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_debugger.png b/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_debugger.png
deleted file mode 100644
index 80420ed2bda..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_debugger.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_debugger_advopt.png b/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_debugger_advopt.png
deleted file mode 100644
index 9beda0ef400..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_debugger_advopt.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_environment.png b/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_environment.png
deleted file mode 100644
index 8ab6cffde07..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_environment.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_launch_group.png b/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_launch_group.png
deleted file mode 100644
index 0ee298125a7..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_launch_group.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_launch_group_edit.png b/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_launch_group_edit.png
deleted file mode 100644
index d047c6cbfc9..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_launch_group_edit.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_main.png b/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_main.png
deleted file mode 100644
index c35be7b5de3..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_main.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_source.png b/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_source.png
deleted file mode 100644
index b72c14175eb..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/run_debug_source.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/run_debugger.png b/debug/org.eclipse.cdt.debug.application.doc/images/run_debugger.png
deleted file mode 100644
index b7fc2bb5c01..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/run_debugger.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/run_environment.png b/debug/org.eclipse.cdt.debug.application.doc/images/run_environment.png
deleted file mode 100644
index 5459d7d5319..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/run_environment.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_cfg_disc.png b/debug/org.eclipse.cdt.debug.application.doc/images/scanner_cfg_disc.png
deleted file mode 100644
index 96963a4723f..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_cfg_disc.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_bop_options.png b/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_bop_options.png
deleted file mode 100644
index 925e1420ba7..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_bop_options.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_console_view.png b/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_console_view.png
deleted file mode 100644
index f308a2a1318..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_console_view.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_preferences.png b/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_preferences.png
deleted file mode 100644
index ca563394d86..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_preferences.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_prop_add_include.png b/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_prop_add_include.png
deleted file mode 100644
index e604bdcee40..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_prop_add_include.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_prop_add_lse_kinds_dropdown.png b/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_prop_add_lse_kinds_dropdown.png
deleted file mode 100644
index a580d3c044a..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_prop_add_lse_kinds_dropdown.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_prop_add_lse_paths_dropdown.png b/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_prop_add_lse_paths_dropdown.png
deleted file mode 100644
index 42f7a0f42e3..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_prop_add_lse_paths_dropdown.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_prop_entries.png b/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_prop_entries.png
deleted file mode 100644
index c7468381b10..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_prop_entries.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_prop_providers.png b/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_prop_providers.png
deleted file mode 100644
index b6033f76069..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_prop_providers.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_specs_detector_options.png b/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_specs_detector_options.png
deleted file mode 100644
index 8e74aeb5460..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/scanner_discovery/sd_specs_detector_options.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/search.png b/debug/org.eclipse.cdt.debug.application.doc/images/search.png
deleted file mode 100644
index dd79fdecc9e..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/search.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/searchView.png b/debug/org.eclipse.cdt.debug.application.doc/images/searchView.png
deleted file mode 100644
index 8b5f16252d8..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/searchView.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/selection_search.png b/debug/org.eclipse.cdt.debug.application.doc/images/selection_search.png
deleted file mode 100644
index 0f603136dd3..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/selection_search.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/setting_nav.gif b/debug/org.eclipse.cdt.debug.application.doc/images/setting_nav.gif
deleted file mode 100644
index f25aa532b1f..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/setting_nav.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/show_view.png b/debug/org.eclipse.cdt.debug.application.doc/images/show_view.png
deleted file mode 100644
index 6796eaa7b7b..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/show_view.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/standalone_debugger.png b/debug/org.eclipse.cdt.debug.application.doc/images/standalone_debugger.png
deleted file mode 100644
index 11cb8e88d6f..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/standalone_debugger.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/static_co.gif b/debug/org.eclipse.cdt.debug.application.doc/images/static_co.gif
deleted file mode 100644
index 10d08aeff73..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/static_co.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/struct_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/struct_obj.gif
deleted file mode 100644
index 5db2efa2516..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/struct_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/sub_co.gif b/debug/org.eclipse.cdt.debug.application.doc/images/sub_co.gif
deleted file mode 100644
index 54871df5aa6..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/sub_co.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/super_co.gif b/debug/org.eclipse.cdt.debug.application.doc/images/super_co.gif
deleted file mode 100644
index 59ac11633f2..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/super_co.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/task_binary_parser.png b/debug/org.eclipse.cdt.debug.application.doc/images/task_binary_parser.png
deleted file mode 100644
index b55a5a74644..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/task_binary_parser.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/task_binary_pref.png b/debug/org.eclipse.cdt.debug.application.doc/images/task_binary_pref.png
deleted file mode 100644
index fdd8fc45e44..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/task_binary_pref.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/template_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/template_obj.gif
deleted file mode 100644
index c0d9d95c268..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/template_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/trans.gif b/debug/org.eclipse.cdt.debug.application.doc/images/trans.gif
deleted file mode 100644
index 16d98433d00..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/trans.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/typedef_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/typedef_obj.gif
deleted file mode 100644
index 9d6df6acc62..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/typedef_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/union_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/union_obj.gif
deleted file mode 100644
index df0f59fdf10..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/union_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/update_managed_build.png b/debug/org.eclipse.cdt.debug.application.doc/images/update_managed_build.png
deleted file mode 100644
index 1b4b6395405..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/update_managed_build.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/update_managed_build20.png b/debug/org.eclipse.cdt.debug.application.doc/images/update_managed_build20.png
deleted file mode 100644
index 0008109113a..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/update_managed_build20.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/var_declaration_obj.gif b/debug/org.eclipse.cdt.debug.application.doc/images/var_declaration_obj.gif
deleted file mode 100644
index 91c4c93ab51..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/var_declaration_obj.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_add_mapping.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_add_mapping.png
deleted file mode 100644
index 9908b8cf5d6..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_add_mapping.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_appearance_prefs.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_appearance_prefs.png
deleted file mode 100644
index a9fabf38b1d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_appearance_prefs.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_call_hierarchy.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_call_hierarchy.png
deleted file mode 100644
index 5e7d19ae682..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_call_hierarchy.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_console.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_console.png
deleted file mode 100644
index e9e37b978b4..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_console.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_debug.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_debug.png
deleted file mode 100644
index a458dad1550..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_debug.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_debug_breadcrumb.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_debug_breadcrumb.png
deleted file mode 100644
index 90d7fea278a..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_debug_breadcrumb.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_debug_prefs.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_debug_prefs.png
deleted file mode 100644
index f7b4f3e43f6..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_debug_prefs.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_dissassembly.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_dissassembly.png
deleted file mode 100644
index c8f4f8474fa..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_dissassembly.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_editor.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_editor.png
deleted file mode 100644
index 9374ea8ffba..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_editor.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_environment_prefs.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_environment_prefs.png
deleted file mode 100644
index e1aa99d7535..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_environment_prefs.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_executables.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_executables.png
deleted file mode 100644
index ab178e5c633..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_executables.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_include_browser.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_include_browser.png
deleted file mode 100644
index 8c7179e66d7..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_include_browser.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_language_mappings_prefs.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_language_mappings_prefs.png
deleted file mode 100644
index 55f871307fc..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_language_mappings_prefs.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_make_targets.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_make_targets.png
deleted file mode 100644
index 4ea803abcaa..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_make_targets.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_memory.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_memory.png
deleted file mode 100644
index b7dc77c0297..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_memory.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_modules.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_modules.png
deleted file mode 100644
index 004fa6e3d13..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_modules.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_navigator.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_navigator.png
deleted file mode 100644
index 59f9611d083..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_navigator.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_problem.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_problem.png
deleted file mode 100644
index 4b4b383df3d..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_problem.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_project_explorer.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_project_explorer.png
deleted file mode 100644
index ca205622fb4..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_project_explorer.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_projects.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_projects.png
deleted file mode 100644
index edb26a269b4..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_projects.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_properties.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_properties.png
deleted file mode 100644
index 2504de730e4..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_properties.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_registers.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_registers.png
deleted file mode 100644
index 1554f0a8b99..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_registers.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_signals.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_signals.png
deleted file mode 100644
index 66836489150..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_signals.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/view_table_rendering.png b/debug/org.eclipse.cdt.debug.application.doc/images/view_table_rendering.png
deleted file mode 100644
index d085966e167..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/view_table_rendering.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/warning_co.gif b/debug/org.eclipse.cdt.debug.application.doc/images/warning_co.gif
deleted file mode 100644
index ee2dac4a90a..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/warning_co.gif and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/window_customize_perspective.png b/debug/org.eclipse.cdt.debug.application.doc/images/window_customize_perspective.png
deleted file mode 100644
index add42681d49..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/window_customize_perspective.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/images/workbench_prop.png b/debug/org.eclipse.cdt.debug.application.doc/images/workbench_prop.png
deleted file mode 100644
index e7105692af3..00000000000
Binary files a/debug/org.eclipse.cdt.debug.application.doc/images/workbench_prop.png and /dev/null differ
diff --git a/debug/org.eclipse.cdt.debug.application.doc/notices.html b/debug/org.eclipse.cdt.debug.application.doc/notices.html
deleted file mode 100644
index af4b9ab03cd..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/notices.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
- Legal Notices
-
-
-
-
-Notices
-
-The material in this guide is Copyright (c) IBM Corporation and others
-2004, 2010.
-
Customizes the build macros for all managed make projects in the workspace.
-
-
-
You can add, remove and edit build macros that apply to all managed make projects in the workspace.
-Two tables are displayed - one for user-defined build macros and one for non user-defined build macros.
-Each table contains three columns:
-
Name of the build macro
-
Type of value contained in the build macro (see below)
-
Value of the build macro.
-
You can view all build macros that are not user-defined in the System
- Macros table.
-
You can view all user-defined macros in the User
- Macros table. A user-defined macro overrides a non user-defined macro of the same
- name. Overridden macros are displayed in bold in
- the System Macros table.
- C/C++ Local Application - run application on local host
- C/C++ Attach to Local Application - attach to already running application on the local host
- C/C++ Postmortem debugger - run debugger on "core" file
- Launch Group - launch multiple applications
-
Use the Appearance panel of the Preferences window to customize the appearance of C elements in the viewers. Click Window > Preferences > C/C++ > Appearance to open.
-
-
-
-
- Appearance Options
-
-
-
-
-
-
-
-
Option
-
Description
-
-
-
Show translation unit members
-
Select this option to show translation unit members in the Project Explorer and C/C++ Projects views.
-
-
-
Group include directives in Project Explorer and C/C++ Projects view
-
Select this option to group include directives in the Project Explorer and C/C++ Projects views.
-
-
-
Group include directives in the Outline view
-
Select this option to group include directives in the Outline view.
-
-
-
Group namespaces in the Outline view
-
Select this option to group namespace declarations in the Outline view.
-
-
-
Group method definitions in the Outline view
-
Select this option to group method definitions for the same type in the Outline view.
-
-
-
Group macro definitions in the Project Explorer and C/C++ Project views.
-
Select this option to group method definitions for the same type in the Project Explorer and C/C++ Project views.
-
-
-
Group macro definitions in the Outline view.
-
Select this option to group macro definitions in the Outline view.
-
-
-
Sort header files before source files in Project Explorer and C/C++ Projects view
-
Select this option to separate header and source files in the Project Explorer and C/C++ Projects views.
-
-
-
Show source roots at top of project
-
Select this option to group source roots at the top of project views.
Use the Code Style preference panel to configure your global code style profiles for smart typing features, like auto-indentation and formatting. Click Window > Preferences > C/C++ > Code Style to make changes.
-
-
-
Code Style Preference Options
-
-
-
-
-
-
-
Option
-
Description
-
-
-
-
-
- Configure Project Specific Settings...
-
-
- Opens the Project Specific Configuration dialog box to select a project to apply code style settings.
-
-
-
-
- Edit...
-
-
- Shows a dialog which displays the settings stored in the active profile. Only user-defined profiles can be modified.
-
-
-
-
- Remove
-
-
- Removes the selected profile. This action is only available on user-defined profiles.
-
-
-
-
- New...
-
-
- Shows the dialog to create a new profile. The dialog requires you to enter a name for the new profile. Additionally, you may select a built-in or user-defined existing profile to base your new profile on.
-
The
-
-Code Templates preference panel lets you configure the format of newly generated code stubs, comments and files.
-
-
-
The code templates page contains templates that are used by actions that generate code and/or source files.
-E.g. the New Class wizard uses source and header file templates to create new files and code templates to insert generated method stubs.
-Templates contain variables that are substituted when the template is applied. Some variables are available in all templates, some are specific to templates.
-
-
-
- Options
-
-
- Description
-
-
-
-
-
-
- New...
-
-
-
Opens the Code Template dialog to create a new file template.
-
-
-
-
- Edit...
-
-
-
Opens the Code Template dialog to edit the currently selected code template.
-
-
-
-
- Remove
-
-
-
Removes a user added file template. Predefined templates cannot be removed.
-
-
-
-
- Import...
-
-
-
Imports templates from the file system.
-
-
-
-
- Export...
-
-
-
Exports all selected templates to the file system.
-
-
-
-
- Export All...
-
-
-
Exports all templates to the file system.
-
-
-
-
-
-
-
Comment Templates
-
-
-
-
-
- Template Name
-
-
- Specifies
-
-
-
-
-
-
- Files
-
-
-
Header comment for new source or header files.
-
Note that this template can be referenced in source and header file templates with ${filecomment}.
-
-
-
-
- Types
-
-
-
The comment for new types.
-
Note that this template can be referenced in source and header file templates with ${typecomment}.
-
-
-
-
- Fields
-
-
-
The comment for new fields.
-
-
-
-
- Constructors
-
-
-
The comment for new constructors.
-
-
-
-
- Destructors
-
-
-
The comment for new destructors.
-
-
-
-
- Methods
-
-
-
The comment for new methods.
-
-
-
-
-
-
Code Templates
-
-
-
-
-
- Template Name
-
-
- Description
-
-
-
-
-
-
- Method body
-
-
-
The 'Method body' templates are used when new method is created.
-
-
-
-
- Constructor body
-
-
-
The 'Constructor body' templates are used when a constructor is created.
-
-
-
-
- Destructor body
-
-
-
The 'Destructor body' templates are used when the destructor is created.
-
-
-
-
-
File Templates
-File templates can not only be defined and modified for C/C++ files, but also for other content types, like Assembly files or plain text files.
-The New File from Template wizard can be used to create new files based on one of the templates defined in this page.
-
-
-
-
-
- Template Name
-
-
- Description
-
-
-
-
-
-
- Default C++ source template
-
-
-
Used by the New Class wizard and the New Source File wizard when a new C++ source file is created.
-
The template can specify where comments are added. Note that the template can contain the variable ${typecomment} and ${filecomment} that will be substituted by the evaluation of the Types respectively Files comment template.
-
-
-
-
- Default C++ header template
-
-
-
Used by the New Class wizard and the New Header File wizard when a new C++ header file is created.
-
The template can specify where comments are added. Note that the template can contain the variable ${typecomment} and ${filecomment} that will be substituted by the evaluation of the Types respectively Files comment template.
-
-
-
-
- Default C source template
-
-
-
Used by the New Source File wizard when a new C source file is created.
-
The template can specify where comments are added. Note that the template can contain the variable ${typecomment} and ${filecomment} that will be substituted by the evaluation of the Types respectively Files comment template.
-
-
-
-
- Default C header template
-
-
-
Used by the New Header File wizard when a new C source file is created.
-
The template can specify where comments are added. Note that the template can contain the variable ${typecomment} and ${filecomment} that will be substituted by the evaluation of the Types respectively Files comment template.
-
-
-
-
- Other file templates
-
-
-
File templates can be defined for other content types, e.g. Assembly or plain text.
-
-
-
-
-
-
Edit Template dialog
-
-
-
The following fields and buttons appear in the dialog:
-
-
-
-
- Options
-
-
-
Description
-
-
-
-
-
-
- Name
-
-
-
The name of the template. Only available for file templates.
-
-
-
-
- Type
-
-
-
The file type (content type) of the template. Only available for file templates.
-
-
-
-
- Description
-
-
-
A description of the template
-
-
-
-
- Pattern
-
-
-
The template pattern.
-
-
-
-
- Insert Variables...
-
-
-
Displays a list of pre-defined template specific variables.
Use the Syntax Coloring preference panel to specify how C/C++ source code is rendered. Each element category (Code, Comments, and Preprocessor) contains a list of language elements that may be rendered with its own color and style.
-
Note that general text editor settings such as the background color can be configured on the general Text Editors preference pages. Fonts may be configured on the general Colors and Fonts preference page
-
-
-
-
Syntax Coloring Preference Options
-
-
-
-
-
-
-
Option
-
Description
-
-
-
-
-
Enable semantic highlighting
-
Checkmark to activate semantic highlighting of specific structures in the elements listed.
-
-
-
Enable
-
Makes the selected element active for syntax coloring.
-
-
-
Color
-
Specifies the color in which to display the selected element.
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_c_editor_con_assist.htm b/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_c_editor_con_assist.htm
deleted file mode 100644
index 05476bf8e60..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_c_editor_con_assist.htm
+++ /dev/null
@@ -1,77 +0,0 @@
-
-
-
-
-
-
- Content Assist preferences
-
-
-
-
-
-
Content Assist preferences
-
-
Use the Content Assist panel to customize the Content Assist feature in C/C++ editors.
-
-
-
-
Content Assist Preference Options
-
-
-
-
-
-
-
Option
-
Description
-
-
-
-
-
Insert single proposals automatically
-
Inserts an element into your code when the Content Assist feature finds only one proposal.
-
-
-
Insert common prefixes automatically
-
Inserts common prefixes.
-
-
-
Completion Proposal Filter
-
Completion proposal filters may have been supplied with your Eclipse application.
- Completion proposal filters can sort and order the proposals provided by the Content Assist feature to best suit your needs.
- Select the desired content assist filter from the list of available filters.
-
-
-
Enable "." as trigger
-
Enable to use "." as a trigger for auto-completion.
-
-
-
Enable "->" as trigger
-
Enable to use "->" as a trigger for auto-completion.
-
-
-
Enable "::" as trigger
-
Enable to use "::" as a trigger for auto-completion.
-
-
-
delay (ms)
-
Specifies the number of milliseconds before Content Assist is activated.
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_c_editor_con_assist_adv.htm b/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_c_editor_con_assist_adv.htm
deleted file mode 100644
index de97d0b9307..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_c_editor_con_assist_adv.htm
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
-
- Advanced preferences
-
-
-
-
-
-
Advanced preferences
-
-
Use the Advanced panel in the Preferences window to configure the behavior of the Content Assist (Ctrl+Space) command.
-
-
-
-
Advanced Content Assist Preference Options
-
-
-
-
-
-
-
Option
-
Description
-
-
-
-
-
Default Proposal Kinds
-
Specifies the types of proposals Content Assist uses and the key bindings assigned.
-
-
-
Content Assist Cycling
-
Specifies the order and types of proposals Content Assist will cycle through.
-
-
-
Up
-
Moves the selected proposal item up in the cycling list.
-
-
-
Down
-
Moves the selected proposal item down in the cycling list.
-
-
-
Timeout for each proposal kind (ms)
-
Specifies the number of milliseconds a code completion proposal kind is allowed to compute
- proposals. If it takes more time then it is assumed that this proposal kind is faulty.
- In this case a dialog is opened and an appropriate message is shown to the user If the value is 0 each completion
- proposal can compute as long as it needs to before being assumed to be faulty.
- Use the Editor preference panel to control the
- appearance of text highlighting in C/C++ editors.
-
-
-
-
-
-
-
-
-
-
-
-
-
Option
-
Description
-
-
-
Smart caret
- positioning in identifiers
-
Treats CamelCase identifiers as
- being made up of separate words.
-
-
-
Report problems as
- you type
-
Problems found will be immediately
- highlighted in the editor.
-
-
-
Highlight matching
- brackets
-
When the cursor is beside a bracket,
- the matching bracket is highlighted.
-
-
-
Highlight inactive
- code
-
Highlights inactive code when the
- cursor is positioned inside it.
-
-
-
Appearance color
- options
-
Lists the items for which you can
- specify a color.
-
-
-
Color
-
Specifies the color in which to
- display the selected item.
-
-
-
Documentation tool
- comments
-
Specifies which documentation tool
- should be used to determine editor presentation and behaviors.
- This enables editor features such as content-assist, documentation
- comment generation and syntax highlighting. The particular tool
- selected here will be used for files that are not associated with
- a project, or where no project level preference has been set.
Use the Hovers preference panel to customize the C/C++ editor hover behavior.
-
-
-
Hovers Preference Options
-
-
-
-
-
-
-
Option
-
Description
-
-
-
-
-
Enable editor problem annotation
-
When selected problems found will be highlighted in the editor.
-
-
-
Text Hover key modifier preferences
-
You can select hot-keys to enable alternate hover behavior. For example, a mouse over while pressing the <Ctrl> key will link to the element's source declaration.
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_c_editor_scalability.htm b/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_c_editor_scalability.htm
deleted file mode 100644
index bd2fb26d32c..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_c_editor_scalability.htm
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
-
-
- Editor Scalability preferences
-
-
-
-
-
-
Scalability preferences
-
-
Use the Scalability preference panel to configure options for dealing with large source files.
-
-
-
-
Scalability Preference Options
-
-
-
-
-
-
-
Option
-
Description
-
-
-
-
-
Alert me when scalability mode will be turned on
-
If enabled, an information dialog pops up when a large file is opened
- with the C/C++ Editor which exceeds the specified line limit.
-
-
-
Enable scalability mode options when the number of lines in the file is more than
-
If the number of lines in a file exceeds the specified number the C/C++ Editor will
- enable scalability mode and all scalability mode options below will take effect.
-
-
-
Enable all scalability mode options
-
If enabled, all options below are enabled, too.
-
-
-
Disable editor live parsing
-
If enabled, parsing while typing will be disabled.
- This disables also other features like Outline view, semantic highlighting, folding, etc.
-
-
-
Disable semantic highlighting
-
If enabled, C/C++ identifiers will not be colored.
-
-
-
Disable syntax coloring
-
If enabled, no coloring of keywords, comments and literals is done.
-
-
-
Disable parsing-based content assist proposals
-
If enabled, content assist proposals which require parsing the file will not be available.
-
-
-
Disable content assist auto-activation
-
If enabled, content assist will not be activated automatically on trigger sequences, like '.', '::' or '->'.
Use the Typing preference panel to assist in formatting input as you type.
-
-
-
-
Typing Preference Options
-
-
-
-
-
-
-
Option
-
Description
-
-
-
-
-
"Strings"
-
If enabled, automatically close string quotes.
-
-
-
(Parenthesis) and [square] brackets
-
If enabled, automatically close parenthesis and square brackets.
-
-
-
<Angle> brackets
-
If enabled, automatically close angle brackets.
-
-
-
{Braces}
-
If enabled, automatically close curly braces.
-
-
-
Tab key adjusts indentation of the current line
-
If enabled, indent the current line when the tab key is pressed.
-
-
-
Adjust indentation
-
Adjust the indentation of pasted text to match the current indentation level.
-
-
-
Wrap automatically
-
Enable to automatically wrap string literals when they exceed the max line length.
-
-
-
Escape text when pasting into a literal string
-
If enabled, special characters in pasted strings are escaped when pasted into an existing string literal.
-
-
-
New lines and braces
-
If enabled, a new line or brace will be indented according to the Code Style preferences.
- If disabled, the default Text Editor indentation strategy is applied (copy indent from previous line)
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_call_hierarchy_view.htm b/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_call_hierarchy_view.htm
deleted file mode 100644
index 4246b9787cb..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_call_hierarchy_view.htm
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
-
-
-Call Hierarchy view
-
-
-
-
-
-
Call Hierarchy view
-
-
The Call Hierarchy view shows the loaded callers and callees for a selected C/C++ function. Right-click a function name in a source file and select Open Call Hierarchy to open a Call Hierarchy view, if none is open, and show the function's callers.
-
-
-
-
Call Hierarchy view toolbar commands
-
-
The Call Hierarchy view toolbar commands include:
-
-
-
Command
-
Name
-
Description
-
-
-
-
Show Next Reference
-
Selects the next function.
-
-
-
-
Show Previous Reference
-
Selects the previous function.
-
-
-
-
Hide Variables, Constants and Enumerators
-
Toggle to show or hide all variables, constants and enumerators in the view.
-
-
-
-
Show Callers
-
Show all callers in the search scope of the selected function.
-
-
-
-
Show Callees
-
Show all members called by the currently selected function.
-
-
-
-
Show History List
-
This menu displays a history of previously displayed call hierarchies.
-
-
-
-
Refresh View Contents
-
Refreshes the view to reflect the current state of the function.
-
-
-
-
Pin the Call Hierarchy View
-
Pins the current view and enables the user to open multiple Call Hierarchy views at the same time.
-
-
-
-
View Menu
-
Provides commands for:
Using working sets
-
Showings Callers or Callees
-
Show or hide file names
-
Activate or deactivate filters
-
-
-
-
Call Hierarchy view context menu commands
-
-
The Call Hierarchy view context menu commands include:
-
-
-
Name
-
Description
-
-
-
Show Reference
-
Opens an editor view containing the referenced function call.
-
-
-
Open
-
Opens an editor view containing the function reference.
-
-
-
Focus on
-
Resets the view to show the selected function.
-
-
-
Refactor...
-
Opens the Rename global function dialog.
-
-
-
Declarations
-
Search the workspace, project, or working set for all function declarations and shows the result in the Search view.
-
-
-
References
-
Search the workspace, project, or working set for all function references and shows the result in the Search view.
Use the Templates preference panel to manipulate any of the common predefined templates or create your own. To modify, delete, export,
-import, or create your own templates click Window > Preferences > C/C++ > Templates.
-
-
-
Templates Preference Options
-
-
-
-
-
-
-
Option
-
Description
-
-
-
-
-
New...
-
Opens the New Template dialog to create a new template.
-
-
-
Edit...
-
Opens the Edit Template dialog to edit the selected template.
-
-
-
Remove
-
Removes the selected templates from the list.
-
-
-
Restore Removed
-
Restores templates deleted by the last Remove action.
-
-
-
Revert to Default
-
Removes the last edits made to the selected template restoring it to it's unmodified state.
-
-
-
Import...
-
Imports a template.
-
-
-
Export...
-
Exports the selected templates.
-
-
-
Use code formatter
-
Enable to apply the currently selected code style to the template.
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_console_view.htm b/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_console_view.htm
deleted file mode 100644
index 411f5a7db95..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_console_view.htm
+++ /dev/null
@@ -1,147 +0,0 @@
-
-
-
-
-
-
-Console view
-
-
-
-
-
Console view
-
-
The Console view displays the output of a process and allows you to provide keyboard input to a process. There are numerous consoles available, see the Open Console dropdown list for those available to you.
-
-
-The output console shows several different kinds of text, each in a different color:
-
-
-
Standard output
-
Standard error
-
Standard input
-
-
-
Console view toolbar
-
The table below lists the toolbar options displayed in the Console view. Note that toolbar options may differ between the various consoles.
-
-
-
-
-
-
-
-
-
-
Icon
-
Name
-
Description
-
-
-
-
-
Next Error
-
Show the next error in the Console view.
-
-
-
-
Previous Error
-
Show the previous error in the Console view.
-
-
-
-
Show Error in Editor
-
Toggle to synchronize the selected error with the Editor view (default).
-
-
-
-
Copy Build Log
-
Copy build output to file.
-
-
-
-
Scroll Lock
-
Toggles the Scroll Lock.
-
-
-
-
Clear Console
-
Clears the current console.
-
-
-
-
Pin Console
-
Forces the Console view to remain on top of other views in the window area.
-
-
-
-
Display Selected Console
-
If multiple consoles are open, you can select the one to display from a list.
-
-
-
-
Open Console
-
Opens a new console to display the log for:
-
-
New Console View
-
Program Output Console
-
Windows Program Output Console
-
CVS, and others based on installed features
-
-
-
-
-
-
Console view context menu
-
When you right-click in the Console view
-(or when you press Shift+F10 when the focus is on the Console view),
-you see one or more of the following options in a context menu depending on the console view visible:
-
-
-
-
-
-
-
-
-
-
Name
-
Description
-
-
-
-
Clear
-
Clears the current console.
-
-
-
Editor options: Cut, Copy, Paste, Select All
-
These options perform the standard edit operations. Which options are available depends on where the focus is in the Console view. For example, you cannot paste text into the program output, but you can paste text to the bottom of the file.
-
-
-
Go to Line
-
Opens a dialog that moves the focus to the line you specify. The dialog also indicates the total number of lines in the console buffer.
-
-
-
Find/Replace...
-
Opens a Find/Replace dialog that operates only on the text in the Console view.
-
-
-
Open Link
-
Select to follow a detected hyperlink in any console view that supports. For example, the CVS console.
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_cproj_view.htm b/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_cproj_view.htm
deleted file mode 100644
index 3cf4f431a47..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_cproj_view.htm
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-
-C/C++ Project View
-
-
-
-
-
-
C/C++ Projects view
-
Note:
-This view is not supported anymore. It is recommended to use the Project Explorer view.
-
The C/C++ Project view displays, in a tree structure, only elements relevant to C and C++ project files, similar to the Project Explorer view. In this view you can do the following:
-
-
Browse the elements of C/C++ source files
-
Open files in the editor view
-
Open projects in a new window
-
Create new projects, classes, files, or folders
-
Manage existing files (cut, paste, delete, move or rename)
-
Restore deleted files from local history
-
Import or Export files and projects
-
-
-
Files that you select in the C/C++ Projects view affect the information that is displayed in other views.
-
Right-click on any resource in the Project Explorer view to open a pop-up menu that allows you to perform operations such as copying, moving, creating new resources, comparing resources with each other, or performing team operations.
-
-
-
-
C/C++ Projects toolbar options
-
The table below lists the toolbar options displayed in the C/C++ Projects view.
-
-
-
-
-
-
-
-
-
Icon
-
Name
-
Description
-
-
-
-
Minimize
-
Minimizes the view.
-
-
-
-
Maximize
-
Maximizes the view.
-
-
-
-
Back
-
This command displays the hierarchy that was displayed immediately prior to the current display.
- For example, if you Go Into a resource, then the Back command in the resulting display returns the view to the same hierarchy from which you activated the
- Go Into command. The hover help for this button tells you where it will take you. This command is similar to the Back button in a web browser.
-
-
-
-
Forward
-
This command displays the hierarchy that was displayed immediately after the current display.
- For example, if you've just selected the Back command, then selecting the Forward command in the resulting display returns the view to the same hierarchy from which you activated the Back command. The
- hover help for this button tells you where it will take you.
- This command is similar to the Forward button in a web browser.
-
-
-
-
Up
-
This command displays the hierarchy of the parent of the current highest level resource. The hover help for this button tells you where it will take you.
-
-
-
-
Collapse All
-
This command collapses the tree expansion state of all resources in the view.
-
-
-
-
Link with Editor
-
This command toggles whether the view selection is linked to the active editor.
- When this option is selected, changing the active editor will automatically update the selection to the resource being edited.
-
-
-
-
Menu
-
Click the white upside-down triangle icon to open a menu of items specific to the view.
-
-
Select Working Set
-
Opens the Select Working Set dialog to allow selecting a working set for the view.
-
Deselect Working Set
-
Deselects the current working set.
-
Edit Active Working Set
-
Opens the Edit Working Set dialog to allow changing the current working set.
-
Filters
-
This command allows you to select filters to apply to the view so that you can show or hide various resources as needed.
- File types selected in the list will not be shown in the C/C++ Projects view.
-
Link with Editor
-
See the toolbar item description above.
-
-
-
-
-
-
C/C++ Projects view icons
-
-
The table below lists the icons displayed in the C/C++ Projects view.
-
-
-
-
Icon
-
Description
-
-
-
-
-
C or C++ file
-
-
-
-
-
Debuggable executable file
-
-
-
-
-
Object file
-
-
-
-
-
Class
-
-
-
-
-
Macro Definition
-
-
-
-
-
Enum
-
-
-
-
-
Enumerator
-
-
-
-
-
Variable
-
-
-
-
-
Field private
-
-
-
-
-
Field protected
-
-
-
-
-
Field public
-
-
-
-
-
Include
-
-
-
-
-
Makefile
-
-
-
-
-
Method private
-
-
-
-
-
Method protected
-
-
-
-
-
Method public
-
-
-
-
-
Namespace
-
-
-
-
-
Namespace declared
-
-
-
-
-
Struct
-
-
-
-
-
Type definition
-
-
-
-
-
Union
-
-
-
-
-
Function
-
-
-
-
The table below lists some overlay decorations displayed in the C/C++ Projects view.
-
-
-
-
-
-
C/C++ project
-
-
-
-
-
Edited
-
-
-
-
-
Inherits
-
-
-
-
-
Indexed
-
-
-
-
-
Error
-
-
-
-
-
Warning
-
-
-
-
-
Wrench signifies customized build settings or include paths/macros
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_dbg_breadcrumb.htm b/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_dbg_breadcrumb.htm
deleted file mode 100644
index f5e7addcbd6..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_dbg_breadcrumb.htm
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-Debug Breadcrumb
-
-
-
-
-
Debug Breadcrumb
-
Use the Debug Breadcrumb layout to show a compact presentation of the currently active debug context and its parents.
-
-
To show the Debug Breadcrumb layout, in the Debug view toolbar select View Menu > Layout > Breadcrumb. Alternatively, resize the Debug view such that the height of the view is small enough to fit only one line of text. This causes the view to change over to the Breadcrumb layout automatically.
-
The Debug Breadcrumb allows you to invoke actions on any element shown in the breadcrumb. Actions can be invoked through the context menu or through key bindings. To select an element in the breadcrumb click on it or activate the Debug view and use the left and right arrow keys.
-
You can also change the active debug context using the breadcrumb. Click on one of the arrows or any element top open a drop-down window. The drop-down shows all the siblings of the element for which the drop-down was opened. Click on an element to make it the new active debug context. To open the drop-down with the keyboard, select and element and press the down key.
-
-
Use the Breakpoint Actions page in the Preferences window to create, edit, and remove breakpoint actions. The breakpoint actions defined here are available to all projects in the current workspace.
-
-
-
-
Breakpoint Actions Preference Options
-
-
-
-
-
-
-
Option
-
Description
-
-
-
New...
-
To create a new breakpoint action, click New.
-
-
-
Edit...
-
To edit the currently selected action, click Edit. In the Action dialog box that appears, edit the action settings, then click OK.
-
-
-
Delete
-
To delete the currently selected action, click Delete.
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_dbg_src.htm b/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_dbg_src.htm
deleted file mode 100644
index a6e5346907a..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_dbg_src.htm
+++ /dev/null
@@ -1,71 +0,0 @@
-
-
-
-
-
-
- Source Lookup Path preferences
-
-
-
-
-
-
Source Lookup Path preference
-
-
Use the Source Lookup Path preference page to add or remove source containers.
-
-
-
-
-
- Default Source Lookup Path Options
-
-
-
-
-
-
-
-
Options
-
Description
-
-
-
Add...
-
Opens the Add Source dialog to insert a new source container of one of the following types:
-
-
Absolute File Path
-
Compilation Directory
-
File System Directory
-
Path Mapping
-
Project
-
Project - Path Relative to Source Folders
-
Program Relative File Path
-
Workspace
-
Workspace Folder
-
-
-
-
-
Edit...
-
Opens the Edit File System Directory dialog to modify the currently selected source container.
-
-
-
Remove
-
Remove the currently selected source container.
-
-
-
Up
-
Move the currently selected source container higher in the list.
-
-
-
Down
-
Move the currently selected source container lower in the list.
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_dbg_src_path_mapping.htm b/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_dbg_src_path_mapping.htm
deleted file mode 100644
index 6467e480465..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_dbg_src_path_mapping.htm
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
-
-
- Source Lookup Path preferences
-
-
-
-
-
-
Edit Source Lookup Path Mappings
-
-
Use the Source Lookup Path Mappings to edit the Path Mapping source container type.
-
-
-
-
-
- Source Lookup Path Mappings Options
-
-
-
-
-
-
-
-
Options
-
Description
-
-
-
Name
-
The name of the Path Mapping. Only the name "Found Mappings" is used by CDT when automatically creating path mappings, such as from the C Source Not Found Editor.
-
-
-
Compilation path:
-
The path of the folder as it is in the debug information. This is the folder path when the source was compiled.
-
- This path must exactly match the path as it is in the debug information. For example, if a file was compiled with forward (/) slashes, then forward slashes should be entered as path separator.
- Similarly, if there is a relative path (such as "..") in the compilation path, that should be included as well.
-
- The C Source Not Found Editor automatically creates the correct form when "Locate File..." is used.
-
-
-
-
Local file system path:
-
The path of the folder as it is locally, where Eclipse can find the file.
-
-
-
-
Resolve path mappings using debugger backend.
-
Allow the mapping to be performed with the debugger backend where supported. This allows any direct interaction with the backend (for example via the console) to have a consistent view of file names.
-
- This option is the default and provides a more complete path mapping solution.
-
-
-
-
Add
-
Add a new row to the table. Both the Compilation path and Local file system path need to be specified.
-
-
-
-
Remove
-
Remove the currently selected row.
-
-
-
Up
-
Move the currently selected row higher in the list.
-
-
-
Down
-
Move the currently selected row lower in the list.
-
-
-
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_dbg_view.htm b/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_dbg_view.htm
deleted file mode 100644
index 9b0eabb53c0..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_dbg_view.htm
+++ /dev/null
@@ -1,338 +0,0 @@
-
-
-
-
-
-
-Debug view
-
-
-
-
-
-
-
Debug view
-
-
The Debug view shows the target debugging information in a tree hierarchy.
-
-
The number beside the thread label is a reference counter, not a
-thread identification number (TID).
-
The CDT displays stack frames as child elements. It displays the reason for
- the suspension beside the thread, (such as end of stepping range, breakpoint
- hit, and signal received). When a program exits, the exit
- code is displayed.
-
The icons that appear in the Debug view include:
-
-
-
- Icons
-
-
Session item
-
Description
-
-
-
-
-
-
Launch instance
-
Launch configuration name and launch type
-
-
-
-
-
-
-
Debugger instance
-
Debugger name and state
-
-
-
-
-
-
Thread instance
-
Thread number and state
-
-
-
-
-
-
Stack frame instance
-
Stack frame number, function, file name, and file line number
-
-
-
In addition to controlling the individual stepping of your programs, you can
-also control the debug session. You can perform actions such as terminating the
-session and stopping the program by using the debug launch controls available
-from Debug view.
-
-
Debug view toolbar options
-
The table below lists the toolbar options displayed in the Debug view.
-
-
-
-
- Icons
-
-
Action
-
Description
-
-
-
-
-
-
Remove All Terminated Launches
-
Clears all terminated processes in Debug view
-
-
-
-
Connect to a Process
-
Enables the selection of a running process to debug.
-
-
-
-
-
-
Restart
-
Starts a new debug session for the selected process
-
-
-
-
-
-
Resume
-
Select the Resume command to resume execution of the currently suspended debug target.
-
-
-
-
-
-
Suspend
-
Select the Suspend command to halt execution of the currently selected thread in a debug target.
-
-
-
-
-
-
Terminate
-
Ends the selected debug session and/or process. The impact of this action depends on the type of the item selected in the Debug view.
-
-
-
-
-
-
Disconnect
-
Detaches the debugger from the selected process (useful for
-debugging attached processes).
-
-
-
-
-
-
Step Into
-
Select to execute the current line, including any routines, and proceed to the next statement.
-
-
-
-
-
-
Step Over
-
Select to execute the current line, following execution inside a routine.
-
-
-
-
-
-
Step Return
-
Select to continue execution to the end of the current routine, then follow execution to the routine's caller.
-
-
-
-
-
-
Drop to Frame
-
Select the Drop to Frame command to re-enter the selected stack frame in the Debug view.
-
-
-
-
-
-
Instruction Stepping Mode
-
Activate to enable instruction stepping mode to examine a program as it steps into disassembled code.
-
-
-
-
-
-
Use Step Filters
-
Select the Use Step Filters command to change whether step filters should be used in the Debug view.
-
-
-
-
-
Menu
-
Use the Debug view menu to:
-
-
change the layout of debug view (tree vs. breadcrumb)
-
alternate showing of full or no paths on source files
-
control how views are managed
-
activate or deactivate the child elements shown in the Debug view
-
-
-
-
-
Debug view context menu commands
-
The Debug view context menu commands include:
-
-
-
-
Icons
-
Name
-
Description
-
-
-
-
-
-
Copy Stack
-
Copies the selected stack of suspended threads as well as the state of the running threads to the clipboard.
-
-
-
-
-
Find...
-
Opens the debug view element searching dialog.
-
-
-
-
-
-
Drop To Frame
-
Select the Drop to Frame command to re-enter the selected stack frame in the Debug view.
-
-
-
-
-
-
Step Into
-
Select to execute the current line, including any routines, and proceed to the next statement.
-
-
-
-
-
-
Step Over
-
Select to execute the current line, following execution inside a routine.
-
-
-
-
-
-
Step Return
-
Select to continue execution to the end of the current routine, then follow execution to the routine's caller.
-
-
-
-
-
-
Instruction Stepping Mode
-
Activate to enable instruction stepping mode to examine a program as it steps into disassembled code.
-
-
-
-
-
-
Use Step Filters
-
Toggles step filters on/off. When on, all step functions apply step filters.
-
-
-
-
-
-
Resume Without Signal
-
Resume program execution after receiving the signal.
-
-
-
-
-
-
Resume
-
Select the Resume command to resume execution of the currently suspended debug target.
-
-
-
-
-
-
Suspend
-
Select the Suspend command to halt execution of the currently selected thread in a debug target.
-
-
-
-
-
-
Terminate
-
Ends the selected debug session and/or process. The impact of this action depends on the type of the item selected in the Debug view.
-
-
-
-
-
-
Terminate and Relaunch
-
Select the Terminate and Relaunch command to terminate the selected debug target and then relaunch it.
-
-
-
-
-
-
Disconnect
-
Detaches the debugger from the selected process (useful for
- debugging attached processes)
-
-
-
-
-
-
Remove All Terminated
-
Clears all terminated processes in Debug view
-
-
-
-
-
-
Terminate and Remove
-
Terminates the selected debug target and removes it from the view.
-
-
-
-
-
-
Terminate/Disconnect All
-
Terminates or disconnects all active launches in the view.
-
-
-
-
-
Properties
-
Opens the Properties for window showing the process properties.
You can define the discovery options on the Discovery Options page of a C/C++ Preferences window.
-
-
-
-
-
-
Automate discovery of paths and symbols
-
Select this checkbox to scan the build output for paths and symbols.
-
Build output parser options
-
This section allows you to select the make build output parser.
-
Generate scanner info command options
-
Select to invoke secondary paths and symbols provider (such as GNU specs).
-
Restore Defaults
Returns any changes back to their default setting.
-
Apply
Applies any changes.
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_dissassembly_view.htm b/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_dissassembly_view.htm
deleted file mode 100644
index 9939e553839..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_dissassembly_view.htm
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
-
-
-
-Disassembly view
-
-
-
-
-
-
Disassembly view
-
-
The Disassembly view shows the loaded program as assembler instructions mixed with source code for comparison. The currently executing line is indicated by an arrow marker and highlighted in the view. You can do the following tasks in the Disassembly view:
-
-
Set breakpoints at the start of any assembler instruction
-
Enable and disable breakpoints and their set their properties
-
Step through the disassembly instructions of your program
-
Jump to specific instructions in the program
-
-
-
-
-
Disassembly view context menu commands
-
-
The Disassembly view context menu commands include:
-
-
-
Command
-
Name
-
Description
-
-
-
-
Run To Line
-
Resumes program execution until the specific line is reached. This is a convenient way to suspend execution at a line without setting a breakpoint.
-
-
-
-
Resume At Line
-
Resume program execution from the line selected in the Disassembly view.
Use this preferences panel to control how the C/C++ debugger behaves when debugging with GDB,
-specifically when using a GDB (DSF) launcher.
-
-
-
-
-
GDB Preference Panel Options
-
-
-
-
-
-
-
Category
-
Option
-
Description
-
-
-
-
-
-
-
-
Debug Configurations Defaults
-
-
-
GDB debugger
-
Specifies the GDB debugger binary that will be used by default for each
- newly created debug launch. Using an absolute path will directly point to the binary (e.g, /home/user/myGdb),
- while using a binary name will have C/C++ look through the PATH variable for that binary (e.g., myGdb). This can
- be useful of your GDB binary is not named 'gdb'. Each launch configuration allows to override this setting in
- the Debugger tab.
-
-
-
GDB command file
-
Specifies the GDB debugger command file that will be used by default for each
- newly created debug launch. This can be useful if you often/always want to use a GDB command file for your launches.
- Each launch configuration allows to override this setting in the Debugger tab.
-
-
-
Stop on startup
-
When checked, the C/C++ debugger will stop execution at the specified symbol when
- launching or re-starting a process. By default, this setting makes the C/C++ debugger stop when entering 'main'.
-
-
-
Command timeout
-
When checked, the C/C++ debugger will abort the debug session if any command sent
- to GDB does not get an answer before the specified timeout. Using this can prevent debug sessions from hanging forever
- when debugging un-reliable targets.
-
- Using the Advanced... button allows to set a different timeout for individual commands. A value of zero can be
- used to specify "no timeout" for a particular command. MI commands must start with a hyphen ('-').
- For example, '-target-select'.
-
-
-
Non-stop mode
-
When checked, the C/C++ debugger will run in non-stop mode for each newly created
- debug launch. Non-stop mode allows each thread of a debug session to be controlled independently. This allows to stop
- one or more threads while leaving others running. In contrast, all-stop mode interrupts and resumes all threads at the
- same time. Note that non-stop mode is only available starting with GDB 7.0.
-
-
-
-
-
-
-
-
General Behavior
-
-
-
Terminate GDB when last process exits
-
When checked, the C/C++ debugger will terminate the GDB
- process (on the host) after all the target processes it is debugging have terminated. Otherwise it
- will leave it running. It can be useful to keep GDB running if you expect to want to attach or create
- new processes to debug after the previously debugged processes have terminated.
-
-
-
Use enhanced debug hover
-
When checked, hovering over an expression in the editor during a
- debug session will bring up an enhanced expression evaluation control. Otherwise, a more basic
- control is used. This, of course, assumes that you have the debugger's hovering capability turned on in
- C/C++ > Editor > Hovers. If not, this checkbox has no effect.
-
-
-
-
Show only suspended threads in the Debug view
-
When checked, the Debug view will only show threads that are suspended.
- When dealing with a large number of threads, this helps focus on the threads being inspected. Obviously,
- this option is only valuable in non-stop mode, where some threads can run while others are stopped.
-
-
-
Use aggressive breakpoint filtering
-
When checked, the button "Show Breakpoints Supported by Selected Target"
- of the Breakpoints view will only show the breakpoints that affect the currently selected C/C++ debug context
- (e.g., thread, process). Otherwise, "Show Breakpoints Supported by Selected Target" will show all breakpoints
- that are for any C/C++ target.
-
-
-
-
Enable GDB traces
-
When checked, the debug session will produce an additional console which
- will contain all the gdb/mi activity. Basically, this details the interaction between the C/C++ debugger and GDB.
- This information is often critical when the debugger is not behaving as you expect. Include this console output
- when submitting a bugzilla report against the C/C++ debugger. It is recommended to keep this setting enabled at
- all times, as it does not cause any negative effect.
-
- Once the number of characters specified by the limit field is reached, older trace lines will be discarded
- gradually. This is to avoid these traces consuming too much memory, for very long debug sessions.
-
-
-
Display run-time type of variables
-
When checked, the C/C++ debugger will show the actual variable type (not the
- declared one) in Variables and Expressions views. Not only does this allow to see what is the current run-time
- type of a variable, but it allows to access fields that may not be in the base class.
- Note that this feature will only work starting with GDB 7.5.
-
-
-
-
-
-
-
-
Pretty Printing
-
-
-
Enable pretty printers in variable/expression tree
-
When checked, the C/C++ Debugger will display STL types in a user-friendly
- fashion. This can be seen in the Variables and Expressions views, as well as in the advanced editor hover.
- For example, Maps, Lists and Vectors will be shown in an array-style format instead of showing the
- details of the actual implementation of the data struture. Note that pretty printing requires a GDB that
- has python support enabled and the user of STL pretty-printers.
-
-
-
For collections, initially limit child count to
-
When using pretty printing, collections (e.g., Maps, Lists, etc) can contain
- a large number of elements. Trying to display all this children at once can cause very poor responsiveness. This
- value will limit the number of children displayed initially, while allowing the user to manually request more
- children directly from the view.
The C/C++ editor provides specialized features for editing C/C++ related files.
-
-
Associated with the editor is a C/C++-specific Outline view,
- which shows the structure of the active C, C++ or makefile. It is updated as you edit these files.
-
-
The editor includes the following features:
-
-
Syntax highlighting
-
Content/code assist
-
Integrated debugging features
-
-
-
The most common way to invoke the C/C++ editor is to open a file from
- the Project Explorer or the C/C++ Project views using pop-up menus or by clicking the file
- (single or double-click depending on the user preferences).
-
-
The C/C++ editor does not contain a toolbar itself, but relies on the use of the main
-toolbar, Edit menu, Search menu
-and key binding actions.
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_environment_pref.htm b/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_environment_pref.htm
deleted file mode 100644
index e136a355b13..00000000000
--- a/debug/org.eclipse.cdt.debug.application.doc/reference/cdt_u_environment_pref.htm
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
-
-Environment preferences
-
-
-
-
-
-
-
Environment preferences
-
-
Use the Environment preference panel to define environment variables and their use.
-
-
-
- Environment Options
-
-
-
-
-
-
-
-
Options
-
Description
-
-
-
Environment variables to set
-
Shows a list of the environment variables and their value.
-
-
-
New...
-
Click to open the New Variable dialog where you define the variable name and value.
-
-
-
Select...
-
Click to open the Select variables dialog.
-
-
-
Edit...
-
Click to edit the currently selected variable and its value.
-
-
-
Remove
-
Click to remove the currently selected variable.
-
-
-
Undefine
-
Click to undefine the currently selected variable.
- NOTE: Some variables, like PATH, have special meaning and cannot be undefined.
-
-
-
Append variables to native environment
-
Activate this checkbox to append the variables to the native environment during execution.
-
-
-
Replace native environment with specified one
-
Activate this checkbox to replace the native environment with these variables, restoring the native environment upon completion.
-Use the Build Steps properties panel to customize the selected build configuration allowing the specification
-of user defined build command steps, as well as a descriptive message to be displayed in the
-build output, immediately prior to and immediately after normal build processing executes.
-
-
-
-
Settings, Build Steps tab
-
-
-
-
-
-
-
Option
-
Description
-
-
-
Custom build step applicability
-
Select either 'Apply' or 'Disable' custom build step. In case of apply, custom build step would override standard one.
-
-
-
Additional input file names
-
Define additional file names to be used in custom build step.
-
-
-
Output file name(s)
-
Define name(s) for output files generated by custom build step.
-
-
-
Command
-
Specifies a command, or a list of semicolon separated commands, to be executed during custom build step.
-
-
-
Description
-
Specify optional descriptive text that is associated with the post-build step to be displayed in the build output immediately prior to execution of the post-build step command or commands.
Displays a list of tools and their option categories. Select a desired tool from the list to modify its options.
-
-
(Right pane)
-
Displays the options that you can modify for the selected tool. This list of options changes depending on which options category you select for a specific tool in the left pane.
Ctrl+F (or Edit > Find/Replace) displays the Find/Replace dialog.
-Here you can specify text to search for and optionally text with which to replace it.
-
-
-
You can specify:
-
-
The direction (forward or back from the current cursor location)
-
The scope (All for the whole file or Selected Lines to search only
-within the highlighted area)
-
Whether the search is Case Sensitive or Whole Word.
-You can also specify whether the search wraps at the end of the file.
-
-
-
If you close the Find/Replace dialog with text in the Find field,
-you can use Ctrl+K (or Edit > Find Next) or
-Ctrl+Shift+K (or Edit > Find Previous) to go to the next
-occurrence of that text.
-The directions for "Next" and "Previous"
-are not affected by the Direction setting in the Find/Replace dialog.
-
-
-
Note:
-Wildcards are not currently supported for searches.
-
-
Incremental Find
-
-
You can also choose Incremental Find from the Find/Replace dialog.
-With this option selected, each letter you type in the Find field
-causes the editor focus to move to the first complete occurrence of the text
-you are typing.
-You can also use incremental find by pressing Ctrl+J (Edit > Incremental Find).
-In this case, the text you type appears in the Status Line at the bottom of
-the Eclipse window.
-
-
-
Note:
-The settings in the Find/Replace dialog do not affect the operation
-of incremental find in the Status Line.