Tôi có mã dễ nhất từ trước đến nay:
#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;
}
mặc dù tôi vẫn không thể biên dịch nó với g++
để chạy.
Thêm chi tiết:
$ 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.
Lệnh biên dịch:
$ g++ main.cpp -o main.out -pthread -std=c++11
Đang chạy:
$ ./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)
Và bây giờ tôi đang bị mắc kẹt. Trong mọi chủ đề liên quan trên internet, bạn nên thêm vào -pthread
khi tôi đã có nó.
Tôi đang làm gì sai?
Tái bút: Đây là một bản cài đặt ubuntu 13.10 hoàn toàn mới. Chỉ có g++
gói được cài đặt và những thứ nhỏ nhặt như chromium
v.v.
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: với clang++
(v3.2) nó biên dịch và chạy tốt
PPPPS: guys, nó không phải là một bản sao của Các tùy chọn liên kết chính xác để sử dụng std :: thread trong GCC trong linux là gì?
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
trong cùng một thư mục.