Tagged Questions
5
votes
2answers
883 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++. My impression is ...
4
votes
2answers
283 views
C++ equivalent of mbsrtowcs and wcsrtombs using locales and streams
Is there a C++ equivalent of mbsrtowcs and wcsrtombs type functions using std::locale and C++ streams functionality?
I'm trying to figure out the best way to convert back and forth between ...
3
votes
2answers
4k 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.
When I tried to ...
2
votes
1answer
213 views
Linking at Compile Time vs Linking at Runtime Against std:: library
First the question:
I need a way without placing a config file in /etc/ld.so.conf.d to allow clients to build against my SDK on both RHEL5.7 and RHEL6.1 using the default install of gcc. Setting the ...
2
votes
2answers
79 views
Using shared objects compiled with a newer version of g++
I have some shared objects which have to be compiled with g++4.5, and I would like them to be able to be linked into applications compiled using g++4.1 and g++4.2.
It's my understanding that their ...
1
vote
3answers
4k 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
3answers
435 views
GCC Regular Expressions
My question seems to be simple and clear: how to use Regexps in GNU G++ / GCC for matching, searching and replacing substrings? E.g. could you provide any tutorial on regex_t and others?
Googling for ...
0
votes
1answer
286 views
why doesn't libstdc++ on freebsd require a link to libc.so?
On freebsd libstdc++.so doesn't link to libc.so, but it must call functions like open, close and so on. Why isn't it listed in the output of ldd below like it is say on Linux?
freebsd$ ldd ...
0
votes
4answers
1k views
libstdc++.so.5: cannot open shared object file - but library is installed and up-to-date
My client had some developer write a small c++ command-line app to run on their Linux servers. On one of the servers (running Fedora 11), when I execute the app I get the following error:
error ...
0
votes
1answer
721 views
libstdc++.so.6: cannot handle TLS data
I have an application compiled at:
gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)
Linux debian 2.6.18-5-686 #1 SMP Fri Jun 1 00:47:00 UTC 2007 i686 GNU/Linux
and it runs well.
Now I ...
0
votes
1answer
2k views
How to determine version of glibc (glibcxx) binary will depend on?
It's well known that glibc (and, as far as I know, glibstd++ also) uses symbol versioning mechanism. (For the details refer: How can I link to a specific glibc version.)
The question is how to ...
0
votes
1answer
1k views
Static linking with pthreads & stdc++?
Is it possible to statically link my program with libpthreads and libstdc++ on Linux?