mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
c5680b2120
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
7 lines
109 B
Python
Executable File
7 lines
109 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from revng_merge_dynamic.__main__ import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|