在 linux wsl 上使用代码运行器扩展在 vscode 上启用 pthread?

问题描述 投票:0回答:1

我在 VS Code 上将 Posix 线程与 Code runner 结合使用时在 Linux 上遇到错误 - 未定义引用 pthread_create() 的错误;

visual-studio-code pthreads posix vscode-code-runner
1个回答
0
投票

要修复它,请在代码运行器 settings.json 中添加 -pthread 参数:

    "cpp": "cd $dir && g++ $fileName -pthread -o $fileNameWithoutExt && 
© www.soinside.com 2019 - 2024. All rights reserved.