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:
parent
cdbaf8dfc5
commit
5bc71f07dd
@ -50,6 +50,10 @@ def __init__(self):
|
|||||||
name = target.replace('-', '_')
|
name = target.replace('-', '_')
|
||||||
self.add_target(name, Target(name, 'craype-%s' % target))
|
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:
|
# Get aliased targets from config or best guess from environment:
|
||||||
for name in ('front_end', 'back_end'):
|
for name in ('front_end', 'back_end'):
|
||||||
_target = getattr(self, name, None)
|
_target = getattr(self, name, None)
|
||||||
|
Loading…
Reference in New Issue
Block a user