Overview
Here is a small compilation about debugging tools and how to set them up to start developing OGS. There are several development IDE’s available, both open-source or commercial. Some are multi-platform, others are platform-specific.
Here is a link list without specific order:
The steps to get things started with an IDE basically include generating the project files, importing them in the IDE and know where to provide arguments to the debugging binary.
I will assume, that you have the sources (eg. checked out from github) and that they lie in the source directory
Please, create a seperate build directory for your favorite IDE like
GDB
https://www.sourceware.org/gdb/download
Screenshot

Create project files
- CD to the build directory
- Generate project files with CMake:
- Start gdb in graphical mode, without license info (quiet) and with arguments:
- Have fun…
Documentation: https://sourceware.org/gdb/onlinedocs/gdb/index.html
Eclipse
http://www.eclipse.org/downloads
Choose “Eclipse IDE for C/C++ Developers”
Screenshot

Import Code
- CD to the build directory
- Generate project files with CMake:
- Open Eclipse and choose File - Import - Existing Project into Workspace
- Select the build directory and click Finish (Attention: Make sure to not check the option Copy projects into workspace!)
- To provide arguments, you will have to run the project once: Run - Debug (running will start building first, if not already done).
- Then, give arguments via Run - Debug Configuration - C/C++ Application - ogs. Choose Arguments tab on right side and add your arguments to the line C/C++ Application, e.g.
- Start debugging…
Documentation: http://wiki.eclipse.org/Main_Page
Code::Blocks
http://www.codeblocks.org/downloads
or
https://code.google.com/p/fortranproject
The latter includes already plugins for Fortran, in case you want to cross-compile.
Screenshot

Import Code
- CD to the build directory
- Generate project files with CMake:
- Open an existing project and choose before created .cbp file
- Choose your compilation target
- Give arguments: Project - Set Programs’ Arguments, select correct target and add Program arguments in the bottom
- Rock the show…
Documentation:
NetBeans
https://netbeans.org/downloads
Screenshot

Import project files
- Open NetBeans
- Choose File - New Project - C/C++ Project with Existing Sources (Click Next >)
- Specify sources directory, select configuration mode Custom
- Check Run Configure Script in Subfolder
- Click Next > until Finish
- Give arguments via Run - Set Project Configuration - Customize
- Under Run, give Run Command on right side:
- When starting debugging, choose correct target
- Have a great time…
Documentation: https://netbeans.org/kb/index.html
CLion
Download: https://www.jetbrains.com/clion/
Screenshot

Import project
You don’t need a build-directory for CLion. It will create it by itself.
- File / Import Project
- Choose source-directory
- When prompted do not overwrite CMake file, instead choose Open Project
- Under Run / Edit Configurations choose the ogs-target and set the program working directory and arguments
- On the top right choose the ogs-target and click the green Debug-button
Documentation: https://www.jetbrains.com/clion/help/introduction.html
This article was written by Marc Walther. If you are missing something or you find an error please let us know.
Generated with Hugo 0.64.1. Last revision: February 26, 2018
Commit: [web] Finished development workflows section in devguide. 88ba0e067
| Edit this page on