build/xilinx/vivado: set_property library only supported for vhdl
This commit is contained in:
parent
ac70083453
commit
384f4f428e
|
@ -91,8 +91,9 @@ class XilinxVivadoToolchain:
|
||||||
for filename, language, library in sources:
|
for filename, language, library in sources:
|
||||||
filename_tcl = "{" + filename + "}"
|
filename_tcl = "{" + filename + "}"
|
||||||
tcl.append("add_files " + filename_tcl)
|
tcl.append("add_files " + filename_tcl)
|
||||||
tcl.append("set_property library {} [get_files {}]"
|
if language == "vhdl":
|
||||||
.format(library, filename_tcl))
|
tcl.append("set_property library {} [get_files {}]"
|
||||||
|
.format(library, filename_tcl))
|
||||||
|
|
||||||
tcl.append("read_xdc {}.xdc".format(build_name))
|
tcl.append("read_xdc {}.xdc".format(build_name))
|
||||||
tcl.extend(c.format(build_name=build_name) for c in self.pre_synthesis_commands)
|
tcl.extend(c.format(build_name=build_name) for c in self.pre_synthesis_commands)
|
||||||
|
|
Loading…
Reference in New Issue