Apparently there is a bug in GLibC 2.41 that is causing 32 bit ELF libraries to crash with the error
Code: Select all
Cannot enable executable stack as shared object requires: Invalid ArgumentTwo solutions I've found:
1) Install execstack and run 'execstack -c library.so' on the offending library, replacing library.so with whatever library is being problematic, usually engine_*.so, with * being what architecture is running. i486, i686 or amd.
2) Export 'GLIBC_TUNABLES=glibc.rtld.execstack=2 %command%' If in the command line, export it normally, if in Steam, put it in the launch options.