Code: Alles auswählen
#include <stdio.h>
#include <X11/Xlib.h>
Display *display;
Window window;
int x, y;
unsigned int width, height, depth;
unsigned long fg, bg;
main()
{
display = XOpenDisplay(NULL);
}
wie sage ich dem linker, daß er die zugehörige bibliothek einbinden soll?$ gcc -c -g ./test.c -o ./test.o
$ gcc -o ./test ./test.o
./test.o(.text+0xc): In function `main':
./test.c:12: undefined reference to `XOpenDisplay'
collect2: ld returned 1 exit status
ich habe es schon mit
versucht. bitte hilfe!$ gcc -lX11 -o ./test ./test.o
/usr/bin/ld: cannot find -lX11
collect2: ld returned 1 exit status