I'm trying to learn the details behind how the compiler works and I was wondering what the symbol B means when using nm. I tried to follow std::cout into libstdc++, but it ends with
nm -DC /usr/lib/libstdc++.so.6 | grep cout
000e8da0 B std::cout
000e9020 B std::wcout
Where is the link to the actual function and what does the B mean?