Dear Debian Mailing List, I am working on a project which requires libc6. When I build this project on my laptop, the project works fine as it builds for the libc6 on my laptop, however, when I build it in Github actions, the project fails to run, due to Debian not having a libc6 version as low as GLibC 2.32. I've tried to compile my project to musl, statically, and even just embedding the correct version of libc6 in the lib folder that I set my rpath to. I've either had segfaults or failed builds. I would like to ask how I can either support an older version of libc6 or upgrade any customers' systems to the correct version. I'd also happily accept not requiring libc6 at all.
How may I achieve this? Thank You, Alexis ```bash ./project: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by ./project) ./project: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by ./project) ./project: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by ./project) ./project: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by lib/libSDL2-2.0.so.0) ./project: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by lib/libSDL2-2.0.so.0) ./project: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by lib/libSDL2-2.0.so.0) ./project: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by lib/libfreetype.so.6) ```