mirror of
https://github.com/yuzu-mirror/unicorn.git
synced 2026-04-06 15:04:27 +00:00
Remove version number from shared library filename packaged with python bindings
This commit is contained in:
parent
6c042410ae
commit
edd49cd21c
2 changed files with 4 additions and 5 deletions
|
|
@ -18,11 +18,11 @@ if _python2:
|
|||
range = xrange
|
||||
|
||||
if sys.platform == 'darwin':
|
||||
_lib = "libunicorn.1.dylib"
|
||||
_lib = "libunicorn.dylib"
|
||||
elif sys.platform in ('win32', 'cygwin'):
|
||||
_lib = "unicorn.dll"
|
||||
else:
|
||||
_lib = "libunicorn.so.1"
|
||||
_lib = "libunicorn.so"
|
||||
|
||||
# Windows DLL in dependency order
|
||||
_all_windows_dlls = (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue