I am in the process of porting my windows console application to Linux (Ubuntu 12.04). I am using the GNU GCC compiler to compile my application. However I can't seem to get rid of some errors, this code does function in windows with libxml2 but can't compile here.
In my build options I have included to search the path usr/include/libxml2. When I compile i still recieve the error:
Datadictionary.c|| undefined reference to `xmlCheckVersion'|
Datadictionary.c|| undefined reference to `xmlStrcmp'|
Datadictionary.c|| undefined reference to `xmlGetProp'|
Datadictionary.c|| undefined reference to `xmlReadFile'|
Now i have looked anywhere but could not find a solution.
Please help.