-
-
Notifications
You must be signed in to change notification settings - Fork 507
/
conda_build_config.yaml
719 lines (701 loc) · 12.6 KB
/
conda_build_config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
# This differs from target_platform in that it determines what subdir the compiler
# will target, not what subdir the compiler package will be itself.
# For example, we need a win-64 vs2008_win-32 package, so that we compile win-32
# code on win-64 miniconda.
cross_compiler_target_platform: # [win]
- win-64 # [win]
c_compiler:
- gcc # [linux]
- clang # [osx]
- vs2017 # [win]
c_compiler_version: # [unix]
- 11 # [osx]
- 9 # [linux]
cxx_compiler:
- gxx # [linux]
- clangxx # [osx]
- vs2017 # [win]
cxx_compiler_version: # [unix]
- 11 # [osx]
- 9 # [linux]
llvm_openmp: # [osx]
- 11 # [osx]
fortran_compiler: # [unix or win64]
- gfortran # [linux64 or (osx and x86_64)]
- gfortran # [aarch64 or ppc64le or armv7l or s390x]
- flang # [win64]
fortran_compiler_version: # [unix or win64]
- 11 # [osx and arm64]
- 9 # [osx and x86_64]
- 9 # [linux]
- 5 # [win64]
m2w64_c_compiler: # [win]
- m2w64-toolchain # [win]
m2w64_cxx_compiler: # [win]
- m2w64-toolchain # [win]
m2w64_fortran_compiler: # [win]
- m2w64-toolchain # [win]
CMAKE_GENERATOR: # [win]
- NMake Makefiles # [win]
cuda_compiler: # [linux64]
- nvcc # [linux64]
cuda_compiler_version:
- None
- 10.2 # [linux64]
cudnn:
- undefined
- 7 # [linux64]
_libgcc_mutex:
- 0.1 conda_forge
#
# Go Compiler Options
#
# The basic go-compiler with CGO disabled,
# It generates fat binaries without libc dependencies
# The activation scripts will set your CC,CXX and related flags
# to invalid values.
go_compiler:
- go-nocgo
# The go compiler build with CGO enabled.
# It can generate fat binaries that depend on conda's libc.
# You should use this compiler if the underlying
# program needs to link against other C libraries, in which
# case make sure to add 'c,cpp,fortran_compiler' for unix
# and the m2w64 equivalent for windows.
cgo_compiler:
- go-cgo
# The following are helpful variables to simplify go meta.yaml files.
target_goos:
- linux # [linux]
- darwin # [osx]
- windows # [win]
target_goarch:
- amd64 # [x86_64]
target_goexe:
- # [unix]
- .exe # [win]
target_gobin:
- '${PREFIX}/bin/' # [unix]
- '%PREFIX%\bin\' # [win]
# Rust Compiler Options
rust_compiler:
- rust
macos_machine: # [osx]
- x86_64-apple-darwin13.4.0 # [osx and x86_64]
- arm64-apple-darwin20.0.0 # [osx and arm64]
MACOSX_DEPLOYMENT_TARGET: # [osx]
- 11.0 # [osx and arm64]
- 10.9 # [osx and x86_64]
target_platform: # [win]
- win-64 # [win]
VERBOSE_AT:
- V=1
VERBOSE_CM:
- VERBOSE=1
# dual build configuration
channel_sources:
- conda-forge # [not s390x]
- https://conda-web.anaconda.org/conda-forge # [s390x]
channel_targets:
- conda-forge main
cdt_name: # [linux]
- cos6 # [linux64 and os.environ.get("DEFAULT_LINUX_VERSION", "cos6") == "cos6"]
- cos7 # [linux64 and os.environ.get("DEFAULT_LINUX_VERSION", "cos6") == "cos7"]
- cos7 # [linux and aarch64]
- cos7 # [linux and ppc64le]
- cos7 # [linux and armv7l]
- cos7 # [linux and s390x]
- cos6 # [linux64 and os.environ.get("DEFAULT_LINUX_VERSION", "cos6") == "cos6"]
- cos7 # [linux64 and os.environ.get("DEFAULT_LINUX_VERSION", "cos6") == "cos7"]
docker_image: # [os.environ.get("BUILD_PLATFORM", "").startswith("linux-")]
- quay.io/condaforge/linux-anvil-comp7 # [os.environ.get("BUILD_PLATFORM") == "linux-64" and os.environ.get("DEFAULT_LINUX_VERSION", "cos6") == "cos6"]
- quay.io/condaforge/linux-anvil-cos7-x86_64 # [os.environ.get("BUILD_PLATFORM") == "linux-64" and os.environ.get("DEFAULT_LINUX_VERSION", "cos6") == "cos7"]
- quay.io/condaforge/linux-anvil-aarch64 # [os.environ.get("BUILD_PLATFORM") == "linux-aarch64"]
- quay.io/condaforge/linux-anvil-ppc64le # [os.environ.get("BUILD_PLATFORM") == "linux-ppc64le"]
- quay.io/condaforge/linux-anvil-armv7l # [os.environ.get("BUILD_PLATFORM") == "linux-armv7l"]
- quay.io/condaforge/linux-anvil-cuda:10.2 # [linux64 and os.environ.get("BUILD_PLATFORM") == "linux-64" and os.environ.get("DEFAULT_LINUX_VERSION", "cos6") == "cos6"]
- quay.io/condaforge/linux-anvil-cos7-cuda:10.2 # [linux64 and os.environ.get("BUILD_PLATFORM") == "linux-64" and os.environ.get("DEFAULT_LINUX_VERSION", "cos6") == "cos7"]
zip_keys:
- # [unix]
- c_compiler_version # [unix]
- cxx_compiler_version # [unix]
- fortran_compiler_version # [unix]
-
- python
- numpy
- python_impl
- # [linux64]
- cudnn # [linux64]
- cuda_compiler_version # [linux64]
- cdt_name # [linux64]
- docker_image # [linux64 and os.environ.get("BUILD_PLATFORM") == "linux-64"]
# aarch64 specifics because conda-build sets many things to centos 6
# this can probably be removed when conda-build gets updated defaults
# for aarch64
cdt_arch: aarch64 # [aarch64]
BUILD: aarch64-conda_cos7-linux-gnu # [aarch64]
# armv7l specifics because conda-build sets many things to centos 6
# this can probably be removed when conda-build gets updated defaults
# for aarch64
cdt_arch: armv7l # [armv7l]
BUILD: armv7-conda_cos7-linux-gnueabihf # [armv7l]
# TODO: remove these when run_exports are added to the packages.
pin_run_as_build:
arpack:
max_pin: x.x.x
boost:
max_pin: x.x.x
boost-cpp:
max_pin: x.x.x
bzip2:
max_pin: x
cairo:
max_pin: x.x
curl:
max_pin: x
dbus:
max_pin: x
fftw:
max_pin: x
flann:
max_pin: x.x.x
fontconfig:
max_pin: x
freetype:
max_pin: x
gdal:
max_pin: x.x
geotiff:
max_pin: x.x.x
glew:
max_pin: x.x
glpk:
max_pin: x.x
gmp:
max_pin: x
graphviz:
max_pin: x
harfbuzz:
max_pin: x
hdf4:
max_pin: x.x
isl:
max_pin: x.x
jasper:
max_pin: x
jpeg:
max_pin: x
libjpeg_turbo:
max_pin: x
json-c:
max_pin: x.x
jsoncpp:
max_pin: x.x.x
kealib:
max_pin: x.x
krb5:
max_pin: x.x
libblitz:
max_pin: x.x
libcurl:
max_pin: x
libevent:
max_pin: x.x.x
libffi:
max_pin: x.x
libgdal:
max_pin: x.x
libiconv:
max_pin: x.x
libkml:
max_pin: x.x
libpng:
max_pin: x.x
librsvg:
max_pin: x
libsvm:
max_pin: x.x
libtiff:
max_pin: x
libxml2:
max_pin: x.x
libuuid:
max_pin: x
lz4-c:
max_pin: x.x.x
lzo:
max_pin: x
metis:
max_pin: x.x
mpfr:
max_pin: x
ncurses:
max_pin: x.x
netcdf-cxx4:
max_pin: x.x
netcdf-fortran:
max_pin: x.x
nettle:
max_pin: x.x
nlopt:
max_pin: x.x.x
nss:
max_pin: x
nspr:
max_pin: x
occt:
max_pin: x.x
openturns:
max_pin: x.x
openjpeg:
max_pin: x.x
pango:
max_pin: x.x
perl:
max_pin: x.x.x
poppler:
max_pin: x.x
qt:
max_pin: x.x
qtkeychain:
max_pin: x.x
readline:
max_pin: x
r-base:
max_pin: x.x
min_pin: x.x
sox:
max_pin: x.x.x
spdlog:
max_pin: x.x
sqlite:
max_pin: x
tk:
max_pin: x.x
tiledb:
max_pin: x.x
vlfeat:
max_pin: x.x.x
vtk:
max_pin: x.x.x
xz:
max_pin: x.x
zeromq:
max_pin: x.x # [not win]
max_pin: x.x.x # [win]
zlib:
max_pin: x.x
# Pinning packages
# blas
libblas:
- 3.8 *netlib # [not (osx and arm64)]
- 3.9 *netlib # [osx and arm64]
libcblas:
- 3.8 *netlib # [not (osx and arm64)]
- 3.9 *netlib # [osx and arm64]
liblapack:
- 3.8 *netlib # [not (osx and arm64)]
- 3.9 *netlib # [osx and arm64]
liblapacke:
- 3.8 *netlib # [not (osx and arm64)]
- 3.9 *netlib # [osx and arm64]
blas_impl:
- openblas
- mkl # [x86 or x86_64]
- blis # [x86 or x86_64]
abseil_cpp:
- '20210324.2'
alsa_lib:
- 1.2.3
arb:
- '2.20'
arpack:
- 3.7
arrow_cpp:
- 5.0.0
- 4.0.1
- 3.0.0
aws_c_auth:
- 0.6.4
aws_c_cal:
- 0.5.12
aws_c_common:
- 0.6.12
aws_c_event_stream:
- 0.2.7
aws_c_http:
- 0.6.6
aws_c_io:
- 0.10.9
aws_c_mqtt:
- 0.7.8
aws_c_s3:
- 0.1.27
aws_c_sdkutils:
- 0.1.1
aws_checksums:
- 0.1.12
aws_crt_cpp:
- 0.17.2
aws_sdk_cpp:
- 1.8.186
boost:
- 1.74.0
boost_cpp:
- 1.74.0
bzip2:
- 1
cairo:
- 1.16
cfitsio:
- 3.470
cutensor:
- 1
curl:
- 7
davix:
- 0.7
dbus:
- 1
exiv2:
- 0.27
expat:
- 2
ffmpeg:
- '4.3'
fftw:
- 3
flann:
- 1.9.1
fmt:
- '8'
fontconfig:
- 2.13
freetype:
- 2
gf2x:
- '1.3'
gdk_pixbuf:
- 2
gnuradio_core:
- 3.9.3
gsl:
- 2.6
gsoap:
- 2.8.117
gstreamer:
- 1.18
gst_plugins_base:
- 1.18
gdal:
- '3.3'
geos:
- 3.9.1
geotiff:
- '1.6'
gfal2:
- '2.20'
gflags:
- 2.2
giflib:
- 5.2
glew:
- 2.1
glib:
- '2'
glog:
- '0.5'
glpk:
- 4.65
gmp:
- 6
google_cloud_cpp:
- '1.32'
google_cloud_cpp_common:
- 0.25.0
googleapis_cpp:
- '0.10'
graphviz:
- 2.47
grpc_cpp:
- '1.39'
harfbuzz:
- 2
hdf4:
- 4.2
hdf5:
- 1.10.6
icu:
- 68
ipopt:
- 3.14
isl:
- '0.22'
jasper:
# the first windows build of jasper was 2.0.14
- 1 # [not (win or arm64)]
- 2 # [win or arm64]
jpeg:
- 9
libjpeg_turbo:
- 2
json_c:
- 0.15
jsoncpp:
- 1.9.4
kealib:
- 1.4
krb5:
- 1.17.1
libarchive:
- 3.5
libblitz:
- 1.0.2
libcurl:
- 7
libcrc32c:
- 1.1
libdap4:
- 3.20.6
libevent:
- 2.1.10
libffi:
- '3.3'
libflint:
- '2.8'
libgdal:
- '3.3'
libgit2:
- '1.3'
libiconv:
- 1.16
libkml:
- 1.3
libiio:
- 0.21
libmatio:
- 1.5
libmicrohttpd:
- 0.9
libnetcdf:
- 4.7.4
libopencv:
- 4.5.2
libpcap:
- '1.10'
libpng:
- 1.6
libprotobuf:
- '3.16'
librdkafka:
- '1.7'
librsvg:
- 2
libsecret:
- 0.18
libspatialindex:
- 1.9.3
libssh2:
- 1
libsvm:
- 3.21
libthrift:
- 0.15.0
libtiff:
- 4
libunwind:
- 1
libv8:
- 8.9.83
libwebp:
- 1
libwebp_base:
- 1
libxml2:
- 2.9
libuuid:
- 2
libzip:
- 1
log4cxx:
- 0.11.0
lz4_c:
- 1.9.3
lzo:
- 2
metis:
- 5.1
mimalloc:
- 1.6.3
mkl:
- '2021'
mkl_devel:
- '2021'
mpich:
- 3
mpfr:
- 4
mumps_mpi:
- 5.2
mumps_seq:
- 5.2
nccl:
- 2
ncurses:
- 6.2
netcdf_cxx4:
- 4.3
netcdf_fortran:
- 4.5
nettle:
- '3.7'
nodejs:
- 16
- 14 # [not (osx and arm64)]
- 12 # [not (osx and arm64)]
nss:
- 3
nspr:
- 4
nlopt:
- '2.7'
ntl:
- '11.4.3'
# we build for the oldest version possible of numpy for forward compatibility
numpy:
# part of a zip_keys: python, python_impl, numpy
- 1.18 # [not (osx and arm64)]
- 1.18 # [not (osx and arm64)]
- 1.19 # [osx and arm64]
- 1.19
occt:
- '7.5'
openblas:
- 0.3.*
openexr:
- 2.5
openjpeg:
- '2.4'
openmpi:
- 4
openssl:
- 1.1.1
openturns:
- '1.16'
orc:
- 1.7.0
pango:
- '1.48'
pari:
- 2.13.* *_pthread
perl:
- 5.26.2 # [not (osx and arm64)]
- 5.32.0 # [osx and arm64]
petsc:
- 3.14
petsc4py:
- 3.14
slepc:
- 3.14
slepc4py:
- 3.14
pcre:
- '8'
pcre2:
- '10.37'
pixman:
- 0
poco:
- 1.11.0
poppler:
- '21.09'
proj:
- 8.0.1
pybind11_abi:
- 4
python:
# part of a zip_keys: python, python_impl, numpy
- 3.7.* *_cpython # [not (osx and arm64)]
- 3.8.* *_cpython
- 3.9.* *_cpython
python_impl:
# part of a zip_keys: python, python_impl, numpy
- cpython # [not (osx and arm64)]
- cpython
- cpython
qt:
- 5.12
qtkeychain:
- '0.12'
re2:
- 2021.09.01
readline:
- "8"
rocksdb:
- "6.10"
root_base:
- 6.24.6
ruby:
- 2.5
- 2.6
r_base:
- 4.0
- 4.1
scotch:
- 6.0.9
ptscotch:
- 6.0.9
s2n:
- 1.1.1
singular:
- 4.2.0.p3
snappy:
- 1
soapysdr:
- '0.8'
sox:
- 14.4.2
spdlog:
- 1.8
sqlite:
- 3
suitesparse:
- 5
tbb:
- 2020
tbb_devel:
- 2020
thrift_cpp:
- 0.15.0
tinyxml2:
- 9
tk:
- 8.6 # [not ppc64le]
tiledb:
- '2.3'
uhd:
- 4.1.0
vc: # [win]
- 14 # [win]
vlfeat:
- 0.9.20
volk:
- '2.5'
vtk:
- 9.0.1
x264:
- '1!161.*'
xerces_c:
- 3.2
xrootd:
- '5'
xz:
- 5.2
zeromq:
- 4.3.4
zlib:
- 1.2
zlib_ng:
- 2.0
zstd:
- '1.5'