1
0
Fork 0
mirror of https://git.sr.ht/~kivikakk/niar synced 2024-12-22 13:32:24 +00:00

cxxrtl: only write "opt" out when actually opt; write "noopt" otherwise.

This commit is contained in:
Asherah Connor 2024-06-28 17:17:15 +03:00
parent 359962b0fe
commit dc26ba8c44

View file

@ -138,7 +138,11 @@ def main(np: Project, args):
f.write(f"read_rtlil {_make_absolute(il_path)}\n")
if args.optimize.opt_rtl:
f.write("opt\n")
f.write(f"write_rtlil {_make_absolute(il_path)}.opt\n")
f.write(f"write_rtlil {_make_absolute(il_path)}.opt\n")
else:
# Allow apples-to-apples comparison of generated RTLIL by
# rewriting it with Yosys.
f.write(f"write_rtlil {_make_absolute(il_path)}.noopt\n")
f.write(f"write_cxxrtl -header {_make_absolute(cxxrtl_cc_path)}\n")
def rtlil_to_cc():