Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

std::async([](){ std::cout<< "Hello "; }) build error

Tags:

c++

build

CppCon 2015: Detlef Vollmann “Executors for C++ - A Long Story ..." starts off with this example:

std::async([](){ std::cout << "Hello "; });
std::async([](){ std::cout << "World!\n"; });

C++ reference shows std::async is in <future> and std::cout is in <iostream>. What is missing to make the build work?

$ cat >hw.cpp <<EOF
> #include <iostream>
> int main(){
>     std::cout << "Hello World!\n";
> }
> EOF
$ clang++ -std=c++14 hw.cpp
$ ./a.out
Hello World!
$ cat >cppcon15.cpp <<EOF
> #include <future>
> #include <iostream>
> int main(){
>     std::async([](){ std::cout << "Hello "; });
>     std::async([](){ std::cout << "World!\n"; });
> }
> EOF
$ clang++ -std=c++14 cppcon15.cpp
/tmp/cppcon15-4f0a58.o: In function `std::thread::thread<std::__future_base::_Async_state_impl<std::_Bind_simple<main::$_1 ()>, void>::_Async_state_impl(std::_Bind_simple<main::$_1 ()>&&)::{lambda()#1}>(std::__future_base::_Async_state_impl<std::_Bind_simple<main::$_1 ()>, void>::_Async_state_impl(std::_Bind_simple<main::$_1 ()>&&)::{lambda()#1}&&)':
cppcon15.cpp:(.text+0x2cf6): undefined reference to `pthread_create'
/tmp/cppcon15-4f0a58.o: In function `std::thread::thread<std::__future_base::_Async_state_impl<std::_Bind_simple<main::$_0 ()>, void>::_Async_state_impl(std::_Bind_simple<main::$_0 ()>&&)::{lambda()#1}>(std::__future_base::_Async_state_impl<std::_Bind_simple<main::$_0 ()>, void>::_Async_state_impl(std::_Bind_simple<main::$_0 ()>&&)::{lambda()#1}&&)':
cppcon15.cpp:(.text+0x6bb6): undefined reference to `pthread_create'
clang: error: linker command failed with exit code 1 (use -v to see invocation)
like image 525
CW Holeman II Avatar asked Dec 27 '25 16:12

CW Holeman II


1 Answers

You need to compile with -pthread so that the linker lets you make use of async/future/thread functionality.

like image 164
pacevedo Avatar answered Dec 30 '25 04:12

pacevedo



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!