forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathci.feature.baseline.txt
1002 lines (978 loc) · 43.8 KB
/
ci.feature.baseline.txt
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
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
###########################################################################
## This file defines the current expected build state of ports in CI.
##
## States
## The following states can be specified for a port:
## If a port is missing from this file then it is assumed
## to build successfully.
## fail - The port build is expected to fail in the CI system.
## This is not necessarily the same as if a port is expected to build
## on a developers machine because it may fail due to the machine
## configuration.
## skip - Do not build this port in the CI system.
## This is added to ports that may be flaky or conflict with other
## ports. Please comment for why a port is skipped so it can be
## removed when the issue is resolved.
## cascade - The port depends on a port that fails or is excluded by a supports
## expression of a dependency but the port itself states that it can be build.
## This is added to ports to detect "hidden" not tested ports.
##
## Additional States can be specified for specific features:
## feature-fails - The listed feature do not build. They are therefore excluded
## from the "combined" feature test because it would
## simply fail too.
## combination-fails - The listed combination of features will fail to build.
## skip - The listed features are not tested in the CI system.
## cascade - The listed features are cascading.
## no-separate-feature-test - The listed features are not tested in the "seperate" feature test.
## options - The listed features are mutually exclusive and can not be selected together.
## The first feature in the list is added to every test combination. Use the `core`
## feature as first one to add no feature to every test combination.
##
## You could select ports by triplet or supports expression:
## curl[wchar]:x64-osx = feature-fails # the wchar feature does not work on !windows
## curl[wchar](!windows) = feature-fails # Using support expressions is often shorter than listing all triplets
##
## Examples:
## qt3d[extras] = options # extras will be always added to the test combination (it is currently a requirement)
## curl[core,openssl,wolfssl] = options # openssl and wolfssl are exclusive ssl backends but none must be selected
## libgit2[pcre,pcre2] = options # you have to select pcre xor pcre2
##
## libcanberra[gtk3](osx) = combination-fails # The feature works in the "combined" feature test
## vlpp[tools](osx) = feature-fails # error: use of undeclared identifier 'PATH_MAX'
##
## entt[experimental] = skip # required head build
## realsense2[openni2](!windows) = cascade # cpkg-tool-lessmsi[core] only supports native & windows
##
## # Testing all targets seperatly would be too time consuming:
## halide[target-amdgpu,target-arm,target-d3d12compute,target-hexagon,target-metal,target-mips,target-nvptx,target-opencl,target-powerpc,target-riscv,target-x86] = no-separate-feature-test
# Add new items alphabetically
# Fails with "fatal error LNK1322: cannot avoid potential ARM hazard" even with /Gy
allegro5:arm64-windows=fail
# Cross compiling CI machine cannot run gen_test_char to generate apr_escape_test_char.h
apr:arm64-windows=fail
# broken when `python` is python3, https://github.com/microsoft/vcpkg/issues/18937
bde:x64-linux=fail
blitz:x64-uwp=fail
blitz:arm64-windows=fail
blitz:arm-uwp=fail
bond:arm-uwp=fail
bond:x64-osx=fail
bond:arm64-osx=fail
bond:x64-uwp=fail
caf:arm-uwp=fail
caf:x64-uwp=fail
caffe2:x86-windows=fail
caffe2:arm64-windows=fail
casclib:arm-uwp=fail
casclib:x64-uwp=fail
cctag:x64-windows-static-md=fail
cello:arm-uwp=fail
cello:x64-uwp=fail
cfitsio:arm-uwp=fail
cfitsio:x64-uwp=fail
# chartdir does not offer stable download URLs
chartdir=skip
# chromium-base has several problems and is upgraded to "skip" because it hits a lot of servers that can slow CI
# broken on Windows because it does not yet support VS2022
chromium-base:x64-windows=skip
chromium-base:x64-windows-static=skip
chromium-base:x64-windows-static-md=skip
# broken on Linux because
chromium-base:x64-linux=skip
# broken on OSX for unknown reasons; it appears to be messing with some form of system-wide cache
# because the first attempt to build it fails, but subsequent attempts succeed
chromium-base:x64-osx=skip
clamav:arm64-windows=fail
clockutils:x64-linux=fail
coin(uwp | (windows & arm)) = fail
colmap(windows) = fail # there is an ICE in VS2022 with colmap in release mode
concurrencpp:x64-linux=fail
coolprop(uwp)=fail
coroutine(uwp)=fail
cppfs(uwp)=fail
cppmicroservices(uwp | (windows & arm))=fail
cpp-netlib(uwp)=fail
cppcoro(uwp | linux)=fail
crashpad:arm64-windows=fail
crashpad:arm-uwp=fail
crashpad:x86-windows=fail
ctemplate:x64-linux=fail
ctemplate:x64-osx=fail
cuda:x64-osx=fail
# Since pipeline cannot automatically install dbghelp dependency, skip this detection
dbghelp=skip
dcmtk:x64-uwp=fail
discord-game-sdk:x64-windows-static=fail
discord-game-sdk:x64-windows-static-md=fail
discord-rpc:arm-uwp=fail
discord-rpc:x64-uwp=fail
# requires g++11
discordcoreapi:x64-linux=fail
dlib:arm-uwp=fail
dlib:x64-uwp=fail
dmlc(uwp) = fail
eastl:arm-uwp=fail
easyloggingpp:arm-uwp=fail
easyloggingpp:x64-uwp=fail
ebml:arm-uwp=fail
ebml:x64-uwp=fail
ecsutil(windows & !uwp & !arm) = fail
elfutils(osx) = fail # Checks for gnu extension so only works with gcc.
epsilon(uwp)=fail
faiss:arm64-windows=fail
fastrtps:arm-uwp=fail
fastrtps:x64-uwp=fail
fastrtps:x64-windows-static=fail
fastrtps:x64-windows-static-md=fail
fmi4cpp:arm-uwp=fail
fmi4cpp:x64-uwp=fail
fmilib:arm64-windows=fail
fmilib:arm-uwp=fail
fmilib:x64-uwp=fail
fontconfig:x64-uwp=fail
fontconfig:arm-uwp=fail
foonathan-memory:arm64-windows=fail
foonathan-memory:arm-uwp=fail
foonathan-memory:x64-uwp=fail
forge:x86-windows=fail
freeglut:arm-uwp=fail
freeglut:x64-uwp=fail
freeglut:x64-osx=fail
freeopcua:arm64-windows=fail # Needs /bigobj
ftgl:x64-uwp=fail
ftgl:arm-uwp=fail
functions-framework-cpp:x64-uwp=fail # https://github.com/GoogleCloudPlatform/functions-framework-cpp/issues/207
# VS 2022 Update 3 seems to have broken Gazebo: https://devdiv.visualstudio.com/DefaultCollection/DevDiv/_workitems/edit/1522474
gazebo:x64-windows=fail
gazebo:x64-linux=fail
gsoap = skip # gsoap does not offer stable public source downloads
geotrans = skip # Port geotrans source ftp://ftp.nga.mil server extremely slow may take several hours to download
getopt:arm-uwp=fail
getopt:x64-uwp=fail
gflags(uwp)=fail
glew:arm64-windows=fail
glfw3(uwp)=fail
glibmm:x64-windows-static-md=fail
glibmm:x64-windows-static=fail
gmmlib:arm-uwp=fail
gmmlib:arm64-windows=fail
gmmlib:x64-osx=fail
gmmlib:x64-uwp=fail
gmmlib:x64-windows-static-md=fail
gmmlib:x64-windows-static=fail
gmmlib:x64-windows=fail
gmmlib:x86-windows=fail
google-cloud-cpp(uwp)=fail
gperftools:arm64-windows=fail
gperftools:x64-uwp=fail
gperftools:arm-uwp=fail
graphicsmagick(uwp)=fail
graphicsmagick(windows & !uwp) = fail # graphicsmagick non-uwp trigger an ICE in VS 2022 17.3 https://devdiv.visualstudio.com/DefaultCollection/DevDiv/_workitems/edit/1557251
graphqlparser:arm64-osx=fail # python2 required
gtk:x64-windows-static=fail
gtk:x64-windows-static-md=fail
halide:x64-windows-static=fail
hdf5((arm & windows) | uwp) = fail
hpx:x64-windows-static=fail
hpx:arm64-windows=fail
hunspell:x64-windows-static-md=fail
ideviceinstaller:x64-windows-static-md=fail
idevicerestore:x64-linux=fail
idevicerestore:x64-osx=fail
ignition-common1:x64-linux=fail
ignition-msgs1:arm64-windows=fail
ignition-msgs1:arm-uwp=fail
ignition-msgs1:x64-uwp=fail
ignition-msgs5:arm64-windows=fail
ignition-msgs5:arm-uwp=fail
ignition-msgs5:x64-uwp=fail
intel-mkl:arm64-windows=fail
intel-mkl:arm-uwp=fail
intel-mkl:x64-osx=fail
intel-mkl:arm64-osx=fail
intel-mkl:x64-uwp=fail
intel-mkl:x64-windows=fail
intel-mkl:x64-windows-static=fail
intel-mkl:x64-windows-static-md=fail
intel-mkl:x86-windows=fail
irrlicht:arm64-windows=fail
irrlicht:arm-uwp=fail
irrlicht:x64-uwp=fail
ismrmrd:x86-windows=fail
jemalloc:arm64-windows=fail
jemalloc:arm-uwp=fail
jemalloc:x64-uwp=fail
jinja2cpplight:arm-uwp=fail
jinja2cpplight:x64-uwp=fail
kfr:arm64-windows=fail
kfr:arm-uwp=fail
kfr:x64-linux=fail
lastools:arm-uwp=fail
lastools:x64-uwp=fail
lcm:x64-windows-static=fail
lcm:x64-windows-static-md=fail
leptonica:x64-uwp=fail
leptonica:arm-uwp=fail
leveldb:arm-uwp=fail
leveldb:x64-uwp=fail
libaiff:x64-linux=fail
libarchive:arm-uwp=fail
libcopp:arm64-windows=fail
libcopp:arm-uwp=fail
# Missing system libraries on linux to run/prepare autoconf
libgpod:x64-linux=fail
libgpod:x64-osx=fail
libepoxy:arm-uwp=fail
libepoxy:x64-uwp=fail
libepoxy:x64-windows-static=fail
libevent:arm-uwp=fail
libevent:x64-uwp=fail
libevhtp:x86-windows=fail
libevhtp:x64-windows=fail
libevhtp:x64-windows-static=fail
libevhtp:x64-windows-static-md=fail
libevhtp:x64-uwp=fail
libevhtp:arm64-windows=fail
libevhtp:arm-uwp=fail
libexif:arm-uwp=fail
libexif:x64-uwp=fail
libfreenect2:arm64-windows=fail
libgit2:arm-uwp=fail
libgit2:x64-uwp=fail
libgo:arm-uwp=fail
libgo:x64-uwp=fail
libgo:arm64-windows=fail
libgxps:x64-windows-static=fail
libgxps:x64-windows-static-md=fail
libirecovery:x64-windows-static-md=fail
# 120 min build time for libjxl arm-uwp-rel, reason unknown
libjxl:arm-uwp=skip
liblemon:arm-uwp=fail
liblemon:x64-uwp=fail
liblo:arm-uwp=fail
liblo:x64-uwp=fail
libmagic:x64-uwp=fail
libmagic:arm-uwp=fail
# Build fails since PIC is not enabled and some configuration tests do not work properly on UWP
libmicrodns:arm-uwp=fail
libmicrodns:x64-uwp=fail
libmodman:x64-windows-static=fail
libmodplug:arm-uwp=fail
libmodplug:x64-uwp=fail
libmpeg2:arm-uwp=fail
libmpeg2:x64-linux=fail
libmpeg2:x64-osx=fail
libmpeg2:x64-uwp=fail
libmupdf:x64-osx=fail
libmysql:x86-windows=fail
libmysql:arm64-windows=fail
libopusenc:arm-uwp=fail
libopusenc:x64-uwp=fail
libosip2:x64-windows-static-md=fail
libplist:x64-windows-static=fail
# The developer of libqcow does not offer stable release archives
libqcow=skip
libsoundio:arm64-windows=fail
libsoundio:arm-uwp=fail
libsoundio:x64-uwp=fail
libspatialite:arm-uwp=fail
libspatialite:x64-uwp=fail
libssh:arm64-windows=fail
libssh:arm-uwp=fail
libssh:x64-uwp=fail
libtins:arm-uwp=fail
libtins:x64-uwp=fail
libtomcrypt:arm64-windows=fail
libtomcrypt:arm-uwp=fail
libusb:arm-uwp=fail
libusb:x64-uwp=fail
libusb:arm64-windows=fail
libusbmuxd:arm-uwp=fail
libusbmuxd:x64-uwp=fail
libusbmuxd:x64-osx=fail
libusb-win32:arm-uwp=fail
libusb-win32:x64-linux=fail
libusb-win32:x64-osx=fail
libusb-win32:x64-uwp=fail
libuv:arm-uwp=fail
libuv:x64-uwp=fail
libvmdk:arm-uwp=fail
libvmdk:x64-uwp=fail
#Skip detection to avoid upstream remove older releases
libvmdk=skip
libwandio:x86-windows=fail
libwandio:x64-windows=fail
libwandio:x64-windows-static=fail
libwandio:x64-windows-static-md=fail
libwandio:x64-uwp=fail
libwandio:arm64-windows=fail
libwandio:arm-uwp=fail
# clang-cl ICEd
libxt:arm64-windows=fail
licensepp:arm-uwp=fail
licensepp:x64-uwp=fail
linenoise-ng:arm-uwp=fail
linenoise-ng:x64-uwp=fail
live555:arm-uwp=fail
live555:x64-osx=fail
live555:arm64-osx=fail
live555:x64-uwp=fail
# fails due to an outdated gcc version
llgl:arm-uwp=fail
llgl:x64-uwp=fail
log4cplus:arm-uwp=fail
log4cplus:x64-uwp=fail
log4cxx:arm-uwp=fail
log4cxx:x64-uwp=fail
luajit:arm64-windows=fail
luafilesystem:arm-uwp=fail
luafilesystem:x64-uwp=fail
luasec:x64-windows-static=fail
lzfse:arm-uwp=fail
marble:x64-windows-static=fail
marble:x64-windows-static-md=fail
marble:arm64-windows=fail
marble:arm-uwp=fail
marble:x64-linux=fail
marble:x64-osx=fail
marble:x86-windows=fail
mathgl:arm-uwp=fail
mathgl:x64-uwp=fail
# Due to static crt.
mesa:x64-windows-static=fail
# Missing dependent libraries.
mesa:x64-linux=fail
mesa:x64-osx=fail
milerius-sfml-imgui:x64-windows-static=fail
minifb:arm-uwp=fail
minifb:x64-uwp=fail
miniupnpc:arm-uwp=fail
miniupnpc:x64-uwp=fail
minizip:arm-uwp=fail
minizip:x64-uwp=fail
# https://github.com/mlpack/mlpack/pull/2945
mlpack:x64-uwp=fail
ms-quic:arm-uwp=fail
ms-quic:arm64-windows=fail
ms-quic:x64-uwp=fail
ms-quic:x64-windows-static-md=fail
ms-quic:x64-windows=fail
ms-quic:x86-windows=fail
mongoose:arm-uwp=fail
mongoose:x64-uwp=fail
monkeys-audio:arm64-windows=fail
monkeys-audio:arm-uwp=fail
monkeys-audio:x64-linux=fail
monkeys-audio:x64-osx=fail
monkeys-audio:x64-uwp=fail
monkeys-audio:x64-windows-static=fail
moos-core:arm-uwp=fail
moos-core:x64-uwp=fail
moos-core:x64-windows-static=fail
moos-essential:arm64-windows=fail
moos-essential:x64-windows-static-md=fail
moos-essential:x64-windows=fail
moos-essential:x86-windows=fail
msmpi:arm64-windows=fail
msmpi:arm-uwp=fail
msmpi:x64-linux=fail
msmpi:x64-osx=fail
msmpi:x64-uwp=fail
munit:arm-uwp=fail
munit:arm64-windows=fail
munit:x64-uwp=fail
nana:arm-uwp=fail
nana:x64-linux=fail
nana:x64-osx=fail
nana:x64-uwp=fail
nanodbc:arm-uwp=fail
nanodbc:x64-uwp=fail
nativefiledialog:arm-uwp=fail
nativefiledialog:x64-uwp=fail
nettle:arm-uwp=fail
nettle:arm64-windows=fail
ngspice:x64-windows-static=fail
nng:arm-uwp=fail
nng:x64-uwp=fail
numactl:arm64-windows=fail
numactl:arm-uwp=fail
numactl:x64-osx=fail
numactl:x64-uwp=fail
numactl:x64-windows=fail
numactl:x64-windows-static=fail
numactl:x64-windows-static-md=fail
numactl:x86-windows=fail
ocilib:arm-uwp=fail
ocilib:arm64-windows=fail
ocilib:x64-uwp=fail
ocilib:x64-windows-static-md=fail
octomap:arm-uwp=fail
octomap:x64-uwp=fail
ode:arm64-windows=fail
ode:arm-uwp=fail
ode:x64-uwp=fail
offscale-libetcd-cpp:arm-uwp=fail
offscale-libetcd-cpp:x64-uwp=fail
openal-soft:arm-uwp=fail
openal-soft:x64-uwp=fail
# opencc/deps/rapidjson-1.1.0/rapidjson.h: Unknown machine endianess detected
opencc:arm64-windows=fail
# opencc/deps/marisa-0.2.5/lib/marisa/grimoire/io/mapper.cc currently doesn't support UWP.
opencc:arm-uwp=fail
opencc:x64-uwp=fail
opencl:arm-uwp=fail
opencl:x64-uwp=fail
opencsg:arm-uwp=fail
opencsg:x64-uwp=fail
opendnp3:x64-uwp=fail
opendnp3:arm-uwp=fail
openmama:x64-windows-static-md=fail
openmesh:arm64-windows=fail
openmesh:arm-uwp=fail
openmesh:x64-uwp=fail
openscap:x64-windows-static=fail
openscap:x64-osx=fail
# https://github.com/AcademySoftwareFoundation/openvdb/issues/1362
# openvdb\openvdb\libopenvdb.lib : fatal error LNK1248: image size (109A36020) exceeds maximum allowable size (FFFFFFFF)
openvdb:x64-windows-static=fail
openvdb:x64-windows-static-md=fail
openvpn3:x64-osx=fail
openvpn3:arm64-osx=fail
openvr:arm64-windows=fail
openvr:arm-uwp=fail
openvr:x64-osx=fail
openvr:x64-uwp=fail
openvr:x64-windows-static=fail
opusfile:arm-uwp=fail
opusfile:x64-uwp=fail
paho-mqtt:arm-uwp=fail
paho-mqtt:x64-uwp=fail
pango:x64-windows-static=fail
pango:x64-windows-static-md=fail
pfring:x64-osx=fail
pfring:arm64-osx=fail
# pfring on Linux currently fails because its build scripts enable warnings as
# errors, and warnings trigger with the Linux kernel headers in the Azure images.
pfring:x64-linux=fail
pixman:arm-uwp=fail
platform-folders:arm-uwp=fail
platform-folders:x64-uwp=fail
plibsys:arm-uwp=fail
plibsys:x64-uwp=fail
plplot:arm64-windows=fail
plplot:arm-uwp=fail
plplot:x64-uwp=fail
pmdk:arm-uwp=fail
pmdk:arm64-windows=fail
pmdk:x64-linux=fail
pmdk:x64-osx=fail
pmdk:x64-uwp=fail
pmdk:x64-windows-static=fail
pmdk:x86-windows=fail
popsift:x64-windows-static-md=fail
portable-snippets:arm-uwp=fail
# Not yet ready for these platforms.
qbittorrent:x64-osx=fail
qbittorrent:x64-linux=fail
qpid-proton:arm-uwp=fail
qpid-proton:x64-uwp=fail
qpid-proton:x64-windows-static=fail
qt5-base:arm64-windows=fail
# Skip deprecated Qt module
# (remove after 1 year or longer due to vcpkg upgrade not handling removed ports correctly)
qt5-canvas3d=skip
# Missing system libraries
qt5-wayland:x64-osx=fail
qtwayland:x64-osx=fail
qtwayland:arm64-osx=fail
# Missing prerequisites for CI success
qt5-webengine:x64-linux=fail
qt5-webengine:x64-osx=fail
# Fail due to outdated protoc headers.
# D:\buildtrees\qt5-webengine\x64-windows-dbg\src\core\debug\gen\net/third_party/quiche/src/quic/core/proto/cached_network_parameters.pb.h(17):
# fatal error C1189: #error: This file was generated by an older version of protoc which is
# Succesful built requires protobuf to be installed after qt5-webengine not before. Otherwise the build picks up the wrong headers from inside vcpkg.
# Missing system libraries
qt5-x11extras:x64-osx=fail
qt5-x11extras:arm64-osx=fail
# Missing libraries
qt5-x11extras:x86-windows=fail
qt5-x11extras:x64-windows=fail
qt5-x11extras:x64-windows-static=fail
qt5-x11extras:x64-windows-static-md=fail
qtvirtualkeyboard[t9write] = skip # depends on the port 't9write' that does not exists
qwt-qt6:x64-osx=fail
rapidstring:arm64-windows=fail
rapidstring:arm-uwp=fail
rapidstring:x64-linux=fail
rapidstring:x64-uwp=fail
rapidstring:x64-windows=fail
rapidstring:x64-windows-static=fail
rapidstring:x64-windows-static-md=fail
rapidstring:x86-windows=fail
raylib:arm64-windows=fail
raylib:arm-uwp=fail
raylib:x64-uwp=fail
readline:arm-uwp=fail
readline:x64-uwp=fail
realsense2:arm64-windows=fail
realsense2:arm-uwp=fail
realsense2:x64-uwp=fail
replxx:arm-uwp=fail
replxx:x64-uwp=fail
restbed:arm-uwp=fail
restbed:x64-uwp=fail
rhash:arm64-windows=fail
rocksdb:arm-uwp=fail
rocksdb:x64-uwp=fail
rpclib:arm64-windows=fail
rpclib:arm-uwp=fail
rpclib:x64-uwp=fail
#The website of rply http://w3.impa.br/~diego/software/rply cannot be accessed
rply=skip
rsasynccpp:arm64-windows=fail
rsasynccpp:arm-uwp=fail
rsasynccpp:x64-linux=fail
rsasynccpp:x64-osx=fail
rtlsdr:x64-uwp=fail
rtlsdr:arm64-windows=fail
rtlsdr:arm-uwp=fail
rtlsdr:x64-linux=fail
rtlsdr:x64-osx=fail
ryu(windows)=fail # ryu does not support VS2022 yet
scnlib:arm-uwp=fail
scnlib:x64-uwp=fail
sdformat10:x64-windows-static-md=fail
sdformat6:arm-uwp=fail
sdformat6:arm64-windows=fail
sdformat6:x64-uwp=fail
sdformat6:x64-windows-static-md=fail
sdformat9:arm-uwp=fail
sdformat9:x64-uwp=fail
sdformat9:x64-windows-static-md=fail
sdl2-mixer:arm-uwp=fail
sdl2-mixer:x64-uwp=fail
sdl2-net:arm-uwp=fail
sdl2-net:x64-uwp=fail
septag-sx:arm64-windows=fail
septag-sx:arm-uwp=fail
septag-sx:x64-uwp=fail
shiva:x64-windows-static=fail
shiva:x64-windows-static-md=fail
shiva-sfml:x64-linux=fail
shiva-sfml:x64-osx=fail
shiva-sfml:arm64-osx=fail
shiva-sfml:x86-windows=fail
shiva-sfml:x64-windows=fail
signalrclient:x64-uwp=fail
signalrclient:arm-uwp=fail
simbody:arm64-windows=fail
skia:arm-uwp=fail
skia:x64-uwp=fail
sleef:x86-windows=fail
slikenet:arm-uwp=fail
slikenet:x64-uwp=fail
smpeg2:x64-linux=fail
sockpp:arm-uwp=fail
sockpp:x64-uwp=fail
soil2:arm-uwp=fail
soil2:x64-uwp=fail
soqt:arm64-windows=fail
soqt:arm-uwp=fail
soqt:x64-uwp=fail
soundtouch:arm-uwp=fail
soundtouch:x64-uwp=fail
spaceland:arm64-windows=fail
spaceland:arm-uwp=fail
spaceland:x64-uwp=fail
spdk:x64-linux=fail
spdk-dpdk:arm64-windows=fail
spdk-dpdk:arm-uwp=fail
spdk-dpdk:x64-osx=fail
spdk-dpdk:x64-uwp=fail
spdk-dpdk:x64-windows=fail
spdk-dpdk:x64-windows-static=fail
spdk-dpdk:x64-windows-static-md=fail
spdk-dpdk:x86-windows=fail
spdk-ipsec:arm64-windows=fail
spdk-ipsec:arm-uwp=fail
spdk-ipsec:x64-osx=fail
spdk-ipsec:x64-uwp=fail
spdk-ipsec:x64-windows=fail
spdk-ipsec:x64-windows-static=fail
spdk-ipsec:x64-windows-static-md=fail
spdk-ipsec:x86-windows=fail
stormlib:arm-uwp=fail
stormlib:x64-uwp=fail
stxxl:arm-uwp=fail
stxxl:x64-uwp=fail
systemc:arm64-windows=fail
systemc:arm-uwp=fail
systemc:x64-uwp=fail
tcl:arm-uwp=fail
tcl:arm64-windows=fail
tcl:x64-uwp=fail
telnetpp:arm-uwp=fail
telnetpp:x64-uwp=fail
# tensorflow does not support VS2022
tensorflow:x64-windows=fail
tensorflow:x64-windows-static=fail
tensorflow:x64-windows-static-md=fail
tensorflow-cc:x64-windows=fail
tensorflow-cc:x64-windows-static=fail
tensorflow-cc:x64-windows-static-md=fail
tidy-html5:arm-uwp=fail
tidy-html5:x64-uwp=fail
tinkerforge:arm-uwp=fail
tinkerforge:x64-uwp=fail
tiny-process-library:arm-uwp=fail
tiny-process-library:x64-uwp=fail
tmxparser:arm64-windows=fail
tmxparser:arm-uwp=fail
tmxparser:x64-uwp=fail
tmxparser:x64-windows=fail
tmxparser:x64-windows-static=fail
tmxparser:x64-windows-static-md=fail
tmxparser:x86-windows=fail
torch-th:arm64-windows=fail
torch-th:arm-uwp=fail
torch-th:x64-uwp=fail
torch-th:x64-windows-static=fail
treehopper:x64-windows-static=fail
treehopper:x64-linux=fail
unicorn-lib:arm-uwp=fail
unicorn-lib:x64-uwp=fail
unittest-cpp:arm64-windows=fail
unittest-cpp:arm-uwp=fail
unittest-cpp:x64-uwp=fail
# USD has set official policy that they will not update to be compatible with TBB in the near term (https://github.com/PixarAnimationStudios/USD/issues/1600)
usd=skip
uthenticode:arm-uwp=fail
uthenticode:x64-uwp=fail
v8:arm64-windows=fail
v8:arm-uwp=fail
v8:x64-osx=fail
v8:x64-uwp=fail
vectorclass:arm64-windows=fail
vectorclass:arm-uwp=fail
vulkan = fail # vulkan sdk not installed
winreg:x64-linux=fail
winreg:x64-osx=fail
wpilib:arm64-windows=fail
wpilib:x64-osx=fail
wxchartdir:x64-osx=fail
x265:arm64-windows=fail
x265:arm-uwp=fail
x265:x64-uwp=fail
xalan-c:x64-windows-static=fail
xalan-c:arm64-windows=fail
# No xorg-macros available on osx
xbitmaps:x64-osx=skip
xerces-c:arm-uwp=fail
xerces-c:x64-uwp=fail
xmlsec:arm-uwp=fail
xmlsec:x64-uwp=fail
yara:arm-uwp=fail
yara:x64-uwp=fail
z3:arm-uwp=fail
z3:x64-uwp=fail
zint:x64-osx=fail
# failures for x64-windows-static-md
ace:x64-windows-static-md=fail
ijg-libjpeg:x64-windows-static-md=fail
libcerf:x64-windows-static-md=fail
libmicrohttpd:x64-windows-static-md=fail
linenoise-ng:x64-windows-static-md=fail
netcdf-cxx4:x64-windows-static-md=fail
open62541:x64-windows-static-md=fail
openscap:x64-windows-static-md=fail
quantlib:x64-windows-static-md=fail
sentencepiece:x64-windows-static-md=fail
unicorn:x64-windows-static-md=fail
# the version of v8 we have in the repo doesn't support VS2022
v8:x86-windows=fail
v8:x64-windows=fail
v8:x64-windows-static=fail
v8:x64-windows-static-md=fail
zyre:x64-windows-static-md=fail
usbmuxd:x64-windows-static-md=fail
workflow:x64-uwp=fail
workflow:arm-uwp=fail
# VS2019 version 16.9.4's project system changes where PDBs are placed in a way that breaks the
# upstream build script of this port.
# See https://developercommunity.visualstudio.com/t/Toolset-169-regression-vcxproj-producin/1356639
dimcli:x64-windows-static-md=fail
dimcli:x64-windows-static=fail
zeroc-ice(uwp)=fail # ZeroC doesn't provide ARM tagets in project files.
# testing all features would be too slow:
aws-sdk-cpp[access-management,accessanalyzer,acm,acm-pca,alexaforbusiness,amp,amplify,amplifybackend,apigateway,apigatewaymanagementapi,apigatewayv2,appconfig,appflow,appintegrations,application-autoscaling,application-insights,applicationcostprofiler,appmesh,apprunner,appstream,appsync,athena,auditmanager,autoscaling,autoscaling-plans,awsmigrationhub,awstransfer,backup,batch,braket,budgets,ce,chime,cloud9,clouddirectory,cloudformation,cloudfront,cloudhsm,cloudhsmv2,cloudsearch,cloudsearchdomain,cloudtrail,codeartifact,codebuild,codecommit,codedeploy,codeguru-reviewer,codeguruprofiler,codepipeline,codestar,codestar-connections,codestar-notifications,cognito-identity,cognito-idp,cognito-sync,comprehend,comprehendmedical,compute-optimizer,config,connect,connect-contact-lens,connectparticipant,cur,customer-profiles,databrew,dataexchange,datapipeline,datasync,dax,detective,devicefarm,devops-guru,directconnect,discovery,dlm,dms,docdb,ds,dynamodb,dynamodbstreams,ebs,ec2,ec2-instance-connect,ecr,ecr-public,ecs,eks,elastic-inference,elasticache,elasticbeanstalk,elasticfilesystem,elasticloadbalancing,elasticloadbalancingv2,elasticmapreduce,elastictranscoder,email,emr-containers,es,eventbridge,events,finspace,finspace-data,firehose,fis,fms,forecast,forecastquery,frauddetector,fsx,gamelift,glacier,globalaccelerator,glue,greengrass,greengrassv2,groundstation,guardduty,health,healthlake,honeycode,iam,identity-management,identitystore,imagebuilder,importexport,inspector,iot,iot-data,iot-jobs-data,iot1click-devices,iot1click-projects,iotanalytics,iotdeviceadvisor,iotevents,iotevents-data,iotfleethub,iotsecuretunneling,iotsitewise,iotthingsgraph,iotwireless,ivs,kafka,kendra,kinesis,kinesis-video-archived-media,kinesis-video-media,kinesis-video-signaling,kinesisanalytics,kinesisanalyticsv2,kinesisvideo,kms,lakeformation,lambda,lex,lex-models,lexv2-models,lexv2-runtime,license-manager,lightsail,location,logs,lookoutequipment,lookoutmetrics,lookoutvision,machinelearning,macie,macie2,managedblockchain,marketplace-catalog,marketplace-entitlement,marketplacecommerceanalytics,mediaconnect,mediaconvert,medialive,mediapackage,mediapackage-vod,mediastore,mediastore-data,mediatailor,meteringmarketplace,mgn,migrationhub-config,mobile,mobileanalytics,monitoring,mq,mturk-requester,mwaa,neptune,network-firewall,networkmanager,nimble,opsworks,opsworkscm,organizations,outposts,personalize,personalize-events,personalize-runtime,pi,pinpoint,pinpoint-email,polly,pricing,qldb,qldb-session,queues,quicksight,ram,rds,rds-data,redshift,redshift-data,rekognition,resource-groups,resourcegroupstaggingapi,robomaker,route53,route53domains,route53resolver,s3,s3-crt,s3-encryption,s3control,s3outposts,sagemaker,sagemaker-a2i-runtime,sagemaker-edge,sagemaker-featurestore-runtime,sagemaker-runtime,savingsplans,schemas,sdb,secretsmanager,securityhub,serverlessrepo,service-quotas,servicecatalog,servicecatalog-appregistry,servicediscovery,sesv2,shield,signer,sms,sms-voice,snowball,sns,sqs,ssm,ssm-contacts,ssm-incidents,sso,sso-admin,sso-oidc,states,storagegateway,sts,support,swf,synthetics,text-to-speech,textract,timestream-query,timestream-write,transcribe,transcribestreaming,transfer,translate,waf,waf-regional,wafv2,wellarchitected,workdocs,worklink,workmail,workmailmessageflow,workspaces,xray] = no-separate-feature-test
google-cloud-cpp[advisorynotifications,alloydb,apikeys,accessapproval,accesscontextmanager,apigateway,apigeeconnect,appengine,artifactregistry,asset,assuredworkloads,automl,baremetalsolution,batch,beyondcorp,bigquery,bigtable,billing,binaryauthorization,certificatemanager,channel,cloudbuild,composer,connectors,contactcenterinsights,container,containeranalysis,datacatalog,datamigration,dataplex,dataproc,datastream,debugger,deploy,dialogflow-cx,dialogflow-es,dlp,documentai,edgecontainer,eventarc,experimental-storage-grpc,filestore,functions,gameservices,gkehub,gkemulticloud,grafeas,iam,iap,ids,iot,kms,language,logging,managedidentities,memcache,monitoring,networkconnectivity,networkmanagement,notebooks,optimization,orgpolicy,osconfig,oslogin,policytroubleshooter,privateca,profiler,pubsub,recommender,redis,resourcemanager,resourcesettings,retail,run,scheduler,secretmanager,securitycenter,servicecontrol,servicedirectory,servicemanagement,serviceusage,shell,spanner,speech,storage,storagetransfer,talent,tasks,texttospeech,tpu,trace,translate,video,videointelligence,vision,vmmigration,vmwareengine,vpcaccess,webrisk,websecurityscanner,workflows] = no-separate-feature-test
halide[target-amdgpu,target-arm,target-d3d12compute,target-hexagon,target-metal,target-mips,target-nvptx,target-opencl,target-powerpc,target-riscv,target-x86] = no-separate-feature-test
llvm[target-aarch64,target-all,target-amdgpu,target-arm,target-avr,target-bpf,target-hexagon,target-lanai,target-mips,target-msp430,target-nvptx,target-powerpc,target-riscv,target-sparc,target-spirv,target-systemz,target-ve,target-webassembly,target-x86,target-xcore] = no-separate-feature-test
# cascade
ace[xml-utils](osx) = cascade
adios2[cuda](osx) = cascade
ampl-asl(uwp | (osx & arm64)) = cascade
ampl-mp(uwp | (osx & arm64)) = cascade
arrow[cuda](osx) = cascade
atk[introspection](static | !(native | (windows & x86))) = cascade
boost-python[python2](osx) = cascade
braft(osx) = cascade
caffe2(osx) = cascade
chronoengine[irrlicht]:arm64-osx = cascade
coin-or-ipopt:arm64-osx = cascade
coin-or-ipopt:arm64-osx = cascade
colmap[cuda,cuda-redist](arm64 & osx) = cascade
cub(!((windows & x64 & !uwp) | (linux & x64) | (linux & arm64))) = cascade
curl[winssl](!windows) = cascade
darknet[cuda,cudnn,full,opencv-cuda,opencv2-cuda,opencv3-cuda](arm64 & osx) = cascade
darknet[opencv2-base]:arm64-osx = cascade
darknet[opencv3-base]:arm64-osx = cascade
dartsim:arm64-osx = cascade
daxa = cascade # no vulkan sdk installed
dlib[cuda](osx) = cascade
fbgemm:arm64-osx = cascade
ffmpeg[all-gpl]:arm64-osx = cascade
ffmpeg[all-nonfree]:arm64-osx = cascade
ffmpeg[all]:arm64-osx = cascade
ffmpeg[amf,alsa,qsv](osx) = cascade
ffmpeg[qsv](!windows) = cascade
flann[cuda](osx) = cascade
flashlight-sequence[cuda](osx) = cascade
folly[liburing]:arm64-osx = cascade
gazebo(arm | uwp | osx) = cascade
gdal[aws-ec2-windows]:arm64-osx = cascade
gdal[aws-ec2-windows](!windows) = cascade
gdk-pixbuf[introspection]:arm64-osx = cascade
ginkgo[cuda](osx) = cascade
gl2ps:arm64-osx = cascade
glpk(!windows & !osx) = cascade
glpk[dl]:arm64-osx = cascade
glpk[mysql]:arm64-osx = cascade
glpk[odbc]:arm64-osx = cascade
glui:arm64-osx = cascade
gmsh[occ](osx) = cascade
graphene[introspection]:arm64-osx = cascade
gstreamer[faad]:arm64-osx = cascade
gtk[introspection]:arm64-osx = cascade
gtk3[introspection]:arm64-osx = cascade
gtkmm:arm64-osx = cascade
harfbuzz[introspection](static | !(native | (windows & x86))) = cascade
hpx[cuda](osx) = cascade
idyntree[irrlicht]:arm64-osx = cascade
ignition-common1:arm64-osx = cascade
ignition-common3:arm64-osx = cascade
ignition-fuel-tools1:arm64-osx = cascade
ignition-fuel-tools4:arm64-osx = cascade
ignition-transport8:arm64-osx = cascade
ignition-transport9:arm64-osx = cascade
imgui[glut-binding,vulkan-binding](osx) = cascade
imgui[vulkan-binding] = cascade # no vulkan sdk installed
irrxml:arm64-osx = cascade
itk[cuda](osx) = cascade
itk[cufftw]:arm64-osx = cascade
kf5guiaddons[wayland]:arm64-osx = cascade
libalkimia[webengine]:arm64-osx = cascade
libalkimia[webengine](static) = cascade
libcanberra[alsa]:arm64-osx = cascade
libfreenect2[openni2]:arm64-osx = cascade
libftdi:arm64-osx = cascade
libp7-baical:arm64-osx = cascade
libpmemobj-cpp[benchmark]:arm64-osx = cascade
libtorch(uwp | (arm & windows) | (arm64 & osx)) = cascade
libtorch[vulkan] = cascade # no vulkan sdk installed
libwebp[vwebp-sdl]:arm64-osx = cascade
libxaw:arm64-osx = cascade
llgl[vulkan] = cascade # no vulkan sdk installed
luasec:arm64-osx = cascade
magnum[vk-info]:arm64-osx = cascade
magnum[vk,vk-info] = cascade # no vulkan sdk installed
magnum[vk]:arm64-osx = cascade
mnn[vulkan] = cascade # no vulkan sdk installed
oatpp-libressl:arm64-osx = cascade
ogre-next:arm64-osx = cascade
ogre-next[csharp]:arm64-osx = cascade
ogre-next[d3d9]:arm64-osx = cascade
ogre-next[java]:arm64-osx = cascade
ogre-next[python]:arm64-osx = cascade
opencv[cuda,cudnn](osx) = cascade
opencv[dnn-cuda](osx) = cascade
opencv[gtk]:arm64-osx = cascade
opencv[halide, python] = cascade # See fails of opencv4[halide, python]
opencv2[cuda](osx) = cascade
opencv3[cuda](osx) = cascade
opencv4[cuda,cudnn](osx) = cascade
opencv4[dnn-cuda](osx) = cascade
openmvs:arm64-osx = cascade
openmvs[ceres]:arm64-osx = cascade
openmvs[cuda]:arm64-osx = cascade
openmvs[nonfree]:arm64-osx = cascade
openmvs[openmp]:arm64-osx = cascade
openni2:arm64-osx = cascade
openvms[cuda](osx) = cascade
openxr-loader[vulkan] = cascade # no vulkan sdk installed
osg-qt:arm64-osx = cascade
osg[default-features]:arm64-osx = cascade
osg[nvtt]:arm64-osx = cascade
osg[sdl1]:arm64-osx = cascade
pango[introspection]:arm64-osx = cascade
pangolin[openni2]:arm64-osx = cascade
pangolin[uvc]:arm64-osx = cascade
paraview[all-modules] = cascade # See https://github.com/microsoft/vcpkg/issues/33193
paraview[cuda](osx) = cascade
pcl[apps]:arm64-osx = cascade
pcl[cuda](osx) = cascade
pcl[openni2]:arm64-osx = cascade
qt:arm64-osx = cascade
qt[default-features]:arm64-osx = cascade
qt3d[vulkan] = cascade # no vulkan sdk installed
qt5-base[vulkan] = cascade # no vulkan sdk installed
qt5[all]:arm64-osx = cascade
qt5[doc]:arm64-osx = cascade
qt5[wayland]:arm64-osx = cascade
qt5[webengine]:arm64-osx = cascade
qtapplicationmanager:arm64-osx = cascade
realsense2[openni2](!windows) = cascade # cpkg-tool-lessmsi[core] only supports native & windows
salome-medcoupling(arm | uwp | !(linux | windows)) = cascade
saucer:arm64-osx = cascade
sdl1-net(osx) = cascade
seal[hexl](osx) = cascade
sqlitecpp[sqlcipher]:arm64-osx = cascade
tensorpipe[cuda](osx) = cascade
theia(osx) = cascade
usockets[network] = cascade
vsg = cascade # no vulkan sdk installed
vtk-m[cuda](osx) = cascade
vtk[cuda](osx) = cascade
vtk[gdal] = cascade # Same as https://github.com/microsoft/vcpkg/issues/33193
vtk[openvr]:arm64-osx = cascade
vulkan-memory-allocator-hpp = cascade
wayland-protocols(windows | osx) = cascade
wayland-protocols[force-build] = cascade # because the following dependencies did not build: wayland[core,force-build]
wxchartdir(uwp) = cascade
wxwidgets[webview]:arm64-osx = cascade
wxwidgets[webview](!windows) = cascade
# failures
# adios2[zfp](osx) = feature-fails # requires openmp (works with right setup)
# adios2[core,mpi,zfp](osx) = combination-fails # mpi not found
ableton-link[hut](linux) = feature-fails # libportaudiocpp0 must be installed in ci. See https://github.com/microsoft/vcpkg/pull/32144
adios2[python] = feature-fails # Could NOT find Python (missing: Python_NumPy_INCLUDE_DIRS NumPy)
arrayfire[opencl](linux) = feature-fails # error: ‘DBL_EPSILON’ was not declared in this scope. See https://github.com/microsoft/vcpkg/issues/32145
boost-python[core] = combination-fails
boringssl(linux) = fail # golang-go must be installed. See https://github.com/microsoft/vcpkg/pull/32096
cgns[core,fortran,hdf5,legacy,lfs,lfsselector,mpi,tests,tools] = combination-fails # ["fortran","hdf5","mpi"]: Could NOT find MPI (missing: MPI_Fortran_FOUND) (found version "3.1")
coroutine(osx) = fail # requires c++20
cppslippi(osx) = fail # requires c++20
ctbench(osx) = fail # requires C++ 20
curl[brotli,c-ares,http2,idn,idn2,mbedtls,non-http,openssl,sectransp,ssh,ssl,tool,websockets,wolfssl] = combination-fails
curl[core,openssl,wolfssl] = options # openssl and wolfssl are exclusive ssl backends
dmlc[openmp](osx) = feature-fails # No openmp on osx
duktape(osx) = fail # requires python2
dv-processing[tools](osx) = feature-fails # requires c++20
embree3[core,avx,avx2,avx512,default-features,sse2,sse42](osx) = combination-fails # CMake Error at CMakeLists.txt:447 (MESSAGE): Using Embree as static library is not supported with AppleClang >= 9.0 when multiple ISAs are selected. Please either build a shared library or enable only one ISA.
ffmpeg[vpx] = feature-fails # see https://github.com/microsoft/vcpkg/issues/31118
fftw3[openmp](osx) = feature-fails # waits for https://github.com/microsoft/vcpkg/pull/30833
flashlight-cpu = fail # CMake Error: INSTALL(EXPORT) given unknown export "flashlightTargets". See https://github.com/microsoft/vcpkg/issues/32098
flashlight-sequence[openmp](osx) = feature-fails # No openmp on osx
freeglut(osx) = fail # fatal error: 'GL/glx.h' file not found
freerdp[server](osx) = feature-fails # ld: library not found for -lwinpr-tools. See https://github.com/microsoft/vcpkg/issues/33042
gdal[poppler] = feature-fails # CMake Error: include could not find requested file: GdalDriverHelper. Same as https://github.com/microsoft/vcpkg/issues/33193
geogram[graphics] = feature-fails # imgui not found. See https://github.com/microsoft/vcpkg/issues/32421
ginkgo[openmp](osx) = feature-fails # No openmp on osx
google-cloud-cpp[storagetransfer](osx) = feature-fails # See https://github.com/microsoft/vcpkg/issues/32149
gstreamer[chromaprint] = feature-fails # see https://github.com/microsoft/vcpkg/issues/31109
gstreamer[openal] = feature-fails # see https://github.com/microsoft/vcpkg/issues/31109
gstreamer[openmpt] = feature-fails # see https://github.com/microsoft/vcpkg/issues/31109
gstreamer[sndfile] = feature-fails # see https://github.com/microsoft/vcpkg/issues/31109
gstreamer[x11-bad](osx) = feature-fails # no x11 on macOS
hdf5[core,cpp,fortran,map,parallel,szip,threadsafe,tools,utils,zlib] = combination-fails # some features are mutually exclusive
igraph[openmp](osx) = feature-fails # openmp setup needed
irrlicht[tools] = feature-fails # X11 installation required
itk[python](osx) = feature-fails # see https://github.com/microsoft/vcpkg/issues/31042
keystone(osx) = fail # requires python 2
kissfft[openmp](osx) = feature-fails # No openmp on osx
lapack-reference[core,cblas,noblas] = options # Cannot built feature 'cblas' together with feature 'noblas'. cblas requires blas.
libadlmidi[dosbox-emulator] = options # You have to select at least one emulator
libalkimia[tools](linux) = feature-fails # link errors. See https://github.com/microsoft/vcpkg/issues/32361
libcanberra[core,defaults,gstreamer,gtk3,null](osx) = combination-fails # fatal error: 'gdk/gdkx.h' file not found
libcanberra[core] = combination-fails # configure: error: *** No backend enabled. ***
libcanberra[core](osx) = combination-fails # see https://github.com/microsoft/vcpkg/issues/31032
libcanberra[gtk3](osx) = combination-fails # No package 'systemd' found # See https://github.com/microsoft/vcpkg/issues/31032
libcanberra[oss](osx) = feature-fails # oss not installed
libcanberra[pulse](osx) = feature-fails # pulseaudio not installed
libgit2[core,openssl,winhttp,sectransp,mbedtls] = options # only one TLS backend is allowed
libgit2[pcre,pcre2] = options # have to select pcre xor pcre2
libgit2[winhttp] = feature-fails
libgwenhywfar[qt5](osx) = feature-fails # See https://github.com/microsoft/vcpkg/issues/31216
libidn2[nls](osx) = feature-fails # https://github.com/microsoft/vcpkg/issues/31011
libmesh(osx) = fail # build failure
libofx[ofx2qif,ofxdump](osx) = feature-fails # gettext link error. See https://github.com/microsoft/vcpkg/issues/33043
libopnmidi[gens-emulator] = options # You have to select at least one emulator
libpq[core,bonjour,client,icu,lz4,nls,openssl,python,readline,tcl,xml,xslt,zlib,zstd](osx) = combination-fails # waits for https://github.com/microsoft/vcpkg/pull/31031
libproxy[bindings-csharp](!windows) = feature-fails # No C# compiler installed
libraw[openmp](osx) = feature-fails # requires openmp (works with right setup)
libsbml[expat, libxml2] = options # have to select excatly one xml lib(they are features)
libssh[openssl,mbedtls] = options # we have to select feature openssl or mbedtls
llvm[core,libcxx,libunwind] = options # Exclude libcxx and libunwind from all
llvm[libcxxabi] = feature-fails # see https://github.com/microsoft/vcpkg/issues/31038
magnum-plugins[meshoptimizersceneconverter] = feature-fails # see https://github.com/microsoft/vcpkg/issues/31112
mesa[egl](!windows) = feature-fails # ERROR: Problem encountered: EGL requires dri, haiku, or windows
mesa[llvm] = feature-fails # ERROR: Neither a subproject directory nor a llvm.wrap file was found. (llvm-config found: NO)
msdfgen[core,extensions,geometry-preprocessing,openmp,tools](osx) = combination-fails # requires openmp (works with right setup)
msdfgen[openmp](osx) = feature-fails # No openmp on osx
openblas[dynamic-arch](arm) = feature-fails # see https://github.com/microsoft/vcpkg/issues/31494
opencv2[ffmpeg] = feature-fails # ffmpeg5+ is not supported under opencv2. See https://github.com/microsoft/vcpkg/issues/32151
opencv2[python](osx) = feature-fails # requires python2
opencv2[world] = feature-fails # See https://github.com/microsoft/vcpkg/issues/29943
opencv3[ffmpeg] = feature-fails # ffmpeg5+ is not supported under opencv3. See https://github.com/microsoft/vcpkg/issues/32150
opencv3[halide] = feature-fails # Same as opencv4[halide]
opencv3[webp] = feature-fails # Same as opencv4[webp]
opencv3[vtk](osx) = feature-fails # vtk version not compatible. See https://github.com/microsoft/vcpkg/issues/32228
opencv4[core,ade,contrib,dc1394,default-features,dnn,eigen,ffmpeg,freetype,gdcm,gstreamer,halide,ipp,jasper,jpeg,lapack,nonfree,openexr,opengl,openmp,ovis,png,python,qt,quirc,sfm,tbb,tiff,vtk,webp,world] = combination-fails # waits for https://github.com/microsoft/vcpkg/pull/31045/files
opencv4[halide] = feature-fails # See https://github.com/microsoft/vcpkg/issues/33200
opencv4[python] = feature-fails # Waits for https://github.com/microsoft/vcpkg/pull/33197
opencv4[webp] = feature-fails # fatal error: 'webp/decode.h' file not found. See https://github.com/microsoft/vcpkg/issues/33196
openmvs(arm) = fail # Waits for https://github.com/microsoft/vcpkg/pull/33101
openscap(osx) = fail # Waits for https://github.com/microsoft/vcpkg/pull/27348
pangolin[core,eigen,examples,ffmpeg,gui,jpeg,lz4,module,openexr,png,pybind11,realsense,test,tiff,tools,vars,video,zstd] = combination-fails # see https://github.com/microsoft/vcpkg/issues/31304
poco[core,mariadb,mysql] = options # You can not install mariadb and mysql at the same time
qt3d[animation] = options # is a requirement, see https://github.com/microsoft/vcpkg/issues/31336
qt3d[extras] = options # is a requirement, see https://github.com/microsoft/vcpkg/issues/31336
qt5compat[iconv] = feature-fails # requires qtbase without icu
qtbase[fontconfig] = feature-fails # see https://github.com/microsoft/vcpkg/issues/31247
qtbase[sql-oci] = feature-fails # see https://github.com/microsoft/vcpkg/issues/32052
qtmultimedia[core,ffmpeg,gstreamer,qml,widgets] = combination-fails # Error: Qt will by default autolink both plugin backends in static builds leading to symbol collisions and a build failure in dependent ports! As such in static builds only one backend is allowed by default.
qtopcua[uacpp] = feature-fails # Unified Automation C++ SDK is not installed
realsense2[tools](osx) = feature-fails # Could NOT find Threads (missing: Threads_FOUND)
restc-cpp[core,boost-log,openssl,threaded-ctx,zlib](osx) = combination-fails # see https://github.com/microsoft/vcpkg/issues/31027
restc-cpp[threaded-ctx] = combination-fails # Fixed on master: error: copying member subobject of type 'std::atomic_bool' (aka 'atomic<bool>') invokes deleted constructor
rubberband[cli](linux) = feature-fails # See https://github.com/microsoft/vcpkg/issues/32360
sqlpp11-connector-mysql[core,mariadb,mysql] = options # can not select mariadb and mysql at the same time
sqlpp11[core,mariadb,mysql] = options # can not select mariadb and mysql at the same time
tgui[sdl2] = options # At least one of the backend features must be selected: sdl2 sfml
vlpp[tools](linux) = feature-fails # See https://github.com/microsoft/vcpkg/issues/32143 (error: inconsistent begin/end types in range-based ‘for’ statement)
vlpp[tools](osx) = feature-fails # error: use of undeclared identifier 'PATH_MAX'
vtk-m[omp](osx) = feature-fails # fixed by https://github.com/microsoft/vcpkg/pull/30923
vtk[all] = feature-fails # Wait for fix: https://github.com/microsoft/vcpkg/pull/29260
vxl(linux) = fail # missing include. See https://github.com/microsoft/vcpkg/issues/32397
wampcc[examples](linux) = feature-fails # missing <thread> include. See https://github.com/microsoft/vcpkg/issues/32396
wasmedge[aot] = feature-fails # ar: /libzstd.a: No such file or directory. See https://github.com/microsoft/vcpkg/issues/32146
wasmedge[core,aot,tools] = combination-fails # see https://github.com/microsoft/vcpkg/issues/31217
wayland[force-build] = feature-fails # error: To build wayland libraries the `force-build` feature must be enabled and the X_VCPKG_FORCE_VCPKG_WAYLAND_LIBRARIES triplet variable must be set.
wpilib = fail # See https://github.com/microsoft/vcpkg/issues/32395
xbitmaps(osx) = fail # error: must install xorg-macros 1.3 or later before running autoconf/autogen
xerces-c[xmlch-wchar](!windows) = feature-fails # wchar_t must be 16 bit and not 32
xtensor[xsimd] = feature-fails # xsimd is already at version 11 but 10 is required. See https://github.com/microsoft/vcpkg/issues/33045
yyjson[writer](osx) = feature-fails # error: call to undeclared function 'digi_is_digit'
# skip
entt[experimental] = skip # required head build
freerdp[x11](osx) = skip # No x11 on osx
glad[glx](osx) = skip # No x11 on osx
libhdfs3 = skip # never worked https://github.com/microsoft/vcpkg/pull/10021#issuecomment-1595343157
magnum-plugins[cgltfimporter,glslangshaderconverter,ktximageconverter,ktximporter,openexrimageconverter,openexrimporter,spirvtoolsshaderconverter,stbdxtimageconverter] = skip # only available in head build
openjpeg[tools] = skip # fails and is deprecated
qtbase[xcb,xcb-xlib,xkb,xkbcommon-x11,xlib,xrender](osx) = skip # no x11 on macOS
s2n = skip # builds to slow