paddle Looking for pthread.h - not found
时间: 2023-12-14 08:35:59 浏览: 147
Windows多线程编程缺少pthread.h文件问题
这个错误提示是因为编译时缺少 pthread 库的支持。你需要在编译命令中添加 `-pthread` 参数来链接 pthread 库,例如:
```
g++ -pthread your_program.cpp -o your_program
```
如果你使用的是 CMake,则需要将 `pthread` 库添加到 `CMakeLists.txt` 中,例如:
```
find_package(Threads REQUIRED)
target_link_libraries(your_target Threads::Threads)
```
这样就能成功链接 pthread 库了。
阅读全文