Skip to content

Commit 3cad691

Browse files
author
Marc Jakobi
committed
fix(dap): mason debugger detection - liblldb path
1 parent a57bcf3 commit 3cad691

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,17 @@ All notable changes to this project will be documented in this file.
66
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
77
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [3.9.4] - 2023-12-01
10+
11+
### Fixed
12+
13+
- DAP: mason.nvim `codelldb` installation detection - liblldb path.
14+
915
## [3.9.3] - 2023-12-01
1016

1117
### Fixed
1218

13-
- DAP: typo in mason.nvim `codelldb` installation detection (╯°□°)╯︵ ┻━┻.
19+
- DAP: Typo in mason.nvim `codelldb` installation detection (╯°□°)╯︵ ┻━┻.
1420

1521
## [3.9.2] - 2023-12-01
1622

lua/rustaceanvim/config/internal.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ local RustaceanDefaultConfig = {
214214
local codelldb_package = mason_registry.get_package('codelldb')
215215
local mason_codelldb_path = compat.joinpath(codelldb_package:get_install_path(), 'extension')
216216
local codelldb_path = compat.joinpath(mason_codelldb_path, 'adapter', 'codelldb')
217-
local liblldb_path = compat.joinpath('lldb', 'lib', 'liblldb')
217+
local liblldb_path = compat.joinpath(mason_codelldb_path, 'lldb', 'lib', 'liblldb')
218218
local shell = require('rustaceanvim.shell')
219219
if shell.is_windows() then
220220
codelldb_path = codelldb_path .. 'exe'

0 commit comments

Comments
 (0)