我正在尝试在我Gtk3
的应用程序上集成一个终端,但是当我编译应用程序时,我得到了那个错误。
(csimpleide:9858): Gtk-ERROR **: GTK+ 2.x symbols detected. Using GTK+ 2.x and GTK+ 3 in the same process is not supported
Trace/breakpoint trap (core dumped)
因为vte
lib 使用gtk2
.
我用这个命令编译。
gcc -o test test.c `pkg-config --cflags --libs gtk+-3.0 vte`
我该如何解决这个问题?