Skip to content

Commit

Permalink
Update IntelliSense modes to correct architecture (#3713)
Browse files Browse the repository at this point in the history
VS Code is saying IntelliSense mode doesn't match what it probes.

Update the IntelliSense modes to use the right compiler & architecture.

I have no idea what this actually affects.
  • Loading branch information
mspang authored and pull[bot] committed Nov 10, 2020
1 parent 6d72b9b commit 1367594
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"name": "Android x64 debug (GN)",
"cStandard": "c11",
"cppStandard": "c++11",
"intelliSenseMode": "gcc-x64",
"intelliSenseMode": "clang-x64",
"compileCommands": "${workspaceFolder}/out/debug/compile_commands.android_x64.json",
"compilerPath": "/opt/android/android-ndk-r21b/toolchains/llvm/prebuilt/linux-x86_64/bin/x86_64-linux-android24-clang",
"browse": {
Expand All @@ -52,7 +52,7 @@
"name": "Android arm64 debug (GN)",
"cStandard": "c11",
"cppStandard": "c++11",
"intelliSenseMode": "gcc-x64",
"intelliSenseMode": "clang-arm64",
"compileCommands": "${workspaceFolder}/out/debug/compile_commands.android_arm64.json",
"compilerPath": "/opt/android/android-ndk-r21b/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android24-clang",
"browse": {
Expand All @@ -64,7 +64,7 @@
"name": "EFR32 examples debug (GN)",
"cStandard": "c11",
"cppStandard": "c++11",
"intelliSenseMode": "gcc-x64",
"intelliSenseMode": "gcc-arm",
"compileCommands": "${workspaceFolder}/out/debug/compile_commands.efr32.json",
"compilerPath": "/opt/ARM-software/gcc-arm-none-eabi-9-2019-q4-major/bin/arm-none-eabi-gcc",
"browse": {
Expand Down

0 comments on commit 1367594

Please sign in to comment.