You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CodeLLDB version: 1.11.3
Compiler: Swift
Debuggee: executable
Fresh install of debian 12 with bundled python 3.11.2, Gnome, VSCode (via deb package), Swift 6.03, 'Swift Programming Language' extension which depends on CodeLLDB. Just the starter app of swift package init --name MyCLI --type executable and then using VSCode's 'Start Debugging' to reproduce. I also suspect that this is what was encountered here before they ran off without leaving a response.
Verbose log
Verbose logging: on (Use "lldb.verboseLogging" setting to change)
Platform: linux x64
Initial debug configuration: {
type: 'lldb',
request: 'launch',
args: [],
cwd: '${workspaceFolder:cli}',
name: 'Debug cli',
program: '${workspaceFolder:cli}/.build/debug/cli',
preLaunchTask: 'swift: Build Debug cli',
__configurationTarget: 6
}
Resolved debug configuration: {
type: 'lldb',
request: 'launch',
args: [],
cwd: '${workspaceFolder:cli}',
name: 'Debug cli',
program: '${workspaceFolder:cli}/.build/debug/cli',
preLaunchTask: 'swift: Build Debug cli',
__configurationTarget: 6,
expressions: 'native',
relativePathBase: '/home/nik/code/swiftlearn/cli',
_adapterSettings: {
displayFormat: 'auto',
showDisassembly: 'auto',
dereferencePointers: true,
suppressMissingSourceFiles: true,
evaluationTimeout: 5,
consoleMode: 'commands',
sourceLanguages: null,
scriptConfig: {},
terminalPromptClear: null,
evaluateForHovers: true,
commandCompletions: true,
reproducer: false
}
}
Launching adapter
liblldb: /home/nik/.local/share/swiftly/toolchains/6.0.3/usr/lib/liblldb.so
environment: {}
settings: { evaluateForHovers: true, commandCompletions: true }
thread 'main' panicked at adapter/codelldb/bin/main.rs:57:57:
called `Result::unwrap()` on an `Err` value: "\"libpython3.10.so.1.0: cannot open shared object file: No such file or directory\""
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Debug adapter exit code=101 (0x65), signal=null.
swift --version
Swift version 6.0.3 (swift-6.0.3-RELEASE)
Target: x86_64-unknown-linux-gnu
The text was updated successfully, but these errors were encountered:
This isn't a bundled Python issue - since you've replaced liblldb, it will attempt to load the Python version it was linked with. Make sure that Python 3.10 is actually installed. If it is, you may need to set LD_LIBRARY_PATH (via lldb.adapterEnv) so the dynamic linker can find it.
OS:
Debian 12
VSCode version:
CodeLLDB version:
1.11.3
Compiler:
Swift
Debuggee:
executable
Fresh install of debian 12 with bundled python 3.11.2, Gnome, VSCode (via deb package), Swift 6.03, 'Swift Programming Language' extension which depends on CodeLLDB. Just the starter app of
swift package init --name MyCLI --type executable
and then using VSCode's 'Start Debugging' to reproduce. I also suspect that this is what was encountered here before they ran off without leaving a response.Verbose log
The text was updated successfully, but these errors were encountered: