Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions easybuild/easyconfigs/b/Boost/Boost-1.74.0-GCC-10.2.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name = 'Boost'
version = '1.74.0'

homepage = 'https://www.boost.org/'
description = """Boost provides free peer-reviewed portable C++ source libraries."""

toolchain = {'name': 'GCC', 'version': '10.2.0'}
toolchainopts = {'pic': True}

source_urls = ['https://dl.bintray.com/boostorg/release/%(version)s/source/']
sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
checksums = ['afff36d392885120bcac079148c177d1f6f7730ec3d47233aa51b0afa4db94a5']

dependencies = [
('bzip2', '1.0.8'),
('zlib', '1.2.11'),
('XZ', '5.2.5'),
]

configopts = '--without-libraries=python,mpi'

# disable MPI, enable threading support
boost_mpi = False
boost_multi_thread = True

moduleclass = 'devel'
27 changes: 27 additions & 0 deletions easybuild/easyconfigs/b/Boost/Boost-1.74.0-iccifort-2020.4.304.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name = 'Boost'
version = '1.74.0'

homepage = 'https://www.boost.org/'
description = """Boost provides free peer-reviewed portable C++ source libraries."""

toolchain = {'name': 'iccifort', 'version': '2020.4.304'}
# add C++ compiler option as workaround for "error: no instance of constructor .* matches the argument list" errors
toolchainopts = {'pic': True, 'extra_cxxflags': '-DBOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT=1'}

source_urls = ['https://dl.bintray.com/boostorg/release/%(version)s/source/']
sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
checksums = ['afff36d392885120bcac079148c177d1f6f7730ec3d47233aa51b0afa4db94a5']

dependencies = [
('bzip2', '1.0.8'),
('zlib', '1.2.11'),
('XZ', '5.2.5'),
]

configopts = '--without-libraries=python,mpi'

# disable MPI, enable threading support
boost_mpi = False
boost_multi_thread = True

moduleclass = 'devel'