Add "mingw-w64-x86_64-angleproject" to properly retrieve system EGL libs #1311
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
@onox, @charlie5
I tested this on Windows, and as it stands, the
mingw-w64-x86_64-mesa
package does not provide the necessary EGL libraries, so linking fails. To resolve this, I had to install themingw-w64-x86_64-angleproject
package, which includeslibEGL
and related libraries. Could you confirm if there was another intended way to provide these libraries?@mosteo I manually added the following entry:
to
C:\Users\olivi\AppData\Local\alire\settings\indexes\community\repo\index\li\libegl\libegl-external.toml
, but it didn’t trigger the installation ofmingw-w64-x86_64-angleproject
(runningalr update
had no effect). I had to install it manually using the MSYS2 console.Because of this, I’m unsure if my proposed changes are the correct way to address the issue or if there’s a different intended process for triggering the installation locally.
Thank you,
Olivier