Constructor macro for honsed vl-lintconfig-p structures.
Syntax:
(make-honsed-vl-lintconfig [:start-files <start-files>]
[:plusargs <plusargs>]
[:help <help>]
[:readme <readme>]
[:search-path <search-path>]
[:search-exts <search-exts>]
[:include-dirs <include-dirs>]
[:topmods <topmods>]
[:quiet <quiet>]
[:dropmods <dropmods>]
[:ignore <ignore>]
[:ignore-files <ignore-files>]
[:defines <defines>]
[:cclimit <cclimit>]
[:global-packages <global-packages>]
[:elab-limit <elab-limit>]
[:stmt-limit <stmt-limit>]
[:no-typo <no-typo>]
[:no-html <no-html>]
[:no-sv-use-set <no-sv-use-set>]
[:edition <edition>]
[:strict <strict>]
[:mem <mem>]
[:debug <debug>]
[:shell <shell>]
[:post-shell <post-shell>])
This is identical to make-vl-lintconfig, except that we hons the structure we are creating.
This is an ordinary honsing
Macro:
(defmacro make-honsed-vl-lintconfig (&rest args) (std::make-aggregate 'vl-lintconfig args '((:start-files) (:plusargs) (:help) (:readme) (:search-path) (:search-exts quote ("v")) (:include-dirs quote (".")) (:topmods) (:quiet) (:dropmods) (:ignore) (:ignore-files) (:defines) (:cclimit . 0) (:global-packages) (:elab-limit . 10000) (:stmt-limit . 80) (:no-typo) (:no-html) (:no-sv-use-set) (:edition . :system-verilog-2012) (:strict) (:mem . 4) (:debug) (:shell) (:post-shell)) 'make-honsed-vl-lintconfig t))