Constructor macro for vl-lintconfig-p structures.
Syntax:
(make-vl-lintconfig [:start-files <start-files>]
[:help <help>]
[:readme <readme>]
[:search-path <search-path>]
[:search-exts <search-exts>]
[:include-dirs <include-dirs>]
[:topmods <topmods>]
[:quiet <quiet>]
[:dropmods <dropmods>]
[:ignore <ignore>]
[:cclimit <cclimit>]
[:edition <edition>]
[:strict <strict>]
[:mem <mem>]
[:debug <debug>])
This is our preferred way to construct vl-lintconfig-p structures. It simply conses together a structure with the specified fields.
This macro generates a new vl-lintconfig-p structure from scratch. See also change-vl-lintconfig, which can "change" an existing structure, instead.
The vl-lintconfig-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-vl-lintconfig instead.
This is an ordinary
Macro:
(defmacro make-vl-lintconfig (&rest args) (std::make-aggregate 'vl-lintconfig args '((:start-files) (:help) (:readme) (:search-path) (:search-exts quote ("v")) (:include-dirs quote (".")) (:topmods) (:quiet) (:dropmods) (:ignore) (:cclimit . 0) (:edition . :system-verilog-2012) (:strict) (:mem . 4) (:debug)) 'make-vl-lintconfig nil))