Bug of the week #13
Posted in

Bug of the week #13

Let’s look at this C++ program: When you build it in Debug and in Release mode, then: Same code. Same compiler. Different result. What does it mean? The bug comes from the undefined behavior of the uninitialized variable x: x is declared, but never initialized and immediately used: At this…

Bug of the week #13 Read More
Combining CMake with Docker
Posted in

Combining CMake with Docker

Welcome to the next pikoTutorial ! In one of the recent articles, I showed how to use CMake for setting up a Python project. Today, we will see how to further extend it by adding building of Docker images to the CMakeLists.txt files. Today’s project structure: Top CMakeLists.txt file Nothing…

Combining CMake with Docker Read More