Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Programs may fail to link to libGLEW #431

Open
jengelh opened this issue Mar 28, 2025 · 4 comments
Open

Programs may fail to link to libGLEW #431

jengelh opened this issue Mar 28, 2025 · 4 comments
Labels

Comments

@jengelh
Copy link

jengelh commented Mar 28, 2025

Version: 2.2.0 (tar.gz)

Given this source file:

#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?

@nigels-com
Copy link
Owner

#include <GL/glxew.h>

The code compiled for GLX GLEW, but would not link with EGL GLEW.
As expected and intended.

@jengelh
Copy link
Author

jengelh commented Mar 29, 2025

But user code has no way to distinguish a GLX-based glew from a EGL-based glew (and e.g. aborting ./configure in the user code early on).

@nigels-com
Copy link
Owner

nigels-com commented Mar 29, 2025

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.

@nigels-com
Copy link
Owner

Perhaps a problem for FindGLEW.
Looking at FindOpenGL what to do if both OpenGL::GLX and OpenGL::EGL are detected? Assume GLX?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants