User Tools

Site Tools


toolchain

This is an old revision of the document!


Source development requires a series of tool. Some important (at least important for our development) are listet here:

Version Control

It is of utmost importance to use some sort of tool which manages different versions of your files. These tools are called version control or revision control tools. We use git and github for our projects.

Development/IDE

Source code can basicly be written in any text editor. We recommend simple text editors (like kate, gedit, QtCreator) over highly complex (like Eclipse).

Compilation

Each source code file has to be compiled using a compiler (in our case a C++ compiler. In the world of Linux, there are two main compilers: GCC and Clang.

To avoid compiling each source code file manually, build automation tools are used. make is the most popular build automation tool in the Linux/Unix area. In addition to classic build automation tools, cmake provides a higher level abstraction and can be used to create make files or configuration for other build automation tools (like Visual Studio).

Debugging

The debugger is a tool which helps a software developer finding bugs in his code. For Linux environments, the gdb can be used.

toolchain.1399476619.txt.gz · Last modified: 2014/05/07 15:30 by viennastar