0

我正在尝试使用 X11 构建一个 getPixelColor 函数:

#include <stdio.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>

void getPixelColor (Display *d, int x, int y, XColor *color)
{
    XImage *image;
    image = XGetImage (d, RootWindow (d, DefaultScreen (d)), x, y, 1, 1, AllPlanes,          
    XYPixmap);
    color->pixel = XGetPixel (image, 0, 0);
    XFree (image);
    XQueryColor (d, DefaultColormap(d, DefaultScreen (d)), color);
}

int main(int argc, const char * argv[])
{
   return 0;
}

但是我收到以下错误,似乎是在链接期间:

Undefined symbols for architecture x86_64:
  "_XGetImage", referenced from:
  _getPixelColor in main.o
  "_XFree", referenced from:
  _getPixelColor in main.o
  "_XQueryColor", referenced from:
  _getPixelColor in main.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

知道问题可能是什么吗?我的印象是 X11 不是我在项目中作为库链接的框架 - 只要我提供正确的标题,那么我应该没问题......这是不正确的吗?

4

3 回答 3

1

是的,您需要与 xlib 链接。这对我有用:

09:25 tmp $ gcc test.cpp /usr/X11/lib/libX11.dylib 
09:26 tmp $ ./a.out 
09:26 tmp $

或使用 L 开关和库路径:

09:26 tmp $ gcc test.cpp -L/usr/X11/lib -lX11
09:30 tmp $ otool -L a.out 
a.out:
    /usr/X11/lib/libX11.6.dylib (compatibility version 10.0.0, current version 10.0.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 159.1.0) 
于 2012-07-03T23:33:49.670 回答
0

这是不正确的吗?

是的。X11 包含让编译器满意的头文件和实际实现协议的库。

于 2012-07-02T23:05:26.780 回答
0

您肯定需要链接已编译的 X11 库。链接器抱怨没有为被引用的符号找到目标代码。这不是编译器错误,因此仅包含正确的标头不足以完全构建可执行文件。

于 2012-07-02T23:07:24.733 回答