base: Convert ELF .text size check assertion to a warning
The ELF loader currently has an assertion that checks if the size of a loaded .text secion is non-zero. This is useful in the general case as an empty text section normally indicates that there is something strange with the ELF file. However, asserting isn't very useful. This changeset converts the assert into a warning that tells the user that something strange is happening. Change-Id: I313e17847b50a0eca00f6bd00a54c610d626c0f0 Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com> Reviewed-by: Curtis Dunham <curtis.dunham@arm.com>
This commit is contained in:
parent
f4cc3a4d20
commit
30cae3c213
1 changed files with 3 additions and 1 deletions
|
@ -383,7 +383,9 @@ ElfObject::ElfObject(const std::string &_filename, size_t _len,
|
|||
}
|
||||
|
||||
// should have found at least one loadable segment
|
||||
assert(text.size != 0);
|
||||
warn_if(text.size != 0,
|
||||
"Empty .text segment in '%s'. ELF file corrupted?\n",
|
||||
filename);
|
||||
|
||||
DPRINTFR(Loader, "text: 0x%x %d\ndata: 0x%x %d\nbss: 0x%x %d\n",
|
||||
text.baseAddr, text.size, data.baseAddr, data.size,
|
||||
|
|
Loading…
Reference in a new issue