mirror of
https://github.com/lifting-bits/sleigh
synced 2026-06-21 13:56:12 +00:00
eb980ff91d
Provides a sandboxed Ubuntu 24.04 environment with LLVM 21 (clang, clangd, lld, lldb, libc++), cmake, ninja, and ccache for building and debugging the decompiler with up-to-date tooling. While there are only minimal VSCode extensions installed by default, I automatically install Claude Code and my own dotfiles plus additional tools
20 lines
342 B
JSON
20 lines
342 B
JSON
{
|
|
"name": "sleigh",
|
|
"build": {
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
"runArgs": [
|
|
"--cap-add=SYS_PTRACE",
|
|
"--security-opt=seccomp=unconfined",
|
|
"--privileged"
|
|
],
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"ms-vscode.cmake-tools",
|
|
"llvm-vs-code-extensions.vscode-clangd",
|
|
]
|
|
}
|
|
}
|
|
}
|