forked from emacs-lsp/dap-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dap-lldb.el
64 lines (50 loc) · 2.46 KB
/
dap-lldb.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
;;; dap-lldb.el --- Debug Adapter Protocol mode for LLDB -*- lexical-binding: t; -*-
;; Copyright (C) 2018 Daniel Martín
;; Author: Daniel Martín <[email protected]>
;; Keywords: languages
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;; URL: https://github.com/yyoncho/dap-mode
;; Package-Requires: ((emacs "25.1") (dash "2.14.1") (lsp-mode "4.0"))
;; Version: 0.2
;;; Commentary:
;; Adapter for https://github.com/llvm-mirror/lldb/tree/master/tools/lldb-vscode
;;; Code:
(require 'dap-mode)
(defcustom dap-lldb-debug-program `(,(expand-file-name "~/.vscode/extensions/llvm-org.lldb-vscode-0.1.0/bin/lldb-vscode"))
"The path to the LLDB debugger."
:group 'dap-lldb
:type '(repeat string))
(defcustom dap-lldb-debugged-program-function 'buffer-file-name
"The function to get the path of the file to be debugged."
:group 'dap-lldb
:type 'symbol)
(defun dap-lldb--populate-start-file-args (conf)
"Populate CONF with the required arguments."
(-> conf
(dap--put-if-absent :dap-server-path dap-lldb-debug-program)
(dap--put-if-absent :type "lldb")
(dap--put-if-absent :cwd default-directory)
(dap--put-if-absent :program (if (commandp dap-lldb-debugged-program-function)
(call-interactively dap-lldb-debugged-program-function)
(funcall dap-lldb-debugged-program-function)))
(dap--put-if-absent :name "LLDB Debug")))
(eval-after-load "dap-mode"
'(progn
(dap-register-debug-provider "lldb" 'dap-lldb--populate-start-file-args)
(dap-register-debug-template "LLDB Run Configuration"
(list :type "lldb"
:cwd nil
:request "launch"
:program nil
:name "LLDB::Run"))))
(provide 'dap-lldb)
;;; dap-lldb.el ends here