更新 .devcontainer/devcontainer.json
All checks were successful
CI Pipeline / build (push) Successful in 4s

This commit is contained in:
2025-12-14 03:42:58 +00:00
parent 2df7d32f97
commit b247f1133f

View File

@@ -1,7 +1,7 @@
{
"name": "DevContainerExample",
"image": "mcr.microsoft.com/devcontainers/base:dev-ubuntu-20.04",
"postCreateCommand": "sudo apt-get update && sudo apt-get install -y gdb && make",
"image": "devstar.cn/base/dev-base:latest",
"postCreateCommand": "gcc -v",
"customizations": {
"vscode": {
"settings": {
@@ -21,5 +21,5 @@
}
},
"initializeCommand": "gdb -ex 'set confirm off' -ex quit", // 初始化GDB配置
"postAttachCommand": "make debug"
"postAttachCommand": "make"
}