Arbor: rely on spack's compiler wrapper to set architecture (#21758)

This commit is contained in:
Sebastian Schmitt
2021-02-18 16:02:09 +01:00
committed by GitHub
parent 432625ca26
commit 8e3ac8577f

View File

@@ -70,4 +70,7 @@ def cmake_args(self):
if '+cuda' in self.spec: if '+cuda' in self.spec:
args.append('-DARB_GPU=cuda') args.append('-DARB_GPU=cuda')
# rely on spack's compiler wrapper to set architecture
args.append('-DARB_ARCH=')
return args return args