0

全部

当我使用 g++ 和 glib 构建 cpp 时,遇到编译错误。c和gcc版本都可以。我正在 Ubuntu 10.XX 上构建。我什至在 windows - c++ 上构建了它。

如何在 C++ 中构建 glib?谢谢。

#include <glib.h>

int main() {
    g_printf("test");
    return 0;
}

jongwon_kwak@kwak-com:~/worksapce_CXX/TESTGLib/src$ g++ -c -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/glib-2.0/include TESTGLib.cpp 
TESTGLib.cpp: In function ‘int main()’:
TESTGLib.cpp:12:17: error: ‘g_printf’ was not declared in this scope
4

2 回答 2

1

你不见了#include <glib/gprintf.h>

于 2013-05-13T07:33:50.507 回答
0

Just edit this and it will work

#include <glib/gprintf.h>
于 2014-02-21T12:52:30.200 回答