You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#include <GL/glxew.h>
int main()
{
auto x = GLXEW_SGIX_fbconfig;
}
it will compile under standard GLEW,
22:15 a4:~ $ g++ -Wall -c x.cpp
x.cpp: In function ‘int main()’:
x.cpp:4:14: warning: unused variable ‘x’ [-Wunused-variable]
4 | auto x = GLXEW_SGIX_fbconfig;
| ^
22:15 a4:~ $ g++ x.cpp -lGLEW
22:15 a4:~ $
but if GLEW is built with EGL instead, the build fails at the link stage.
22:14 a4:~ $ g++ -Wall -c x.cpp
x.cpp: In function ‘int main()’:
x.cpp:4:14: warning: unused variable ‘x’ [-Wunused-variable]
4 | auto x = GLXEW_SGIX_fbconfig;
| ^
22:14 a4:~ $ g++ x.o -lGLEW
/usr/lib64/gcc/x86_64-suse-linux/15/../../../../x86_64-suse-linux/bin/ld: x.o: in function `main':
x.cpp:(.text+0x5): undefined reference to `__GLXEW_SGIX_fbconfig'
collect2: error: ld returned 1 exit status
What should ideally happen instead is that the compilation already fails. Possible options include: (1.) not offering OpenGL-specific symbol anmes in glxew.h when GLEW was built with EGL, (2.) not shipping glxew.h at all.
Or am I missing something and x.cpp should have tested for some macro to see whether OpenGL/EGL is in use in the first place?
The text was updated successfully, but these errors were encountered:
GLEW doesn't have an opinion about WGL, GLX or EGL.
The conundrum on Linux is that it is sometimes clearly GLX, sometimes clearly EGL, sometimes not clear at all.
Version: 2.2.0 (tar.gz)
Given this source file:
it will compile under standard GLEW,
but if GLEW is built with EGL instead, the build fails at the link stage.
What should ideally happen instead is that the compilation already fails. Possible options include: (1.) not offering OpenGL-specific symbol anmes in glxew.h when GLEW was built with EGL, (2.) not shipping glxew.h at all.
Or am I missing something and x.cpp should have tested for some macro to see whether OpenGL/EGL is in use in the first place?
The text was updated successfully, but these errors were encountered: