通过引用传递变量时出现“未定义的引用”错误

时间:2013-09-01 21:39:07

标签: c++ eclipse gcc

我对C ++很新,但这件事让我感到困惑的是任何逻辑。我的代码如下:

#include "stdlib.h"
#include "syslog.h"
#include "unistd.h"
#include "sys/stat.h"
#include "X11/Xlib.h"
#include "cstdio"

void process();
void startTracker();

Display *display;
Window rootWindow;
XEvent xevent;

我包含了Xlib标头,如果我点击Eclipse中的成员函数,它会导航到定义。

int main(int argc, char *argv[])
{
    // set logging up
    openlog("unison", LOG_CONS|LOG_PID|LOG_NDELAY, LOG_LOCAL1);

    syslog(LOG_NOTICE, "Starting Unison Handler");

    pid_t pid, sid;

    pid = fork();

    // fork failed
    if (pid < 0) {
        exit(EXIT_FAILURE);
    }

    if (pid > 0) {
        exit(EXIT_SUCCESS);
    }

    umask(0);

    sid = setsid();
    if (sid < 0) {
        exit(EXIT_FAILURE);
    }

    if (chdir("/") < 0) {
        exit(EXIT_FAILURE);
    }

    close(STDIN_FILENO);
    close(STDOUT_FILENO);
    close(STDERR_FILENO);

    startTracker();

    while (true) {
        process();
    }

    closelog();
    return(EXIT_SUCCESS);
}

然后我为输入选择分配变量

void startTracker() {
    display = XOpenDisplay(0);
    rootWindow = XRootWindow(display, 0);
    XSelectInput(display, rootWindow, PointerMotionMask);

}

void process()
{

...但是当我在这里添加&amp;事件时......

    XNextEvent(display, &xevent);
    switch (xevent.type) {
        case MotionNotify:
            syslog(
                    LOG_NOTICE,
                    "Mouse position is %dx%d",
                    xevent.xmotion.x_root, xevent.xmotion.y_root
            );
    }
}

......整个事情崩溃了。

由于某种原因,将xevent作为引用传递掉了整个Xlib头并给了我这个:

00:16:15 **** Incremental Build of configuration Debug for project unisond ****
make all 
Building file: ../unisond.cpp
Invoking: GCC C++ Compiler
g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"unisond.d" -MT"unisond.d" -o "unisond.o" "../unisond.cpp"
Finished building: ../unisond.cpp

Building target: unisond
Invoking: GCC C++ Linker
g++  -o "unisond"  ./unisond.o   
./unisond.o: In function `startTracker()':
/home/ancarius/workspace/unisond/Debug/../unisond.cpp:97: undefined reference to `XOpenDisplay'
/home/ancarius/workspace/unisond/Debug/../unisond.cpp:98: undefined reference to `XRootWindow'
/home/ancarius/workspace/unisond/Debug/../unisond.cpp:99: undefined reference to `XSelectInput'
./unisond.o: In function `process()':
/home/ancarius/workspace/unisond/Debug/../unisond.cpp:105: undefined reference to `XNextEvent'
collect2: error: ld returned 1 exit status
make: *** [unisond] Error 1

00:16:15 Build Finished (took 159ms)

冒着被投票的风险,有人可以解释一下我做错了什么吗?我已经尝试了所有我能想到但没有运气的东西。

1 个答案:

答案 0 :(得分:4)

看起来您缺少用于链接的X11库。

-lX11添加到g ++调用中。

This提供了所需的步骤。

  

右键单击Project Folder&gt;性状&gt; C / C ++ Build&gt;设置&gt; GCC C ++链接器&gt;图书馆&gt;添加“X11”