-------- Diagnostics - 3/2/2022, 12:39:40 PM
Version: 1.9.2
Current Configuration:
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/clang",
"cStandard": "c11",
"cppStandard": "c++14",
"intelliSenseMode": "linux-clang-x64",
"compilerArgs": [],
"intelliSenseModeIsExplicit": false,
"cStandardIsExplicit": false,
"cppStandardIsExplicit": false,
"mergeConfigurations": false,
"compilerPathIsExplicit": false,
"configurationProvider": "ms-vscode.cmake-tools",
"browse": {
"path": [
"${workspaceFolder}/**"
],
"limitSymbolsToIncludedHeaders": true
}
}
Custom browse configuration:
{
"browsePath": [
"/home/colen/repos/blink/Blink/HardwareDefinitions/mt3620_rdb/inc",
"/opt/azurespheresdk/HardwareDefinitions/inc",
"/opt/azurespheresdk/HardwareDefinitions/inc/hw",
"/opt/azurespheresdk/Sysroots/11/usr/include",
"/home/colen/repos/blink/Blink",
"/home/colen/repos/blink/Blink/out/ARM-Debug/CMakeFiles",
"/home/colen/repos/blink/Blink/out/ARM-Debug",
"/home/colen/repos/blink/Blink/out/ARM-Debug/approotBlink/bin"
],
"compilerPath": "/opt/azurespheresdk/Sysroots/11/tools/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-musleabi/arm-poky-linux-musleabi-g++",
"compilerArgs": []
}
Custom configurations:
[ /home/colen/repos/blink/Blink/main.c ]
{
"defines": [
"_POSIX_C_SOURCE"
],
"standard": "c11",
"includePath": [
"/home/colen/repos/blink/Blink/HardwareDefinitions/mt3620_rdb/inc",
"/opt/azurespheresdk/HardwareDefinitions/inc",
"/opt/azurespheresdk/HardwareDefinitions/inc/hw",
"/opt/azurespheresdk/Sysroots/12/usr/include"
],
"compilerPath": "/opt/azurespheresdk/Sysroots/12/tools/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-musleabi/arm-poky-linux-musleabi-gcc",
"compilerArgs": [
"-B",
"\"/opt/azurespheresdk/Sysroots/12/tools/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-musleabi\"",
"-march=armv7ve",
"-mthumb",
"-mfpu=neon-vfpv4",
"-mfloat-abi=hard",
"-mcpu=cortex-a7",
"--sysroot=\"/opt/azurespheresdk/Sysroots/12\"",
"-g",
"-std=c11",
"-Wstrict-prototypes",
"-Wno-pointer-sign",
"-ggdb",
"-O0",
"-fPIC",
"-ffunction-sections",
"-fdata-sections",
"-fno-strict-aliasing",
"-fno-omit-frame-pointer",
"-fno-exceptions",
"-Wall",
"-Wswitch",
"-Wempty-body",
"-Wconversion",
"-Wreturn-type",
"-Wparentheses",
"-Wno-format",
"-Wuninitialized",
"-Wunreachable-code",
"-Wunused-function",
"-Wunused-value",
"-Wunused-variable",
"-Werror=implicit-function-declaration",
"-fstack-protector-strong"
]
}
Translation Unit Mappings:
[ /home/colen/repos/blink/Blink/main.c ]:
/home/colen/repos/blink/Blink/main.c
Translation Unit Configurations:
[ /home/colen/repos/blink/Blink/main.c ]:
Process ID: 13587
Memory Usage: 30 MB
Includes:
/home/colen/repos/blink/Blink/HardwareDefinitions/mt3620_rdb/inc
/opt/azurespheresdk/HardwareDefinitions/inc
/opt/azurespheresdk/HardwareDefinitions/inc/hw
/opt/azurespheresdk/Sysroots/12/usr/include
/usr/include/x86_64-linux-gnu/c++/9
/usr/include/c++/9
/usr/local/include
/usr/lib/llvm-9/lib/clang/9.0.1/include
/usr/include/x86_64-linux-gnu
/usr/include
Defines:
_POSIX_C_SOURCE
Standard Version: c11
IntelliSense Mode: linux-gcc-x64
Total Memory Usage: 30 MB
------- Workspace parsing diagnostics -------
Number of files discovered (not excluded): 16919
In the process of looking into an IntelliSense issue the Azure Sphere team reported, I noticed some incorrect include paths in the TU.
Log Diagnostics output
Note that there are "x86_64" related include paths in the TU, despite no such paths in the received custom configuration.
When I query the compiler manually (Using the command line that was logged), I get:
The additional paths in the TU appear to be coming from clang, which is the 'default' detected compiler. It's unclear why those paths would be getting merged into this TU, as they are for an entirely different compiler and architecture.