d470ca98e3
Fixing race condition bugs (yay)
31 lines
505 B
JSON
31 lines
505 B
JSON
// Project-local debug tasks
|
|
//
|
|
// For more documentation on how to configure debug tasks,
|
|
// see: https://zed.dev/docs/debugger
|
|
[
|
|
{
|
|
"label": "Build & Run",
|
|
|
|
"adapter": "CodeLLDB",
|
|
"request": "launch",
|
|
|
|
"build": {
|
|
"command": "zig",
|
|
"args": [
|
|
"build",
|
|
"-Doptimize=Debug",
|
|
"-Duse_c_libs=true",
|
|
"-Dvalgrind=true",
|
|
],
|
|
},
|
|
|
|
"program": "zig-out/bin/unsquashfs",
|
|
"args": [
|
|
"--force",
|
|
"-d",
|
|
"testing/TestExtractUnsquashfs",
|
|
"testing/LinuxPATest.sfs",
|
|
],
|
|
},
|
|
]
|