[Bug libstdc++/58909] C++11's condition variables fail with static linking
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
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