我做了vcpkg install mman.h && vcpkg integrate install
。
现在VSCode中的默认C \ CPP Linter可以看到该头文件,但是编译器没有。
我的task.json文件:
{
"tasks": [
{
"type": "shell",
"label": "cl.exe build active file",
"command": "cl.exe",
"args": [
"/Zi",
"/EHsc",
"/I\\C:\\Users\\ansga\\vcpkg\\packages\\mman_x86-windows\\include\\mman\\sys mmmapTest.c",
"/Fe:",
"${fileDirname}\\${fileBasenameNoExtension}.exe",
"${file}",
]
}
],
"version": "2.0.0"
在#include <mman.h>
上仍然给我错误。