3
votes
4answers
149 views
How to build an application that requires both libstdc++.so.5 and libstdc++.so.6?
I want to preface this with the important notice that I am not a C/C++ programmer, and know very little about how linkage of libraries works in C.
Our code uses libstdc++.so.6 (gc …
3
votes
2answers
134 views
Avoid linking to libstdc++
I'm working on an embedded project that currently uses C in Linux and uClibc. We're interested in moving it to C++, but I don't want the overhead associated with linking in libstdc …
2
votes
2answers
406 views
Requires GLIBCXX_3.4.9 if I’ve already installed GLIBCXX_4.1.2?
I'm installing the last version of MediainfoDLL on Fedora 8/9 64bits (http://mediainfo.sourceforge.net/es/Download/Fedora).
I downloaded libmediainfo-0.7.20 and libzen0-0.4.3 files …
1
vote
2answers
167 views
Details about the implementation of stl structures in libstdc++
I'd like to use this post to document some basic facts about the internals of stl in libstdc++. Reading that code is slow and painful, and sometimes I want to know simple facts ab …
2
votes
3answers
140 views
Can an application depend on two different versions of libstdc++?
Can an application depend on two different versions of libstdc++ at the same time? (e.g.: libstdc++5 and libstdc++6)? The scenario being - some binary depends on libstdc++ 6 but l …
0
votes
1answer
403 views
std::stringstream strange behaviour
Some background information, for a homework assignment I had to write a polish notation calculator using binary trees, for this to work I had to parse command line input so that it …
1
vote
3answers
1k views
How to create a shared object that is statically linked with pthreads and libstdc++ on Linux/gcc?
How to create a shared object that is statically linked with pthreads and libstdc++ on Linux/gcc?
0
votes
1answer
259 views
Static linking with pthreads & stdc++?
Is it possible to statically link my program with libpthreads and libstdc++ on Linux?
1
vote
1answer
304 views
Any improvements on the GCC/Windows DLLs/C++ STL front?
Yesterday, I got bit by a rather annoying crash when using DLLs compiled with GCC under Cygwin. Basically, as soon as you run with a debugger, you may end up landing in a debugging …
2
votes
2answers
360 views
The latest version of gcc to use libstdc++.so.5
What is the latest version of gcc that still uses libstdc++.so.5 (as opposed to libstdc++.so.6)?
