We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 37efe7c + 29e4636 commit cfe6f62Copy full SHA for cfe6f62
vivado/defs.bzl
@@ -118,9 +118,10 @@ def generate_ip_block_tcl(ip_blocks):
118
Returns:
119
The tcl to include the paths to the ip blocks.
120
"""
121
- ip_tcl = ""
+ ip_tcl = "set_property ip_repo_paths [list "
122
for ip_block in ip_blocks:
123
- ip_tcl += "set_property ip_repo_paths {}/ [current_project]\n".format(ip_block[VivadoIPBlockInfo].repo.path)
+ ip_tcl += "{} ".format(ip_block[VivadoIPBlockInfo].repo.path)
124
+ ip_tcl += "] [current_project]\n"
125
ip_tcl += "update_ip_catalog\n"
126
return ip_tcl
127
0 commit comments