funhpc: Update to version 1.3 (#4170)
Also use a Spack-provided GoogleTest.
This commit is contained in:
parent
68034e4d42
commit
0e02f99323
1 changed files with 5 additions and 3 deletions
|
@ -23,7 +23,6 @@
|
|||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
##############################################################################
|
||||
|
||||
|
||||
from spack import *
|
||||
|
||||
|
||||
|
@ -32,6 +31,8 @@ class Funhpc(CMakePackage):
|
|||
homepage = "https://github.com/eschnett/FunHPC.cxx"
|
||||
url = "https://github.com/eschnett/FunHPC.cxx/archive/version/0.1.0.tar.gz"
|
||||
|
||||
version('1.3.0', '71a1e57c4d882cdf001f29122edf7fc6')
|
||||
version('1.2.0', 'ba2bbeea3091e999b6b85eaeb1b67a83')
|
||||
version('1.1.1', '7b9ef638b02fffe35b75517e8eeff580')
|
||||
version('1.1.0', '897bd968c42cd4f14f86fcf67da70444')
|
||||
version('1.0.0', 'f34e71ccd5548b42672e692c913ba5ee')
|
||||
|
@ -44,6 +45,7 @@ class Funhpc(CMakePackage):
|
|||
description="Produce position-independent code")
|
||||
|
||||
depends_on('cereal')
|
||||
depends_on('googletest')
|
||||
depends_on('hwloc')
|
||||
depends_on('jemalloc')
|
||||
depends_on('mpi')
|
||||
|
@ -51,9 +53,9 @@ class Funhpc(CMakePackage):
|
|||
|
||||
def cmake_args(self):
|
||||
spec = self.spec
|
||||
options = []
|
||||
options = ["-DGTEST_ROOT=%s" % spec['googletest'].prefix]
|
||||
if '+pic' in spec:
|
||||
options.extend(["-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=true"])
|
||||
options += ["-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=true"]
|
||||
return options
|
||||
|
||||
def check(self):
|
||||
|
|
Loading…
Reference in a new issue