Fix python module .so file loading error

Fixed error: OSError: /SOMEPATH/_distorm3.so: undefined symbol: operands_set_tsi

Issue introduced in commit 7745a7c9fca40b9e7acb26e162f4e5546496710c
1 file changed
tree: 7c74d13d0f5d04b737b91d4b3a205912b1fac5db
  1. .github/
  2. disOps/
  3. examples/
  4. include/
  5. make/
  6. python/
  7. src/
  8. test-deps/
  9. .gitignore
  10. COPYING
  11. MANIFEST.in
  12. README.md
  13. setup.cfg
  14. setup.py
README.md

Powerful Disassembler Library For x86/AMD64

Welcome to the diStorm3 binary stream disassembler library project.

diStorm3 is really a decomposer, which means it takes an instruction and returns a binary structure which describes it rather than static text, which is great for advanced binary code analysis.

diStorm3 is super lightweight (~45KB), ultra fast and easy to use (a single API)!

For a tested and light hooking library see the https://github.com/gdabah/distormx project.

“We benchmarked five popular open-source disassembly libraries and chose diStorm3, which had the best performance (and furthermore, has complete 64-bit support).”, July 2014, Quoting David Williams-King in his Thesis about Binary Shuffling.

diStorm3 is licensed under BSD!

Installing diStorm3 - Clone repo locally and then ‘python setup.py install’ or alternatively: ‘python -m pip install distorm3’.

For Windows, use these pre-built installers in https://pypi.org/project/distorm3/#files.

RTFM, the wiki has plenty of info.