Variable: verilog-compiler

verilog-compiler is a customizable variable defined in verilog-mode.el.gz.

Value

"echo 'No verilog-compiler set, see \"M-x describe-variable verilog-compiler\"'"

Documentation

Program and arguments to use to compile Verilog source.

Depending on the verilog-set-compile-command, this may be invoked when you type M-x compile (compile). When the compile completes, C-x ` (next-error) will take you to the next lint error.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
;; We don't mark it safe, as it's used as a shell command

(defcustom verilog-compiler
  "echo 'No verilog-compiler set, see \"M-x describe-variable verilog-compiler\"'"
  "Program and arguments to use to compile Verilog source.
Depending on the `verilog-set-compile-command', this may be invoked when
you type \\[compile].  When the compile completes, \\[next-error] will take
you to the next lint error."
  :type 'string
  :group 'verilog-mode-actions)