You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ardix/.vscode/c_cpp_properties.json

52 lines
1.5 KiB
JSON

{
"configurations": [
{
"name": "at91sam3x8e",
"defines": [
"DEBUG"
],
"compilerPath": "/usr/bin/arm-none-eabi-gcc",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-arm",
"includePath": [
"./include",
"./build/include",
"./arch/at91sam3x8e/include"
],
"compilerArgs": [
"-mcpu=cortex-m3",
"-mthumb",
"-mabi=aapcs",
"-march=armv7-m",
"-masm-syntax-unified",
"-nodefaultlibs",
"-nostartfiles",
"-fno-builtin",
"-Wall",
"-Wstrict-prototypes",
"-Wredundant-decls",
"-Wnested-externs",
"-Wbad-function-cast",
"-Wshadow",
"-Wsign-compare",
"-Wunreachable-code",
"-Wwrite-strings",
"-Wconversion",
"-Waggregate-return",
"-Winline",
"-Wcast-align"
],
"browse": {
"path": [
"./include",
"${workspaceFolder}"
],
"limitSymbolsToIncludedHeaders": true
},
"configurationProvider": "ms-vscode.cmake-tools"
}
],
"version": 4
}