Ich habe den einfachsten Code aller Zeiten:
#include <iostream>
#include <thread>
void worker()
{
std::cout << "another thread";
}
int main()
{
std::thread t(worker);
std::cout << "main thread" << std::endl;
t.join();
return 0;
}
obwohl ich es immer noch nicht kompilieren kann, um es g++
auszuführen.
Mehr Details:
$ g++ --version
g++ (Ubuntu/Linaro 4.8.1-10ubuntu8) 4.8.1
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Befehl zum Kompilieren:
$ g++ main.cpp -o main.out -pthread -std=c++11
Laufen:
$ ./main.out
terminate called after throwing an instance of 'std::system_error'
what(): Enable multithreading to use std::thread: Operation not permitted
Aborted (core dumped)
Und jetzt stecke ich fest. In jedem verwandten Thread über das Internet wird empfohlen, hinzuzufügen, -pthread
solange ich es bereits habe.
Was mache ich falsch?
PS: Es ist eine brandneue Ubuntu 13.10-Installation. Es wurde nur ein g++
Paket installiert und kleinere Dinge wie chromium
etc.
PPS:
$ ldd ./a.out
linux-vdso.so.1 => (0x00007fff29fc1000)
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007fb85397d000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007fb853767000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fb85339e000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007fb85309a000)
/lib64/ld-linux-x86-64.so.2 (0x00007fb853c96000)
PPPS: Mit clang++
(v3.2) wird es kompiliert und läuft einwandfrei
PPPPS: Leute, es ist kein Duplikat von Was sind die richtigen Linkoptionen , um std :: thread in GCC unter Linux zu verwenden?
PPPPPS:
$ dpkg --get-selections | grep 'libc.*dev'
libc-dev-bin install
libc6-dev:amd64 install
libclang-common-dev install
linux-libc-dev:amd64 install
libpthread-2.17.so
im selben Verzeichnis.