Also: - Reorganizes some :lang modules' packages.el file. - Adds setuptools check in lang/python - Adds javac check in lang/java - Removes the depends-on! macro
20 lines
676 B
EmacsLisp
20 lines
676 B
EmacsLisp
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
|
;;; lang/rust/doctor.el
|
|
|
|
(assert! (or (not (featurep! +lsp))
|
|
(featurep! :tools lsp))
|
|
"This module requires (:tools lsp)")
|
|
|
|
(unless (executable-find "rust")
|
|
(warn! "Couldn't find rust binary"))
|
|
|
|
(unless (executable-find "cargo")
|
|
(warn! "Couldn't find cargo binary"))
|
|
|
|
(when (require 'racer nil t)
|
|
;; racer
|
|
(unless (file-exists-p racer-cmd)
|
|
(warn! "Couldn't find the racer binary at `racer-cmd'"))
|
|
;; rust source code (rustup component add rust-src)
|
|
(unless (file-directory-p racer-rust-src-path)
|
|
(warn! "Couldn't find Rust's source code at RUST_SRC_PATH or `racer-rust-src-path'.")))
|