Tagged Questions

6
votes
1answer
946 views

What configure options were used when building gcc / libstdc++?

After reading about the problem of passing empty std::string objects between DLLs and EXEs, I am concerned about the configure options used to build my gcc / libstdc++. More specific I want to know if ...
5
votes
4answers
1k 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 (gcc 3.4, i think). We ...
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
1answer
8k views

GLIBCXX_3.4.9 not found

I have a problem concerning libstdc++.so. I installed a new version of gcc and tried to compile c++ code. The compiling worked, but when I try to execute the binary (m5.opt is its name) I've got the ...
3
votes
1answer
619 views

Unable to run an application compiled on OS-X Snow Leopard (10.6.7) on another Mac using OS-X Leopard (10.5.8). libstdc++.6.dylib error returned

I'm trying to port a C++ project using C++0x and Ogre on Max OS-X and I encounter a portability problem between OS-X versions. I succeeded in compiling my project on Mac OS-X 10.6 (Snow Leopard) ...
3
votes
3answers
1k 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)?
2
votes
1answer
476 views

Deploy OSX application compiled using GCC 4.6

I'm trying to port a project of mine on Mac OS-X. As I developed my project using C++0X I needed a more recent version of GCC than the one provided with Xcode (even Xcode4), so I compiled GCC 4.6 on ...
2
votes
1answer
490 views

custom built gcc 4.6.0 on ubuntu 11.04 links wrong libstdc++

my custom built gcc 4.6.0, installed in my home directory, on ubuntu 10.04, links the system libstdc++ instead of the custom built one, most of the time (as evidenced by ldd). to be more puzzling, ...
2
votes
2answers
906 views

Is it possible to link libstdc++ statically in Mac OSX 10.6?

I am trying to run my C++ program on other Mac OSX machines which may have an older copy of libstdc++, but have all the other tools. I tried to follow this approach, also mentioned in this SO ...
2
votes
2answers
446 views

Does gcc's STL support rvalue references now?

I know Visual Studio 2010's standard library has been rewritten to support rvalue references, which boosts its performance considerably. Does the standard library implementation of gcc 4.4 (and ...
1
vote
1answer
72 views

How to build fat gcc46 libstdc++ on OS X?

I have successfully built and installed gcc 4.6.1 on my OS X box, but I can't seem to get it to create a fat/universal libstdc++ library for me. How do I make it do that? The default ...
1
vote
2answers
66 views

How do you repackage the gnu gcc standard libraries stdc++, gcc, and gcc_eh?

Without modifying and recompiling the gnu gcc and stdc++ library builds, I need to be able to reproduce dynamic loading versions of those libraries with a different embedded soname. I thought I would ...
1
vote
1answer
177 views

Building GCC's libstdc++ with debug symbols on Windows

I am developing an app with GCC, mostly on Windows, until I got a crash that couldn't be debugged with the MinGW toolchain build I have. I installed a Linux VM, and debugged it there, which was ...
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?
1
vote
1answer
642 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 trap caused by ...
0
votes
0answers
23 views

Linker failure: undefined reference to libstdc++ protected member functions _M_insert_aux, _M_fill_insert, etc.?

I am trying to compile the MeCab 0.991 Japanese morphological analyzer on cygwin using gcc 4.5.3, and make is failing during the following link stage: /bin/sh ../libtool --tag=CXX --mode=link g++ ...
0
votes
1answer
105 views

clang cannot parse sources that includes libstdc++ (gcc4.4)

i have recently compiled new clang(3.1 now), and tried to use it for parsing my project, however it fails at parsing standard libraries/includes... for example i see following errors: ...
0
votes
0answers
77 views

class derived from base class with CObject type rtti support causes segmentation fault in constructor

I am porting a VS 2005 project to Android. This project uses serialization extensively. So I have defined my own CObject and CRuntimeClass. Using these when I serialize classes they work properly but ...
0
votes
0answers
140 views

gcc3.4.6 from sunfreeware on solaris 9/10 (sparc) and libstdc++ (mangled name mismatch) incompatibity

This question is an extension on previous query I installed(pkgadd) gcc-3.4.6-sol9-sparc-local.gz and gcc-3.4.6-sol10-sparc-local.gz from sunfreeware.com on solaris 9 and solaris 10 respectively. ...
0
votes
0answers
121 views

Compiling Sundance-4.73-autoannotate

I am compiling an old program that has been recommended to work with gcc 3.4.6. When compiling I get the following cascade of errors: g++ -Wall -g ...
0
votes
0answers
149 views

Compiling gcc 3.4.6 for libstdc++

I need to install gcc 3.4.6 with its libstdc++ library to eventually compile an old code. I am using a CentOS 5.5 with gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-50). My configuration options are: ...
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 ...