Merge pull request #1391 from dlobato/fix-verilator-fst-trace

build/sim/verilator: fixed missing placeholder
This commit is contained in:
enjoy-digital 2022-08-05 08:02:08 +02:00 committed by GitHub
commit 1f2d0e120b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ def _build_sim(build_name, sources, jobs, threads, coverage, opt_level="O3", tra
cc_srcs.append("--cc " + filename + " ")
build_script_contents = """\
rm -rf obj_dir/
make -C . -f {} {} {} {} {} {}
make -C . -f {} {} {} {} {} {} {}
""".format(makefile,
"CC_SRCS=\"{}\"".format("".join(cc_srcs)),
"JOBS={}".format(jobs) if jobs else "",