--- Additional Comments From hjl at lucon dot org 2007-02-27 01:28 ---
A patch is posted at
http://sourceware.org/ml/binutils/2007-02/msg00375.html
--
http://sourceware.org/bugzilla/show_bug.cgi?id=4007
--- You are receiving this mail because: ---
You are on the CC list for
Hi,
I'm trying to rename symbols in an archive using objcopy. It works
perfectly under Linux, but on Mac OS X, using binutils 2.16.1 (from
MacPorts) or 2.17 (from source), doesn't work. For example:
sinope:~ as49$ cat blah.c
int foo(int f) {
int x;
x=2*f;
return x;
}
sinope:~ as49$ gcc -c bla