Skip to content
Snippets Groups Projects
Unverified Commit e79ea42f authored by auphelia's avatar auphelia Committed by GitHub
Browse files

Merge pull request #753 from fpjentzsch/hotfix/vitis_build_rtl

Hotfix: top module setting in CreateStitchedIP
parents 93b96f81 da6645ff
No related branches found
No related tags found
No related merge requests found
......@@ -412,7 +412,7 @@ class CreateStitchedIP(Transformation):
wrapper_filename = "%s/hdl/%s_wrapper.v" % (bd_base, block_name)
tcl.append("add_files -norecurse %s" % wrapper_filename)
model.set_metadata_prop("wrapper_filename", wrapper_filename)
tcl.append("set_property top finn_design_wrapper [current_fileset]")
tcl.append("set_property top %s_wrapper [current_fileset]" % block_name)
# synthesize to DCP and export stub, DCP and constraints
if self.vitis:
tcl.append(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment