Variable: vhdl-compiler
vhdl-compiler is a customizable variable defined in vhdl-mode.el.gz.
Value
"GHDL"
Documentation
Specifies the VHDL compiler to be used for syntax analysis.
Select a compiler name from the ones defined in option vhdl-compiler-alist.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defcustom vhdl-compiler "GHDL"
"Specifies the VHDL compiler to be used for syntax analysis.
Select a compiler name from the ones defined in option `vhdl-compiler-alist'."
:type (let ((alist vhdl-compiler-alist) list)
(while alist
(push (list 'const (caar alist)) list)
(setq alist (cdr alist)))
(append '(choice) (nreverse list)))
:group 'vhdl-compile)