--- Additional Comments From raj dot khem at gmail dot com 2006-12-06
21:01 ---
verified with uclibc builds.
--
What|Removed |Added
Status|RESOLVED
--- Additional Comments From raj dot khem at gmail dot com 2006-12-06
21:01 ---
It seems to have been fixed now. I am not sure but may be
fix for bug #3532 fixed this one too.
--
What|Removed |Added
---
--- Additional Comments From hjl at lucon dot org 2006-12-06 15:15 ---
A patch is posted at
http://sourceware.org/ml/binutils/2006-12/msg00059.html
--
http://sourceware.org/bugzilla/show_bug.cgi?id=3666
--- You are receiving this mail because: ---
You are on the CC list for
--
What|Removed |Added
CC||misiek at dione dot ids dot
||pl
http://sourceware.org/bugzilla
--
What|Removed |Added
CC||pluto at agmk dot net
http://sourceware.org/bugzilla/show_bug.cgi?id=3666
--- You are receiving this mail
When a symbol in a comdat/linkonce section has different visibility in different
files, linker doesn't merge symbol visibility:
bash-3.1$ cat foo.c
int foo __attribute__ ((section (".gnu.linkonce.d.1"))) = 1;
int
__attribute__ ((section (".gnu.linkonce.t.1")))
bar ()
{
return 1;
}
bash-3.1$ cat