Tengo el código más 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;
}
aunque todavía no puedo compilarlo g++
para ejecutarlo.
Más detalles:
$ 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
Corriendo:
$ ./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)
Y ahora estoy estancado. En todos los hilos relacionados en Internet, se recomienda agregar -pthread
mientras ya lo tengo.
¿Qué estoy haciendo mal?
PD: Es una nueva instalación de ubuntu 13.10. Solo g++
se instaló el paquete y cosas 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: con clang++
(v3.2) se compila y funciona bien
PPPPS: chicos, no es un duplicado de ¿Cuáles son las opciones de enlace correctas para usar std :: thread en GCC bajo 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
mismo directorio.Respuestas:
La respuesta fue proporcionada por un amable miembro del chat SO C ++ .
Parece que este comportamiento se debe a un error en gcc.
La solución proporcionada en el último comentario de ese fallo discusión hace el trabajo y resuelve el problema:
-Wl,--no-as-needed
fuente
-pthread -lpthread -Wl,--no-as-needed
banderas para que esto funcionara.Agregar
-lpthread
solucionó el problema idéntico para mí:g++ -std=c++11 foo.cpp -lpthread -o foo
fuente
-lpthread
. Es posible que lo necesite-pthread -Wl,--no-as-needed
, según la versión del compilador. gcc-4.8.2 lo necesita.Tengo una versión un poco más avanzada (4.8.4 en lugar de 4.8.1) y probé las tres respuestas anteriores. De hecho:
-pthread
solo funciona:-Wl,--no-as-needed
solo no funciona .-lpthread
solo no funciona .-Wl,--no-as-needed
y trabajar-lpthread
juntos :Mi versión es "g ++ (Ubuntu 4.8.4-2ubuntu1 ~ 14.04.1) 4.8.4".
fuente
La respuesta ya fue hecha para qtcreator:
para consola g ++: aquí
g++ -c main.cpp -pthread -std=c++11 // generate target object file g++ main.o -o main.out -pthread -std=c++11 // link to target binary
fuente