I use CodeBlocks in Mac to compile my source code:

#include <X11/Xlib.h>

Display *display;

int main()
{
  display = XOpenDisplay(NULL);
  XCloseDisplay(display);
  return 0;
}

Compiling the source code is successfull, but linking to X11 is not successfull. How to I solve this problem? Where is libX11 in Mac?

Thanks.

link|improve this question

80% accept rate
It should be in /usr/X11R6/lib/. – Bavarious Apr 30 '11 at 10:11
feedback

1 Answer

As Bavarious noted, you'll be looking in /usr/X11/lib (and OS X 10.6.8 uses a symlink to make /usr/X11R6 an option as well). I only used CodeBlocks once, so I couldn't tell you what it requires you do to pass

-L/usr/X11/lib

to gcc.

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.