libstdc++ Questions

1

I have a customer running a file parsing program called cleanfileg and as of the last update, he is getting date-format error when parsing a file. What's bizarre is that we're both running the sam...
Seismology asked 8/10, 2014 at 21:18

4

Solved

I need help. I had a framwork which was using stdc++ like std:string. Now when i have created new app for IOS7 only there is problem with linking this framework because of problems with stdc++ lib:...
Atul asked 23/9, 2013 at 12:49

1

I'm concerned that in kernel land I will not have access to things like std::move, std::forward, std::initializer_list, etc. While some of these features are built into the language, they still req...
Carlicarlick asked 12/9, 2014 at 22:12

3

Solved

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 re...
Sacrifice asked 16/12, 2011 at 23:12

3

Solved

Why does this not compile (tried with Clang 3.4.2 and GCC versions 4.7.4, 4.8.3 and 4.9.1): #include <exception> struct E { E(int) {} }; int main() { std::throw_with_nested(E(42)); retur...
Waxy asked 15/8, 2014 at 9:38

1

Solved

I was looking at the example for std::async here, as follows: #include <iostream> #include <vector> #include <algorithm> #include <numeric> #include <future> templat...
Gerome asked 7/8, 2014 at 14:50

3

Solved

Consider the following piece of code #include <chrono> #include <iostream> #include <thread> int main() { using std::chrono::system_clock; using std::chrono::milliseconds; us...
Swagerty asked 21/2, 2014 at 14:34

4

Solved

I am trying to build Clang following this: http://clang.llvm.org/get_started.html At step 6 the command ../llvm/configure runs a series of checks and one tells me: checking whether Clang will sel...
Rotorua asked 16/1, 2014 at 6:29

1

Solved

I recently learned, that since a few years the library libstdc++ contains vstring (also known as versa_string), which provides the same functionality as std::string, but is apparently more conformi...
Stationmaster asked 23/4, 2014 at 21:50

3

I have a fat (32- and 64-bit) Intel binary called myBinary that fails to run on another workstation running Mac OS X 10.8.2: $ myBinary dyld: lazy symbol binding failed: Symbol not found: __ZNSt8_...
Cavy asked 21/3, 2013 at 7:27

1

Solved

i'm writting c++ program and i want to distribute it on Mac OS X versions 10.6 and above. The problem is when i compile the program with clang and it's dynamically linked with libstdc++ and it caus...
Leticialetisha asked 5/5, 2014 at 12:3

1

Solved

I'm running CentOS 6.4 and need a later version of the C++ compiler to build my development tools (Qt Creator in this case). I'm unclear on the implications of using devtools and I'm hoping someon...
Murraymurre asked 16/10, 2013 at 23:41

3

Solved

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 t...
Soren asked 23/12, 2009 at 11:8

1

ostream operator<< uses num_put::put() for number formatting. I'm trying to follow the code. I'll link to OSX files but similar files appear on some other systems I looked at. It seems to me ...
Javed asked 31/3, 2014 at 4:34

2

Solved

I'm porting an application to OS X Darwin and am getting link errors with missing symbols like: std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> ...
Classicist asked 26/3, 2014 at 0:54

2

Solved

If we take a look at GNU's implementation of libstdc++, I've noticed that in the implementations of the standard classes that private member functions of various classes are prefixed with _M_. For ...
Tessi asked 21/3, 2014 at 14:42

2

Solved

I've been trying to compile gcc 4.x from the sources using --with-fpmath=387 but I'm getting this error: "Invalid --with-fpmath=387". I looked in the configs and found that it doesn't support this ...
Gilus asked 12/1, 2014 at 2:11

1

Solved

I'm writing a class that has a matrix-like structure and I want to have a member function named minor to be the same as the matrix operation. This triggers some errors. A minimal test case on my sy...
Fatalism asked 7/3, 2014 at 3:41

1

I have installed http://sourceforge.net/projects/clangonwin/ on my Windows system. My questions are: It seems that a STD library is missing. How do I install one? How can I integrate this in VC++...
Insecticide asked 25/2, 2014 at 16:25

2

Solved

Is there anything from c++11 that I can use and expect compiled binaries to run on older systems? How can I tell which parts of c++11 are a part of the libstdc++.so and what actually gets compiled ...
Demetra asked 1/11, 2013 at 15:4

2

Solved

I am developing command line interface executables for both osx and linux using c/c++. The project will link against opencv. Should I use libc++ or libstdc++?
Wooldridge asked 20/2, 2013 at 4:42

1

Solved

I need to use a self-compiled version of glibc (2.18), newer than the default one on the system (2.15). I can compile&link a C++ program, but when I try to run it, I get errors about libstdc++....
Spalding asked 12/12, 2013 at 3:21

1

I seem to have a problem with locales in C++. When I run my programm from within Eclipse, it all works fine. However, when I try to run from the command line, I keep getting this error: failure: ...
Jasmine asked 20/11, 2013 at 19:30

1

After upgrading to XCode 5 using std::function with std::bind appears to be generating EXC_BAD_ACCESS exceptions. It looks as if the __base pointer inside the implementation of std::function ends u...
Freesia asked 6/11, 2013 at 18:40

3

Solved

I downloaded and built gcc 4.8.1 on my desktop, running 64-bit Ubuntu 12.04. I built it out of source, like the docs recommend, and with the commands ../../gcc-4.8.1/configure --prefix=$HOME --pro...
Rachelrachele asked 20/6, 2013 at 18:16

© 2022 - 2024 — McMap. All rights reserved.