From 0855612b6db763f5361cb80722bab3d1b788d6b0 Mon Sep 17 00:00:00 2001 From: Gwenhael Goavec-Merou Date: Sat, 29 Oct 2022 11:16:55 +0200 Subject: [PATCH] build/lattice/icestorm: use PNR getter to fill edalize dict --- litex/build/lattice/icestorm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/build/lattice/icestorm.py b/litex/build/lattice/icestorm.py index 50a7df4ea..597e09003 100644 --- a/litex/build/lattice/icestorm.py +++ b/litex/build/lattice/icestorm.py @@ -100,7 +100,7 @@ class LatticeIceStormToolchain(YosysNextPNRToolchain): tool_options = { "icepack_options": ["-s"], "yosys_synth_options": self._synth_opts.split(' '), - "nextpnr_options": self._pnr_opts.split(' '), + "nextpnr_options": self.pnr_opts.split(' '), } return ("icestorm", {"tool_options": {"icestorm": tool_options}})