mirror of
https://github.com/pestctrl/emacs-config.git
synced 2026-02-16 08:14:15 +00:00
This has changed
This commit is contained in:
parent
270822e99d
commit
4fc034318a
1 changed files with 4 additions and 2 deletions
|
|
@ -45,10 +45,12 @@
|
|||
(lls/ninja-build-tools dir '("clang")))
|
||||
|
||||
(defun ll/clang-output-disassemble-command (file)
|
||||
(let ((compiler (lls/prompt-tool "clang$" (lls/get-llvm-bin-dir)))
|
||||
(let ((compiler (lls/prompt-tool "clang$"))
|
||||
(tmp-file (make-temp-file (file-name-sans-extension (file-name-nondirectory file)))))
|
||||
(string-join
|
||||
(list (lls/get-clang-command-fun compiler file 'compile
|
||||
(list (lls/get-clang-command-fun :compiler compiler
|
||||
:file file
|
||||
:action 'compile
|
||||
:output tmp-file)
|
||||
(lls/get-dis-command-fun tmp-file nil))
|
||||
" && ")))
|
||||
|
|
|
|||
Loading…
Reference in a new issue