Skip to content

Commit

Permalink
Tmp workspace changes
Browse files Browse the repository at this point in the history
  • Loading branch information
codygunton committed Nov 13, 2023
1 parent 669d210 commit fb19414
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
3 changes: 2 additions & 1 deletion barretenberg/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,5 +127,6 @@
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"cmake.sourceDirectory": "${workspaceFolder}/cpp"
"cmake.sourceDirectory": "${workspaceFolder}/cpp",
"clangd.path": "/Users/cody/Library/Application Support/Code/User/globalStorage/llvm-vs-code-extensions.vscode-clangd/install/16.0.2/clangd_16.0.2/bin/clangdrere"
}
2 changes: 1 addition & 1 deletion barretenberg/barretenberg.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
// Clangd. Note that this setting may be overridden by user settings
// to the default value "clangd".
//
"clangd.path": "clangd-16",
"clangd.path": "/Users/cody/Library/Application Support/Code/User/globalStorage/llvm-vs-code-extensions.vscode-clangd/install/16.0.2/clangd_16.0.2/bin/clangd",
// We should disable automatic inclusion of headers unless we decide to follow "WhyIWYU".
"clangd.arguments": [
"-header-insertion=never"
Expand Down
23 changes: 23 additions & 0 deletions barretenberg/cpp/CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,19 @@
"TARGET_ARCH": "skylake"
}
},
{
"name": "default-dbg",
"displayName": "Debugging build with Clang",
"description": "Build with globally installed Clang in debug mode",
"inherits": "default",
"environment": {
"CMAKE_BUILD_TYPE": "Debug"
},
"cacheVariables": {
"ENABLE_ASAN": "OFF",
"DISABLE_ASM": "ON"
}
},
{
"name": "homebrew",
"displayName": "Homebrew + Clang",
Expand Down Expand Up @@ -250,6 +263,11 @@
"inheritConfigureEnvironment": true,
"jobs": 0
},
{
"name": "default-dbg",
"inherits": "default",
"configurePreset": "default-dbg"
},
{
"name": "homebrew",
"inherits": "default",
Expand Down Expand Up @@ -360,6 +378,11 @@
"configurePreset": "default",
"inheritConfigureEnvironment": true
},
{
"name": "default-dbg",
"inherits": "default",
"configurePreset": "default-dbg"
},
{
"name": "homebrew",
"inherits": "default",
Expand Down

0 comments on commit fb19414

Please sign in to comment.