gpt4 book ai didi

visual-studio-code - 配置 VSCode 包含路径

转载 作者:行者123 更新时间:2023-12-03 20:06:44 27 4
gpt4 key购买 nike

我使用 VSCode 编辑 Xilinx SDK 文件。 VSCode 发出包含找不到路径的“问题”。

我使用灯泡“显示修复”:

Add to "includePath": D:/Other/Xilinx/SDK/2017.4/gnu/aarch32/nt/gcc-arm-none-eabi/lib/gcc/arm-none-eabi/6.2.1/include

但 VSCode 仍然提示缺少包含路径,尽管每个 Add to "includePath" 都会在项目 .vscode 文件夹中添加一个正确的路径到 "c_cpp_properties.json"。

包含配置有什么问题?

{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/standalone_bsp_0/ps7_cortexa9_0/include",
"D:/Other/Xilinx/SDK/2017.4/gnu/aarch32/nt/gcc-arm-none-eabi/lib/gcc/arm-none-eabi/6.2.1/include",
"D:/Other/Xilinx/SDK/2017.4/gnu/aarch32/nt/gcc-arm-none-eabi/lib/gcc/arm-none-eabi/6.2.1/include"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "8.1",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "msvc-x64"
}
],
"version": 4
}

这是 VSCode 提示的行:

#include <stdint.h>

编辑:

每次接受“修复”都会导致在“includePath”中添加一条具有相同路径的行,但这并不能解决问题。因此,您在 c_cpp_properties.json 转储中看到的是由“修复”引起的。

最佳答案

您的 c_cpp_properties.json 似乎与 another answer 中的问题相同我最近发帖了。总结:

  1. 添加compilerPath
  2. intelliSenseMode 更改为 gcc-x86gcc-x64。 (不确定是哪个,没有 gcc-arm 选项。)
  3. 查看 tutorial .
  4. 尝试运行“C/C++:日志诊断”和“gcc -v -E -dD”。

有关更多提示和详细信息,请参阅链接的答案。

关于visual-studio-code - 配置 VSCode 包含路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53369537/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com