example_designs/make.py: do not use "-" in build_name
This commit is contained in:
parent
1f19518d63
commit
b8b04ccc31
|
@ -87,7 +87,7 @@ if __name__ == "__main__":
|
|||
platform_kwargs = dict((k, autotype(v)) for k, v in args.platform_option)
|
||||
platform = platform_module.Platform(**platform_kwargs)
|
||||
|
||||
build_name = top_class.__name__.lower() + "-" + platform_name
|
||||
build_name = top_class.__name__.lower() + "_" + platform_name
|
||||
top_kwargs = dict((k, autotype(v)) for k, v in args.target_option)
|
||||
soc = top_class(platform, **top_kwargs)
|
||||
soc.finalize()
|
||||
|
|
Loading…
Reference in New Issue