Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

recipe: the compiler requires glibc 2.28 #24

Closed
wants to merge 1 commit into from
Closed
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
10 changes: 5 additions & 5 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{% set tbb_version = "2021.10.0" %}

# use this if our build script changes and we need to increment beyond intel's version
{% set dst_build_number = '5' %}
{% set dst_build_number = '6' %}
{% set build_number = intel_build_number|int + dst_build_number|int %}

package:
Expand Down Expand Up @@ -146,7 +146,7 @@ outputs:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- sysroot_linux-64 2.17 # [linux]
- sysroot_linux-64 2.28 # [linux]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't have the RHEL 8 sysroot available yet: conda-forge/conda-forge.github.io#1941

- patchelf # [linux]
host:
- tbb-devel {{ tbb_version.split('.')[0] }}.*
Expand Down Expand Up @@ -235,7 +235,7 @@ outputs:
# 2. Pin to year for now, similar to MKL.
strong:
- {{ pin_subpackage("dpcpp-cpp-rt", max_pin="x") }}
- __glibc >=2.17,<3.0.a0 # [linux64]
- __glibc >=2.28,<3.0.a0 # [linux64]
requirements:
build:
- {{ compiler('c') }}
Expand All @@ -251,7 +251,7 @@ outputs:
- llvm-openmp # [not linux]
run:
- {{ pin_subpackage('dpcpp-cpp-rt', exact=True) }}
- sysroot_linux-64 2.17 # [linux64]
- sysroot_linux-64 2.28 # [linux64]
- gcc_impl_linux-64 # [linux64]
- gxx_impl_linux-64 # [linux64]

Expand Down Expand Up @@ -286,7 +286,7 @@ outputs:
# 2. Pin to year for now, similar to MKL.
strong:
- {{ pin_subpackage("dpcpp-cpp-rt", max_pin="x") }}
- __glibc >=2.17,<3.0.a0 # [linux64]
- __glibc >=2.28,<3.0.a0 # [linux64]
requirements: # [linux64 or win64]
run: # [linux64 or win64]
- {{ pin_subpackage('dpcpp_impl_linux-64', exact=True) }} # [linux64]
Expand Down
Loading