-1
votes
0answers
40 views

Identifying patterns for global memory addresses

The following program int32_t g_3, g_8 = 0; void main() { int16_t l_2; for (l_2 = 0; l_2 >= -30; l_2--) if (g_3) { int32_t *l_17 = &g_8; *l_17 = 0; } } when compiled with gcc for ...
1
vote
1answer
32 views

How do you get the start and end addresses of a custom ELF section in C (gcc)?

I've seen the usage of of the gcc __section__ attribute (especially in the Linux kernel) to collect data (usually function pointers) into custom ELF sections. How is the "stuff" that gets put in those ...
3
votes
2answers
44 views

Does gcc have any options to add version info in ELF binary file?

I mean whether gcc can insert some source code version infor into ELF binary as section or something similar. I do not want to change my source file, but add some info with gcc option in Makefile.
1
vote
1answer
61 views

How to genernate position-dependent code for executable file when linking with shared library in gcc?

I'm learning ELF.I want to find the difference of elf format between position-dependent executable file and position-independent executable file when linking shared library. But I can't genernate ...
0
votes
2answers
46 views

No .debug_str found in ELF file?

Im doing a project that works with ELF files. Right now Im using the following as a sample input - class C { public: C(); C(int x, int y); int getX(); private: int x; int y; }; ...
1
vote
1answer
31 views

syscall return 07 when call _exit

I am looking a paper Size Is EverythingSize Is Everything with kernel 3.8.4 x64 nasm gcc-4.7.2 fedora by type in moretiny.asm BITS 64 EXTERN _exit GLOBAL _start SECTION .text _start: push ...
0
votes
0answers
214 views

GCC arm-elf linker error: undefined reference to “strlen”, “malloc”, “strcpy”

I'm using GCC (CygWin) cross-compiling targeting an Arm7 processor. the problem is none of the standard library functions are available for my program. as I understand it, libc.a is the library i ...
1
vote
2answers
66 views

How to count static initializer in an ELF file?

I'm trying to count static initializers in a C++ file. Solution I already have (which used to work with gcc-4.4) is looking at size of the .ctors ELF section. After an upgrade to gcc-4.6, this seems ...
0
votes
1answer
47 views

Elf custom loader

What steps do i need to do in order to load an elf file and execute it without glibc(compile it with gcc by using -nostdlib attribute).
1
vote
2answers
52 views

Compilling and linking with a different versions of gcc on linux

I am planning to compile a static library (mylib.a) with gcc 4.7.1. I want to take the advantages of C++11, so -std=c++11 is used. The platform, where I compile this lib is x86_64 SLES 11 with ...
0
votes
2answers
203 views

understanding the __libc_init_array

I viewed the source code of __libc_init_array from http://newlib.sourcearchive.com/documentation/1.18.0/init_8c-source.html . But I don't quite understand what this function does. I know that these ...
3
votes
1answer
107 views

Removing entry from DYNAMIC section of elf file

I have 3rd party library A, that requires some library B. A is linked to binrary, which is linked with static version B. Therefore there's no need in dynamic version of B any more. A is not under ...
2
votes
2answers
216 views

How to get GCC to export ALL symbols to the output file

I am developing an operating system, and I need to load some modules BEFORE paging is set up. So since paging is not set up at this point I need to relocate all of the symbols in the program to there ...
4
votes
2answers
195 views

Build static ELF without libc using unistd.h from Linux headers

I'm interested in building a static ELF program without (g)libc, using unistd.h provided by the Linux headers. I've read through these articles/question which give a rough idea of what I'm trying to ...
2
votes
1answer
596 views

What do the .eh_frame and .eh_frame_hdr sections store, exactly?

I know that, when using languages that support exceptions, such as C++, additional information must be provided to the runtime environment that describes the call frames that much be unwound during ...
1
vote
1answer
174 views

arm-elf-gcc. No .gcda file created, program too big to fit in memory?

I was trying to do code coverage on a simple hello world program in C++. The target device is an arm processor and hence I am using GNU ARM toolchain. arm-elf-gcc -mcpu=arm7tdmi -O2 -g -c main.c -o ...
0
votes
0answers
216 views

arm-none-eabi-gdb 6.8 cannot correcly read the debug info from ELF

