Add x86_64 as target to cray platform (#10369)

Add x86_64 as a target for the Cray platform, and also designate it
as the default front_end target.
This commit is contained in:
Mario Melara 2019-02-06 15:49:00 -08:00 committed by Peter Scheibel
parent cdbaf8dfc5
commit 5bc71f07dd

View File

@ -50,6 +50,10 @@ def __init__(self):
name = target.replace('-', '_')
self.add_target(name, Target(name, 'craype-%s' % target))
self.add_target("x86_64", Target("x86_64"))
self.add_target("front_end", Target("x86_64"))
self.front_end = "x86_64"
# Get aliased targets from config or best guess from environment:
for name in ('front_end', 'back_end'):
_target = getattr(self, name, None)