I am trying to compile a C++ code in a Ubuntu 12.04 OS using a make file. My code requires libxml2 and sqlite3. I have installed the packages using the Synaptics Package manager. However, now I do not know the path of the header(.h) files and shared object library (.so) files.
Is there a default location for these?
Thanks
There are default locations —
/usr/includefor headers,/usr/libfor libraries — meaning that you do not have to specify them in theMakefile.But do make sure you have the corresponding
-devpackageslibsqlite3-devandlibxml2-devinstalled!