CMake: Linking against system libraries
Usecase: You want to make use of some system-wide installed library. Install the library using your linux package manager. Most installed libraries can be...
Usecase: You want to make use of some system-wide installed library. Install the library using your linux package manager. Most installed libraries can be...
Problem: You installed a new kernel in Manjaro either via GUI tool or via the commandline tool mhwd-kernel. After a restart it usually is selected by defaul...
Use-case: You have a library as source code, want to install it on your system (user-/system-wide), and then make use of it from another place/folder/repo. ...
Old school libraries use splitting into hpp/cpp files. Mayor drawbacks: leaking of macros (hpp can be different at library's consumer side than at library p...
In-depth tutorial: https://www.thegeekstuff.com/2012/08/gprof-tutorial/ Summary: Compile with -pg compiler flag (gcc/clang). Executing binary gives gmon.o...