A copying macro that lets you create new config-p structures, based on existing structures.
Syntax:
(change-config x [:cmdline <cmdline>] [:verbose <verbose>] [:timing <timing>] [:mintime <mintime>] [:remove-temps <remove-temps>] [:lrat-check <lrat-check>])
This is a sometimes useful alternative to make-config.
It constructs a new config-p structure that is a copy of
This is an ordinary
Macro:
(defmacro change-config (x &rest args) (std::change-aggregate 'config x args '((:cmdline . config->cmdline) (:verbose . config->verbose) (:timing . config->timing) (:mintime . config->mintime) (:remove-temps . config->remove-temps) (:lrat-check . config->lrat-check)) 'change-config 'nil))