Tagged Questions
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
209 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++ ...
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
2answers
332 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
2answers
882 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 ...
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
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
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
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
867 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
473 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
4answers
302 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
445 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
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
144 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
641 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
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
86 views
Segmentation fault in std::_Rb_tree* (Gazebo simulator)
I was installed application (Gazebo simulator 0.10) from sources on Kubuntu 11.10 x64, and got strange segfault on static objects initialization (before main()).
Used libraries: pastebin.com/4xAa1WcZ
...
0
votes
4answers
294 views
libstdc++ GLIBCXX version errors
when I compile a c++ program in my computer using g++ and transfer the executable to run it on my university server, I get
./main: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found ...
0
votes
1answer
96 views
What means “Unrecognized storage class 111 for .text symbol `._XXXXXXXXX”?
I get this error message many times when trying to do objdump of my executable or shared library compiled on AIX 5.3. For any other executable on this machine it works fine.
This executable also ...
0
votes
2answers
1k views
linker problem with libstdc++.so.6 in connection with cuda
today i encountered a problem with linking my compiled cuda stuff.
i have a uptodate debian testing w/ 2.6.32-3-amd64.
i worked all day on my code. compiling from time to time.
had no problem. but ...
0
votes
2answers
110 views
iterator to pointer or reference - ERROR
I have this:
//function definition
//Point and Range are classes made of 2 ints
Point barycenter_of_vector_in_range(vector<cv::Point> &points, cv::Range range);
//In other place...
...
0
votes
5answers
202 views
Adding item to list in C++
I am using two classes in my C++ application. The code is as follows:
class MyMessageBox
{
public:
void sendMessage(Message *msg, User *recvr);
Message receiveMessage();
...
0
votes
1answer
2k 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 would properly ...