怎样编译安装gobject

2016年11月16日 | 分类: 【技术】

编译安装gobject-2.0:

参考:http://www.linuxfromscratch.org/blfs/view/svn/general/gobject-introspection

wget http://ftp.gnome.org/pub/gnome/sources/gobject-introspection/1.48/gobject-introspection-1.48.0.tar.xz
xz -d gobject-introspection-1.48.0.tar.xz && tar -xvf gobject-introspection-1.48.0.tar && cd gobject-introspection-1.48.0
./configure --prefix=/usr --disable-static GLIB_CFLAGS="-I/usr/include/glib-2.0" GLIB_LIBS="-L/usr/lib/glib-2.0"
make && make install