Skip to content

Commit

Permalink
aurora toolchain name added in the osfpga.platform.py
Browse files Browse the repository at this point in the history
  • Loading branch information
w0lek committed Jan 9, 2025
1 parent 589ad63 commit 321c3c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion litex/build/osfpga/platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class OSFPGAPlatform(GenericPlatform):
def __init__(self, device, *args, toolchain="foedag", devicename=None, **kwargs):
GenericPlatform.__init__(self, device, *args, **kwargs)
self.devicename = devicename
if toolchain in ["foedag", "raptor"]:
if toolchain in ["foedag", "raptor", "aurora"]:
self.toolchain = osfpga.OSFPGAToolchain(toolchain=toolchain)
else:
raise ValueError(f"Unknown toolchain {toolchain}")
Expand Down

0 comments on commit 321c3c1

Please sign in to comment.