glibconfig.h no such file or directory

寵の児 提交于 2019-12-03 06:20:48

问题


I just installed glib in Raspbian(Debian version). I want to read a config file using glib. I am trying to write a C application in Codeblocks and I use the header

#include <glib.h> 

But I have an error in gtypes.h

fatal error:glibconfig.h No such file or directory

I used this path

project->Build Options->Compiler Settings->Other Options 

and I added

-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include

as I read in this tutorial. I have to declare also

-L/usr/lib -lm -lglib-2.0 

as the tutorial says and if yes then where and how can I declare it in Codeblocks?


回答1:


Use pkg-config.

gcc `pkg-config --cflags glib-2.0` foo.c `pkg-config --libs glib-2.0`


来源:https://stackoverflow.com/questions/17360635/glibconfig-h-no-such-file-or-directory

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!