Files
distant-horizons-sharded/relocate_natives/process.py
T
2025-01-21 00:33:43 +05:00

9 lines
209 B
Python

import sys
import lief
# print("imported", file=sys.stderr)
binary = lief.parse(sys.stdin.buffer.read())
# print([func.name for func in binary.exported_functions], file=sys.stderr)
binary.write(sys.argv[1])