Is there possible to change size of static TLS block in .NET project?
The issue with loading big size libcef.so (1.4 Gb) on CSharp project side. I’ve got exception like “Can’t allocate memory on static TLS block”. I tried to use LD_PRELOAD, but has no effect. Changing of variable glibc.rtld.optional_static_tls and add compile options -ftls-model=global-dynamic, -fPIC in CMake has no effect too. On Windows 10 x64 the project is working fine. If i trying to load libcef.so from C++ project on Linux is working too.