Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
234 views

C++11 paradigm for an operation between two std::vectors?

Suppose I have two vectors std::vector<uint_32> a, b; that I know to be of the same size. Is there a C++11 paradigm for doing a bitwise-AND between all members of a and b, and putting the ...
10
votes
2answers
318 views

libstdc++ parallel mode: Who's using it? Is it safe? Any similar projects?

the GNU implementation of the C++ Library supports a parallel mode, explained here. Any experiences in using it? Good ones? Bad ones? Especially regarding correctness, but also performance. Are ...
8
votes
1answer
210 views

Using std::array with initialization lists

Unless I am mistaken, it should be possible to create a std:array in these ways: std::array<std::string, 2> strings = { "a", "b" }; std::array<std::string, 2> strings({ "a", "b" }); And ...
7
votes
1answer
103 views

Is the Java Native Interface (JNI) affected by C++ ABI compatibility issues?

Is the Java Native Interface (JNI) affected by C++ ABI compatibility issues? I am developing a Java application. I would like to use the Java Native Interface (JNI) to call functions in a C++ ...
7
votes
2answers
3k views

Porting a C++ application to android

Is it possible to port a C++ application which uses the STL extensively to Android? I understand that currently the NDK does not support this, but is there any effort (open source or otherwise) ...
6
votes
1answer
948 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
2answers
335 views

Using std::shared_ptr with clang++ and libstdc++

I'm trying to use the std::shared_ptr in clang++(clang version 3.1 (trunk 143100)) using libstdc++(4.6.1). I have a little demo program: #include <memory> int main() { ...
5
votes
1answer
185 views

How to statically link libstdc++

I am trying to get my program working in another machine where libstdc++ versions is different. I am developing and compiling it on netbeans. I have specified the option -static-libstdc++ but the ...
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
884 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
4answers
298 views

C++: How to force libc declarations into std::?

So, I find myself in the need of libc in my C++ program. However, I do not like the idea of sprinkling it all over the global namespace. Ideally, I'd like to force the entirety of libc into the std:: ...
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 ...
4
votes
7answers
785 views

Disabling bounds checking for c++ vectors

With stl::vector: vector<int> v(1); v[0]=1; // No bounds checking v.at(0)=1; // Bounds checking Is there a way to disable bounds checking without having to rewrite all at() as []? I am using ...
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
4answers
74 views

istream eof discrepancy between libc++ and libstdc++

The following (toy) program returns different things when linked against libstdc++ and libc++. Is this a bug in libc++ or do I not understand how istream eof() works? I have tried running it using g++ ...
3
votes
2answers
117 views

Passing arguments to thread function

I've come to a problem using the new c++11 std::thread interface. I can't firgure out how to pass a reference to a std::ostream to the function that the thread will execute. Here's an example with ...
3
votes
2answers
122 views

std::vector constructor behavior

Take the following code: std::vector<std::vector<int>> v(10, 10); This code doesn't compile with libstdc++. It does compile with Visual Studio's C++ library, however. The behavior I ...
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
2answers
100 views

why can't you use the debug/release version of a lib interchangeably

In C++, most of the libs come in Debug/Release versions. Question 1. What are the big difference between Debug and Release versions (e.g. what advantages do you have using one versus the other). ...
3
votes
4answers
1k views

g++ without libstdc++ - can it be done? - a very configurable lightweight libstdc++ where I can take stuff out easily would also do the trick

I'm trying something spooky here. I'm trying to write C++ programs, compiled with GNU's g++, but without a dependency on libstdc++ :) but it seems that I need that for even the most basic things need ...
3
votes
3answers
238 views

OS X program runs on dev machine, crashing horribly on others

I have an OS X 10.6 Mac I'm using as my dev machine. The program I wrote works perfectly on the dev machine. However, when I tried to run it on an OS X 10.5 (not sure if that's relevant) test machine, ...
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 ...
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
119 views

Is this c++ template code valid? g++ compiles it but clang won't

