Hello, I am trying to build my code on arch linux with an amd igpu.
exe.linkSystemLibrary("opengl32");
This works fine on windows, however on linux I get the following:
error: error: unable to find dynamic system library 'opengl32' using strategy 'paths_first'. searched paths:
/usr/local/lib64/libopengl32.so
/usr/local/lib64/libopengl32.a
/usr/local/lib/libopengl32.so
/usr/local/lib/libopengl32.a
/usr/lib/x86_64-linux-gnu/libopengl32.so
/usr/lib/x86_64-linux-gnu/libopengl32.a
/lib64/libopengl32.so
/lib64/libopengl32.a
/lib/libopengl32.so
/lib/libopengl32.a
/usr/lib64/libopengl32.so
/usr/lib64/libopengl32.a
/usr/lib/libopengl32.so
/usr/lib/libopengl32.a
/lib/x86_64-linux-gnu/libopengl32.so
/lib/x86_64-linux-gnu/libopengl32.a
I tried looking for repos which link agaist opengl but did not find anything helpful.
Any help is appreciated.