boards/targets/simple: add gateware-toolchain parameter

This commit is contained in:
Florent Kermarrec 2018-10-29 15:56:46 +01:00
parent d84083f642
commit 52917a710e
1 changed files with 6 additions and 1 deletions

View File

@ -58,9 +58,14 @@ def main():
help="enable Ethernet support")
parser.add_argument("platform",
help="module name of the platform to build for")
parser.add_argument("--gateware-toolchain", default=None,
help="FPGA gateware toolchain used for build")
args = parser.parse_args()
platform_module = importlib.import_module(args.platform)
if args.gateware_toolchain is not None:
platform = platform_module.Platform(toolchain=args.gateware_toolchain)
else:
platform = platform_module.Platform()
cls = EthernetSoC if args.with_ethernet else BaseSoC
soc = cls(platform, **soc_core_argdict(args))