This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
When I link together object files, the resulting ELF executable has (only) the following LOAD segment: > LOAD off 0x00000000 vaddr 0x00008000 paddr 0x00008000 align 2**15 > filesz 0x000010f0 memsz 0x000010f0 flags rwx The linker ld combined all sections into one rwx segment, instead of separating writable and executable parts. [...] read more