elf
What does "COM" means in the Ndx column of the .symtab section?
add2.c: int counter=0; int a=0; int b; int c; int add(int a, int b) { return a+b; } compilation: gcc -c add2.c -o add2.o[详细]
2023-01-24 10:12 分类:问答ELF file TLS and LOAD program sections
int i; int main() { return i; } After -static compile readelf -l shows program headers from elf: Elf file type is EXEC (Executable file)[详细]
2023-01-24 04:56 分类:问答seg fault when running arm-elf-gcc compiled code
Using MacPorts i have just installed arm-elf-gcc on to my MacBook Pro. This worked flawlessly and all seems to run fine.[详细]
2023-01-23 23:57 分类:问答Why would running 32 bit executeable on 64 bit FreeBSD v8.1 give ELF error?
I have a 32 bit build on FreeBSD v8.1 and attempt to run it on a 64 bit FreeBSD v8.1 and it fails: [si-fbsd8x64b ~] flume --version[详细]
2023-01-23 13:22 分类:问答Patching code/symbols into a dynamic-linked ELF binary
Suppose I have an ELF binary that\'s dynamic linked, and I want to override/redirect certain library calls. I know I can do this with LD_PRELOAD, but I want a solution that\'s permanent in the binary,[详细]
2023-01-21 08:35 分类:问答what's the ELF object file size limitation on 64bit platform?
Assume the x86 64 and linux platform. If you look into the ELF header, the offset are all 64bit. So it\'s easy to create an object file larger than 4G with relocatoin R_X86_64_64. This means a stati[详细]
2023-01-20 23:51 分类:问答How to extract only the raw contents of an ELF section?
I\'ve tried the following, but the resulting file is still an ELF and not purely the section content.[详细]
2023-01-20 11:16 分类:问答How to import a function from libc6 into an ELF executable?
I am creating an i386 ELF executable that needs to import a function from libc6. (It\'s printf, by the way.)[详细]
2023-01-18 02:44 分类:问答What sections are required for a usable ELF executable?
I\'m creating an ELF executable file and I need to know what sections are required by the operating system in order to开发者_Python百科 load and execute it.[详细]
2023-01-18 01:36 分类:问答How can I get the architecture of a '.a' file?
I have a .a file from which I want to get architecture information. Running file myFile.a results in file.a: current ar archive. How can I get more information on what archite开发者_开发问答cture the[详细]
2023-01-17 03:21 分类:问答
加载中,请稍侯......