spack/var/spack/repos/builtin/packages/bdw-gc/package.py

43 lines
1.3 KiB
Python
Raw Normal View History

# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
2016-07-02 05:30:11 +08:00
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
2016-07-02 05:30:11 +08:00
from spack import *
2017-03-25 04:20:25 +08:00
class BdwGc(AutotoolsPackage):
2016-07-02 05:30:11 +08:00
"""The Boehm-Demers-Weiser conservative garbage collector is a garbage
collecting replacement for C malloc or C++ new."""
2018-12-15 11:09:19 +08:00
homepage = "https://www.hboehm.info/gc/"
url = "https://www.hboehm.info/gc/gc_source/gc-8.0.0.tar.gz"
2016-07-02 05:30:11 +08:00
2018-12-15 11:09:19 +08:00
version('8.0.0', sha256='8f23f9a20883d00af2bff122249807e645bdf386de0de8cbd6cce3e0c6968f04')
2017-03-25 04:20:25 +08:00
version('7.6.0', 'bf46ccbdaccfa3186c2ab87191c8855a')
2016-07-02 05:30:11 +08:00
version('7.4.4', '96d18b0448a841c88d56e4ab3d180297')
2016-08-10 16:50:00 +08:00
variant('libatomic-ops', default=True,
description='Use external libatomic-ops')
variant(
'threads',
default='none',
values=('none', 'posix', 'dgux386'),
multi=False,
description='Multithreading support'
)
2016-07-02 05:30:11 +08:00
depends_on('libatomic-ops', when='+libatomic-ops')
2017-03-25 04:20:25 +08:00
def configure_args(self):
spec = self.spec
2016-07-02 05:30:11 +08:00
config_args = [
2018-12-15 11:09:19 +08:00
'--enable-static',
2016-07-02 05:30:11 +08:00
'--with-libatomic-ops={0}'.format(
'yes' if '+libatomic-ops' in spec else 'no'),
"--enable-threads={0}".format(spec.variants['threads'].value)
2016-07-02 05:30:11 +08:00
]
2017-03-25 04:20:25 +08:00
return config_args