16 lines
389 B
Python
16 lines
389 B
Python
|
|
|
|
|
|
class PlatformInfo:
|
|
all_platforms = {}
|
|
|
|
def __init__(self, name, build, static, toolchains, hosts=None):
|
|
self.all_platforms[name] = self
|
|
self.build = build
|
|
self.static = static
|
|
self.toolchains = toolchains
|
|
self.compatible_hosts = hosts
|
|
|
|
def __str__(self):
|
|
return "{}_{}".format(self.build, 'static' if self.static else 'dyn')
|