Add debug config for 32-bit AES

This commit is contained in:
Manuel Thalmann 2023-12-12 18:37:00 +01:00
parent d8dd138d41
commit 7ca06f642a

View file

@ -94,6 +94,15 @@
"cwd": "${workspaceFolder:AES}"
},
"problemMatcher": []
},
{
"label": "Build 32-bit AES Project",
"type": "shell",
"command": "make",
"options": {
"cwd": "${workspaceFolder:AES 32-bit}"
},
"problemMatcher": []
}
]
},
@ -111,6 +120,15 @@
"args": [],
"cwd": "${workspaceFolder:AES}",
"preLaunchTask": "Build AES Project"
},
{
"type": "lldb",
"request": "launch",
"name": "Launch 32-bit AES Project",
"program": "${workspaceFolder:AES 32-bit}/bin/aes",
"args": [],
"cwd": "${workspaceFolder:AES 32-bit}",
"preLaunchTask": "Build 32-bit AES Project"
}
],
"compounds": []