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...
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:...
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...
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...
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...
1
Solved
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...
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...
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...
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
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...
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 ...
2
Solved
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: ...
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
© 2022 - 2024 — McMap. All rights reserved.