You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--asm option now prints the assembly for each module of an IR separately
--version-script now prints a separate version script for each module
of an IR
--module option deprecated
Binaries printed from a multi-module IR are linked against other binaries from the
same IR whenever possible
Use elfStackExec and elfStackSize auxdata to generate appropriate linker flags.
Requires gtirb >=2.0.0
Set entrypoint in ELF files to _start symbol even if the symbol is not GLOBAL. Fixes segfaults in rewritten binaries with non-global _start
symbols.
Fix segfault if elfDynamicInit or elfDynamicFini auxdata do not refer
to a CodeBlock.
Use function boundaries and the functionNames auxdata to print PROC and ENDP directives in PE binaries.
If the functionNames auxdata is not present, no PROC and ENDP directives will be printed.
Use function boundaries and the functionNames auxdata to print .size
directives for FUNC and GNU_IFUNC symbols in ELF binaries associated to functions.
If the functionNames auxdata is not present, no .size directives for functions will be printed.
Print .size directives for TLS symbols in ELF binaries.
Deprecate the PrettyPrinterBase methods: getContainerFunctionName, getFunctionName, isFunctionEntry, and isFunctionLastBlock; and
the attributes: functionEntry, and functionLastBlock.