Initially, the preprocessor conducts source code preprocessing, handling directives and creating a temporary file. Subsequently, the compiler undertakes the translation of the preprocessed code into object […]
It’s possible to make configurations on the build process before building a Linux kernel. When it comes toconfigurations about kernel modules, we have three options for […]
* Simulation can be used as a method of embedded software testing. This is an approach to testing simulations of the target hardware instead of the […]
In some situations, saving stdout and stderr of your terminal command output can be crucial, To automatically save stdout and stderr, there are several options you can go with `>` : Write stdout […]
The shell variable HISTCONTROL controls what goes into the command history of bash shell. If HISTCONTROL variable equals to “ignorespace”, that means commands starting with a […]
Two types of variables exists in a Linux shell: Following command defines a shell variable: To convert a shell variable to environment variable following command can […]
The [[maybe_unused]] attribute is created for indicating in code that certain logic might not be used. This is often linked to preprocessor conditions where this might […]