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
switch(ehdr->e_type) {
case ET_EXEC:
printf("WARNING: The ELf type is that of an executable. (%s)\n", objFileName);
break;
case ET_REL:
printf("SUCCESS: The ELF type is that of an relocatable. (%s)\n", objFileName);
break;
Does the ET_DYN case require a different approach? Or is it simply not possible to do it?
The text was updated successfully, but these errors were encountered:
tuxillo
changed the title
Changing ET_DYN bojects?
Changing ET_DYN objects?
Apr 1, 2020
I've been doing a bit more research but I'm suspecting this is not going to be possible. Apparently those symbols are hashed somewhere and referenced in the .gnu.version section.
In src/mod-elf-symbol.c:294 there is a switch:
Does the ET_DYN case require a different approach? Or is it simply not possible to do it?
The text was updated successfully, but these errors were encountered: