[Bug libstdc++/58909] C++11's condition variables fail with static linking

2017-02-15 Thread joel at clambassador dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58909 joel at clambassador dot com changed: What|Removed |Added Status|RESOLVED|UNCONFIRMED

[Bug libstdc++/58909] New: C++11's condition variables fail with static linkin

2013-10-28 Thread joel at clambassador dot com
y: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: joel at clambassador dot com The program: #include int main () { std::condition_variable a; } statically compiled as either: g++ --std=c++0x -static -pthread aa.cc -lpthread clang++ --std=c++11 -static -pt