2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-07-02 05:30:11 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +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')
|
2019-08-01 19:29:41 +08:00
|
|
|
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(
|
2019-08-01 19:29:41 +08:00
|
|
|
'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
|