Replies: 2 comments 3 replies
-
This is a sanity check to make sure that in the event the resource section needs to be made bigger, all sections following the resources will survive being moved to a higher address. If you compile with MSVC, the resource section will only be followed by relocations, which can be moved arbitrarily. The tool will recognize the reloc section and won't trigger the exception. No extra flags are needed. I'm guessing you're compiling with clang? Can you share the binary? If not, what sections follow the resource section in your case? You can either get rid of those immovable sections, or, if they're movable, we can update the tool to support them. |
Beta Was this translation helpful? Give feedback.
-
@gmikhaile @avakar I'm trying to set on a exe file, created with "dotnet publish". Is that possible ? |
Beta Was this translation helpful? Give feedback.
-
When trying to edit a dll the exception raises up:
Maybe there is some flags to make dll safely resizable?
Beta Was this translation helpful? Give feedback.
All reactions