glib に対してコンパイルするとリンカー エラーが発生します...?

glib に対してコンパイルするとリンカー エラーが発生します...?

Ubuntu 上の glib に対して簡単なサンプル プログラムをコンパイルする際に問題が発生しています。次のエラーが発生します。コンパイルはできますが、-c フラグでリンクできません。これは、glib ヘッダーがインストールされているが、共有オブジェクト コードが見つからないことを意味していると思います。以下の make ファイルも参照してください。

$> make re
gcc -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include  -lglib-2.0       re.c   -o re
/tmp/ccxas1nI.o: In function `print_uppercase_words':
re.c:(.text+0x21): undefined reference to `g_regex_new'
re.c:(.text+0x41): undefined reference to `g_regex_match'
re.c:(.text+0x54): undefined reference to `g_match_info_fetch'
re.c:(.text+0x6e): undefined reference to `g_print'
re.c:(.text+0x7a): undefined reference to `g_free'
re.c:(.text+0x8b): undefined reference to `g_match_info_next'
re.c:(.text+0x97): undefined reference to `g_match_info_matches'
re.c:(.text+0xa7): undefined reference to `g_match_info_free'
re.c:(.text+0xb3): undefined reference to `g_regex_unref'
collect2: ld returned 1 exit status
make: *** [re] Error 1

使用されたMakefile:

# Need to installed libglib2.0-dev some system specific install that will
# provide a value for pkg-config
INCLUDES=$(shell pkg-config --libs --cflags glib-2.0)
CC=gcc $(INCLUDES)
PROJECT=re

# Targets
full: clean compile

clean:
    rm $(PROJECT)

compile:
    $(CC) $(PROJECT).c -o $(PROJECT)

コンパイル中の .c コード:

#include <glib.h>    

void print_upppercase_words(const gchar *string)
{
  /* Print all uppercase-only words. */

  GRegex *regex;
  GMatchInfo *match_info;

  regex = g_regex_new("[A-Z]+", 0, 0, NULL);
  g_regex_match(regex, string, 0, &match_info);

  while (g_match_info_matches(match_info))
    {
      gchar *word = g_match_info_fetch(match_info, 0);
      g_print("Found %s\n", word);
      g_free(word);
      g_match_info_next(match_info, NULL);
    }

  g_match_info_free(match_info);
  g_regex_unref(regex);
}

int main()
{
  gchar *string = "My body is a cage.  My mind is THE key.";

  print_uppercase_words(string);
}

不思議なことに、実行すると、glib-configそのコマンドが気に入らないのですが、これら 2 つのパッケージに含まれているというエラーが表示されたときに、bash または make にどちらか一方を使用するように指示する方法がわかりませんgdlib-config

$> glib-config
No command 'glib-config' found, did you mean:
 Command 'gdlib-config' from package 'libgd2-xpm-dev' (main)
 Command 'gdlib-config' from package 'libgd2-noxpm-dev' (main)
glib-config: command not found

答え1

glib はあなたの問題ではありません。これは:

re.c:(.text+0xd6): undefined reference to `print_uppercase_words'

つまり、関数を呼び出しているprint_uppercase_wordsが、関数が見つからないということです。

それに理由があります。よく見てください。タイプミスがあります。

void print_upppercase_words(const gchar *string)

これを修正した後でも、ライブラリを必要とするモジュールの前にライブラリを指定しているため、まだ問題が発生する可能性があります。つまり、コマンドは次のように記述する必要があります。

gcc -o re re.o -lglib-2.0

つまり、 の-lglib-2.0後に続きますre.o

したがって、Makefile を次のように記述します。

re.o: re.c
        $(CC) -I<includes> -o $@ -c $^

re: re.o
        $(CC) $^ -l<libraries> -o $@

実際、適切な変数を設定すれば、makeすべてが自動的に処理されます。

CFLAGS=$(shell pkg-config --cflags glib-2.0)
LDLIBS=$(shell pkg-config --libs glib-2.0)
CC=gcc

re: re.o

関連情報