This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: g++ error on Solaris/Sparc undefined reference to std::cout


Qi Zuo <bitsunnyday@gmail.com> writes:

> global? Sorry, I can't get the meaning. Would you explain it further?
> Thanks a million!
>
> 2011/4/19 Jonathan Wakely <jwakely.gcc@gmail.com>:
>> On 19 April 2011 14:21, Ian Lance Taylor Âwrote:
>>> Qi Zuo <bitsunnyday@gmail.com> writes:
>>>
>>>> Following your instruction, I checked the libstdc++.so. But I don't
>>>> know whether I've done the right check.
>>>
>>> It looks right. ÂThis is a strange problem.
>>
>> Shouldn't this be global?
>>
>> 000e13e0 b _ZSt4cout

Ah, yes, well spotted.  A global symbol is visible outside the shared
library.  A local symbol is not.  The lower case 'b' indicates a local
symbol.

This looks like a problem with the version script used to build the
shared library.  Do you still have the logs for how libstdc++ was built?

Ian


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]