I am trying to compile a small c++ program using clang with the default C++ standard library(4.6.2) on Fedora. Clang itself compiles okay and a test program using only compiles and runs fine. My ...
2
votes
3answers
96 views

Free Pascal/C++ project crashes in cout::sentry

I have a mixed Free Pascal/C++ project. Debian 5.0 ("Lenny") on i386, FPC 2.4.4. When I run the program, it crashes on the first cout<< call. Funnily, it used to work for some time; some OS ...
2
votes
1answer
214 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
3answers
152 views

What is the C++ standard library equivalent for mkstemp?

I am transitioning a program that uses temporary files from POSIX FILE to C++ standard library iostreams. What's the correct alternative to mkstemp?
2
votes
2answers
179 views

Which version of libstdc++.so.6 to use?

I'm using a third party shared library (libsw_api.so) on Solaris, which when I try to load, produces the following error: fatal: relocation error: file libsw_api.so: symbol _ZNKSt9bad_alloc4whatEv: ...
2
votes
1answer
870 views

Segmentation fault in malloc_consolidate (malloc.c) that valgrind doesn't detect

My program goes in segmentation faults, and I cannot find the cause. The worst part is, the function in question does not always lead to segfault. GDB confirms the bug and yields this backtrace: ...
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
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 ...
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
4answers
303 views

cppcheck error : Dangerous iterator usage

The code: for(x=abc.begin();x!=abc.end();x++) { if(-----) { ---- abc.erase(x); } } And the error is ::: Dangerous iterator usage After erase the iterator is invalid ...
2
votes
1answer
193 views

is libstdc++ reentrant library?

I am using libstdc++ on MAC for developing extensions for firefox. I am getting crashes inside libstdc+ library when I am referring to it across multiple firefox extensions. I was thinking whether ...
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
3answers
507 views

Deep copy of vector<Point> myArr

In order to make a deep copy of myArr, vector <Point> myArr; where Point is a class with 2 ints as members, Do I need to do something special? or is ok with vector <Point> otherArr = ...
2
votes
2answers
447 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 ...
2
votes
3answers
401 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 loads an .so that ...
1
vote
1answer
73 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
1answer
82 views

SGI STL Rope in g++?

It seems that there is a implementation of rope in my /usr/include/c++/4.5.1/ext/rope (and ropeimpl.h). I compared it with SGI STL and the code seems to be pretty much the same codebase. I'm not ...
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
1answer
214 views

Library search path for libstdc++

I have compiled shared libraries dynamically linked against libstdc++.so using GLIBCXX_3.4.11. I want to send my code to someone whose stdc++ library is only of version 3.4.10. Rather than ask him to ...
1
vote
1answer
3k views

error while loading shared libraries: libstdc++.so.6: wrong ELF class: ELFCLASS64

I am trying to install Qt in my CentOS pc. while building the library I'm getting this error. /root/capture/qt-everywhere-opensource-src-4.7.0/bin/qmake: error while loading shared libraries: ...
1
vote
1answer
235 views

Using Objective-C++ static library in straight Objective-C target

I build a static library that uses Objective-C++. When it is used in a straight Objective-C target, I get Undefined symbols: "___gxx_personality_v0", referenced from: I can solve this by adding ...
1
vote
2answers
145 views

Storing objects in vector

Is it possible to have a vector without specializing it? My problem is: I have an abstract class N4GestureRecognizer and a couple of subclasses of it. So in a Controller class I want to have a ...
1
vote
1answer
2k views

How to link with specific library ( g++; libstdc++.so.5 and libstdc++.so.6 )

A simple question - is there any way to make the g++ linker to link with a specific libstdc++ library version? I didn't find anything useful in the man page of gcc/g++, neither in other questions ...
1
vote
3answers
4k views

Linking using g++ fails searching for -lstdc++

I'm trying to use someone else's Makefile to complile a very simple c++ library. The makefile is as follows: JNIFLAGS=-O2 -pthread -I/usr/lib/jvm/java-6-sun/include ...
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 ...

1 2