Constructor macro for honsed vl-gather-opts-p structures.
Syntax:
(make-honsed-vl-gather-opts [:help <help>] [:readme <readme>] [:output <output>] [:start-files <start-files>] [:plusargs <plusargs>] [:search-path <search-path>] [:include-dirs <include-dirs>] [:search-exts <search-exts>] [:defines <defines>] [:edition <edition>] [:strict <strict>] [:mem <mem>])
This is identical to make-vl-gather-opts, except that we hons the structure we are creating.
This is an ordinary honsing
Macro:
(defmacro make-honsed-vl-gather-opts (&rest args) (std::make-aggregate 'vl-gather-opts args '((:help) (:readme) (:output . "vl_gather.v") (:start-files) (:plusargs) (:search-path) (:include-dirs quote (".")) (:search-exts quote ("v")) (:defines) (:edition . :system-verilog-2012) (:strict) (:mem . 4)) 'make-honsed-vl-gather-opts t))