Maybe it’s just me, but after upgrading to the 20250930.2 6.3-dev TBC toolchain (from a 6.2-dev toolchain), debugging in VScode stopped working for me on Windows.
>swift -version
Swift version 6.3-dev (LLVM 75c6640ca938538, Swift 761b88fe9ad462c)
Target: aarch64-unknown-windows-msvc
Build config: +assertions
Launching the debug session would briefly show an activity indicator, and then nothing (no error, no terminal or debug output).
Here’s my launch configuration (I have a CMake-based build system):
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "lldb-dap",
"request": "launch",
"name": "Debug Compositor",
"program": "${workspaceFolder:Compositor-Win}/build/Compositor.exe",
"args": [],
"cwd": "${workspaceFolder:Compositor-Win}/build"
}
]
}
Rolling back to the 20250815.3 6.2-dev TBC toolchain brought debugging back into a working state (just as it was working for me before).
>swift -version
Swift version 6.2-dev (LLVM 45e664ce01ae601, Swift f96a5e5b2b974f5)
Target: aarch64-unknown-windows-msvc
Build config: +assertions
I’m on Windows 11, using swiftlang.swift-vscode Version 2.11.20250905 (set to auto-update).