diff options
Diffstat (limited to 'frontend/main.c')
-rw-r--r-- | frontend/main.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/frontend/main.c b/frontend/main.c index b3a56c6..23ed7b1 100644 --- a/frontend/main.c +++ b/frontend/main.c @@ -432,6 +432,13 @@ void *SysLoadLibrary(const char *lib) { return (void *)(long)(PLUGIN_DL_BASE + builtin_plugin_ids[i]); } +#if defined(__x86_64__) || defined(__i386__) + // convenience hack + char name[MAXPATHLEN]; + snprintf(name, sizeof(name), "%s.x86", lib); + lib = name; +#endif + return dlopen(lib, RTLD_NOW); } |