linux下使用future的时候报错undefined reference to `pthread_create‘

报错是这样的:

FAILED: test_gdb 
: && /usr/bin/g++ -g  CMakeFiles/test_gdb.dir/gdb_main.cpp.o -o test_gdb   && :
/usr/bin/ld: CMakeFiles/test_gdb.dir/gdb_main.cpp.o: in function `std::thread::thread<std::__future_base::_Async_state_impl<std::thread::_Invoker<std::tuple<int (*)()> >, int>::_Async_state_impl(std::thread::_Invoker<std::tuple<int (*)()> >&&)::{lambda()#1}, , void>(std::__future_base::_Async_state_impl<std::thread::_Invoker<std::tuple<int (*)()> >, int>::_Async_state_impl(std::thread::_Invoker<std::tuple<int (*)()> >&&)::{lambda()#1}&&)':
/usr/include/c++/9/thread:126: undefined reference to `pthread_create'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.

解决方法:g++编译器添加-pthread参数
在CMakeLists.txt中加上 set(CMAKE_CXX_FLAGS “${CMAKE_CXX_FLAGS} -pthread”)

cmake_minimum_required(VERSION 3.23)
project(test_gdb)

set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread")
add_executable(test_gdb gdb_main.cpp)

如果是直接运行编译好的可执行文件,可以这么编译:

g++ -std=c++2a -g -o gdb_main gdb_main.cpp -pthread

编译好之后,直接运行gdb_main文件:

./gdb_main
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值