specified glibc in conda build (#222)

Fixed a runtime error on older linux systems, since by mistake we used
glibc from ubutu 24. Same code as in slsDetectorPackage now.
This commit is contained in:
Erik Fröjdh
2025-08-18 12:14:54 +02:00
committed by GitHub
parent f54e76e6bf
commit 91d74110fa
3 changed files with 17 additions and 0 deletions

View File

@@ -10,6 +10,10 @@ Features:
- calculate pedestal (also g0 version)
Bugfixes:
- Now using glibc 2.17 in conda builds (was using the host)
### 2025.07.18
Features:

View File

@@ -3,3 +3,14 @@ python:
- 3.12
- 3.13
c_compiler:
- gcc # [linux]
c_stdlib:
- sysroot # [linux]
cxx_compiler:
- gxx # [linux]
c_stdlib_version: # [linux]
- 2.17 # [linux]

View File

@@ -16,6 +16,8 @@ build:
requirements:
build:
- {{ compiler('c') }}
- {{ stdlib("c") }}
- {{ compiler('cxx') }}
- cmake
- ninja