Difference between revisions of "Compiler plugin"

From Code::Blocks
(Explained compiler toolbar.)
m (XML branch merged.)
 
Line 28: Line 28:
  
 
; [[File:TargetSelect.png]] : Change the active build target of the current project.
 
; [[File:TargetSelect.png]] : Change the active build target of the current project.
 +
 +
==See also==
 +
Development documents:
 +
* [[Compiler file]]
 +
* [[Compiler options file]]

Latest revision as of 15:49, 19 December 2012

Compiler
Compiler.png
Developer(s): Yiannis Mandravellos
Maintainer(s):
Version: 0.99

The Compiler plugin is an interface to various compilers:

  • GNU GCC compiler
  • Microsoft Visual C++ Free Toolkit 2003
  • Borland C++ Compiler 5.5

Compiler toolbar

The icons in the Compiler toolbar have the following meanings:

Build Ctrl-F9
Compile (and link, if applicable) the active build target of the current project. If no project is open, Code::Blocks will attempt compilation of the active file in the editor.
Run Ctrl-F10
Run the executable output of the active build target of the current project. If no project is open, Code::Blocks will attempt to run the executable output of the active file in the editor.
Build and run F9
Compile (and link, if applicable) the active build target of the current project and run the output. If no project is open, Code::Blocks will attempt to compile the active file in the editor, then run its output.
Rebuild Ctrl-F11
Clean (delete) all the object files and compiled output of the active build target of the current project, then compile (and link, if applicable) cleaned target. This function requires an active project.
Abort
Stop a compilation before it has completed. This function requires an active project.
TargetSelect.png
Change the active build target of the current project.

See also

Development documents: