trying to make it work without -rdynamic

This commit is contained in:
2025-12-25 16:54:27 +02:00
parent fb5e607f88
commit 352b3b1fc8
22 changed files with 452 additions and 266 deletions

View File

@@ -173,7 +173,7 @@ PLATFORM_INTERFACE void Plat_Backtrace( void )
PLATFORM_INTERFACE void *Plat_LoadLibrary( const char *psz )
{
#ifdef __linux__
void *lib = dlopen(psz, RTLD_GLOBAL | RTLD_NOW);
void *lib = dlopen(psz, RTLD_NOW);
if (!lib)
V_printf("Failed to open %s\n\t%s\n", psz, dlerror());
return lib;