가장 쉬운 코드가 있습니다.
#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;
}
나는 여전히 그것을 g++
실행하기 위해 컴파일 할 수는 없지만 .
자세한 내용은:
$ 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.
컴파일 명령 :
$ g++ main.cpp -o main.out -pthread -std=c++11
달리는:
$ ./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)
그리고 지금은 막혔습니다. 인터넷상의 모든 관련 스레드에서 -pthread
이미 가지고있는 동안 추가 하는 것이 좋습니다 .
내가 도대체 뭘 잘못하고있는 겁니까?
추신 : 새로운 우분투 13.10 설치입니다. g++
패키지 만 설치되고 chromium
등의 사소한 것
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 : clang++
(v3.2)를 사용하면 잘 컴파일되고 실행됩니다.
PPPPS : 여러분, Linux에서 GCC에서 std :: thread를 사용하는 올바른 링크 옵션 은 무엇입니까?
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
동일한 디렉토리에 있는 심볼릭 링크 입니다.