boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

load-obj-accept-sht-note.before (461B)


      1         /* ignore sections types we do not handle */
      2         if (sh->sh_type != SHT_PROGBITS &&
      3             sh->sh_type != SHT_RELX &&
      4 #ifdef TCC_ARM_EABI
      5             sh->sh_type != SHT_ARM_EXIDX &&
      6 #endif
      7             sh->sh_type != SHT_NOBITS &&
      8             sh->sh_type != SHT_PREINIT_ARRAY &&
      9             sh->sh_type != SHT_INIT_ARRAY &&
     10             sh->sh_type != SHT_FINI_ARRAY &&
     11             strcmp(sh_name, ".stabstr")
     12             )
     13             continue;