We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87df11e commit d16289fCopy full SHA for d16289f
bindings/python/unicorn/unicorn_py3/unicorn.py
@@ -332,11 +332,12 @@ def debug() -> str:
332
('tricore', uc.UC_ARCH_TRICORE)
333
)
334
335
- all_archs = ''.join(f'-{name}' for name, atype in archs if uc_arch_supported(atype))
+ all_archs = '-'.join(f'{name}' for name, atype in archs if uc_arch_supported(atype))
336
lib_maj, lib_min, _ = uc_version()
337
bnd_maj, bnd_min, _ = version_bind()
338
+ lib_path = str(uclib)
339
- return f'python-{all_archs}-c{lib_maj}.{lib_min}-b{bnd_maj}.{bnd_min}'
340
+ return f'python-{all_archs}-c{lib_maj}.{lib_min}-b{bnd_maj}.{bnd_min}-{lib_path}'
341
342
343
if TYPE_CHECKING:
0 commit comments