instalar dev compiler c++ linux ubuntu gcc g++

c++ - dev - install g++ ubuntu



Compilando código multiproceso con g++ (4)

Agregar -lpthread solucionó el problema idéntico:

g++ -std=c++11 foo.cpp -lpthread -o foo

Tengo el código más fácil:

#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 con g++ para ejecutar.

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 atascado. En cada hilo relacionado a través de Internet, se recomienda agregar -pthread mientras lo tengo ya.

¿Qué estoy haciendo mal?

PD: Es una nueva instalación de ubuntu 13.10. Solo se instaló el paquete g++ 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) compila y funciona bien

PPPPS: chicos, no es un duplicado de ¿Cuál es la opción de enlace correcta para usar std :: thread en GCC en 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


La respuesta fue proporcionada por un miembro amable de SO C ++ chat .

Parece que este comportamiento es causado por un bug en gcc.

La solución provista en el último comentario de la discusión de errores funciona y resuelve el problema:

-Wl,--no-as-needed


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:

g ++ -std = c ++ 11 -o principal -pthread main.cpp

-Wl,--no-as-needed solo no funciona .

-lpthread solo no funciona .

-Wl,--no-as-needed y -lpthread juntos trabajan:

g ++ -std = c ++ 11 -o main -Wl, - no-tan-necesario main.cpp -lpthread

Mi versión es "g ++ (Ubuntu 4.8.4-2ubuntu1 ~ 14.04.1) 4.8.4".


la respuesta ya fue hecha para qtcreator:

LIBS += -pthread QMAKE_CXXFLAGS += -pthread QMAKE_CXXFLAGS += -std=c++11

para consola g ++: here

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