Files
revng-revng/scripts/revng-merge-dynamic
Filippo Cremonese c5680b2120 Refactor revng-merge-dynamic
Notable changes:

- Split in multiple files the existing revng-merge-dynamic script
- Add the option to merge additional LOAD segments in the resulting
  binary
- Align the new .dynstr to a 4 byte boundary
- Ensure the last verneed entry is marked as such (vn_next == 0)
- Ensure LOAD PHDRs are listed in ascending order,
  as mandated by ELF spec
2021-01-23 00:41:52 +01:00

7 lines
109 B
Python
Executable File

#!/usr/bin/env python3
from revng_merge_dynamic.__main__ import main
if __name__ == "__main__":
main()