Eu tenho o código mais fácil de todos:
#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;
}
embora eu ainda não consiga compilá-lo g++
para rodar.
Mais detalhes:
$ 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.
Comando para compilar:
$ g++ main.cpp -o main.out -pthread -std=c++11
Corrida:
$ ./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)
E agora estou preso. Em todos os tópicos relacionados na Internet, é recomendável adicionar -pthread
enquanto eu já o tenho.
O que estou fazendo de errado?
PS: É uma nova instalação do ubuntu 13.10. Apenas o g++
pacote foi instalado e coisas menores como 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: com clang++
(v3.2) ele compila e funciona bem
PPPPS: pessoal, não é uma duplicata de Quais são as opções de link corretas para usar std :: thread no GCC no Linux?
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
o mesmo diretório.Respostas:
A resposta foi fornecida por um membro gentil do chat do SO C ++ .
Parece que esse comportamento é causado por um bug no gcc.
A solução fornecida no último comentário de que a discussão bug faz o trabalho e resolve a questão:
fonte
-pthread -lpthread -Wl,--no-as-needed
sinalizações para fazer este trabalho.Adicionar
-lpthread
corrigiu o mesmo problema para mim:fonte
-lpthread
. Você pode precisar-pthread -Wl,--no-as-needed
, dependendo da versão do compilador. O gcc-4.8.2 precisa disso.Tenho uma versão um pouco mais avançada (4.8.4 em vez de 4.8.1) e testei todas as três respostas acima. De fato:
-pthread
sozinho funciona:-Wl,--no-as-needed
sozinho não funciona .-lpthread
sozinho não funciona .-Wl,--no-as-needed
e-lpthread
juntos trabalham:Minha versão é "g ++ (Ubuntu 4.8.4-2ubuntu1 ~ 14.04.1) 4.8.4".
fonte
resposta já foi feita para qtcreator:
para console g ++: aqui
fonte