Skip to content

Instantly share code, notes, and snippets.

@christianparpart
Created September 30, 2019 07:59
Show Gist options
  • Save christianparpart/3bcc7c5af35abb174b6822462776b400 to your computer and use it in GitHub Desktop.
Save christianparpart/3bcc7c5af35abb174b6822462776b400 to your computer and use it in GitHub Desktop.
Solidity VSCode settings
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "solc",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/build/solc/solc",
"args": [ "${workspaceRoot}/C.sol" ],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"externalConsole": false,
"MIMode": "gdb",
"environment": [],
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": false
}
]
},
{
"name": "isoltest",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/build/test/tools/isoltest",
"args": [
"--no-smt",
"--evmonepath=/hoem/trapni/usr/opt/evmone/lib/libevmone.so"
],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": false
}
]
}
]
}
{
"search.exclude": {
"**/build": true,
"**/out": true
},
"cmake.configureSettings": {
"COVERAGE": "OFF"
},
"C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment