-
Notifications
You must be signed in to change notification settings - Fork 61
/
devcontainer.json
31 lines (31 loc) · 1.07 KB
/
devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/cpp
{
"name": "remill-workshop",
"image": "ghcr.io/llvmparty/remillworkshop:20240808_b94d6786",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"llvm-vs-code-extensions.vscode-clangd",
"sunshaoce.llvmir",
"twxs.cmake",
"ms-vscode.cmake-tools",
"EditorConfig.EditorConfig",
"tamasfe.even-better-toml",
"ms-vscode.cpptools",
"tintinweb.graphviz-interactive-preview",
"esbenp.prettier-vscode"
]
},
"codespaces": {
"openFiles": [
"src/bc-tool.cpp"
]
}
},
"remoteEnv": {
"PATH": "${containerWorkspaceFolder}/build:/cxx-common/install/bin:${containerEnv:PATH}"
},
"postCreateCommand": "rm -rf build && cmake --preset clang"
}