web-dev-qa-db-ja.com

glib.hはエラーを発生させます。致命的なエラー:glib.h:そのようなファイルまたはディレクトリはありません

ソリューションについては、インターネットで検索しました。コマンドの出力を追加しました
pkg-config --cflags glib-2.0つまり-I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/includeのようにGCC =- I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include -lglib-2.0

but still an error glib.h: No such file or directory

ここに私のメイクファイルがあります

ROOTDIR = $(CURDIR)
#-I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include  include makefiles/platforms.mk

ZLIBDIRS = zlibrary/core zlibrary/text zlibrary/ui APPDIRS = fbreader  GCC = -I/usr/include/glib-2.0
-I/usr/lib/i386-linux-gnu/glib-2.0/include  -lglib-2.0
#gcc -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include
#gcc pkg-config --cflags --libs glib-2.0  all:  @for dir in $(ZLIBDIRS) $(APPDIRS); do \        if [ -d $$dir ]; then \             cd $$dir; \             if ! $(MAKE); then \
                exit 1; \           fi; \           cd $(ROOTDIR); \        fi; \   done;

install: all do_install

do_install:     @for dir in $(ZLIBDIRS) $(APPDIRS); do \        if [ -d $$dir ]; then \             cd $$dir; make $@; cd $(ROOTDIR); \         fi; \   done

do_install_dev:     @for dir in $(ZLIBDIRS); do \       if [ -d $$dir ]; then \             cd $$dir; make $@; cd $(ROOTDIR); \         fi; \   done

clean:  @for dir in $(ZLIBDIRS) $(APPDIRS); do \        if [ -d $$dir ]; then \             cd $$dir; make $@; cd $(ROOTDIR); \         fi; \   done

distclean: clean    @rm -rvf *.tgz *.tar.gz *.ipk *.deb *.prc *.exe
*.log *.dsc *.changes *.rpm     @rm -rf tmp packages packages-nonGPL fbreader-*

これから抜け出してください。前もって感謝します。

7
Harkirat Sethi

おそらく、glib.hを含む-devパッケージが必要になるかもしれません: libglib2.0-dev

Sudo apt-get install libglib2.0-dev

http://packages.ubuntu.com とそのpackagesの内容を検索するフォームは、開発パッケージを見つけるのに役立ちますヘッダーのファイル名のみを知っています。

8
Sylvain Pineau