尝试使用MSYS制作GLEW时,出现以下错误:
In file included from src/glew.c:37:0:
include/GL/glxew.h:97:22: fatal error: X11/Xlib.h: No such file or directory
#include <X11/Xlib.h>
compilation terminated.
make: *** [tmp/mingw/default/shared/glew.o] Error 1
为什么?
最佳答案
MSYS没有X11。这是* M *最小系统。您要Cygwin。
或者,如果您想使Win32本身不使用Cygwin,则请查看Xming。
关于c++ - 使用MSYS构建GLEW:找不到X11,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20498168/