From: Tim 'mithro' Ansell Date: Mon, 29 Oct 2018 09:04:44 +0000 (-0700) Subject: litex/build: Always run Vivado. X-Git-Tag: 24jan2021_ls180~1545^2^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1cac079efa6d45e3d873a0d01eab6156cd5e8f74;p=litex.git litex/build: Always run Vivado. When using Yosys for synthesis, still need Vivado for place and route. --- diff --git a/litex/build/xilinx/vivado.py b/litex/build/xilinx/vivado.py index 3b431e69..115fd8fa 100644 --- a/litex/build/xilinx/vivado.py +++ b/litex/build/xilinx/vivado.py @@ -243,10 +243,9 @@ class XilinxVivadoToolchain: if run: if synth_mode == "yosys": common._run_yosys(platform.device, sources, platform.verilog_include_paths, build_name) - elif synth_mode == "vivado": - _run_vivado(build_name, toolchain_path, source) else: raise OSError("Error!") + _run_vivado(build_name, toolchain_path, source) os.chdir(cwd)