2
votes
3answers
29 views
Linux user-space ELF loader
I need to do a rather unusual thing: manually execute an elf executable. I.e. load all sections into right places, query main() and call it (and cleanup then). Executable will be s …
4
votes
4answers
159 views
Segmentation Fault With Char Array and Pointer in C on Linux
So I have the following program:
int main(){
char* one = "computer";
char two[] = "another";
two[1]='b';
one[1]='b';
return 0;
}
It segfaults on the line "one[1]='b'" …
3
votes
2answers
165 views
in Java: programmatically determining addresses of C/C++ variables given a COFF/ELF/DWARF executable
This is a situation I run into now and then:
For an embedded system which does not use virtual addressing, I have an executable file that was compiled from C or C++ code with debu …
2
votes
2answers
298 views
compile AMR-nb codec with RVCT for WinCE/Window Mobile
Hello everybody,
I'm working on amr speech codec (porting/optimization)
I have an arm (for WinCE) optimized version from voiceage and I use it as a reference in performance testing …
0
votes
1answer
44 views
How can I examine contents of a data section of an ELF file on Linux?
I've been using objdump to look at assembly code in Linux ELF binaries. Sometimes there is an indirect jump through a jump table that is stored in the rodata (read-only data) sect …
0
votes
3answers
42 views
Loading/unloading ELF sections on demand?
For a rather obscure use case I'd like to have a (large) statically linked Linux executable made up of a small piece of control code and large pieces of static (read-only) data. I …
1
vote
2answers
73 views
Aligning static arrays in the .bss section of linker file
I have a function:
void testfunction() {
static char_t theChar1 = 1;
static unsigned char smallArray[1];
static unsigned char largeArray[135];
...
}
and a linker file:
…
0
votes
1answer
55 views
How can I find which ELF dependency is not fulfill?
I've built a test ELF program using the LSB SDK (note that my question is not specific to LSB):
$ /opt/lsb/bin/lsbcc tst.c
$ ls -l a.out
-rwxr-xr-x 1 math math 10791 2009-10-13 2 …
6
votes
2answers
232 views
load-time ELF relocation
Hi,
I am writing a simple user-space ELF loader under Linux (why? for 'fun'). My loader at the moment is quite simple and is designed to load only statically-linked ELF files con …
0
votes
1answer
49 views
Converting a .so file to a .jnilib file
I've got a .so library compiled for Linux under the ELF format, which is being used by a Java program. I'm trying to port this application to Mac OS X, and have discovered that OS …
1
vote
3answers
68 views
vmlinux ELF find offsets for members of a given struct
In the Linux kernel, I need to find the offsets of member variables of a struct that is used. For example, for the init_task which is of type task_struct, I would like the offsets …
0
votes
0answers
92 views
GNU LD Script to catch C++ group / dynsym Sections
I'm maintaining a tool which can convert ELF32 relocatables to RDOFF2 format.
For this process to work I need to pre-link the input files currently using the ld-script shown below: …
0
votes
1answer
184 views
Converting kernel image from ELF to PE
I am using Msys to build a home brew kernel that I wrote under Linux. Linux used ELF for its binary format and Msys uses PE. I have the source setup to allow it to be booted by G …
3
votes
8answers
195 views
gcc compiled binaries w/different sizes?
If the same code is built at different times w/gcc, the resulting binary will have different contents. OK, I'm not wild about that, but that's what it is.
However, I've recently …
1
vote
5answers
61 views
Article/book: from source code to executable program?
I'm looking for a "human readable" article which describes, with examples, if possible, the transition from source code, say C, to an executable program. Ideally, the article shall …
