Undefined reference to pthread_create in Linux

后端 未结 14 2345
梦毁少年i
梦毁少年i 2020-11-22 03:18

I picked up the following demo off the web from https://computing.llnl.gov/tutorials/pthreads/

#include 
#include 
#define NU         


        
14条回答
  •  鱼传尺愫
    2020-11-22 04:02

    If you are using cmake, you can use:

    add_compile_options(-pthread)
    

    Or

    SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread")
    

提交回复
热议问题