Build-related information is displayed as follows:
-
The C-Build view displays the output of the make utility.
+
The Console view displays the output of the make utility.
The Tasks view displays a list of compiler errors and warnings related to
your projects.
Makefile actions are displayed in the Make Targets view.
@@ -67,26 +67,26 @@ view.
You can either create a C project for which you supply the
-makefile
+makefile
or create a C project for which the CDT generates makefiles automatically.
To create a new project, from the menu bar choose
-File > New > Project.
+File > New > Project.
In the dialog that appears:
-
To create a project for which you supply the makefile,
+
To create a project for which you supply the makefile,
select either
-Standard Make C project or
+Standard Make C project or
-Standard Make C++ project.
+Standard Make C++ project.
To create a project for which the CDT supplies a basic
-makefile, select either
-Managed Make C project or
-Managed Make C++ project.
+makefile, select either
+Managed Make C project or
+Managed Make C++ project.
@@ -100,8 +100,8 @@ select either
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 >
-Build Order.
+Window > 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
@@ -114,7 +114,7 @@ propagated.
You can set the CDT to perform an automatic save of all modified resources
when you perform a manual build; from the menu bar, select
-Windows > Preferences > Workbench.
+Windows > Preferences > Workbench.
By default, this feature is disabled.
@@ -122,32 +122,32 @@ By default, this feature is disabled.
Controlling the building of your project
The C/C++ compiler that a project uses is controlled by the project's
-Properties setting.
+Properties setting.
To view a project's properties, right-click on the project and select
-Properties.
+Properties.
In the dialog that appears, the
-C/C++ Make Project page enables you
+C/C++ Make Project page enables you
to control a variety of settings, including:
Build Setting
-
Controls whether the compiler will Stop On Error
-or Keep Going On Error.
-Choosing Keep Going On Error will force the compiler to
+
Controls whether the compiler will Stop On Error
+or Keep Going On Error.
+Choosing Keep Going On Error will force the compiler to
attempt to build all referenced projects even if the current project has errors.
Build Command
Controls which compiler is used.
-By default the compiler is C Builder
-(gcc).
+By default the compiler is C Builder
+(gcc).
Workbench Build Behavior
Controls the auto-build on save feature and what operations
are performed during a build and rebuild.
-
The External Tools Builders page
+
The External Tools Builders page
enables you to add, reorder, or remove external build tools.
@@ -157,11 +157,11 @@ enables you to add, reorder, or remove external build tools.
-
The C-Build view displays the output of the make utility.
-
The Tasks view displays a list
+
The Console view displays the output of the make utility.
+
The Tasks view displays a list
of compiler errors and warnings related to your projects.
-
Build actions display in the Make Targets view.
+
Build actions display in the Make Targets view.
diff --git a/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_content_assist.htm b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_content_assist.htm
index 994a7ca613a..f258edee4a2 100644
--- a/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_content_assist.htm
+++ b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_content_assist.htm
@@ -46,8 +46,7 @@ the relevance of each proposal is determined in the following order:
You trigger the Code completion feature when you call Content Assist (such as when you type Ctrl+Space), but you also invoke it 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
@@ -65,22 +64,20 @@ list of code elements and code templates that start with the letter combination
You can then select a code template from the list and it is inserted directly into your code.
-
+
For example, the code template do while statement contains the following code:
-
do {
-${cursor}
-} while (${condition});
+
When you select the do code 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:
+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) {
diff --git a/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_open_declarations.htm b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_open_declarations.htm
index 57438fc62b9..691bdb79f75 100644
--- a/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_open_declarations.htm
+++ b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_open_declarations.htm
@@ -6,14 +6,6 @@
Open declarations
-
@@ -22,8 +14,7 @@ function changeSize(theImage,wd,ht) {
You can select an element name in your code and quickly navigate to its declaration.
-
+
If the search finds only one matching declaration, you will immediately jump to the declaration, even if it is in another file. If
the search finds multiple declarations, a windowed list of prospects will appear.
Lists things such as tasks, compiler warnings, and errors.
-
C-Build view
-
Displays the output from make.
+
Console view
+
Displays the output from make.
Properties view
Lists the properties of a file that has been selected in
-the C/C++ Projects view or the
+the C/C++ Projects view or the
-Navigator view.
+Navigator view.
Outline view
Lists file elements.
diff --git a/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_perspectives.htm b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_perspectives.htm
index 87a25c70562..5bc747f7a3f 100644
--- a/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_perspectives.htm
+++ b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_perspectives.htm
@@ -41,7 +41,6 @@ By default it consists of an editor area and the following views:
C/C++ Projects (the file navigator for C/C++ resources)
Navigator (the file navigator for all Eclipse resources)
-
C-Build
Console
Properties
Tasks
@@ -105,4 +104,4 @@ Eclipse also has perspectives that are tuned to other types of development:
-