[Bug binutils/10478] "File format not recognized" for some solaris libraries

2009-09-17 Thread niki dot waibel at gmx dot net
--- Additional Comments From niki dot waibel at gmx dot net 2009-09-17 19:23 --- same issue on i386-pc-solaris2.10!!! will upload libC.so.3 and libCso.5 from solaris10/x86. === $ uname -a SunOS x4150-1 5.10 Generic_139556-08 i86pc i386 i86pc Solaris $ size /usr/lib/libC.so.* textd

[Bug binutils/10478] "File format not recognized" for some solaris libraries

2009-09-17 Thread niki dot waibel at gmx dot net
--- Additional Comments From niki dot waibel at gmx dot net 2009-09-17 19:27 --- Created an attachment (id=4201) --> (http://sourceware.org/bugzilla/attachment.cgi?id=4201&action=view) sol10/x86 okay -- http://sourceware.org/bugzilla/show_bug.cgi?id=10478 --- You are receiving

[Bug binutils/10478] "File format not recognized" for some solaris libraries

2009-09-17 Thread niki dot waibel at gmx dot net
--- Additional Comments From niki dot waibel at gmx dot net 2009-09-17 19:30 --- Created an attachment (id=4202) --> (http://sourceware.org/bugzilla/attachment.cgi?id=4202&action=view) sol10/x86 not okay -- http://sourceware.org/bugzilla/show_bug.cgi?id=10478 --- You are recei

[Bug binutils/10654] New: addr2line gives wrong line number for inlined code

2009-09-17 Thread ccoutant at google dot com
The following simple test case shows a problem with inlined code in addr2line (running on x86_64/Linux): $ cat foo.cc #include void __attribute__((always_inline)) bar() { printf ("Hello World\n"); // line 4 } void __attribute__((always_inline)) foo() { bar(); bar(); } int main() { foo(