search for: crt_sym

Displaying 3 results from an estimated 3 matches for "crt_sym".

2012 Apr 17
2
[GIT PULL] elflink warning fixes and auto extension support
...ff --git a/com32/lib/sys/module/common.c b/com32/lib/sys/module/common.c index e26163f..eeb2607 100644 --- a/com32/lib/sys/module/common.c +++ b/com32/lib/sys/module/common.c @@ -322,7 +322,7 @@ int check_symbols(struct elf_module *module) for(i = 1; i < module->symtable_size; i++) { - crt_sym = (Elf32_Sym*)(module->sym_table + i * module->syment_size); + crt_sym = symbol_get_entry(module, i); crt_name = module->str_table + crt_sym->st_name; strong_count = 0; @@ -434,7 +434,7 @@ static Elf32_Sym *module_find_symbol_sysv(const char *name, struct elf_module *m wh...
2012 Aug 14
1
[GIT PULL] elflink fixes
...@ -57,7 +57,7 @@ void print_elf_symbols(struct elf_module *module) { } #endif //ELF_DEBUG -static FILE *findpath(char *name) +FILE *findpath(char *name) { char path[FILENAME_MAX]; FILE *f; @@ -321,7 +321,7 @@ int check_symbols(struct elf_module *module) crt_name = module->str_table + crt_sym->st_name; strong_count = 0; - weak_count = 0; + weak_count = (ELF32_ST_BIND(crt_sym->st_info) == STB_WEAK); for_each_module(crt_module) { @@ -345,6 +345,14 @@ int check_symbols(struct elf_module *module) if (crt_sym->st_shndx == SHN_UNDEF) { // We have an undefined...
2012 Jul 16
5
[PATCH 0/5] Deleting __intcall() from Syslinux
From: Matt Fleming <matt.fleming at intel.com> Since we can't use __intcall() for EFI, and since we can now have the ELF module code resolve all our symbols at runtime, we should delete as many references to __intcall() as possible and just access the symbols directly. The most interesting patch is the support for weak symbols. We need to be able to reference derivative-specific