Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
740 views

An objcopy equivalent for Mac / iPhone?

I would like to rename symbols inside object files (.o) with something that would be the Mac equivalent of binutils' objcopy --redefine-syms tool. I found no arm-apple-darwin10-objcopy. I tried the ...
4
votes
1answer
82 views

Custom command to generate object(.o) from binary file using autoconf

We have a project (c++) and it needs to include a binary file into shared library. This is done on windows by referencing the binary file from a resource file. On Linux it can be achieved by using ...
3
votes
2answers
129 views

How to understand this?

It's from this question. gcc -c test.s objcopy -O binary test.o test.bin What's the difference between test.o and test.bin? .text call start str: .string "test\n" start: ...
2
votes
1answer
80 views

How to obtain the BFD architecture specification for the current platform?

I've embedded a text file in a C program using the following method: http://www.linuxjournal.com/content/embedding-file-executable-aka-hello-world-version-5967 a.out:prog.c file.text objcopy ...
2
votes
1answer
241 views

Merge additional code into executable (arm-linux)

I'm trying to merge some extra logging code into a statically linked (android arm linux) executable. (Normal tracing methods don't seem to work, as it's a daemon process that clone()s just before ...
2
votes
1answer
374 views

powerpc-eabi-objcopy creates 1GByte file

my elf-file is about 1MByte with all debug symbols. As I try to create a binary file with "powerpc-eabi-objcopy -O binary out.elf out.bin" the out.bin is 1GByte huge. The build script looks like this ...
1
vote
2answers
780 views

huge binary files with objcopy

Im having problems when I define global variables in a basic C program for an ARM9 processor. I'm using EABI GNU compiler and the binary generated from a 12KB elf is 4GB! I assume the issue is with my ...
1
vote
2answers
249 views

Still reports “undefined symbol: new_add” after use “objcopy --redefine-sym add=new_ad”

I need to load two dynamic libraries and there is one function name confliction. So I use the the command "objcopy --redefine-sym add=new_add libmy_test.so libmy_test_new.so" to modify the symbol ...
1
vote
2answers
112 views

How can I extract an array from an executable file?

I want to do the inverse of this question. I am embedding a file into an executable as an array, and I would later like to extract the embedded file from the executable. It seems like objcopy might ...
0
votes
0answers
59 views

Which parts of ELF format does objcopy parameter --strip-all remove?

I did compile and link my program and i get a format in ELF32 little endian which is build like this: ELF Header: Magic: 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00 Class: ...
0
votes
0answers
24 views

iPhone .a symbol clash

I have two third party closed libraries that have symbol crashes for at least two class names. I have tried working around 'thinning' the libraries using lipo and then prefixing the symbols in one ...
0
votes
2answers
66 views

Automake: embedding text files in binary target

I need to embed several text files in a binary. It's currently done with two lines added in configure.in script that do "clean" and perform objcopy to the $target.o files. Don't ask WHY it's required, ...
0
votes
0answers
68 views

How to specify architecture for sde-objcopy?

I need to convert an picture to an object file(.o) use sde-objcopy, then I can use this picture in our no-os system. I had test the objcopy command, it works well on my PC(Fedora 12). For example, the ...