Sponsored Links

5 steps towards objdump mastery

“There must be a bug in the compiler. I am absolutely certain of it…” With objdump you can verify this claim, though it is even better at discovering linker errors. Most people will probably just use objdump for educational purposes.

Continue reading 5 steps towards objdump mastery

std::vector

The vector class from the C++ standard library should be the default choice of container in any C++ application. We will have a look at typical use-cases in a moment after a brief introduction of the C++ standard library. Just to kind of put the vector into context. The C++ Standard Library Is a collection [...]

Continue reading std::vector

Fundamental g++ skills

Just to make sure everyone is on roughly the same page, this first post is a walk-through of how to get g++ to work for you. We will briefly cover Compiling and linking a single source file and multiple files into an executable. Creating and linking with a static library, writing a simple makefile and [...]

Continue reading Fundamental g++ skills