I am currently running the latest version of Code-blocks in Ubuntu 11.04. I have GTK+2, and 3 developer libraries fully installed (and working), and presumably have x11 installed. The header files are there.

However, a simple code will not compile using x11 coding.

#include "X11/Xlib.h"

int main() {
    Display *display = XOpenDisplay(0);
    Window root = DefaultRootWindow(display);
    XWarpPointer(display, None, root, 0, 0, 0, 0, 100, 100);
    XCloseDisplay(display);
    return 0;
}

This give me the readout of:

obj/Release/main.o||In function `main':|

undefined reference to `XOpenDisplay'

undefined reference to `XWarpPointer'

undefined reference to `XCloseDisplay'

|=== Build finished: 3 errors, 0 warnings ===|

I've tried reading multiple webpages of 'linking' x11, I only find headerfiles, and not the file type asked by the linker within the compiler (That's the wrong term for that.. it's not a compiler.. it's something else.. I know. Apologies)

link|improve this question

60% accept rate
feedback

3 Answers

up vote 3 down vote accepted

I don't know what Code Blocks is, but for a normal compile/link process, you need to specify -lX11 to link with libX11.so for the Xlib functions.

link|improve this answer
Thank you so much. I found where to put this in 'other linker settings' as written command line parameter, and worked perfectly. Thank you! – Crosility Nov 6 '11 at 18:25
feedback

Thanks! I just had the same problem. To spell it out:

Settings > Compiler and Debugger > Linker settings > Other linker options > "-lX11"

For the record 'codelite' got it right all by itself.

link|improve this answer
feedback

In CodeBlocks you can just set in the project options libraries to link against, setting -lX11 in the compiler settings will make every program you compile with codeblocks link against X11.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.