In the beginning...

This commit is contained in:
Zachary Levy
2026-03-08 19:00:41 -07:00
commit f10bf7e3c3
21 changed files with 7536 additions and 0 deletions

12
.zed/debug.json Normal file
View File

@@ -0,0 +1,12 @@
[
{
"label": "Debug",
"program": "out/debug/debug",
"adapter": "CodeLLDB",
"request": "launch",
"build": {
"command": "odin build debug -debug -out=out/debug/debug"
},
"cwd": "$ZED_WORKTREE_ROOT"
}
]

41
.zed/tasks.json Normal file
View File

@@ -0,0 +1,41 @@
[
// ---------------------------------------------------------------------------------------------------------------------
// ----- Odin Tests ------------------------
// ---------------------------------------------------------------------------------------------------------------------
{
"label": "Test many_bits",
"command": "odin test many_bits -out=out/debug/test_many_bits",
"cwd": "$ZED_WORKTREE_ROOT"
},
{
"label": "Test ring",
"command": "odin test ring -out=out/debug/test_ring",
"cwd": "$ZED_WORKTREE_ROOT"
},
{
"label": "Test levsort",
"command": "odin test levsort -out=out/debug/test_levsort",
"cwd": "$ZED_WORKTREE_ROOT"
},
{
"label": "Test levsync",
"command": "odin test levsync -out=out/debug/test_levsync",
"cwd": "$ZED_WORKTREE_ROOT"
},
// ---------------------------------------------------------------------------------------------------------------------
// ----- LMDB Examples ------------------------
// ---------------------------------------------------------------------------------------------------------------------
{
"label": "Run lmdb example",
"command": "odin run vendor/lmdb/examples -debug -out=out/debug/lmdb-examples",
"cwd": "$ZED_WORKTREE_ROOT"
},
// ---------------------------------------------------------------------------------------------------------------------
// ----- Other ------------------------
// ---------------------------------------------------------------------------------------------------------------------
{
"label": "Run debug",
"command": "odin run debug -debug -out=out/debug/debug",
"cwd": "$ZED_WORKTREE_ROOT"
}
]