Mod-ELF-Symbol icon indicating copy to clipboard operation
Mod-ELF-Symbol copied to clipboard

Changing ET_DYN objects?

Open tuxillo opened this issue 4 years ago • 2 comments

In src/mod-elf-symbol.c:294 there is a switch:

  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?

tuxillo avatar Apr 01 '20 23:04 tuxillo