netgauge: Fix for aarch64 (#19462)
* netgauge: Fix for aarch64 * netgauge: Revise the points indicated by the review.
This commit is contained in:
parent
e9223062a8
commit
cb07d9ddb1
1 changed files with 7 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||||
|
|
||||||
|
import os
|
||||||
from spack import *
|
from spack import *
|
||||||
|
|
||||||
|
|
||||||
|
@ -18,3 +19,9 @@ class Netgauge(AutotoolsPackage):
|
||||||
version('2.4.6', sha256='dc9398e4e042efec70881f2c7074ff18cc5b74bc5ffc4b8a4aaf813b39f83444')
|
version('2.4.6', sha256='dc9398e4e042efec70881f2c7074ff18cc5b74bc5ffc4b8a4aaf813b39f83444')
|
||||||
|
|
||||||
depends_on("mpi")
|
depends_on("mpi")
|
||||||
|
|
||||||
|
def configure_args(self):
|
||||||
|
args = []
|
||||||
|
args.append('MPICC=%s' % os.path.basename(self.spec['mpi'].mpicc))
|
||||||
|
args.append('MPICXX=%s' % os.path.basename(self.spec['mpi'].mpicxx))
|
||||||
|
return args
|
||||||
|
|
Loading…
Reference in a new issue