feat(userspace/apps/test/libc_test): rewrite a lot of the code and improve debugging with vscode using .devcontainer

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
2025-02-25 14:10:12 +00:00
parent 3f2584ac09
commit 78141b28c7
190 changed files with 1648 additions and 3228 deletions

View File

@ -0,0 +1,41 @@
// 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": "C++",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
"settings": {},
"extensions": [
"ms-vsliveshare.vsliveshare",
"ms-azuretools.vscode-docker",
"ms-vscode.cpptools",
"ms-vscode.makefile-tools",
"vivaxy.vscode-conventional-commits",
"EditorConfig.EditorConfig",
"eamodio.gitlens",
"ms-vscode.hexeditor"
]
}
}
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "gcc -v",
// Configure tool-specific properties.
// "customizations": {},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}