我可以包含xcb/xcb.h
中的项目,但不能包含/usr/include/xcb/randr.h
中概述的项目。
我的首选是使用C ++,但是为了帮助调试,我还尝试了C语言,它产生了相同错误的变体。
我确定我做错了什么,但是我不确定从哪里开始寻找解决方法。非常感谢您阅读,有任何建议吗?
#include <xcb/xcb.h>
#include <xcb/randr.h>
int main()
{
const xcb_setup_t * xsetup;
xcb_connection_t * conn;
xcb_screen_t * screen;
xcb_window_t root_win;
xcb_screen_iterator_t screen_iterator;
xcb_randr_get_screen_resources_cookie_t resources;
// connect to Xserver
conn = xcb_connect(NULL, NULL);
xsetup = xcb_get_setup(conn);
// get the root window
screen_iterator = xcb_setup_roots_iterator(xsetup);
screen = screen_iterator.data;
root_win = screen->root;
// any function from xcb/randr.h fails with undefined reference.
resources = xcb_randr_get_screen_resources(conn, root_win);
}
# gcc tries
gcc -Wall main.cpp -o main `pkg-config --cflags --libs xcb`
g++ -Wall main.cpp -o main `pkg-config --cflags --libs xcb`
# clang tries
clang++ main.cpp -o main `pkg-config --cflags --libs xcb`
clang main.cpp -o main `pkg-config --cflags --libs xcb`
gcc
/usr/bin/ld: /tmp/ccWR2GQL.o: in function `main':
main.cpp:(.text+0x6c): undefined reference to `xcb_randr_get_screen_resources'
collect2: error: ld returned 1 exit status
clang
/usr/bin/ld: /tmp/main-d114b5.o: in function `main':
main.cpp:(.text+0x67): undefined reference to `xcb_randr_get_screen_resources'
clang-7: error: linker command failed with exit code 1 (use -v to see invocation)
答案 0 :(得分:0)
xcb库分为几个不同的包;因此,您需要显式引入xcb
和xcb-randr
库:
... `pkg-config --cflags --libs xcb xcb-randr`
您的Linux发行版可能会单独打包randr库。检查Fedora,它将xcb和xcb-rand都打包在libxcb-devel
子包中;但是您的Linux发行版可能有一个单独的libxcb-randr-devel
子软件包需要安装。
答案 1 :(得分:0)
非常感谢n.m.
和G.M.
。
我没有链接xcb-randr
。
解决方案:
clang++ main.cpp -o main `pkg-config --cflags --libs xcb` -lxcb-randr