Don't try to build TARGET=PILEDRIVER on aarch64

Piledriver is a codename for an AMD x86-64 processor, it can't
possibly make sense to compile for that if the architecture is
aarch64.
This commit is contained in:
Janne Blomqvist 2019-02-25 14:14:47 +02:00 committed by Peter Scheibel
parent 2831184e41
commit 312122f169

View File

@ -158,7 +158,6 @@ def make_defs(self):
# invoke make with the correct TARGET for aarch64
elif 'aarch64' in spack.architecture.sys_type():
make_defs += [
'TARGET=PILEDRIVER',
'TARGET=ARMV8'
]
if self.spec.satisfies('%gcc@:4.8.4'):