From e9d4c882bac98d9d157371d8db4d94b4903d043e Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 30 Oct 2018 10:28:12 +0100 Subject: [PATCH] build/lattice/prjtrellis: fix default toolchain_path --- litex/build/lattice/prjtrellis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/build/lattice/prjtrellis.py b/litex/build/lattice/prjtrellis.py index ccf9139c6..d019e1479 100644 --- a/litex/build/lattice/prjtrellis.py +++ b/litex/build/lattice/prjtrellis.py @@ -146,7 +146,7 @@ class LatticePrjTrellisToolchain: def build(self, platform, fragment, build_dir="build", build_name="top", toolchain_path=None, run=True): if toolchain_path is None: - toolchain_path = "/opt/prjtrellis/" + toolchain_path = "/usr/share/trellis/" os.makedirs(build_dir, exist_ok=True) cwd = os.getcwd() os.chdir(build_dir)