forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Boost-1.83.0-intel-compilers-2023.2.1.eb
- Loading branch information
1 parent
1042506
commit 5375623
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
easybuild/easyconfigs/b/Boost/Boost-1.83.0-intel-compilers-2023.2.1.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
## | ||
# Authors:: Denis Kristak <[email protected]> | ||
## | ||
name = 'Boost' | ||
version = '1.83.0' | ||
|
||
homepage = 'https://www.boost.org/' | ||
description = """Boost provides free peer-reviewed portable C++ source libraries.""" | ||
|
||
toolchain = {'name': 'intel-compilers', 'version': '2023.2.1'} | ||
toolchainopts = {'pic': True} | ||
|
||
source_urls = ['https://boostorg.jfrog.io/artifactory/main/release/%(version)s/source/'] | ||
sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))] | ||
patches = ['%(name)s-%(version)s_icpx_fix_unsupported_argument.patch'] | ||
checksums = [ | ||
{'boost_1_83_0.tar.gz': 'c0685b68dd44cc46574cce86c4e17c0f611b15e195be9848dfd0769a0a207628'}, | ||
{'Boost-1.83.0_icpx_fix_unsupported_argument.patch': | ||
'ada377759fcda0146c744f103d9e3cd58cae1c6e8cd3132bb958166171539c61'}, | ||
] | ||
|
||
dependencies = [ | ||
('bzip2', '1.0.8'), | ||
('zlib', '1.2.13'), | ||
('XZ', '5.4.4'), | ||
('zstd', '1.5.5'), | ||
('ICU', '74.1'), | ||
] | ||
|
||
configopts = '--without-libraries=python,mpi' | ||
|
||
# disable MPI, build Boost libraries with tagged layout | ||
boost_mpi = False | ||
tagged_layout = True | ||
|
||
moduleclass = 'devel' |