ref: e06dd405bc9548ad6e1250b01d6132fbe032bc4d
.vscode/c_cpp_properties.json
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
{ "env": { // TODO: This is a duplication of the configuration set in /docker/build.sh! "TOOLS_DIR": "/opt", "GCC_ARM_PATH": "gcc-arm-none-eabi-10.3-2021.10" }, "configurations": [ { "name": "nrfCC", "includePath": [ "${workspaceFolder}/**", "${workspaceFolder}/src/**", "${workspaceFolder}/src" ], "defines": [], "compilerPath": "${env:ARM_NONE_EABI_TOOLCHAIN_PATH}/bin/arm-none-eabi-gcc", "cStandard": "c11", "cppStandard": "c++20", "intelliSenseMode": "linux-gcc-arm", "configurationProvider": "ms-vscode.cpp-tools", "compileCommands": "${workspaceFolder}/build/compile_commands.json" }, { "name": "nrfCC Devcontainer", "includePath": [ "${workspaceFolder}/**", "${workspaceFolder}/src/**", "${workspaceFolder}/src" ], "defines": [], "compilerPath": "${TOOLS_DIR}/${GCC_ARM_PATH}/bin/arm-none-eabi-gcc", "cStandard": "c99", "cppStandard": "c++20", "intelliSenseMode": "linux-gcc-arm", "configurationProvider": "ms-vscode.cpp-tools", "compileCommands": "${workspaceFolder}/build/compile_commands.json" } ], "version": 4 } |