This has changed

This commit is contained in:
Benson Chu 2024-10-08 09:26:46 -05:00
parent 270822e99d
commit 4fc034318a

View file

@ -45,10 +45,12 @@
(lls/ninja-build-tools dir '("clang"))) (lls/ninja-build-tools dir '("clang")))
(defun ll/clang-output-disassemble-command (file) (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))))) (tmp-file (make-temp-file (file-name-sans-extension (file-name-nondirectory file)))))
(string-join (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) :output tmp-file)
(lls/get-dis-command-fun tmp-file nil)) (lls/get-dis-command-fun tmp-file nil))
" && "))) " && ")))