Skip to content

Commit

Permalink
[dev] vscode debug launch.json (#1537)
Browse files Browse the repository at this point in the history
  • Loading branch information
esigo authored Aug 2, 2022
1 parent 78551fb commit 90fd291
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug on Windows",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/build/<path-to-bin-file>",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false
},
{
"name": "Debug on Linux",
"type": "gdb",
"request": "launch",
"target": "${workspaceFolder}/bazel-bin/<path to the bin file>",
"cwd": "${workspaceRoot}",
"valuesFormatting": "parseText"
}
]
}

1 comment on commit 90fd291

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'OpenTelemetry-cpp api Benchmark'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: 90fd291 Previous: 78551fb Ratio
BM_NaiveSpinLockThrashing/1/process_time/real_time 1.0596990585327148 ms/iter 0.12033680647688494 ms/iter 8.81

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.