-
Hello, I'm trying to get an APE binary to run on ESXi and running into some issues with the default stack/heap addresses. Most linux binaries just work with ESX, but the APE ones are failing because the virtual address space is somewhat limited. I've changed the stack address via Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
If you need your APE executables loaded at a number greater than the 4gb mark, I'm not sure if it's possible. There's integer overflow bugs in the GNU BFD Linker that prevent us from doing all our fancy linker relocation hacks. Needless to say, once the executable is loaded into memory, it can remap itself to a higher address, with some heroics. |
Beta Was this translation helpful? Give feedback.
If you need your APE executables loaded at a number greater than the 4gb mark, I'm not sure if it's possible. There's integer overflow bugs in the GNU BFD Linker that prevent us from doing all our fancy linker relocation hacks. Needless to say, once the executable is loaded into memory, it can remap itself to a higher address, with some heroics.