Updated VSCode config.

This commit is contained in:
Michael Mueller
2024-09-15 19:51:03 +02:00
parent 3019ed2688
commit 46fc5f748a
2 changed files with 58 additions and 10 deletions

View File

@@ -3,6 +3,8 @@
{ {
"name": "EalánOS", "name": "EalánOS",
"includePath": [ "includePath": [
"${workspaceFolder}/depot/genodelabs/api/libc/**",
"${workspaceFolder}/depot/genodelabs/api/stdcxx/**",
"${workspaceFolder}/repos/**", "${workspaceFolder}/repos/**",
"${workspaceFolder}/repos/mml/**", "${workspaceFolder}/repos/mml/**",
"${workspaceFolder}/repos/libports/include/**", "${workspaceFolder}/repos/libports/include/**",
@@ -21,7 +23,8 @@
"${workspaceFolder}/repos/base/src/core/include/**", "${workspaceFolder}/repos/base/src/core/include/**",
"${workspaceFolder}/repos/base/src/include/**", "${workspaceFolder}/repos/base/src/include/**",
"${workspaceFolder}/repos/base/include/**", "${workspaceFolder}/repos/base/include/**",
"/usr/local/genode/tool/21.05/lib/gcc/x86_64-pc-elf/10.3.0/include" "/usr/local/genode/tool/21.05/lib/gcc/x86_64-pc-elf/10.3.0/include",
"/home/mml/loopbench/**"
], ],
"defines": [ "defines": [
"__GENODE__", "__GENODE__",
@@ -42,9 +45,18 @@
"forcedInclude": [ "forcedInclude": [
"${workspaceFolder}/contrib/libc-c7cd230b11ca71979f32950803bc78b45adfa0ce/include/libc/stdint.h" "${workspaceFolder}/contrib/libc-c7cd230b11ca71979f32950803bc78b45adfa0ce/include/libc/stdint.h"
], ],
"mergeConfigurations": false, "mergeConfigurations": true,
"browse": { "browse": {
"limitSymbolsToIncludedHeaders": true "limitSymbolsToIncludedHeaders": true,
"path": [
"${workspaceFolder}/contrib/libc-c7cd230b11ca71979f32950803bc78b45adfa0ce/include/libc/**",
"${workspaceFolder}/contrib/libc-c7cd230b11ca71979f32950803bc78b45adfa0ce/include/spec/x86_64/libc",
"${workspaceFolder}/contrib/libc-c7cd230b11ca71979f32950803bc78b45adfa0ce/include/libc/sys/**",
"${workspaceFolder}/contrib/stdcxx-d2865c41fafbbf66051d38e7b742c4d5bc2f05a3/include/stdcxx/",
"${workspaceFolder}/contrib/stdcxx-d2865c41fafbbf66051d38e7b742c4d5bc2f05a3/include/stdcxx/std",
"${workspaceFolder}/contrib/stdcxx-d2865c41fafbbf66051d38e7b742c4d5bc2f05a3/include/stdcxx/c_std",
"${workspaceFolder}/repos/libports/include/spec/x86_64/stdcxx"
]
} }
}, },
{ {
@@ -54,11 +66,12 @@
"${workspaceFolder}/repos/base/**" "${workspaceFolder}/repos/base/**"
], ],
"defines": [], "defines": [],
"compilerPath": "/usr/bin/clang", "compilerPath": "/usr/local/genode/tool/21.05/bin/genode-x86-gcc",
"cStandard": "c17", "cStandard": "c17",
"cppStandard": "c++14", "cppStandard": "c++20",
"intelliSenseMode": "linux-clang-x64", "intelliSenseMode": "${default}",
"configurationProvider": "ms-vscode.makefile-tools" "configurationProvider": "ms-vscode.makefile-tools",
"mergeConfigurations": true
} }
], ],
"version": 4 "version": 4

41
.vscode/settings.json vendored
View File

@@ -1,5 +1,20 @@
{ {
"files.associations": { "files.associations": {
"*.rasi": "css",
"*.bbmodel": "json",
"*.sublime-snippet": "xml",
"*.hbs": "html",
"*.ejs": "html",
"*.emu": "html",
"lesskey": "lesskey",
"*.Xresources": "xdefaults",
"i3/config": "i3",
"i3/*.conf": "i3",
"polybar/config": "ini",
"polybar/*.conf": "ini",
"*.S": "gas",
"*.html.en": "html",
"*.html.de": "html",
"stop_token": "cpp", "stop_token": "cpp",
"*.tcc": "cpp", "*.tcc": "cpp",
"initializer_list": "cpp", "initializer_list": "cpp",
@@ -92,7 +107,21 @@
"condition_variable": "cpp", "condition_variable": "cpp",
"iomanip": "cpp", "iomanip": "cpp",
"*.run": "xml", "*.run": "xml",
"span": "cpp" "span": "cpp",
"config.h": "c",
"bench.h": "c",
"hash_map": "cpp",
"hash_set": "cpp",
"strstream": "cpp",
"decimal": "cpp",
"buffer": "cpp",
"netfwd": "cpp",
"propagate_const": "cpp",
"source_location": "cpp",
"complex": "cpp",
"numbers": "cpp",
"typeindex": "cpp",
"bool_set": "cpp"
}, },
"vscode-as-git-mergetool.settingsAssistantOnStartup": false, "vscode-as-git-mergetool.settingsAssistantOnStartup": false,
"makefile.makeDirectory": "build/x86_64", "makefile.makeDirectory": "build/x86_64",
@@ -123,10 +152,16 @@
"makefile.buildLog": ".vscode/build.log", "makefile.buildLog": ".vscode/build.log",
"definition-autocompletion.update_index_on_change": true, "definition-autocompletion.update_index_on_change": true,
"definition-autocompletion.update_index_interval": 5, "definition-autocompletion.update_index_interval": 5,
"C_Cpp.intelliSenseEngineFallback": "disabled", "C_Cpp.intelliSenseEngineFallback": "enabled",
"makefile.extensionLog": ".vscode/extension.log", "makefile.extensionLog": ".vscode/extension.log",
"makefile.ignoreDirectoryCommands": false, "makefile.ignoreDirectoryCommands": false,
"html.format.wrapLineLength": 80, "html.format.wrapLineLength": 80,
"editor.wordWrap": "bounded", "editor.wordWrap": "bounded",
"editor.wordWrapColumn": 90 "editor.wordWrapColumn": 90,
"editor.fontSize": 12,
"terminal.integrated.shellIntegration.suggestEnabled": true,
"git.mergeEditor": true,
"merge-conflict.autoNavigateNextConflict.enabled": true,
"git.ignoreLimitWarning": true,
"customizeUI.statusBarPosition": "under-panel"
} }