build/altera/platform: Don't set keep attribute on clk signal when using add_period_constraints.
This was preventing the build with Quartus.
This commit is contained in:
parent
62e869296f
commit
c1885b333f
|
@ -45,7 +45,7 @@ class AlteraPlatform(GenericPlatform):
|
|||
if clk is None: return
|
||||
if hasattr(clk, "p"):
|
||||
clk = clk.p
|
||||
self.toolchain.add_period_constraint(self, clk, period)
|
||||
self.toolchain.add_period_constraint(self, clk, period, keep=False)
|
||||
|
||||
def add_false_path_constraint(self, from_, to):
|
||||
if hasattr(from_, "p"):
|
||||
|
|
Loading…
Reference in New Issue