mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 08:38:25 +00:00
Merge branch 'master' into noglib
This commit is contained in:
commit
1d85d1763d
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ def _load_lib(path):
|
||||||
if sys.platform in ('win32', 'cygwin'):
|
if sys.platform in ('win32', 'cygwin'):
|
||||||
_load_win_support(path)
|
_load_win_support(path)
|
||||||
|
|
||||||
lib_file = os.path.join(path, _lib[sys.platform])
|
lib_file = os.path.join(path, _lib.get(sys.platform, 'libunicorn.so'))
|
||||||
#print('Trying to load shared library', lib_file)
|
#print('Trying to load shared library', lib_file)
|
||||||
dll = ctypes.cdll.LoadLibrary(lib_file)
|
dll = ctypes.cdll.LoadLibrary(lib_file)
|
||||||
#print('SUCCESS')
|
#print('SUCCESS')
|
||||||
|
|
Loading…
Reference in a new issue