pthread 库包含 Visual Studio 代码上的路径

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

我在 Windows 上的 Ubuntu WSL 编译器上使用 Visual Studio 代码。我不断收到 pthreads 库上的消息“无法打开源文件“pthread.h””。我可以编译该程序并且它可以工作,但我想看看当我将鼠标悬停在代码编辑器上时,某些功能在代码编辑器上执行什么操作,等等。

c visual-studio-code pthreads
1个回答
0
投票

在当前项目目录中包含本地包含文件的语法:

#include "pthread.h"

类似地,在远程目录中包含非系统包含文件的语法:

#include "C:\path\to\my\file\pthread.h"

为编译器系统目录中的包含文件保留的语法:

#include <pthread.h>

其中一种语法方法应该可以解决该问题。

© www.soinside.com 2019 - 2024. All rights reserved.