Skip to content

Commit 67aea05

Browse files
committed
use stdlib('c') in conda-forge meta.yaml
1 parent 68de14a commit 67aea05

2 files changed

Lines changed: 29 additions & 6 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
numpy:
2+
- '1.26.4'
3+
c_compiler: # [linux]
4+
- gcc # [linux]
5+
cxx_compiler: # [linux]
6+
- gxx # [linux]
7+
cxx_compiler_version: # [linux]
8+
- '14' # [linux]
9+
c_stdlib: # [linux]
10+
- sysroot # [linux]
11+
c_stdlib_version: # [linux]
12+
- '2.28' # [linux]
13+
c_stdlib: # [win]
14+
- vs # [win]
15+
cxx_compiler: # [win]
16+
- vs2022 # [win]
17+
c_compiler: # [win]
18+
- vs2022 # [win]
19+
CFLAGS:
20+
- -fno-fast-math # [linux]
21+
CXXFLAGS:
22+
- -fno-fast-math # [linux]
23+
CL:
24+
- /fp:precise # [win]

conda-recipe-cf/meta.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
1-
{% set version = "0.4.0dev1" %}
2-
{% set buildnumber = 0 %}
3-
41
package:
52
name: mkl_umath
6-
version: {{ version }}
3+
version: {{ GIT_DESCRIBE_TAG }}
74

85
source:
96
path: ../
107

118
build:
12-
number: {{ buildnumber }}
9+
number: {{ GIT_DESCRIBE_NUMBER }}
10+
script_env:
11+
- WHEELS_OUTPUT_FOLDER
1312
ignore_run_exports:
1413
- blas
1514

1615
requirements:
1716
build:
1817
- {{ compiler('c') }}
1918
- {{ compiler('cxx') }}
19+
- {{ stdlib('c') }}
2020
- {{ compiler('dpcpp') }} >=2024.2 # [not osx]
21-
- sysroot_linux-64 >=2.28 # [linux]
2221
host:
2322
- meson-python >=0.13.0
2423
- meson

0 commit comments

Comments
 (0)