I have build the arm ELF by arm-none-eabi-gcc 4.6.2 with -gdwarf-2 -gstrict-dwarf (I know that gdb 6.8 cannot support DWARF-4) Here is the exact version I used. arm-none-eabi-gcc (GNU Tools for ARM ...
1
vote
2answers
73 views

What is meant by “dynamic tag” refered to in this text:

Copied from http://wiki.debian.org/Multiarch/LibraryPathOverview : any directory named in the (deprecated) DT_RPATH dynamic tag of the requesting object, or, recursively, any parent object (note ...
1
vote
1answer
707 views

What is __gmon_start__ symbol?

I'm compiling this code with gcc hello.c -o hello -O3 #include <stdio.h> int main(void) { printf("Hello world\n"); return 0; } when I list the relocations I get: test@southpark$ ...
2
votes
2answers
186 views

ELF Dynamic loader symbol lookup ordering

What is the search order for symbol lookup when resolving dynamic relocations? When resolving symbols for a shared library does the loader first search in the 'main executable' (to let the main ...
0
votes
0answers
59 views

Dynamic Loader Relocations

What the dynamic loader for Linux x86 32 bits does when it encounters the following types of relocation: 1) R_386_COPY; 2) R_386_GLOB_DAT and 3) R_386_JMP_SLOT ? The ELF Specification (with Intel ...
59
votes
2answers
2k views

Floating point exception ( SIGFPE ) on 'int main(){ return(0); }'

I am trying to build a simple C program for two different Linux environments. On one device the program runs fine, on the other device the program generates a floating point exception. The program ...
2
votes
1answer
160 views

Why is my binary much smaller than my object file?

I'm using GCC 4.7 to compile a large app that consists of only one C++ source file, so there's only one compilation unit, but it includes many long headers. The final optimized executable, myapp, is ...
2
votes
1answer
165 views

When is static data (.bss) allocated?

I have been looking into reducing the memory footprint of an application. Following on from a previous question: GDB - can I find large data elements in memory I have found and removed most of the ...
5
votes
2answers
825 views

How to get the size of a C function?

Suppose I have a function like below: # cat 003.c int foo(int a, int b) { return a+b; } And compile it like this: gcc -S 003.c The gets the following assembly result: .file "003.c" ...
1
vote
3answers
900 views

Can a running C program access its own symbol table?

I have a linux C program that handles request sent to a TCP socket (bound to a particular port). I want to be able to query the internal state of the C program via a request to that port, but I dont ...
0
votes
1answer
153 views

Get location of symbols in a.out file

This question does a great job explaining how to get the symbols (variables, functions, etc) of an elf file. Now that I have the symbols I will like to know on what location (module) they are. For ...
5
votes
1answer
914 views

Extract global variables from a.out file

Edit (updated question) I have a simple C program: // it is not important to know what the code does you may skip the code main.c #include <bsp.h> unsigned int AppCtr; unsigned ...
0
votes
0answers
113 views

how to modify the section name?

# cat tiny.S .global _start .extern _exit .section .text _start: pushl $4 call _exit _table: # as tiny.S -o tiny.o # gcc -nostartfiles tiny.o -o tiny # ./tiny # echo $? 4 # nm tiny.o U ...
1
vote
1answer
266 views

x86_64: Is it possible to “in-line substitute” PLT/GOT references?

I'm not sure what a good subject line for this question is, but here we go ... In order to force code locality / compactness for a critical section of code, I'm looking for a way to call a function ...
3
votes
1answer
1k views

Compile C program using dlopen and dlsym with -fPIC

I am having a problem about a wrong symbol resolution. My main program loads a shared library with dlopen and a symbol from it with dlsym. Both the program and the library are written in C. Library ...
6
votes
2answers
278 views

Example of executable stack in Linux (i386 architecture)

I found that when we use nested functions, GCC requires an executable stack for trampoline code. However, following code, when compiled using gcc doesn't show an executable stack. (I used execstack to ...
1
vote
2answers
231 views

Does appending arbitrary data to an ELF file violate the ELF spec?

I would like to add some information to an ELF file, but it ideally needs to be done in a way that a program can easily read this information without understanding ELF or using tools outside a normal ...
3
votes
2answers
335 views

program loading/execution

I'm a beginner in compilers but I'm very interested in learning about how a program is structured (the binary) and how it is read and loaded in memory for execution. What ebooks/books/tutorials do you ...
13
votes
3answers
9k views

How to install GCC from scratch with GMP, MPFR, MPC, ELF, without shared libraries?

How do I install GCC (the GNU Compiler Collection) from scratch using the current version, using the correct versions of dependencies, not using a package manager (like yum, rpm, apt, dpkg), and not ...
2
votes
1answer
699 views

missing symbols in valgrind stacktrace

I'm using valgrind to debug a binary which uses loadable libraries via dlopen. On debian stable the stacktrace does not contain symbols for calls inside the loadable lib. | | ->11.55% (114,688B) ...
2
votes
1answer
509 views

How to link elf static libs in llvm?

I have a lib (*.a) file, created with armcc in the elf format. There is no possibility to recompile it with llvm or gcc. (It's assembler written for armcc). Linking it with the gnu ld works fine on ...
1
vote
1answer
594 views

Embedding binary into elf with objcopy may cause alignment issues?

There have been a number of posts on stackoverflow and other places detailing how to embed binary blobs into elf binaries. Embedding binary blobs using gcc mingw and C/C++ with GCC: Statically add ...
3
votes
3answers
880 views

How can I make GCC compile the .text section as writable in an ELF binary?

I would like to be able to dynamically change the executable code within a library I am using. Essentially, I would like to dynamically NOP out certain functions if they are not needed. However, the ...
0
votes
0answers
227 views

Change output format in objdump --syms

I reckon there are two types of output for objdump --syms. One similar to nm, and the other made of parentheses and such (see http://linux.die.net/man/1/objdump). Is there any way to force the output ...
0
votes
1answer
204 views

how to understand a linker error

I'm trying to compile a dynamic library with an exotic mix of versions. First I'm cross-compiling for a ADM geode inside a robot, with a particular toolchain that uses gcc-4.3.3, and has its own ...
0
votes
3answers
1k views

How do I create ELF executables? [duplicate]

Possible Duplicate: Creating ELF instead of a.out When I use the command gcc hello.cpp, I end up with a.out. I read somewhere that a.out files are different from ELF executables. How do I ...
0
votes
1answer
191 views

symtab entries in a .o file of elf format

i am learning about linking.. i wrote the following code in c and made .o using gcc int f() { static int x=0; return x; } extern int z; int g() { static int x=10; return x; } static int y; static ...
2
votes
2answers
926 views

BASH: set multiple variables at once / performance

I am running bash scripts on windows using a msys and mingw environment. I have seem to have an issue where using a command like 'cut' or sed' causes an overhead for each call. I'm not sure if this ...
4
votes
1answer
133 views

Templates - huge object file causes linker crash

I have a source file which extensively makes use of templates. I also have in that file explicit instantiations of different templates ... a lot of them. This file is compiled as part of a static ...
8
votes
2answers
711 views

Forcing certain compiler-generated variables into specific ELF sections (with gcc)

I'll start with the ultimate question: In C with gcc, is it possible to get the value(s) of __func__ (or equivalently, __FUNCTION__) stored in a section other than .rodata (or wherever -mrodata= ...
5
votes
4answers
764 views

Why does the compiler version appear in my ELF executable?

I've recently compiled a simple hello world C program under Debian Linux using gcc: gcc -mtune=native -march=native -m32 -s -Wunused -O2 -o hello hello.c The file size was 2980 bytes. I opened it ...
14
votes
2answers
6k views

arm gcc toolchain as arm-elf or arm-none-eabi, what is the difference?

When you build a gcc toolchain there is the possibility to build it as arm-elf or as arm-none-eabi, but what is the difference? I use the eabi today, but that is just since everyone else seem to do ...
5
votes
2answers
584 views

GCC outputs an executable ELF file when I want a shared library

I'm trying to build a shared library in Cygwin using an i686-elf cross-compiler. The code is very simple: int add(int a, int b) { return a + b; } void _init() { add(3, 4); } I'm compiling ...
0
votes
1answer
362 views

Using objdump/readelf and extern variable

I have library ab.so compose of 2 sources file a.m, a.h and b.m, b.h In a.m I have define a variable foo and in b.m I have declare it extern. Now using readelf/objdump I would like to know where and ...

1 2