Difference between revisions of "Fortran support in Code::Blocks"

From Code::Blocks
Line 9: Line 9:
 
* and some more.
 
* and some more.
  
Most of the functionality useful for Fortran is implemented through FortranProject plugin. More information about the use of Code::Blocks with Fortran can be found here [http://darmar.vgtu.lt/ here].
+
Most of the functionality useful for Fortran is implemented through FortranProject plugin. More information about the use of Code::Blocks with Fortran can be found [http://darmar.vgtu.lt/ here].
  
 
== See also ==
 
== See also ==
 
* [[Fortran Project plugin]] - Fortran code completion and symbol browser.
 
* [[Fortran Project plugin]] - Fortran code completion and symbol browser.

Revision as of 05:28, 4 April 2015

Presently Code::Blocks IDE has support not only for C/C++ but for Fortran also. Features of Code::Blocks useful for Fortran:

  • Editor with syntax highlighting for fixed and free Fortran source code
  • Support for GFortran and PGI Fortran compilers. Other Fortran compilers can be added by users too. “Support for compiler” means: (a) the graphical interface for the options of the compiler and (b) catching of compilation errors and warnings and jumping to the corresponding code line
  • During the compilation Code::Blocks cares about the dependencies between Fortran files in the project (it is important when Fortran modules are used)
  • Symbol browser with program units and variables defined in Fortran files
  • Code-completion
  • Call-tips
  • and some more.

Most of the functionality useful for Fortran is implemented through FortranProject plugin. More information about the use of Code::Blocks with Fortran can be found here.

See also