Variable: verilog-library-files
verilog-library-files is a customizable variable defined in
verilog-mode.el.gz.
Value
nil
Documentation
List of files to search for modules.
AUTOINST will use this when it needs to resolve a module name. This is a complete path, usually to a technology file with many standard cells defined in it.
You might want these defined in each file; put at the *END* of your file something like:
// Local Variables:
// verilog-library-files:("/path/technology.v" "/path2/tech2.v")
// End:
Verilog-mode attempts to detect changes to this local variable, but they
are only insured to be correct when the file is first visited. Thus if you
have problems, use C-x C-v (find-alternate-file) RET to have these take effect.
See also verilog-library-flags, verilog-library-directories.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defcustom verilog-library-files '()
"List of files to search for modules.
AUTOINST will use this when it needs to resolve a module name.
This is a complete path, usually to a technology file with many standard
cells defined in it.
You might want these defined in each file; put at the *END* of your file
something like:
// Local Variables:
// verilog-library-files:(\"/path/technology.v\" \"/path2/tech2.v\")
// End:
Verilog-mode attempts to detect changes to this local variable, but they
are only insured to be correct when the file is first visited. Thus if you
have problems, use \\[find-alternate-file] RET to have these take effect.
See also `verilog-library-flags', `verilog-library-directories'."
:group 'verilog-mode-auto
:type '(repeat directory))