-
Hello community.- I have asked this question in the past but so far no one could anwer it. I have a game named engine and i want to distribute to other Linux distributions, when they execute the game this error is shown |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can try to compile with Musl toolchain or fully |
Beta Was this translation helpful? Give feedback.
You can try to compile with
-static-libgcc
and-static-libstdc++
. The simplest solution would be to just use some old LTS Ubuntu or similar with some older Glibc and compile it there.Musl toolchain or fully
--static
Glibc build would be hard or impossible because of OpenGL, maybe only with software rendering.