1
0
mirror of https://github.com/halleysfifthinc/Toyota-AVC-LAN synced 2025-06-06 23:46:34 +00:00

Add compiler explorer extension for optimizing functions

This commit is contained in:
Allen Hill 2023-09-03 18:16:45 -04:00
parent 9c024506c0
commit 230709a103
2 changed files with 7 additions and 1 deletions

View File

@ -15,7 +15,9 @@
"vscode": { "vscode": {
"extensions": [ "extensions": [
"ms-vscode.cpptools", "ms-vscode.cpptools",
"ms-vscode.cmake-tools" "ms-vscode.cmake-tools",
"rockcat.avr-support",
"harikrishnan94.cxx-compiler-explorer"
] ]
} }
} }

View File

@ -6,5 +6,9 @@
"C_Cpp.files.exclude": { "C_Cpp.files.exclude": {
"build/**": true "build/**": true
}, },
"files.associations": {
"*.S": "avr"
},
"cmake.configureOnOpen": true, "cmake.configureOnOpen": true,
"compilerexplorer.compilationDirectory": "${workspaceFolder}/build",
} }