I have a created C based project with CDT from pidgin source code. Everything is working fine but it says unresolved inclusion for following two libs:

#include <libxml/parser.h>
#include <glib.h>

How can I fix this?
I can't use CDT hover, open declarations etc. features with the functions of this library and have to manually browse in the directories. I have tried adding the lib directory in project properties -> paths and symbols.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Firt you should make sure that the developer packages for glib and libxml are installed. On ubuntu you can type:

apt-get install libxml2-dev libglib2.0-dev

Then you van watch with pkg-config which directories should be included

~> pkg-config --cflags libxml-2.0
-I/usr/include/libxml2
~> pkg-config --cflags glib-2.0
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include

The above are the header files which are to be configured in the Compiler settings (in CDT you should strip the '-I'). Below are the libraries that are needed by the linker so configure them at the linker settings in CDT and strip the '-l'

 ~>pkg-config --libs libxml-2.0
 -lxml2
 ~>pkg-config --libs glib-2.0
 -lglib-2.0

If you still get unresolved includes you should try to clean the project in CDT.

Owh BTW: the include directories and libraries should not be configured in C/C++->Paths and Symbols (though that should work as well) but I always configure them in C/C++ Build->Settings

link|improve this answer
Ok I got it to work by using the above include paths (I had earlier misconfigured, used /user/lib/ paths instead of /user/include/). But I can't understand how do you define them in C/C++ Build->Settings, I can only see the configuration options for parsers in that tab. – crodjer Jan 6 '11 at 12:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.