From 6684e7ae7ab850ae29ebfd68b56a7ea2cac66e0e Mon Sep 17 00:00:00 2001 From: Robert Winkler Date: Tue, 24 Nov 2020 14:53:03 +0100 Subject: [PATCH] symbiflow: restore add_false_path_constraint Restore the method to fix SymbiflowToolchain class API Signed-off-by: Robert Winkler --- litex/build/xilinx/symbiflow.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/litex/build/xilinx/symbiflow.py b/litex/build/xilinx/symbiflow.py index 118afb418..75d7c9d48 100644 --- a/litex/build/xilinx/symbiflow.py +++ b/litex/build/xilinx/symbiflow.py @@ -242,6 +242,9 @@ class SymbiflowToolchain: .format(self.clocks[clk], period)) self.clocks[clk] = period + def add_false_path_constraint(self, platform, from_, to): + # FIXME: false path constraints are currently not supported by the symbiflow toolchain + return def symbiflow_build_args(parser): pass