codelldb: Could not initialize Python interpreter
Which OS: macOs Catalina (10.15) Which VSCode version: 1.39.2 Which extension version: 1.4.0 Which adapter type: native Which LLDB version: lldb-1100.0.28.19 Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7)
What is the problem:
I tried to debug a simple program in C with a couple of breakpoints. But when I run it I get this:

The log:
configuration: { type: 'lldb', request: 'launch', name: 'Debug', program: '${workspaceFolder}/compiler', args: [], cwd: '${workspaceFolder}', relativePathBase: '/Users/javier/Documents/Practica1/compiler' } liblldb: /Users/javier/.vscode/extensions/vadimcn.vscode-lldb-1.4.0/lldb/lib/liblldb.9.0.0-custom.dylib libpython: null environment: {} params: {} [2019-10-23T12:41:10Z ERROR codelldb] load_python: Internal("\"dlopen(/Users/javier/.vscode/extensions/vadimcn.vscode-lldb-1.4.0/adapter2/libcodelldb_python.dylib, 257): Symbol not found: _PyBool_Type\\n Referenced from: /Users/javier/.vscode/extensions/vadimcn.vscode-lldb-1.4.0/adapter2/libcodelldb_python.dylib\\n Expected in: flat namespace\\n in /Users/javier/.vscode/extensions/vadimcn.vscode-lldb-1.4.0/adapter2/libcodelldb_python.dylib\"") Listening on port 52819 [2019-10-23T12:41:10Z DEBUG codelldb] New debug session [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] --> {"command":"initialize","arguments":{"clientID":"vscode","clientName":"Visual Studio Code","adapterID":"lldb","pathFormat":"path","linesStartAt1":true,"columnsStartAt1":true,"supportsVariableType":true,"supportsVariablePaging":true,"supportsRunInTerminalRequest":true,"locale":"en-gb"},"type":"request","seq":1} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"response","request_seq":1,"success":true,"command":"initialize","body":{"exceptionBreakpointFilters":[{"default":true,"filter":"cpp_throw","label":"C++: on throw"},{"default":false,"filter":"cpp_catch","label":"C++: on catch"}],"supportTerminateDebuggee":true,"supportsCompletionsRequest":true,"supportsConditionalBreakpoints":true,"supportsConfigurationDoneRequest":true,"supportsDataBreakpoints":true,"supportsDelayedStackTraceLoading":true,"supportsEvaluateForHovers":true,"supportsFunctionBreakpoints":true,"supportsGotoTargetsRequest":true,"supportsHitConditionalBreakpoints":true,"supportsLogPoints":true,"supportsRestartFrame":true,"supportsSetVariable":true}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] --> {"command":"launch","arguments":{"type":"lldb","request":"launch","name":"Debug","program":"/Users/javier/Documents/Practica1/compiler/compiler","args":[],"cwd":"/Users/javier/Documents/Practica1/compiler","relativePathBase":"/Users/javier/Documents/Practica1/compiler","_adapterSettings":{"displayFormat":"auto","showDisassembly":"auto","dereferencePointers":true,"suppressMissingSourceFiles":true,"evaluationTimeout":5,"consoleMode":"commands","sourceLanguages":null},"__sessionId":"1f9e0fb8-9588-4a96-a30e-c41a4d136b29"},"type":"request","seq":2} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":1,"event":"output","body":{"category":"stderr","output":"Could not initialize Python interpreter - only native expressions will be available.\n"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":2,"event":"initialized"} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] --> {"command":"setBreakpoints","arguments":{"source":{"name":"syntacticAnalyzer.c","path":"/Users/javier/Documents/Practica1/compiler/syntacticAnalyzer.c"},"lines":[16,19,21],"breakpoints":[{"line":16},{"line":19},{"line":21}],"sourceModified":false},"type":"request","seq":3} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"response","request_seq":3,"success":true,"command":"setBreakpoints","body":{"breakpoints":[{"id":1,"message":"Locations: 0","verified":false},{"id":2,"message":"Locations: 0","verified":false},{"id":3,"message":"Locations: 0","verified":false}]}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] --> {"command":"setFunctionBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":4} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"response","request_seq":4,"success":true,"command":"setFunctionBreakpoints","body":{"breakpoints":[]}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] --> {"command":"setExceptionBreakpoints","arguments":{"filters":["cpp_throw"]},"type":"request","seq":5} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"response","request_seq":5,"success":true,"command":"setExceptionBreakpoints"} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] --> {"command":"setDataBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":6} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"response","request_seq":6,"success":true,"command":"setDataBreakpoints","body":{"breakpoints":[]}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] --> {"command":"configurationDone","type":"request","seq":7} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"request","seq":3,"command":"runInTerminal","arguments":{"args":["/Users/javier/.vscode/extensions/vadimcn.vscode-lldb-1.4.0/adapter2/codelldb","terminal-agent","--port=52821"],"cwd":"","kind":"integrated","title":"Debug"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] --> {"type":"response","seq":8,"command":"runInTerminal","request_seq":3,"success":true,"body":{"shellProcessId":7138}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":4,"event":"output","body":{"output":"Launching: /Users/javier/Documents/Practica1/compiler/compiler\n"}} [2019-10-23T12:41:10Z DEBUG codelldb::debug_session] Debug event: 0x7fb0b7e28e68 Event: broadcaster = 0x7fb0bc001218 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {} [2019-10-23T12:41:10Z DEBUG codelldb::debug_session] Debug event: 0x7fb0b7e28f28 Event: broadcaster = 0x7fb0bc001218 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"response","request_seq":2,"success":true,"command":"launch"} [2019-10-23T12:41:10Z DEBUG codelldb::debug_session] Debug event: 0x7fb0b7e28fe8 Event: broadcaster = 0x7fb0bc001218 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"response","request_seq":7,"success":true,"command":"configurationDone"} [2019-10-23T12:41:10Z DEBUG codelldb::debug_session] Debug event: 0x7fb0b7e291b8 Event: broadcaster = 0x7fb0bc001218 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {} [2019-10-23T12:41:10Z DEBUG codelldb::debug_session] Debug event: 0x7fb0ba30b928 Event: broadcaster = 0x7fb0bc001218 (lldb.target), type = 0x00000002 (modules-loaded), data = {dyld, compiler} [2019-10-23T12:41:10Z DEBUG codelldb::debug_session] Debug event: 0x7fb0ba30aa30 Event: broadcaster = 0x7fb0bc011c50 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fb0bc011c18 (pid = 8943), state = running} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":5,"event":"module","body":{"module":{"addressRange":"100008000","id":"100008000","name":"dyld","path":"/usr/lib/dyld","symbolFilePath":"/usr/lib/dyld","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":6,"event":"module","body":{"module":{"addressRange":"100000000","id":"100000000","name":"compiler","path":"/Users/javier/Documents/Practica1/compiler/compiler","symbolFilePath":"/Users/javier/Documents/Practica1/compiler/compiler","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":7,"event":"continued","body":{"allThreadsContinued":true,"threadId":0}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] --> {"command":"threads","type":"request","seq":9} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"response","request_seq":9,"success":true,"command":"threads","body":{"threads":[{"id":161865,"name":"1: tid=161865"}]}} [2019-10-23T12:41:10Z DEBUG codelldb::debug_session] Debug event: 0x7fb0ba32a888 Event: broadcaster = 0x7fb0bc001218 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {} [2019-10-23T12:41:10Z DEBUG codelldb::debug_session] Debug event: 0x7fb0ba00a518 Event: broadcaster = 0x7fb0bc001218 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {} [2019-10-23T12:41:10Z DEBUG codelldb::debug_session] Debug event: 0x7fb0ba00a6e8 Event: broadcaster = 0x7fb0bc001218 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":8,"event":"breakpoint","body":{"breakpoint":{"id":4,"message":"Locations: 2","verified":true},"reason":"changed"}} [2019-10-23T12:41:10Z DEBUG codelldb::debug_session] Debug event: 0x7fb0b7d14d38 Event: broadcaster = 0x7fb0bc001218 (lldb.target), type = 0x00000002 (modules-loaded), data = {libc++.1.dylib, libSystem.B.dylib, libc++abi.dylib, libcache.dylib, libcommonCrypto.dylib, libcompiler_rt.dylib, libcopyfile.dylib, libcorecrypto.dylib, libdispatch.dylib, libdyld.dylib, libkeymgr.dylib, liblaunch.dylib, libmacho.dylib, libquarantine.dylib, libremovefile.dylib, libsystem_asl.dylib, libsystem_blocks.dylib, libsystem_c.dylib, libsystem_configuration.dylib, libsystem_coreservices.dylib, libsystem_darwin.dylib, libsystem_dnssd.dylib, libsystem_featureflags.dylib, libsystem_info.dylib, libsystem_m.dylib, libsystem_malloc.dylib, libsystem_networkextension.dylib, libsystem_notify.dylib, libsystem_sandbox.dylib, libsystem_secinit.dylib, libsystem_kernel.dylib, libsystem_platform.dylib, libsystem_pthread.dylib, libsystem_symptoms.dylib, libsystem_trace.dylib, libunwind.dylib, libxpc.dylib, libobjc.A.dylib} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":9,"event":"module","body":{"module":{"addressRange":"7FFF710CD000","id":"7FFF710CD000","name":"libc++.1.dylib","path":"/usr/lib/libc++.1.dylib","symbolFilePath":"/usr/lib/libc++.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":10,"event":"module","body":{"module":{"addressRange":"7FFF70DEF000","id":"7FFF70DEF000","name":"libSystem.B.dylib","path":"/usr/lib/libSystem.B.dylib","symbolFilePath":"/usr/lib/libSystem.B.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":11,"event":"module","body":{"module":{"addressRange":"7FFF71121000","id":"7FFF71121000","name":"libc++abi.dylib","path":"/usr/lib/libc++abi.dylib","symbolFilePath":"/usr/lib/libc++abi.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":12,"event":"module","body":{"module":{"addressRange":"7FFF73D5E000","id":"7FFF73D5E000","name":"libcache.dylib","path":"/usr/lib/system/libcache.dylib","symbolFilePath":"/usr/lib/system/libcache.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":13,"event":"module","body":{"module":{"addressRange":"7FFF73D64000","id":"7FFF73D64000","name":"libcommonCrypto.dylib","path":"/usr/lib/system/libcommonCrypto.dylib","symbolFilePath":"/usr/lib/system/libcommonCrypto.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":14,"event":"module","body":{"module":{"addressRange":"7FFF73D70000","id":"7FFF73D70000","name":"libcompiler_rt.dylib","path":"/usr/lib/system/libcompiler_rt.dylib","symbolFilePath":"/usr/lib/system/libcompiler_rt.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":15,"event":"module","body":{"module":{"addressRange":"7FFF73D78000","id":"7FFF73D78000","name":"libcopyfile.dylib","path":"/usr/lib/system/libcopyfile.dylib","symbolFilePath":"/usr/lib/system/libcopyfile.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":16,"event":"module","body":{"module":{"addressRange":"7FFF73D82000","id":"7FFF73D82000","name":"libcorecrypto.dylib","path":"/usr/lib/system/libcorecrypto.dylib","symbolFilePath":"/usr/lib/system/libcorecrypto.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":17,"event":"module","body":{"module":{"addressRange":"7FFF73F30000","id":"7FFF73F30000","name":"libdispatch.dylib","path":"/usr/lib/system/libdispatch.dylib","symbolFilePath":"/usr/lib/system/libdispatch.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":18,"event":"module","body":{"module":{"addressRange":"7FFF73F72000","id":"7FFF73F72000","name":"libdyld.dylib","path":"/usr/lib/system/libdyld.dylib","symbolFilePath":"/usr/lib/system/libdyld.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":19,"event":"module","body":{"module":{"addressRange":"7FFF73FA8000","id":"7FFF73FA8000","name":"libkeymgr.dylib","path":"/usr/lib/system/libkeymgr.dylib","symbolFilePath":"/usr/lib/system/libkeymgr.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":20,"event":"module","body":{"module":{"addressRange":"7FFF73FB6000","id":"7FFF73FB6000","name":"liblaunch.dylib","path":"/usr/lib/system/liblaunch.dylib","symbolFilePath":"/usr/lib/system/liblaunch.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":21,"event":"module","body":{"module":{"addressRange":"7FFF73FB7000","id":"7FFF73FB7000","name":"libmacho.dylib","path":"/usr/lib/system/libmacho.dylib","symbolFilePath":"/usr/lib/system/libmacho.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":22,"event":"module","body":{"module":{"addressRange":"7FFF73FBD000","id":"7FFF73FBD000","name":"libquarantine.dylib","path":"/usr/lib/system/libquarantine.dylib","symbolFilePath":"/usr/lib/system/libquarantine.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":23,"event":"module","body":{"module":{"addressRange":"7FFF73FC0000","id":"7FFF73FC0000","name":"libremovefile.dylib","path":"/usr/lib/system/libremovefile.dylib","symbolFilePath":"/usr/lib/system/libremovefile.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":24,"event":"module","body":{"module":{"addressRange":"7FFF73FC2000","id":"7FFF73FC2000","name":"libsystem_asl.dylib","path":"/usr/lib/system/libsystem_asl.dylib","symbolFilePath":"/usr/lib/system/libsystem_asl.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":25,"event":"module","body":{"module":{"addressRange":"7FFF73FDA000","id":"7FFF73FDA000","name":"libsystem_blocks.dylib","path":"/usr/lib/system/libsystem_blocks.dylib","symbolFilePath":"/usr/lib/system/libsystem_blocks.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":26,"event":"module","body":{"module":{"addressRange":"7FFF73FDB000","id":"7FFF73FDB000","name":"libsystem_c.dylib","path":"/usr/lib/system/libsystem_c.dylib","symbolFilePath":"/usr/lib/system/libsystem_c.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":27,"event":"module","body":{"module":{"addressRange":"7FFF74063000","id":"7FFF74063000","name":"libsystem_configuration.dylib","path":"/usr/lib/system/libsystem_configuration.dylib","symbolFilePath":"/usr/lib/system/libsystem_configuration.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":28,"event":"module","body":{"module":{"addressRange":"7FFF74067000","id":"7FFF74067000","name":"libsystem_coreservices.dylib","path":"/usr/lib/system/libsystem_coreservices.dylib","symbolFilePath":"/usr/lib/system/libsystem_coreservices.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":29,"event":"module","body":{"module":{"addressRange":"7FFF7406B000","id":"7FFF7406B000","name":"libsystem_darwin.dylib","path":"/usr/lib/system/libsystem_darwin.dylib","symbolFilePath":"/usr/lib/system/libsystem_darwin.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":30,"event":"module","body":{"module":{"addressRange":"7FFF74073000","id":"7FFF74073000","name":"libsystem_dnssd.dylib","path":"/usr/lib/system/libsystem_dnssd.dylib","symbolFilePath":"/usr/lib/system/libsystem_dnssd.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":31,"event":"module","body":{"module":{"addressRange":"7FFF7407B000","id":"7FFF7407B000","name":"libsystem_featureflags.dylib","path":"/usr/lib/system/libsystem_featureflags.dylib","symbolFilePath":"/usr/lib/system/libsystem_featureflags.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":32,"event":"module","body":{"module":{"addressRange":"7FFF7407D000","id":"7FFF7407D000","name":"libsystem_info.dylib","path":"/usr/lib/system/libsystem_info.dylib","symbolFilePath":"/usr/lib/system/libsystem_info.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":33,"event":"module","body":{"module":{"addressRange":"7FFF740F8000","id":"7FFF740F8000","name":"libsystem_m.dylib","path":"/usr/lib/system/libsystem_m.dylib","symbolFilePath":"/usr/lib/system/libsystem_m.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":34,"event":"module","body":{"module":{"addressRange":"7FFF74140000","id":"7FFF74140000","name":"libsystem_malloc.dylib","path":"/usr/lib/system/libsystem_malloc.dylib","symbolFilePath":"/usr/lib/system/libsystem_malloc.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":35,"event":"module","body":{"module":{"addressRange":"7FFF74168000","id":"7FFF74168000","name":"libsystem_networkextension.dylib","path":"/usr/lib/system/libsystem_networkextension.dylib","symbolFilePath":"/usr/lib/system/libsystem_networkextension.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":36,"event":"module","body":{"module":{"addressRange":"7FFF74176000","id":"7FFF74176000","name":"libsystem_notify.dylib","path":"/usr/lib/system/libsystem_notify.dylib","symbolFilePath":"/usr/lib/system/libsystem_notify.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":37,"event":"module","body":{"module":{"addressRange":"7FFF74195000","id":"7FFF74195000","name":"libsystem_sandbox.dylib","path":"/usr/lib/system/libsystem_sandbox.dylib","symbolFilePath":"/usr/lib/system/libsystem_sandbox.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":38,"event":"module","body":{"module":{"addressRange":"7FFF7419A000","id":"7FFF7419A000","name":"libsystem_secinit.dylib","path":"/usr/lib/system/libsystem_secinit.dylib","symbolFilePath":"/usr/lib/system/libsystem_secinit.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":39,"event":"module","body":{"module":{"addressRange":"7FFF740CB000","id":"7FFF740CB000","name":"libsystem_kernel.dylib","path":"/usr/lib/system/libsystem_kernel.dylib","symbolFilePath":"/usr/lib/system/libsystem_kernel.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":40,"event":"module","body":{"module":{"addressRange":"7FFF74180000","id":"7FFF74180000","name":"libsystem_platform.dylib","path":"/usr/lib/system/libsystem_platform.dylib","symbolFilePath":"/usr/lib/system/libsystem_platform.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":41,"event":"module","body":{"module":{"addressRange":"7FFF7418A000","id":"7FFF7418A000","name":"libsystem_pthread.dylib","path":"/usr/lib/system/libsystem_pthread.dylib","symbolFilePath":"/usr/lib/system/libsystem_pthread.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":42,"event":"module","body":{"module":{"addressRange":"7FFF7419D000","id":"7FFF7419D000","name":"libsystem_symptoms.dylib","path":"/usr/lib/system/libsystem_symptoms.dylib","symbolFilePath":"/usr/lib/system/libsystem_symptoms.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":43,"event":"module","body":{"module":{"addressRange":"7FFF741A5000","id":"7FFF741A5000","name":"libsystem_trace.dylib","path":"/usr/lib/system/libsystem_trace.dylib","symbolFilePath":"/usr/lib/system/libsystem_trace.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":44,"event":"module","body":{"module":{"addressRange":"7FFF741BD000","id":"7FFF741BD000","name":"libunwind.dylib","path":"/usr/lib/system/libunwind.dylib","symbolFilePath":"/usr/lib/system/libunwind.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":45,"event":"module","body":{"module":{"addressRange":"7FFF741C3000","id":"7FFF741C3000","name":"libxpc.dylib","path":"/usr/lib/system/libxpc.dylib","symbolFilePath":"/usr/lib/system/libxpc.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":46,"event":"module","body":{"module":{"addressRange":"7FFF72C12000","id":"7FFF72C12000","name":"libobjc.A.dylib","path":"/usr/lib/libobjc.A.dylib","symbolFilePath":"/usr/lib/libobjc.A.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}} [2019-10-23T12:41:10Z DEBUG codelldb::debug_session] Debug event: 0x7fb0b7e6f520 Event: broadcaster = 0x7fb0bc011c50 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fb0bc011c18 (pid = 8943), state = exited} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":47,"event":"output","body":{"output":"Process exited with code 0.\n"}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":48,"event":"exited","body":{"exitCode":0}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"event","seq":49,"event":"terminated","body":{}} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] --> {"command":"disconnect","arguments":{"restart":false},"type":"request","seq":10} [2019-10-23T12:41:10Z DEBUG codelldb::wire_protocol] <-- {"type":"response","request_seq":10,"success":true,"command":"disconnect"} [2019-10-23T12:41:10Z ERROR codelldb::debug_session] Stream::poll after shutdown [2019-10-23T12:41:10Z DEBUG codelldb] ### session_to_client stream terminated [2019-10-23T12:41:10Z INFO codelldb] ### server resolved: Ok(()) [2019-10-23T12:41:10Z INFO codelldb] ### client_to_session stream terminated [2019-10-23T12:41:10Z DEBUG codelldb::debug_session] ### AsyncDebugSession::drop() [2019-10-23T12:41:10Z DEBUG codelldb] ### Exiting Debug adapter exit code=0, signal=null.
About this issue
- Original URL
- State: closed
- Created 5 years ago
- Reactions: 1
- Comments: 16 (7 by maintainers)
@JavierYepez: I was interested in the “Variables” section.
I’ve tested with system and brew python3, not with conda. Finding location of libpython3 is proving to be a headache 😦 If you can locate it yourself, set the
lldb.libpythonconfiguration parameter.