error adding symbols: dso missing from command line
The error message: typically happens when you’re compiling a program (usually C or C++) using gcc or g++, and the linker (ld) can’t find a required shared object (DSO) or dynamic library. What it means: It usually points to the fact that you used a function or symbol from a library, but you didn’t explicitly…