mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 07:48:18 +00:00
python: properly load supporting DLLs in dependency order. this fixes issue #208
This commit is contained in:
parent
298a942dd1
commit
359055b4ff
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ if not hasattr(sys.modules[__name__], '__file__'):
|
|||
_lib_path = split(__file__)[0]
|
||||
_all_libs = ('unicorn.dll', 'libunicorn.so', 'libunicorn.dylib')
|
||||
# Windows DLL in dependency order
|
||||
_all_windows_dlls = ("libwinpthread-1.dll", "libgcc_s_seh-1.dll", "libgcc_s_dw2-1.dll", "libintl-8.dll", "libglib-2.0-0.dll", "libiconv-2.dll")
|
||||
_all_windows_dlls = ("libwinpthread-1.dll", "libgcc_s_seh-1.dll", "libgcc_s_dw2-1.dll", "libiconv-2.dll", "libintl-8.dll", "libglib-2.0-0.dll")
|
||||
_found = False
|
||||
|
||||
for _lib in _all_libs:
|
||||
|
|
Loading…
Reference in a new issue