mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
mibuild/xilinx_vivado: fix list aliasing problem
This commit is contained in:
parent
8576b91290
commit
6fca1dd4dc
1 changed files with 5 additions and 2 deletions
|
@ -89,8 +89,11 @@ def _run_vivado(build_name, vivado_path, source, ver=None):
|
|||
raise OSError("Subprocess failed")
|
||||
|
||||
class XilinxVivadoPlatform(xilinx_common.XilinxGenericPlatform):
|
||||
bitstream_commands = []
|
||||
additional_commands = []
|
||||
def __init__(self, *args, **kwargs):
|
||||
xilinx_common.XilinxGenericPlatform.__init__(self, *args, **kwargs)
|
||||
self.bitstream_commands = []
|
||||
self.additional_commands = []
|
||||
|
||||
def build(self, fragment, build_dir="build", build_name="top",
|
||||
vivado_path="/opt/Xilinx/Vivado", source=True, run=True):
|
||||
tools.mkdir_noerror(build_dir)
|
||||
|
|
Loading…
Reference in a new issue