mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
Merge pull request #126 from mithro/toolchain-fix
lattice/icestorm: Add toolchain_path so it doesn't end up kwargs.
This commit is contained in:
commit
bc173380f2
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ class LatticeIceStormToolchain:
|
||||||
|
|
||||||
# platform.device should be of the form "ice40-{lp384, hx1k, etc}-{tq144, etc}"
|
# platform.device should be of the form "ice40-{lp384, hx1k, etc}-{tq144, etc}"
|
||||||
def build(self, platform, fragment, build_dir="build", build_name="top",
|
def build(self, platform, fragment, build_dir="build", build_name="top",
|
||||||
use_nextpnr=True, run=True, **kwargs):
|
toolchain_path=None, use_nextpnr=True, run=True, **kwargs):
|
||||||
os.makedirs(build_dir, exist_ok=True)
|
os.makedirs(build_dir, exist_ok=True)
|
||||||
cwd = os.getcwd()
|
cwd = os.getcwd()
|
||||||
os.chdir(build_dir)
|
os.chdir(build_dir)
|
||||||
|
|
Loading…
Reference in a new issue