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
Under Emscripten, EGL does not require any libraries to be linked in.
The FindEGL module already has a partial concession of this since
3b0bf71, but it still searches for the
library and, crucially, tries to link it when performing the compile
check if found. If the system you're on has a libEGL.so installed, this
will end up trying to link that into the build, which will obviously
fail because you can't like a native shared object into a WebAssembly
build.
This commit removes the library part entirely under Emscripten, making
the find module no longer go searching for it pointlessly and not
attempt to link anything when performing the compile check.
0 commit comments