search for: shndx

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

2019 Mar 19
2
AArch64 tests failing
...-str.test LLVM :: tools/gold/X86/comdat.ll LLVM :: tools/gold/X86/visibility.ll LLVM :: tools/llvm-objcopy/ELF/add-section-remove.test LLVM :: tools/llvm-objcopy/ELF/add-section.test LLVM :: tools/llvm-objcopy/ELF/armexidx-link.test LLVM :: tools/llvm-objcopy/ELF/auto-remove-shndx.test LLVM :: tools/llvm-objcopy/ELF/binary-first-seg-offset-zero.test LLVM :: tools/llvm-objcopy/ELF/binary-output-empty.test LLVM :: tools/llvm-objcopy/ELF/binary-remove-all-but-one.test LLVM :: tools/llvm-objcopy/ELF/binary-remove-end.test LLVM :: tools/llvm-objcopy/ELF/binary...
1999 Jan 20
1
pow__ii
> R code works but the shared objects built from fortran code do not find > the appropriate libs with functions like __pow_ii or __epx at runtime. I used to have endless trouble with __pow_ii which as I recall could be be fixed by the correct incantation of the mix of compiler libraries and LD_LIBRARY_PATH. It seemed to be extremely sensitive and never easy to get right. The problem is
2015 Oct 10
3
[PATCH] Extend Multiboot1 with support for ELF64 file format
...GH | MAP_NOPAD); + if (!addr) { + error("Failed to map symbol table\n"); + return NULL; + } + + mbinfo.flags |= MB_INFO_ELF_SHDR; + mbinfo.syms.e.addr = addr; + mbinfo.syms.e.num = eh64->e_shnum; + mbinfo.syms.e.size = eh64->e_shentsize; + mbinfo.syms.e.shndx = eh64->e_shstrndx; + + for (i = 0; i < eh64->e_shnum; i++) { + addr_t align; + + if (!sh64[i].sh_size) + continue; /* Empty section */ + if (sh64[i].sh_flags & SHF_ALLOC) + continue; /* SHF_ALLOC sections should have PHDRs */ + + align = sh64[i].sh_addralign ? sh64[i...