You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using CMake Tools as a configuration provider for vscode-cpptools, I'm seeing that it returns x64 intelliSenseMode for x86 compiler. 'msvc-x86' is expected:
The x86 intelliSenseModes are relatively recent additions in cpptools, so this probably predates them. Though, if the compiler is gcc, gcc intelliSenseMode's should be used.
The text was updated successfully, but these errors were encountered:
When using CMake Tools as a configuration provider for vscode-cpptools, I'm seeing that it returns x64 intelliSenseMode for x86 compiler. 'msvc-x86' is expected:
It looks like the only 2 values it returns are msvc-x64 and clang-x64. The following is from cpptools.ts, line ~270.
The x86 intelliSenseModes are relatively recent additions in cpptools, so this probably predates them. Though, if the compiler is gcc, gcc intelliSenseMode's should be used.
The text was updated successfully, but these errors were encountered: