-
Notifications
You must be signed in to change notification settings - Fork 8
/
scanlog-11.0.0-2020-10-30
1042 lines (1042 loc) · 139 KB
/
scanlog-11.0.0-2020-10-30
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
0ad 0.0.23.1-5 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ../../build/unix/gold/ld: error: hidden symbol 'ceil' is not defined locally
3dchess 0.8.1-20 Failed [UNKNOWN] XXX
9base 1:6-10 Failed [GCC_ERROR] :50:3: error: unterminated function-like macro invocation
9menu 1.10-1 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
a2jmidid 9-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
abinit 8.10.3-3 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
abiword 3.0.4~dfsg-2 Failed [GCC_ERROR] ap_UnixApp.cpp:866:29: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
ableton-link 3.0.2+dfsg-2 Failed [GCC_ERROR] AudioEngine.cpp:146:64: error: implicit conversion from 'std::size_t' (aka 'unsigned long') to 'double' may lose precision [-Werror,-Wimplicit-int-float-conversion]
acedb 4.9.39+dfsg.02-4 Failed [GCC_ERROR] aqlparse.l:218:6: error: conflicting types for 'yyerror'
aces3 3.0.8-7 Failed [GCC_ERROR] asv_ctl.c:1722:1: error: void function 'str2d_' should not return a value [-Wreturn-type]
achilles 2-10 Failed [GCC_ERROR] opengl.cc:103:28: error: non-constant-expression cannot be narrowed from type 'double' to 'GLfloat' (aka 'float') in initializer list [-Wc++11-narrowing]
aclock.app 0.4.0-2 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
acm 5.0-30 Failed [GCC_ERROR] xdr_var_array.c:83:12: error: expected parameter declarator
aconnectgui 0.9.0rc2-1-10 Failed [CONFIGURE_ERROR] configure: error: Sufficiently new version of libasound not found.
acpica-unix 20200528-1 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '-pie' [-Werror,-Wunused-command-line-argument]
acpid 1:2.0.32-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: "asprintf() not found"
addresses-for-gnustep 0.4.8-3 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
adun.app 0.81-14 Failed [TIMEOUT]
aegisub 3.2.2+dfsg-6 Failed [GCC_ERROR] util.cpp:30:2: error: no member named 'this_thread' in namespace 'std'; did you mean 'boost::this_thread'?
aewm++-goodies 1.0-10 Failed [GCC_ERROR] appbar.cc:1142:21: error: non-constant-expression cannot be narrowed from type 'int' to 'CARD32' (aka 'unsigned int') in initializer list [-Wc++11-narrowing]
affiche 0.6.0-11 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
afterstep 2.2.12-13 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./DEB-build-tree/build-dynamic/libAfterBase/asvector.c:316: undefined reference to `vector_move_data_up'
agenda.app 0.44-2 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
aghermann 1.1.2-3 Failed [GCC_ERROR] mc-artifacts.cc:51:1: error: explicit specialization of 'estimate_E<float>' after instantiation
ale 0.9.0.3-5 Failed [GCC_ERROR] ./d3/focus.h:78:15: error: non-constant-expression cannot be narrowed from type 'unsigned int' to 'int' in initializer list [-Wc++11-narrowing]
alfred 2020.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
altermime 0.3.10-12 Failed [UNKNOWN] XXX
amideco 0.31e-3.1 Failed [GCC_ERROR] amideco.c:45:5: error: first parameter of 'main' (argument count) must be of type 'int'
amoebax 0.2.1+dfsg-4 Failed [GCC_ERROR] NewHighScoreState.cxx:399:30: error: non-constant-expression cannot be narrowed from type 'int' to 'char' in initializer list [-Wc++11-narrowing]
amphetamine 0.8.10-21 Failed [GCC_ERROR] src/Element.cpp:282:25: error: type 'double' cannot be narrowed to 'short' in initializer list [-Wc++11-narrowing]
android-platform-external-libunwind 10.0.0+r36-3 Failed [GCC_ERROR] src/mi/backtrace.c:26:9: error: 'UNW_REMOTE_ONLY' is used as a header guard here, followed by #define of a different macro [-Werror,-Wheader-guard]
android-platform-libnativehelper 8.1.0+r23-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: final link failed: bad value
anfo 0.98-7 Failed [GCC_ERROR] stl_function.h:386:20: error: call to function 'operator<' that is neither visible in the template definition nor found by argument-dependent lookup
anjuta 2:3.34.0-3 Failed [GCC_ERROR] anjuta-status.c:215:30: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
antigrav 0.0.3-9 Failed [GCC_ERROR] terrain.cpp:490:51: error: non-constant-expression cannot be narrowed from type 'double' to 'float' in initializer list [-Wc++11-narrowing]
antimicro 2.23-2 Failed [GCC_ERROR] mainwindow.cpp:367:19: error: ordered comparison between pointer and zero ('QMap<SDL_JoystickID, InputDevice *> *' (aka 'QMap<int, InputDevice *> *') and 'int')
ap51-flash 2019.0.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
apitrace 9.0+repack-1 Failed [GCC_ERROR/CLANG_ERROR] os_backtrace.cpp:48:12: fatal error: 'backtrace.h' file not found
aplus-fsf 4.22.1-10.1 Failed [CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>'
apophenia 1.0+ds-8 Failed [TIMEOUT]
apron 0.9.10-9.1 Failed [GCC_ERROR] ppl.hh:66465:8: error: missing 'typename' prior to dependent type template name 'OR_Matrix<T>::Pseudo_Row'
apt 2.1.11 Failed [GCC_ERROR] ../test/interactive-helper/libnoprofile.c:19:5: error: expected parameter declarator
aptitude 0.8.13-2 Failed [GCC_ERROR] ../../../../src/generic/problemresolver/problemresolver.h:1725:17: error: use of non-static data member 'graph' of 'generic_problem_resolver' from nested type 'do_process_promotion'
aqsis 1.8.2-12 Failed [GCC_ERROR] texturesampleoptions.h:239:31: error: ISO C++11 does not allow access declarations; use using declarations instead
aranym 1.0.2-2.2 Failed [GCC_ERROR] ./src/Unix/linux/ethernet_linux.cpp:98:34: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
argyll 2.0.1+repack-1 OK [REASONS_NOT_COMPUTED]
arj 3.10.22-23 Failed [UNKNOWN] XXX
armnn 19.11.1-1 Failed [GCC_ERROR] Layer.hpp:96:17: error: explicitly defaulted move assignment operator is implicitly deleted [-Werror,-Wdefaulted-function-deleted]
ascd 0.13.2-6 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
ascdc 0.3-15 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
asclock 2.0.12-32 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
asl 0.1.7-2 Failed [GCC_ERROR] aslMATFormat.cxx:49:3: error: no matching function for call to 'Mat_VarWrite'
atlas 3.10.3-10 Failed [GCC_ERROR/LD_ERROR/CLANG_ERROR/CLANG_LD_ERROR] collect2: error: ld returned 1 exit status
ats-lang-anairiats 0.2.11-1 Failed [GCC_ERROR] bool.cats:42:5: error: expected parameter declarator
ats2-lang 0.4.0-1 Failed [GCC_ERROR] ./prelude/CATS/integer.cats:42:5: error: expected parameter declarator
audiofile 0.3.6-5 Failed [GCC_ERROR] Sign.cpp:160:39: error: non-constant-expression cannot be narrowed from type 'int32_t' (aka 'int') to 'uint32_t' (aka 'unsigned int') in initializer list [-Wc++11-narrowing]
auto-07p 0.9.2+dfsg-3 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: COIN3D is not installed
autodock-vina 1.1.2-5 Failed [CLANG_ERROR] clang: error: unsupported option '--lto'; did you mean '-flto'?
autodocksuite 4.2.6-7 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>/autodock'
avifile 1:0.7.48~20090503.ds-21 Failed [GCC_ERROR] common/avm_output.cpp:20:12: error: qualified reference to 'AvmOutput' is a constructor name rather than a type in this context
awardeco 0.2-3.1 Failed [GCC_ERROR] awardeco.c:37:5: error: first parameter of 'main' (argument count) must be of type 'int'
awesfx 0.5.2-1 Failed [GCC_ERROR] alsa.c:149:2: error: void function 'seq_set_gus_bank' should not return a value [-Wreturn-type]
axc 0.3.3-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-print-multiarch'
ayatana-indicator-application 0.8.0-1 Failed [GCC_ERROR/CLANG_ERROR] application-service-appstore.c:115:8: error: use of GNU old-style field designator extension [-Werror,-Wgnu-designator]
ayatana-indicator-datetime 0.8.1-1 Failed [GCC_ERROR] clock-live.cpp:146:40: error: expected ')'
ayatana-indicator-messages 0.8.1-1 Failed [CLANG_ERROR] clang: error: -Wl,-z,defs: 'linker' input unused [-Werror,-Wunused-command-line-argument]
balboa 2.0.0+ds-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
ball 1.5.0+git20180813.37fc53c-6 Failed [UNKNOWN] XXX
barcode 0.99-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: ./.libs/libbarcode.so: undefined reference to `rpl_calloc'
bart-view 0.1.00-2 Failed [GCC_ERROR] multind.h:19:14: error: blocks support disabled - compile with -fblocks or pick a deployment target that supports them
bart 0.6.00-3 Failed [GCC_ERROR] multind.h:19:14: error: blocks support disabled - compile with -fblocks or pick a deployment target that supports them
bash 5.1~rc1-2 Failed [GCC_ERROR] ../../.././lib/sh/snprintf.c:1725:1: error: expected parameter declarator
bastet 0.43-5 Failed [GCC_ERROR] Ui.cpp:174:18: error: non-constant-expression cannot be narrowed from type 'unsigned long' to 'int' in initializer list [-Wc++11-narrowing]
batctl 2020.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
batmand 0.3.2-21 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
batmon.app 0.9-2 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
baycomepp 0.10-15 Failed [CLANG_ERROR/CLANG_LD_ERROR] fpga.h:168: multiple definition of `writeboundary'; eppfpga.o:/<<PKGBUILDDIR>>/main/./fpga.h:168: first defined here
baycomusb 0.10-14 Failed [CLANG_ERROR/CLANG_LD_ERROR] sysdeps.h:150: multiple definition of `gettimems'; baycomusb.o:/<<PKGBUILDDIR>>/diag/../misc/sysdeps.h:150: first defined here
bcachefs-tools 0.1+git20201025.742dbbdb-1 Failed [GCC_ERROR] libbcachefs/bset.c:1197:6: error: unknown token in expression
bedops 2.4.39+dfsg-1 Failed [GCC_ERROR] ../../../../interfaces/general-headers/utility/BitMonitor.hpp:89:19: error: cannot assign to non-static data member within const member function 'next_set'
beep 1.4.9-1 Failed [CLANG_ERROR] clang: error: unsupported argument '-adhlns=beep-log.gcc-lst' to option 'Wa,'
beignet 1.3.2-7 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: libgbe.so: undefined reference to `llvm::cfg::Update<llvm::BasicBlock*>::dump() const'
belr 0.1.3-2 Failed [GCC_ERROR] new_allocator.h:156:4: error: destructor called on non-final 'belr::ParserHandler<std::shared_ptr<belr::ABNFRuleList>, std::shared_ptr<belr::ABNFBuilder> >' that has virtual functions but non-virtual destructor [-Werror,-Wdelete-non-abstract-non-virtual-dtor]
benchmark 1.5.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
berusky 1.7.1-1 Failed [GCC_ERROR] ./defines.h:448:43: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
bidentd 1.1.4-1.2 Failed [GCC_ERROR] main.cc:244:38: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
bigint 2010.04.30-2 Failed [GCC_ERROR] BigUnsigned.hh:23:24: error: ISO C++11 does not allow access declarations; use using declarations instead
bind-dyndb-ldap 11.5-1 Failed [GCC_ERROR] ../../src/ldap_driver.c:136:2: error: address argument to atomic operation must be a pointer to _Atomic type ('isc_refcount_t *' (aka 'unsigned long *') invalid)
bing 1.3.5-3 Failed [GCC_ERROR] bing_misc.c:208:46: error: too many arguments provided to function-like macro invocation
binutils-avr 2.26.20160125+Atmel3.6.2-2 Failed [CLANG_ERROR] error: unknown warning option '-Wno-format-overflow'; did you mean '-Wno-shift-overflow'? [-Werror,-Wunknown-warning-option]
binutils-djgpp 2.34+dfsg-1 Failed [UNKNOWN] XXX
binutils-mingw-w64 8.11 Failed [UNKNOWN] XXX
binutils-mipsen 6+c1 Failed [UNKNOWN] XXX
biococoa 2.2.2-4 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
bist 0.5.2-1.2 Failed [GCC_ERROR] gruppo.cpp:1407:35: error: non-constant-expression cannot be narrowed from type 'int' to 'double' in initializer list [-Wc++11-narrowing]
blackbox 0.70.1-38 Failed [GCC_ERROR] EWMH.cc:250:7: error: non-constant-expression cannot be narrowed from type 'long' to 'unsigned long' in initializer list [-Wc++11-narrowing]
blastem 0.6.3.3-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
blitz++ 1:1.0.2+ds-2 Failed [TIMEOUT]
blktrace 1.2.0-5 Failed [CLANG_ERROR] clang: error: -Wl,-z,deb-canary-fc8001f834f6a5f0561080d134d53d29: 'linker' input unused [-Werror,-Wunused-command-line-argument]
blobandconquer 1.11-dfsg+20-1.2 Failed [GCC_ERROR] src/hud/dialogs.cpp:124:27: error: non-constant-expression cannot be narrowed from type 'int' to 'Uint16' (aka 'unsigned short') in initializer list [-Wc++11-narrowing]
bloboats 1.0.2+dfsg-3 Failed [GCC_ERROR] src/menu.cpp:1570:11: error: ordered comparison between pointer and zero ('SDL_Rect **' and 'int')
blobwars 2.00-1.2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
blocks-of-the-undead 1.0-7 Failed [GCC_ERROR] CSurface.cpp:468:55: error: non-constant-expression cannot be narrowed from type 'Sint16' (aka 'short') to 'Uint16' (aka 'unsigned short') in initializer list [-Wc++11-narrowing]
bluez 5.55-1 Failed [GCC_ERROR] profiles/midi/midi.c:79:75: error: function definition is not allowed here
bmusb 0.7.5-1 Failed [GCC_ERROR] bmusb.cpp:641:16: error: 'target' attribute takes one argument
bochs 2.6.11+dfsg-3 Failed [CLANG_ERROR] clang: error: no such file or directory: 'acpi-dsdt.dsl.i'
bogl 0.1.18-15 Failed [GCC_ERROR] bogl-font.c:84:3: error: function definition is not allowed here
bogofilter 1.2.4+dfsg1-13 Failed [CLANG_ERROR] clang: error: '-I-' not supported, please use -iquote instead
boinc-app-seti 8.00~svn4035-1 Failed [GCC_ERROR] ../sah_config.h:784:40: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
boost1.71 1.71.0-7 Failed [UNKNOWN] dh_install: error: missing files, aborting
bpftrace 0.11.0-1 Failed [GCC_ERROR/CLANG_ERROR] CheckIncludeFile.c:1:10: fatal error: 'sys/sdt.h' file not found
brainparty 0.61+dfsg-5 Failed [GCC_ERROR] BPGame.cpp:1506:25: error: non-constant-expression cannot be narrowed from type 'int' to 'GLfloat' (aka 'float') in initializer list [-Wc++11-narrowing]
brasero 3.12.2-6 Failed [GCC_ERROR] brasero-misc.c:115:11: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
briquolo 0.5.7-9 Failed [GCC_ERROR] MOGL_PoliceTTF.cpp:346:23: error: non-constant-expression cannot be narrowed from type 'unsigned int' to 'Sint16' (aka 'short') in initializer list [-Wc++11-narrowing]
bustools 0.40.0-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
busybox 1:1.30.1-6 Failed [SEGMENTATION_FAULT] XXX
bzrtp 1.0.6-3 Failed [CLANG_ERROR] error: unknown warning option '-Wno-cast-function-type'; did you mean '-Wno-bad-function-cast'? [-Werror,-Wunknown-warning-option]error: error: unknown warning option '-Wno-cast-function-type'; did you mean '-Wno-bad-function-cast'? [-Werror,-Wunknown-warning-option]
calculix-cgx 2.17+dfsg-2 Failed [GCC_ERROR] pickFunktions.c:286:75: error: non-void function 'hitAction' should return a value [-Wreturn-type]
camera.app 0.8.0-13 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
canna 3.7p3-16 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
canu 2.0+dfsg-1 Failed [GCC_ERROR] overlapAlign/clearRangeFile.C:29:38: error: addition of default argument on redeclaration makes this constructor a default constructor
caps 0.9.26-1 Failed [GCC_ERROR] ./dsp/v4f.h:158:12: error: no matching function for call to 'v4f_map'
cataclysm-dda 0.E-1-1 Failed [GCC_ERROR] src/advanced_inv.cpp:855:38: error: loop variable 'elem' of type 'const advanced_inv_listitem' creates a copy from type 'const advanced_inv_listitem' [-Werror,-Wrange-loop-construct]
cbmc 5.12-5 Failed [GCC_ERROR] ./language_file.h:87:54: error: loop variable 'method' has type 'const std::pair<irep_idt, language_filet *> &' (aka 'const pair<dstringt, language_filet *> &') but is initialized with type 'std::pair<const dstringt, language_filet *>' resulting in a copy [-Werror,-Wrange-loop-construct]
ccache 3.7.12-1 Failed [UNKNOWN] dh_auto_test: error: make -j4 test VERBOSE=1 returned exit code 2
ccbuild 2.0.7+git20160227.c1179286-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./obj-x86_64-linux-gnu/./src/system/build.cc:165: undefined reference to `__kmpc_for_static_fini'
ccextractor 0.88+ds1-1 Failed [GCC_ERROR] ../src/lib_ccx/utility.h:41:5: error: expected parameter declarator
ccls 0.20201025-1 Failed [UNKNOWN] dh_auto_configure: error: cd obj-x86_64-linux-gnu && cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON -DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON -DCMAKE_INSTALL_RUNSTATEDIR=/run -DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=ON "-GUnix Makefiles" -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_INSTALL_LIBDIR=lib/x86_64-linux-gnu -DCCLS_VERSION=0.20201025-1 -DCLANG_RESOURCE_DIR=/usr/include/clang/10 .. returned exit code 1
cdrkit 9:1.1.11-3.1 OK [REASONS_NOT_COMPUTED]
ceferino 0.97.8+svn37-2 Failed [GCC_ERROR] juego.cc:119:24: error: non-constant-expression cannot be narrowed from type 'int' to 'Uint16' (aka 'unsigned short') in initializer list [-Wc++11-narrowing]
cenon.app 4.0.6+ds1-2 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
cg3 1.3.1-2 Failed [GCC_ERROR] GrammarApplicator_runContextualTest.cpp:531:16: error: use of overloaded operator '!=' is ambiguous (with operand types 'CG3::CohortIterator' and 'CG3::CohortIterator')
cgit 1.2.3+git2.25.1-1 Failed [GCC_ERROR] ../filter.c:388:10: error: no member named '__fprintf_chk' in 'struct cgit_filter'
charmap.app 0.3~rc1-4 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
chasen 2.4.5-44 Failed [GCC_ERROR] print.c:186:16: error: expected parameter declarator
cheesecutter 2.9+git20191210-2 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
chess.app 2.8-3 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
chipmunk 7.0.3-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./obj-x86_64-linux-gnu/demo/./demo/ContactGraph.c:125: undefined reference to `_Block_object_dispose'
chkservice 0.3-1 Failed [GCC_ERROR] chk-systemd.cpp:120:15: error: ordered comparison between pointer and zero ('const char *' and 'int')
choqok 1.7.0-1 Failed [GCC_ERROR] choqokpluginconfig.cpp:50:46: error: 'changed' is a protected member of 'KCModule'
chuck 1.2.0.8.dfsg-1.5 Failed [GCC_ERROR] ugen_osc.cpp:1189:15: error: ordered comparison between pointer and zero ('Chuck_Array8 *' and 'int')
cinnamon-settings-daemon 4.6.4-1 Failed [GCC_ERROR] csd-xrandr-manager.c:2403:1: error: conflicting types for 'register_manager_dbus'
cjs 4.6.0-2 OK [REASONS_NOT_COMPUTED]
clanlib 1.0~svn3827-8 Failed [GCC_ERROR] graphic_context.cpp:240:3: error: non-constant-expression cannot be narrowed from type 'unsigned int' to 'unsigned char' in initializer list [-Wc++11-narrowing]
clementine 1.4.0~rc1+git347-gfc4cb6fc7+dfsg-1 Failed [GCC_ERROR] playlistundocommands.h:115:7: error: private field 'column_' is not used [-Werror,-Wunused-private-field]
clfft 2.12.2-1 Failed [UNKNOWN] dh_install: error: missing files, aborting
clucene-core 2.3.3.4+dfsg-1 Failed [GCC_ERROR] QueryParser.cpp:82:176: error: constant expression evaluates to 2147483648 which cannot be narrowed to type 'int32_t' (aka 'int') [-Wc++11-narrowing]
cmtk 3.3.1p1+dfsg-2 Failed [GCC_ERROR] vtkxform.cxx:190:24: error: non-constant-expression cannot be narrowed from type 'double' to 'float' in initializer list [-Wc++11-narrowing]
cod-tools 3.1.0+dfsg-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-foptimize-register-move'
coinor-ipopt 3.11.9-2.2 Failed [GCC_ERROR] IpIpoptAlg.cpp:265:69: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
coinor-symphony 5.6.16+repack1-2 Failed [GCC_ERROR] LP/lp_genfunc.c:2432:28: error: ordered comparison between pointer and zero ('int *' and 'int')
collada-dom 2.5.0+ds1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
collatinus 11-1 Failed [GCC_ERROR] src/mainwindow.cpp:356:19: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
collectd 5.11.0-7 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: strtok_r is not available. Please file a bugreport!
comptext 1.0.1-4 Failed [GCC_ERROR] main.cxx:189:21: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
comptty 1.0.1-4 Failed [GCC_ERROR] comp_tty.cxx:27:30: error: character too large for enclosing character literal type
concavity 0.1+dfsg.1-4 Failed [GCC_ERROR] R2Grid.C:2325:37: error: non-constant-expression cannot be narrowed from type 'int' to 'unsigned int' in initializer list [-Wc++11-narrowing]
coz-profiler 0.2.2-2 Failed [GCC_ERROR] data.hh:558:22: error: cannot assign to non-static data member within const member function 'set_binding'
cpio 2.13+dfsg-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./obj/gnu/../../gnu/xmalloc.c:100: undefined reference to `__muloti4'
cpl-plugin-amber 4.4.0+dfsg-1 Failed [GCC_ERROR] amber_ascii_export.c:466:23: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
cpl-plugin-hawki 2.4.8+dfsg-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: ../../hawki/.libs/libhawki.so: undefined reference to `__kmpc_for_static_fini'
cpl-plugin-muse 2.8.3+dfsg-1 Failed [GCC_ERROR] muse_lsf.c:219:8: error: loop iteration variable in the associated loop of 'omp parallel for' directive may not be shared, predetermined as private
cpl-plugin-xshoo 3.5.0+dfsg-1 Failed [GCC_ERROR] xsh_model_io.c:691:35: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
cpluff 0.2.0+ds1-1 Failed [GCC_ERROR] cpluff.c:84:35: error: too many arguments provided to function-like macro invocation
cpp-hocon 0.3.0-1 Failed [GCC_ERROR] new_allocator.h:156:4: error: destructor called on non-final 'hocon::config_delayed_merge_object' that has virtual functions but non-virtual destructor [-Werror,-Wdelete-non-abstract-non-virtual-dtor]
cppcheck 2.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./build/CMakeFiles/CMakeTmp/./build/CMakeFiles/CMakeTmp/src.c:11: undefined reference to `pthread_create'
crash 7.2.8-1 Failed [UNKNOWN] XXX
crawl 2:0.25.1-1 Failed [UNKNOWN] XXX
crimson 0.5.2-1.1 Failed [GCC_ERROR] main.cpp:176:31: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
critterding 1.0-beta12.1-1.3 Failed [GCC_ERROR] BulletSoftBody/btSoftBodyHelpers.cpp:288:23: error: non-constant-expression cannot be narrowed from type 'unsigned int' to 'int' in initializer list [-Wc++11-narrowing]
cronutils 1.9-1 Failed [GCC_ERROR] runstat.c:79:31: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
crrcsim 0.9.13-3.2 Failed [GCC_ERROR] src/mod_fdm/fdm_displaymode/../../mod_fdm_config.h:38:36: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
ctwm 3.7-5 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
cubemap 1.4.3-1 Failed [TIMEOUT]
cups-bjnp 2.0.3-1 Failed [GCC_ERROR] bjnp-commands.c:188:9: error: comparison of array 'printer_id' not equal to a null pointer is always true [-Werror,-Wtautological-pointer-compare]
cwiid 0.6.91-1 Failed [GCC_ERROR/CLANG_ERROR] ./conf.h:56:10: fatal error: 'y.tab.h' file not found
cxref 1.6e-3 Failed [UNKNOWN] mv: cannot stat 'README.c.tex': No such file or directory
cynthiune.app 1.0.0-2 Failed [GCC_ERROR/CLANG_ERROR] :11: fatal error: 'objc/objc.h' file not found
cyrus-imapd 3.2.4-3 Failed [GCC_ERROR] cunit/syslog.c:162:6: error: expected parameter declarator
d-itg 2.8.1-r1023-4 Failed [GCC_ERROR] traffic.cpp:415:35: error: ordered comparison between pointer and zero ('char *' and 'int')
dascrubber 1.1-2 Failed [UNKNOWN] : error: cannot specify -o when generating multiple output files
dazzdb 1.0+git20200727.d22ae58-1 Failed [UNKNOWN] : error: cannot specify -o when generating multiple output files
dbus-c++ 0.9.0-8.2 Failed [GCC_ERROR] ../../include/dbus-c++/types.h:96:8: error: call to function 'operator>>' that is neither visible in the template definition nor found by argument-dependent lookup
dbuskit 0.1.1-3 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: "could not find runtime.h. DBusKit requires gnustep-base >=1.20."
dcl 7.4.0-3 Failed [GCC_ERROR] cmsgdmp.c:210:27: error: conflicting types for 's_copy'
dclock 2.2.2-12 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
ddcutil 0.9.9-2 Failed [GCC_ERROR] vcp_feature_codes.c:3606:20: error: initializer overrides prior initialization of this subobject [-Werror,-Winitializer-overrides]
ddd 1:3.3.12-5.2 Failed [GCC_ERROR] ../../ddd/exit.C:815:12: error: no matching function for call to 'XtAppSetErrorHandler'
dds 2.9.0-8 Failed [CLANG_ERROR] error: unknown warning option '-Wnoexcept' [-Werror,-Wunknown-warning-option]
deal.ii 9.2.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
devil 1.7.8-10 Failed [CLANG_ERROR] error: invalid argument '-std=gnu99' not allowed with 'C++'
diagnostics 0.3.3-12 Failed [GCC_ERROR] marshaling.cpp:77:2: error: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Werror,-Wmismatched-new-delete]
dicom3tools 1.00~20190724083540-1 Failed [TIMEOUT]
dietlibc 0.34~cvs20160606-12 Failed [GCC_ERROR/CLANG_ERROR] x86_64/memccpy.c:5:10: fatal error: 'emmintrin.h' file not found
digikam 4:6.4.0+dfsg-3 Failed [GCC_ERROR] cv_image.h:128:18: error: no viable conversion from 'const cv::Mat' to 'IplImage' (aka '_IplImage')
directfb 1.7.7-9 Failed [GCC_ERROR] ./String.h:126:51: error: format argument not a string type
dlm 4.0.9-2 Failed [UNKNOWN] XXX
dnaclust 3-7 Failed [GCC_ERROR] ./multi_dim.hpp:62:8: error: no matching constructor for initialization of 'std::range_error'
dnprogs 2.65 Failed [GCC_ERROR] connection.cc:932:23: error: non-constant-expression cannot be narrowed from type 'int' to 'char' in initializer list [-Wc++11-narrowing]
dnsdbq 2.3.0-1 Failed [GCC_ERROR] netio.c:349:4: error: ignoring return value of function declared with 'warn_unused_result' attribute [-Werror,-Wunused-result]
doomsday 2.2.2+ds1-1 Failed [UNKNOWN] XXX
doxygen 1.8.20-4 Failed [GCC_ERROR/CLANG_ERROR] qshared.h:45:10: fatal error: 'atomic' file not found
dpuser 4.0+dfsg-2 Failed [SEGMENTATION_FAULT] XXX
dsniff 2.4b1+debian-29 Failed [GCC_ERROR] ./sshmitm.c:45:21: error: redefinition of 'csin' as different kind of symbol
dssi 1.1.1~dfsg0-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
dvd+rw-tools 7.1-14 Failed [GCC_ERROR] dvd+rw-mediainfo.cpp:624:27: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
dvi2dvi 2.0alpha-10 Failed [GCC_ERROR] :dvi2.c119:7: error: non-void function 'dviconv' should return a value [-Wreturn-type]
dymo-cups-drivers 1.4.0-9 Failed [GCC_ERROR] StringHelper.h:25:9: error: call to function 'operator<<' that is neither visible in the template definition nor found by argument-dependent lookup
dynare 4.6.2-1 Failed [GCC_ERROR] local_state_space_iteration_2.cc:97:35: error: reference to local binding 'ii1' declared in enclosing function 'ss2Iteration_pruning'
eccodes 2.19.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR/PYTHON_TRACEBACK] ld: ../lib/libeccodes.so.0: undefined reference to `omp_init_nest_lock'
ecdsautils 0.3.2+git20151018-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
edenmath.app 1.1.1a-8 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
eegdev 0.2-4 Failed [UNKNOWN] dh_auto_test: error: make -j4 check VERBOSE=1 returned exit code 2
efibootmgr 17-1 Failed [UNKNOWN] make[3]: *** No rule to make target 'efivar.h', needed by 'efibootmgr.o'. Stop.
efitools 1.9.2-1 Failed [UNKNOWN] XXX
efivar 37-5 Failed [CLANG_ERROR] clang: error: unknown argument: '-flto-partition=none'
einstein 2.0.dfsg.2-10 Failed [GCC_ERROR] screen.cpp:119:32: error: non-constant-expression cannot be narrowed from type 'int' to 'Uint16' (aka 'unsigned short') in initializer list [-Wc++11-narrowing]
elfutils 0.181-1 Failed [CONFIGURE_ERROR] configure: error: gcc with GNU99 support required
elogind 243.7-1+debian1 Failed [UNKNOWN] dh_auto_test: error: cd build && LC_ALL=C.UTF-8 MESON_TESTTHREADS=4 ninja test returned exit code 1
elpa 2019.11.001-4 Failed [CLANG_ERROR/SEGMENTATION_FAULT] clang: error: unable to execute command: Aborted
empire-lafe 1.1-1 Failed [GCC_ERROR] ./lafe.h:10:14: error: redefinition of 'log' as different kind of symbol
encfs 1.9.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
entropybroker 2.9-3 Failed [GCC_ERROR] main.cpp:196:24: error: non-constant-expression cannot be narrowed from type 'int' to 'rlim_t' (aka 'unsigned long') in initializer list [-Wc++11-narrowing]
epcr 2.3.12-1-8 Failed [GCC_ERROR] ./fast_seqio_write.cpp:45:43: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
epm 4.2-8 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
eris 1.3.23-8 Failed [GCC_ERROR] PollDefault.cpp:80:28: error: non-constant-expression cannot be narrowed from type 'unsigned long' to '__time_t' (aka 'long') in initializer list [-Wc++11-narrowing]
erlang-jiffy 1.0.5+dfsg-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
espresso 6.5-2 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
esys-particle 2.3.5+dfsg2-1 Failed [GCC_ERROR] ./SphAggGougeBlock.hpp:39:37: error: no viable conversion from '__normal_iterator<std::vector<boost::shared_ptr<esys::lsm::SphereBlockGenerator>, std::allocator<boost::shared_ptr<esys::lsm::SphereBlockGenerator> > >::const_pointer, [...]>' to '__normal_iterator<std::vector<boost::shared_ptr<esys::lsm::SphereBlockGenerator>, std::allocator<boost::shared_ptr<esys::lsm::SphereBlockGenerator> > >::pointer, [...]>'
eterm 0.9.6-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: ./.libs/libEterm.so: undefined reference to `posix_get_pty'
ethereal-chess 12.00+ds1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
etoile 0+20080616+dfsg-2 Failed [TIMEOUT]
evolution-data-server 3.36.4-1 Failed [UNKNOWN] /<<PKGBUILDDIR>>/obj-x86_64-linux-gnu/src/libedataserverui/tmp-introspectp6qawxkt/EDataServerUI-1.2: error while loading shared libraries: libebackend-1.2.so.10: cannot open shared object file: No such file or directory
exactimage 1.0.2-8 Failed [GCC_ERROR] codecs/dcraw.h:9961:30: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
exodusii 6.02.dfsg.1-8 Failed [TIMEOUT]
extundelete 0.2.4-2 Failed [GCC_ERROR] extundelete.cc:1271:28: error: non-constant-expression cannot be narrowed from type 'int' to 'ext2_ino_t' (aka 'unsigned int') in initializer list [-Wc++11-narrowing]
facter 3.14.12-1 Failed [GCC_ERROR] new_allocator.h:156:4: error: destructor called on non-final 'facter::facts::external::text_resolver' that has virtual functions but non-virtual destructor [-Werror,-Wdelete-non-abstract-non-virtual-dtor]
fairy-stockfish 11.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
fairymax 5.0b-1 Failed [GCC_ERROR] fairymax.c:477:21: error: void function 'PrintVariants' should not return a value [-Wreturn-type]
fakechroot 2.19-3.3 Failed [UNKNOWN] dh_auto_test: error: make -j4 test VERBOSE=1 returned exit code 2
faketime 0.9.7-3.1 Failed [CLANG_ERROR] error: unknown warning option '-Wno-nonnull-compare' [-Werror,-Wunknown-warning-option]
fasta3 36.3.8h.2020-02-11-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
fastd 21-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
fastml 3.11-2 Failed [GCC_ERROR] computeCorrelations.cpp:1347:36: error: non-constant-expression cannot be narrowed from type 'double' to 'float' in initializer list [-Wc++11-narrowing]
fcoe-utils 1.0.32+git20190507.9834b34-2 Failed [GCC_ERROR] fcping.c:218:28: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
fflas-ffpack 2.4.3-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: The Givaro library could not be used with the compiler and the flags set up by the configure script
fftw3 3.3.8-2 Failed [CONFIGURE_ERROR] configure: error: gcc 4.6 or later required for quad precision support
fig2sxd 0.20-1 Failed [GCC_ERROR] zipwrite.cpp:91:32: error: non-constant-expression cannot be narrowed from type 'int' to 'unsigned char' in initializer list [-Wc++11-narrowing]
fim 0.5.3-4 Failed [GCC_ERROR] FbiStuffJpeg.cpp:181:36: error: use of overloaded operator '+' is ambiguous (with operand types 'fim::string' and 'const fim_char_t *' (aka 'const char *'))
firebird3.0 3.0.7.33374.ds4-1 Failed [GCC_ERROR/CLANG_ERROR] libtool.m4: error: problem compiling CXX test program
firefox-esr 78.4.0esr-2 OK [REASONS_NOT_COMPUTED]
flamp 2.2.05-1 Failed [GCC_ERROR] flamp.cxx:841:8: error: ordered comparison between pointer and zero ('void *' and 'int')
flightcrew 0.9.3+dfsg-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
flightgear 1:2020.1.3+dfsg-2 Failed [GCC_ERROR/CLANG_ERROR] sg_path.hxx:31:10: fatal error: 'functional' file not found
floatbg 1.0-28 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
fluxbox 1.3.5-2 Failed [GCC_ERROR] fluxbox-remote.cc:77:32: error: ordered comparison between pointer and zero ('unsigned char *' and 'int')
fontforge 1:20190801~dfsg-5 OK [REASONS_NOT_COMPUTED]
fontmanager.app 0.1-2 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
fortunate.app 3.1-3 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
fox1.6 1.6.57-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
fractalnow 0.8.2-4 Failed [GCC_ERROR] src/command_line.cpp:109:62: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
frame 2.5.0-3 Failed [GCC_ERROR] x11/device_x11.cpp:126:13: error: moving a temporary object prevents copy elision [-Werror,-Wpessimizing-move]
freebayes 1.3.2-3 Failed [CLANG_ERROR] error: invalid argument '-std=gnu++11' not allowed with 'C'
freecontact 1.0.21-8 Failed [CLANG_ERROR] clang: error: unsupported option '--help=optimizers'
freefem 3.5.8-7 Failed [GCC_ERROR] setjmp.h:54:12: error: conflicting types for '__sigsetjmp'
freeipmi 1.6.4-3 Failed [CLANG_ERROR] clang: error: no such file or directory: 'libfreeipmi.3'
frozen-bubble 2.212-9 Failed [CLANG_ERROR] clang: error: -lglib-2.0: 'linker' input unused [-Werror,-Wunused-command-line-argument]
fs-uae 3.0.5+dfsg-1 Failed [GCC_ERROR] src/blkdev.cpp:758:40: error: non-constant-expression cannot be narrowed from type 'int' to 'uae_u8' (aka 'unsigned char') in initializer list [-Wc++11-narrowing]
ftp.app 0.6-2 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
fuse-convmvfs 0.2.6-2 Failed [GCC_ERROR] convmvfs.cpp:115:32: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
fuzzylite 6.0+dfsg-3 Failed [GCC_ERROR] Operation.h:1044:24: error: passing an object that undergoes default argument promotion to 'va_start' has undefined behavior [-Werror,-Wvarargs]
fvwm1 1.24r-57 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
fweb 1.62-14 Failed [GCC_ERROR] ./t_type.h:53:5: error: second parameter of 'main' (argument array) must be of type 'char **'
g-wrap 1.9.15-3 Failed [GCC_ERROR] inttypes.h:290:8: error: unknown type name 'intmax_t'; did you mean '__intmax_t'?
ga 5.7.2-2 OK [REASONS_NOT_COMPUTED]
gabedit 2.5.1~20200828-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./spglib/tetrahedron_method.c:413: undefined reference to `__kmpc_for_static_init_4'
galculator 2.1.4-1 OK [REASONS_NOT_COMPUTED]
gamin 0.1.10-6 Failed [GCC_ERROR] gam_eq.c:127:3: error: non-void function 'gam_eq_flush' should return a value [-Wreturn-type]
gbsplay 0.0.93-3 Failed [UNKNOWN] XXX
gcc-10-cross-ports 12 Failed [GCC_ERROR/LD_ERROR] conftest.c:72: undefined reference to `getexecname'
gcc-10-cross 12 Failed [GCC_ERROR/LD_ERROR] conftest.c:(.text.startup+0x7): undefined reference to `getexecname'
gcc-9-cross-ports 21 Failed [GCC_ERROR/LD_ERROR] conftest.c:72: undefined reference to `getexecname'
gcc-9-cross 23 Failed [GCC_ERROR/LD_ERROR] conftest.c:72: undefined reference to `getexecname'
gcc-arm-none-eabi 15:8-2019-q3-1 OK [REASONS_NOT_COMPUTED]
gcc-avr 1:5.4.0+Atmel3.6.1-2 Failed [UNKNOWN] XXX
gcc-mingw-w64 23 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: GNAT is required to build ada
gcc-xtensa-lx106 7 Failed [UNKNOWN] XXX
gcin 2.9.0+dfsg1-1 Failed [GCC_ERROR/CLANG_ERROR] ./gcin-imcontext-qt.h:1:10: fatal error: 'QApplication' file not found
gcl 2.6.12-98 Failed [TIMEOUT]
gdb-avr 7.7-4 Failed [UNKNOWN] XXX
gdb-mingw-w64 10.9 Failed [UNKNOWN] XXX
gdbm 1.18.1-5.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./diet-build/src/../../src/findkey.c:168: undefined reference to `bcmp'
gecode 6.2.0-5 Failed [GCC_ERROR] ./gecode/set/int/weights.hpp:127:14: error: no viable overloaded '='
geki2 2.0.3-10 Failed [GCC_ERROR] ranking.c:18:5: error: non-void function 'ScoreRanking' should return a value [-Wreturn-type]
geki3 1.0.3-8.1 Failed [GCC_ERROR] ranking.c:18:5: error: non-void function 'ScoreRanking' should return a value [-Wreturn-type]
gem 1:0.94-3 Failed [GCC_ERROR] <command line>:4:32: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
generator-scripting-language 4.1.5-3 Failed [UNKNOWN] XXX
genometester 4.0+git20200511.91cecb5+dfsg-1 Failed [CLANG_ERROR] clang: error: cannot specify -o when generating multiple output files
geoip 1.6.12-6 Failed [GCC_ERROR] debian/src/geoip-csv-to-dat.cpp:658:4: error: non-constant-expression cannot be narrowed from type 'unsigned long' to 'uint8_t' (aka 'unsigned char') in initializer list [-Wc++11-narrowing]
geotranz 3.7-1.1 Failed [GCC_ERROR] ../../GEOTRANS3/java_gui/geotrans3/jni/JNICCSObjectTranslator.h:14:7: error: forward declaration of class cannot have a nested name specifier
gerbera 1.1.0+dfsg-3 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ./obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/./obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/src.c:11: undefined reference to `pthread_create'
getfem++ 5.3+dfsg1-3 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: g++ do not support option -std=c++11. Update g++ to at least release 4.8.1.
gfan 0.6.2-2 Failed [CLANG_ERROR] clang: error: unknown argument: '-fno-guess-branch-probability'
gforth 0.7.3+dfsg-9 Failed [UNKNOWN] XXX
ghdl 0.37+dfsg-2 Failed [GCC_ERROR/CLANG_ERROR] ../../src/gcc/vhdl/grt-cstdio.c:73:1: error: redefinition of a 'extern inline' function 'getc_unlocked' is not supported in C++
ghemical 3.0.0-5 Failed [GCC_ERROR] filetrans.cpp:357:5: error: non-constant-expression cannot be narrowed from type 'double' to 'fGL' (aka 'float') in initializer list [-Wc++11-narrowing]
gkrellmitime 1.0.1-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
glewlwyd 2.4.0-1 Failed [GCC_ERROR] register.c:1270:14: error: variable 'ret' is used uninitialized whenever 'if' condition is true [-Werror,-Wsometimes-uninitialized]
glib2.0 2.66.1-2 Failed [UNKNOWN] result = 0, error = Error removing file /<<PKGBUILDDIR>>/debian/build/deb/testdir_live-g-file/dir_no-execute/file: No such file or directory
glimpse 4.18.7-6 Failed [GCC_ERROR] misc.c:294:2: error: non-void function 'uninitialize_common' should return a value [-Wreturn-type]
gluegen2 2.3.2-7 OK [REASONS_NOT_COMPUTED]
gmerlin 1.2.0~dfsg+1-6.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
gmetadom 0.2.6-7 Failed [GCC_ERROR] ./../include/GdomeSmartDOMTraits.hh:102:25: error: non-constant-expression cannot be narrowed from type 'std::char_traits<unsigned short>::int_type' (aka 'unsigned long') to 'std::char_traits<unsigned short>::char_type' (aka 'unsigned short') in initializer list [-Wc++11-narrowing]
gmic 2.4.5-1.1 Failed [CLANG_ERROR] clang: error: unknown argument: '-fno-ipa-sra'
gnome-keyring 3.36.0-1 Failed [UNKNOWN] dh_auto_test: error: make -j4 check VERBOSE=1 returned exit code 2
gnome-screensaver 3.6.1-13 Failed [GCC_ERROR] gs-listener-dbus.c:362:39: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
gnome-shell-pomodoro 0.17.0-1 Failed [GCC_ERROR] gnome-shell-extension.c:843:2: error: non-void function 'gnome_plugin_gnome_shell_extension_get_info' should return a value [-Wreturn-type]
gnubiff 2.2.17-2 Failed [GCC_ERROR] gnubiff_options.cc:202:19: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
gnucap-python 0.0.2-1.2 Failed [CLANG_ERROR] clang: error: unsupported option '--print-multiarch'
gnumail 1.3.0-1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
gnunet 0.13.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: /<<PKGBUILDDIR>>/debian/tmp/usr/lib/x86_64-linux-gnu/libgnunetats.so: undefined reference to `GNUNET_HELLO_address_cmp'
gnupg1 1.4.23-1 OK [REASONS_NOT_COMPUTED]
gnustep-back 0.28.0-2 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
gnustep-base 1.27.0-3 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: Could not find Objective-C headers
gnustep-dl2 0.12.0-15.1 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
gnustep-examples 1:1.4.0-3 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
gnustep-gui 0.28.0-3 Failed [GCC_ERROR/CLANG_ERROR] 9: fatal error: 'objc/objc.h' file not found
gnustep-netclasses 1.06.dfsg-7 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
gnustep-performance 0.5.0-1 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
gnustep-sqlclient 1.8.1-3 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
gogglesmm 0.12.7-3 Failed [GCC_ERROR] src/GMAbout.cpp:92:31: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
golang-1.15 1.15.2-1 Failed [TIMEOUT]
goldendict 1.5.0~rc2+git20200409+ds-2 Failed [GCC_ERROR] ./sptr.hh:71:12: error: cannot initialize return object of type 'unsigned int' with an lvalue of type 'unsigned int *const'
gomoku.app 1.2.9-4 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
gorm.app 1.2.26-1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
gpg-remailer 3.04.05-1 Failed [GCC_ERROR] mail/../cleartextmail/../mailer/send.f:11:17: error: cannot cast 'Mailer<GPGMail>' to its private base class 'MailerBase'
gpick 0.2.6~rc1-5 Failed [GCC_ERROR] source/transformation/ColorVisionDeficiency.cpp:122:3: error: non-constant-expression cannot be narrowed from type 'double' to 'float' in initializer list [-Wc++11-narrowing]
gprolog 1.4.5.0-3 Failed [CLANG_ERROR] clang: error: unknown argument '-ffixed-r12'; did you mean '-ffixed-r19'?
gr-iqbal 0.38-4 Failed [GCC_ERROR] cxvec.h:45:15: error: expected ';' at end of declaration list
gr-radar 0.0.0.20180308-4 Failed [GCC_ERROR] (./refman.out) (./refman.out)/<<PKGBUILDDIR>>/lib/signal_generator_cw_c_impl.cc:89:29: error: implicit conversion from '_Complex double' to 'float' is not permitted in C++
grabix 0.1.7-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
grail 3.1.1-2 Failed [GCC_ERROR] handle.cpp:65:5: error: moving a temporary object prevents copy elision [-Werror,-Wpessimizing-move]
granule 1.4.0-7-9 Failed [TIMEOUT]
grass 7.8.4-2 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ld: /<<PKGBUILDDIR>>/dist.x86_64-pc-linux-gnu/lib/libgrass_gpde.7.8.so: undefined reference to `__kmpc_for_static_fini'
gridlock.app 1.10-5 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
gromacs 2020.4-2 Failed [UNKNOWN] XXX
growl-for-linux 0.8.5-8 Failed [GCC_ERROR] balloon.c:160:72: error: function definition is not allowed here
grpc 1.30.2-2 Failed [CLANG_ERROR/PYTHON_TRACEBACK] error: invalid argument '-std=gnu99' not allowed with 'C++'
grr.app 1.0-1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
grub 0.97-76 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: GRUB requires GAS .code16 addr32 support; upgrade your binutils
gsequencer 3.5.16-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
gsmlib 1.10+20120414.gita5e5ae9a-0.3 Failed [GCC_ERROR] gsm_me_ta.cc:994:45: error: non-constant-expression cannot be narrowed from type 'int' to 'unsigned char' in initializer list [-Wc++11-narrowing]
gst-plugins-espeak 0.5.0-1 Failed [GCC_ERROR] espeak.c:211:59: error: function definition is not allowed here
gtamsanalyzer.app 0.42-7 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
gtg-trace 0.2-2+dfsg-6 Failed [GCC_ERROR] C/paje_GTGBasic1_c.c:14:12: error: expected parameter declarator
gtimer 2.0.0-1.2 Failed [GCC_ERROR] custom-list.c:613:3: error: non-void function 'custom_list_append_record' should return a value [-Wreturn-type]
gtk+3.0 3.24.23-2 OK [REASONS_NOT_COMPUTED]
gtkguitune 0.8-6 Failed [GCC_ERROR] lcdview.cc:26:31: error: addition of default argument on redeclaration makes this constructor a default constructor
gtkmathview 0.8.0-15 Failed [GCC_ERROR] GdomeSmartDOMTraits.hh:102:25: error: non-constant-expression cannot be narrowed from type 'std::char_traits<unsigned short>::int_type' (aka 'unsigned long') to 'std::char_traits<unsigned short>::char_type' (aka 'unsigned short') in initializer list [-Wc++11-narrowing]
guile-2.2 2.2.7+1-5.3 OK [REASONS_NOT_COMPUTED]
guile-3.0 3.0.4-3 OK [REASONS_NOT_COMPUTED]
guymager 0.8.12-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
gvidm 0.8-13 Failed [GCC_ERROR] gvid.cc:99:17: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
gwama 2.2.2+dfsg-2 Failed [GCC_ERROR] gammaf.cpp:65:8: error: 'gamma' is missing exception specification 'throw()'
gyoto 1.4.4-3 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: MPI requested but not found
hashdeep 4.4-6 Failed [GCC_ERROR] ./xml.h:103:82: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
haskell-alsa-mixer 0.3.0-2 Failed [UNKNOWN] XXX
haskell-gtk3 0.15.5-1 Failed [BUILD_TIMEOUT] E: Build killed with signal TERM after 150 minutes of inactivity
haskell-thyme 0.3.5.5-5 Failed [UNKNOWN] XXX
helpviewer.app 0.3-8 Failed [CLANG_ERROR] clang: error: invalid value 'ISO-8859-1' in '-finput-charset=ISO-8859-1'
hex-a-hop 1.1.0+git20140926-1 Failed [GCC_ERROR] hex_puzzzle.cpp:351:17: error: non-constant-expression cannot be narrowed from type 'int' to 'Sint16' (aka 'short') in initializer list [-Wc++11-narrowing]
hnb 1.9.18+ds1-3 Failed [GCC_ERROR] prefs.c:92:2: error: embedding a #include directive within macro arguments is not supported
holotz-castle 1.3.14-11 Failed [GCC_ERROR] JLib/Util/JTextFile.cpp:148:11: error: ordered comparison between pointer and zero ('s8 *' (aka 'char *') and 'int')
horgand 1.14-7 Failed [GCC_ERROR] HORGAN.cxx:127:45: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
hplip 3.20.9+dfsg0-4 Failed [GCC_ERROR/CLANG_ERROR] ./Normalize.h:4:9: fatal error: 'Common.h' file not found
hpsockd 0.17 Failed [GCC_ERROR] v5.c:162:3: error: non-void function 'v5Request' should return a value [-Wreturn-type]
ht 2.1.0+repack1-5 Failed [GCC_ERROR] ../htinfo.h:30:39: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
htslib 1.11-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>'
httraqt 1.4.9-4 Failed [GCC_ERROR] htsglobal.h:211:80: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
hugs98 98.200609.21-5.4 Failed [UNKNOWN] tools/make_bootlib: 68: -D__HUGS__: not found
hylafax 3:6.0.7-3 Failed [UNKNOWN] XXX
i3lock 2.11.1-1 OK [REASONS_NOT_COMPUTED]
iem-plugin-suite 1.11.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
ifhp 3.5.20-17 Failed [GCC_ERROR] ifhp.c:1062:43: error: unused parameter 'infovar' [-Werror,-Wunused-parameter]
igor 1.4.0+dfsg-2 Failed [GCC_ERROR] Deletion.cpp:909:60: error: use of overloaded operator '+' is ambiguous (with operand types 'const char [30]' and 'Seq_side')
imview 1.1.9h-1 Failed [GCC_ERROR] transferRGBBox.cxx:131:13: error: ordered comparison between pointer and zero ('double *' and 'int')
imvirt 0.9.6-6 Failed [GCC_ERROR] vmware.c:65:5: error: invalid operand for instruction
injeqt 1.1.0-1.1 Failed [GCC_ERROR] provider-by-default-constructor.h:80:16: error: 'required_types' overrides a member function but is not marked 'override' [-Werror,-Winconsistent-missing-override]
insighttoolkit4 4.13.3withdata-dfsg1-2 Failed [GCC_ERROR] itkBalloonForceFilter.hxx:1091:18: error: assigning to 'float **' from incompatible type 'void *'
integrit 4.1-1.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] cdb.c:(.text+0x261): undefined reference to `bcmp'
inventor 2.1.5-10-23 Failed [GCC_ERROR] ppp.c++:630:1: error: C++ requires a type specifier for all declarations
ipmctl 02.00.00.3825+ds-1 Failed [GCC_ERROR] lnx_adapter_passthrough.c:192:5: fatal error: fields must have a constant size: 'variable length array in structure' extension will never be supported
ippl 1.4.14-12.2 Failed [GCC_ERROR] main.c:56:16: error: redefinition of 'log' as different kind of symbol
irssi-plugin-robustirc 0.6-4 Failed [GCC_ERROR] robustsession-network.c:268:9: error: non-void function 'robustsession_network_server' should return a value [-Wreturn-type]
irstlm 6.00.05-2 Failed [CLANG_ERROR] error: invalid argument '-std=c++0x' not allowed with 'C'
isc-dhcp 4.4.1-2.1 OK [REASONS_NOT_COMPUTED]
itksnap 3.6.0-5 Failed [TIMEOUT]
ivar 1.2.3+dfsg-1 Failed [GCC_ERROR] primer_bed.cpp:213:33: error: unused variable 'it' [-Werror,-Wunused-variable]
ivtools 2.0.4a1-1 Failed [UNKNOWN] XXX
jellyfish 2.3.0-6 Failed [GCC_ERROR] lib/jsoncpp.cpp:2303:74: error: implicit conversion from 'const Json::Int64' (aka 'const long long') to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Werror,-Wimplicit-int-float-conversion]
js8call 2.2.0+ds-1 Failed [GCC_ERROR] f95: error: unrecognized command-line option ‘-fopenmp=libomp’; did you mean ‘-fopenmp-simd’?
k2pdfopt 2.53+ds-1 Failed [GCC_ERROR] ocrtess.c:300:6: error: conflicting types for 'ocrtess_baselang'
kawari8 8.2.8-10 Failed [GCC_ERROR] shiori/kawari_shiori.cpp:147:35: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
kbdd 0.6-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] libkbdd.c:210: undefined reference to `_kbdd_proceed_event'
kcheckers 0.8.1-5 Failed [GCC_ERROR] pdn.cc:350:27: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
kdc2tiff 0.35-10 Failed [GCC_ERROR] kdc2tiff.cpp:308:1: error: C++ requires a type specifier for all declarations
kdrill 6.5deb2-12 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
kexec-tools 1:2.0.20-2.1 Failed [GCC_ERROR] purgatory/arch/i386/entry32-16.S:23:2: error: unknown directive
kgx 0.2.1-2 Failed [GCC_ERROR] hdy-dialer-button.h:22:1: error: attribute '__deprecated__' is ignored, place it after "struct" to apply attribute to type declaration [-Werror,-Wignored-attributes]
kinput2 3.1-13 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
kmer 0~20150903+r2013-8 Failed [GCC_ERROR] util.h:55:29: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
kmplayer 1:0.12.0b-3 Failed [GCC_ERROR] viewarea.cpp:2538:57: error: non-constant-expression cannot be narrowed from type 'long' to 'uint32_t' (aka 'unsigned int') in initializer list [-Wc++11-narrowing]
knews 1.0b.1-32 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
kobodeluxe 0.5.1-10 Failed [GCC_ERROR] filemap.cpp:854:19: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
koules 1.4-27 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
kraptor 0.0.20040403+ds-2 Failed [GCC_ERROR] src/game.c:416:3: error: function definition is not allowed here
krita 1:4.4.0+dfsg-1 Failed [GCC_ERROR] intrinsics.h:601:13: error: argument to '__builtin_ia32_vec_ext_v4sf' must be a constant integer
kst 2.0.8-4 Failed [CLANG_ERROR] clang: error: no such file or directory: '/Yc/<<PKGBUILDDIR>>/obj-x86_64-linux-gnu/src/libkst/kstcore_pch.h'
kylin-burner 3.0.8-1 Failed [GCC_ERROR] burner-misc.c:116:11: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
kyotocabinet 1.2.76-4.2 Failed [GCC_ERROR] kcthread.cc:671:50: error: cannot initialize a parameter of type 'void *' with an rvalue of type 'int'
labrea 2.5-stable-3.1 Failed [CLANG_ERROR] clang: error: '-I-' not supported, please use -iquote instead
ladspa-sdk 1.15-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
lagan 2.0-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./src/multial.c:829: undefined reference to `scoreOpp'
lam 7.1.4-6 Failed [CONFIGURE_ERROR] configure: error: *** Cannot continue.
lammps 20200303+dfsg1-3 Failed [GCC_ERROR] lal_lj_tip4p_long.cpp:386:16: error: explicit instantiation of 'LAMMPS_AL::LJ_TIP4PLong' must occur in namespace 'LAMMPS_AL'
langford 0.0.20130228-6 Failed [CLANG_ERROR] clang: error: cannot specify -o when generating multiple output files
lapack 3.9.0-3 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
lastpass-cli 1.3.3-4 Failed [CLANG_ERROR] clang: error: unknown argument: '-fno-aggressive-loop-optimizations'
lastz 1.04.03-4 Failed [UNKNOWN] XXX
latd 1.35 Failed [GCC_ERROR] llogin.cc:231:25: error: non-constant-expression cannot be narrowed from type 'int' to 'char' in initializer list [-Wc++11-narrowing]
ldapvi 1.7-10 Failed [GCC_ERROR] ldapvi.c:1468:30: error: non-void function 'copy_sasl_output' should return a value [-Wreturn-type]
leela-zero 0.17-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
lensfun 0.3.2-5 Failed [GCC_ERROR] cpuid.cpp:95:18: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
libaccounts-qt 1.15-2 OK [REASONS_NOT_COMPUTED]
libace-perl 1.92-8 Failed [GCC_ERROR] RPC.xs:157:6: error: non-void function 'constant' should return a value [-Wreturn-type]
libalog 0.6.1-2 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
libapache2-mod-perl2 2.0.11-2 Failed [UNKNOWN] dh_auto_test: error: make -j1 test TEST_VERBOSE=1 returned exit code 2
libautovivification-perl 0.18-1 Failed [UNKNOWN] dh_auto_test: error: make -j1 test TEST_VERBOSE=1 returned exit code 2
libayatana-appindicator 0.5.5-2 Failed [GCC_ERROR] ../../../src/app-indicator.c:206:2: error: use of GNU old-style field designator extension [-Werror,-Wgnu-designator]
libayatana-indicator 0.8.2-1 Failed [GCC_ERROR] ../../../libayatana-indicator/indicator-service.c:105:2: error: use of GNU old-style field designator extension [-Werror,-Wgnu-designator]
libcerf 1.3-2 Failed [GCC_ERROR] w_of_z.c:79:21: error: unused function 'cpolar' [-Werror,-Wunused-function]
libcgns 3.4.0-3 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
libchipcard 5.1.5rc2-4 Failed [GCC_ERROR] cardcommander.cpp:48:47: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
libclass-xsaccessor-perl 1.19-3 Failed [UNKNOWN] dh_auto_test: error: make -j4 test TEST_VERBOSE=1 returned exit code 2
libcommoncpp2 1.8.1-8 Failed [GCC_ERROR] nat.cpp:148:29: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
libdata-uuid-perl 1.224-1 Failed [UNKNOWN] dh_auto_test: error: make -j4 test TEST_VERBOSE=1 returned exit code 2
libdbi-drivers 0.9.0-9 Failed [UNKNOWN] XXX
libdc1394 2.2.6-3 Failed [GCC_ERROR] (./camera_8h.texcontrol.c:286:19: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
libdeflate 1.6-1 Failed [UNKNOWN] : Could not read profile default.profdata: No such file or directory
libdevel-cover-perl 1.36-1 Failed [UNKNOWN] dh_auto_test: error: make -j4 test TEST_VERBOSE=1 returned exit code 2
libdfp 1.0.15-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: Building Libdfp requires a GLIBC printf.h header that
libdjconsole 0.1.3-3 Failed [GCC_ERROR] djconsole.cpp:110:11: error: ordered comparison between pointer and zero ('usb_dev_handle *' and 'int')
libelfin 0.3-2 Failed [GCC_ERROR] ./data.hh:558:22: error: cannot assign to non-static data member within const member function 'set_binding'
libembperl-perl 2.5.0-15 Failed [UNKNOWN] dh_auto_test: error: make -j1 test TEST_VERBOSE=1 returned exit code 2
libesmtp 1.0.6-4.3 Failed [GCC_ERROR] ./missing.h:48:5: error: expected parameter declarator
libfcgi-perl 0.79-1 Failed [UNKNOWN] dh_auto_test: error: make -j4 test TEST_VERBOSE=1 returned exit code 2
libffado 2.4.2-1 Failed [GCC_ERROR] types.h:566:9: error: call to function 'operator>>' that is neither visible in the template definition nor found by argument-dependent lookup
libfile-map-perl 0.67-1 Failed [UNKNOWN] dh_auto_test: error: perl Build test --verbose 1 returned exit code 2
libfiu 1.00-7 Failed [GCC_ERROR] modules/posix.custom.c:445:42: error: expected parameter declarator
libfreesrp 0.3.0-2 Failed [GCC_ERROR] freesrp_impl.cpp:31:39: error: reference to 'FreeSRP' is ambiguous
libgclib 0.11.10+ds-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
libgdal-grass 3.1.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
libgdf 0.1.3-4 Failed [GCC_ERROR] TagHeader.cpp:188:31: error: addition of default argument on redeclaration makes this constructor a default constructor
libgetdata 0.10.0-9 Failed [UNKNOWN] XXX
libghemical 3.0.0-4.3 Failed [GCC_ERROR] model.cpp:2566:20: error: non-constant-expression cannot be narrowed from type 'double' to 'fGL' (aka 'float') in initializer list [-Wc++11-narrowing]
libgltf 0.1.0-3 Failed [GCC_ERROR] Shaders.cpp:131:13: error: non-constant-expression cannot be narrowed from type 'size_t' (aka 'unsigned long') to 'GLint' (aka 'int') in initializer list [-Wc++11-narrowing]
libgnatcoll-bindings 19-3 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
libgnatcoll 19-4 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
libgphoto2 2.5.26-2 Failed [CLANG_ERROR] error: unknown warning option '-Wno-format-truncation' [-Werror,-Wunknown-warning-option]
libgpiv 0.6.1-7 Failed [GCC_ERROR] ../../lib/io_raw.c:261:5: error: non-void function 'gpiv_fwrite_raw_image' should return a value [-Wreturn-type]
libgraphics-libplot-perl 2.2.2-7 Failed [GCC_ERROR] Libplot.xs:91:6: error: non-void function 'constant' should return a value [-Wreturn-type]
libhugetlbfs 2.22-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clangclang: : errorerror: : linker command failed with exit code 1 (use -v to see invocation)linker command failed with exit code 1 (use -v to see invocation)
libindirect-perl 0.39-1 Failed [UNKNOWN] dh_auto_test: error: make -j4 test TEST_VERBOSE=1 returned exit code 2
libinfinity 0.7.1-5 Failed [TIMEOUT]
libiodbc2 3.52.9-2.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
libiscsi 1.19.0-2 OK [REASONS_NOT_COMPUTED]
libisds 0.10.7-1 Failed [GCC_ERROR] isds.c:1142:18: error: passing an object that undergoes default argument promotion to 'va_start' has undefined behavior [-Werror,-Wvarargs]
libixion 0.16.1-2 Failed [GCC_ERROR] model_context.cpp:20:39: error: unknown type name 'nullptr_t'; did you mean 'std::nullptr_t'?
libjsoncpp 1.7.4-3.1 Failed [GCC_ERROR] json_value.cpp:73:15: error: implicit conversion from 'long long' to 'double' may lose precision [-Werror,-Wimplicit-int-float-conversion]
libkkc 0.3.5-7 Failed [UNKNOWN] XXX
libktorrent 2.2.0-2 Failed [UNKNOWN] XXX
libldm 0.2.4-3 Failed [GCC_ERROR] ldmtool.c:95:12: error: missing field 'action' initializer [-Werror,-Wmissing-field-initializers]
liblemon 1.3.1+dfsg-4 Failed [GCC_ERROR] path.h:231:24: error: no viable conversion from 'typename PredMapPath<Digraph, NodeMap<Arc> >::RevArcIt' to 'std::vector<lemon::concepts::Digraph::Arc, std::allocator<lemon::concepts::Digraph::Arc> >::value_type' (aka 'lemon::concepts::Digraph::Arc')
liblip 2.0.0-1.2 Failed [GCC_ERROR] tnt_sparse_matrix_csr.h:97:3: error: no matching constructor for initialization of 'Array1D<int>'
libmath-mpfr-perl 4.14-1 Failed [GCC_ERROR/CLANG_ERROR] have_d64.in:2:2: error: GNU decimal type extension not supported
libmawk 1.0.2-3 Failed [SEGMENTATION_FAULT] dh_auto_test: error: make -j4 test VERBOSE=1 returned exit code 2
libmdsp 0.11-10 Failed [GCC_ERROR] src/antoi.c:21:17: error: unknown kind of pragma comment
libmems 1.6.0+4725-8 Failed [GCC_ERROR] ../libMems/CompactGappedAlignment.h:811:6: error: 'swap<mems::CompactGappedAlignment<mems::AbstractGappedAlignment<mems::HybridAbstractMatch<2, std::allocator<long long>, std::allocator<unsigned int> > > > >' is missing exception specification 'noexcept(__and_<is_nothrow_move_constructible<CompactGappedAlignment<AbstractGappedAlignment<HybridAbstractMatch<2, allocator<long long>, allocator<unsigned int> > > > >, is_nothrow_move_assignable<CompactGappedAlignment<AbstractGappedAlignment<HybridAbstractMatch<2, allocator<long long>, allocator<unsigned int> > > > > >::value)'
libnatpmp 20150609-7 Failed [GCC_ERROR] libnatpmpmodule.c:273:5: error: non-void function 'initlibnatpmp' should return a value [-Wreturn-type]
libncursesada 6.2.20200212-2 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
libnet-ssleay-perl 1.88-3 Failed [UNKNOWN] dh_auto_test: error: make -j4 test TEST_VERBOSE=1 returned exit code 2
libnetfilter-acct 1.0.3-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./examples/nfacct-del.c:22: undefined reference to `nfacct_alloc'
libnetfilter-cthelper 1.0.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./examples/nfct-helper-get.c:13: undefined reference to `nfct_helper_alloc'
libnetfilter-cttimeout 1.0.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./examples/nfct-timeout-add.c:35: undefined reference to `nfct_timeout_alloc'
libnetfilter-queue 1.0.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./utils/nfqnl_test.c:83: undefined reference to `nfq_set_verdict'
libnfo 1.0.1-1.1 Failed [GCC_ERROR/CLANG_ERROR] nfo_xml_utils.c:22:10: fatal error: 'libxml/parser.h' file not found
libnftnl 1.1.7-1 Failed [BUILDDEPS] E: apt-cache returned no information about libnftnl source
libomxil-bellagio 0.9.3-6 Failed [GCC_ERROR] omx_base_port.c:1068:45: error: implicit conversion from enumeration type 'enum OMX_INDEXVENDORTYPE' to different enumeration type 'OMX_INDEXTYPE' (aka 'enum OMX_INDEXTYPE') [-Werror,-Wenum-conversion]
libomxxvideo 0.1-4 Failed [GCC_ERROR] omx_xvideo_sink_component.c:121:45: error: absolute value function 'abs' given an argument of type 'OMX_S32' (aka 'long') but has parameter of type 'int' which may cause truncation of value [-Werror,-Wabsolute-value]
liboping 1.10.0-4 Failed [GCC_ERROR] liboping.c:103:10: error: 'dprintf' macro redefined [-Werror,-Wmacro-redefined]
libosl 0.8.0-3 Failed [GCC_ERROR] dfpn.h:142:47: error: no template named 'vector' in namespace 'std'
libpappsomspp 0.8.8-1 Failed [GCC_ERROR] test_msrunalignment.cpp:191:48: error: 'maybe_unused' attribute cannot be applied to types
libpsm2 11.2.185-1 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '-specs=/usr/share/dpkg/no-pie-compile.specs' [-Werror,-Wunused-command-line-argument]
libpsortb 1.0+dfsg-3 Failed [GCC_ERROR] std_funcs.c:2471:5: error: non-void function 'update_shares_prior_multi' should return a value [-Wreturn-type]
libpwiz 3.0.18342-4 Failed [GCC_ERROR] pwiz/data/common/BinaryIndexStream.cpp:159:15: error: cannot assign to non-static data member within const member function 'operator[]'
libqb 1.0.6-2 Failed [GCC_ERROR] _syslog_override.c:45:6: error: expected parameter declarator
libquvi 0.9.3-1.3 Failed [BUILD_TIMEOUT] E: Build killed with signal TERM after 150 minutes of inactivity
libratbag 0.15-1 Failed [TIMEOUT]
libraw 0.20.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./src/preprocessing/raw2image.cpp:262: undefined reference to `__kmpc_for_static_fini'
libreoffice 1:7.0.2-4 Failed [SEGMENTATION_FAULT] /bin/sh: 1: git: not found
libretro-gambatte 0.5.0+git20160522+dfsg1-2 Failed [GCC_ERROR] src/statesaver.cpp:277:43: error: non-constant-expression cannot be narrowed from type 'unsigned int' to 'unsigned char' in initializer list [-Wc++11-narrowing]
librg-blast-parser-perl 0.03-6 Failed [GCC_ERROR] blast-parser-driver.h:61:12: error: C++ requires a type specifier for all declarations
librostlab-blast 1.0.1-10 Failed [GCC_ERROR] ./rostlab/blast-parser-driver.h:61:12: error: C++ requires a type specifier for all declarations
librsb 1.2.0.9+real+dfsg-1 Failed [GCC_ERROR/LD_ERROR] ld: /<<PKGBUILDDIR>>/.libs/librsb.so: undefined reference to `__kmpc_barrier'
libs3 2.0-3 Failed [GCC_ERROR] inc/request.h:131:14: error: sizeof on pointer operation will return size of 'char *' instead of 'char [9]' [-Werror,-Wsizeof-array-decay]
libsass-python 0.20.1-1 Failed [CLANG_ERROR] error: invalid argument '-std=gnu++0x' not allowed with 'C'
libscope-upper-perl 0.32-1 Failed [UNKNOWN] dh_auto_test: error: make -j4 test TEST_VERBOSE=1 returned exit code 2
libsdl2-mixer 2.0.4+dfsg1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
libselinux 3.1-2 Failed [CLANG_ERROR] clang: error: no such file or directory: 'temp.aux'
libsemanage 3.1-1 Failed [CLANG_ERROR] clang: error: no such file or directory: 'temp.aux'
libset-object-perl 1.40-1 Failed [UNKNOWN] dh_auto_test: error: make -j4 test TEST_VERBOSE=1 returned exit code 2
libsimpleini 4.17+dfsg-6 Failed [CLANG_ERROR] clang: error: unsupported option '--print-multiarch'
libsmpp34 1.13.0-2 Failed [GCC_ERROR] ../src/smpp34_params.c:138:2: error: embedding a #include directive within macro arguments is not supported
libss7 2.0.0-3 Failed [GCC_ERROR] mtp3.c:1947:31: error: equality comparison with extraneous parentheses [-Werror,-Wparentheses-equality]
libssw 1.1-11 Failed [CLANG_ERROR] clang: error: cannot specify -o when generating multiple output files
libswe 1.80.00.0002-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
libsyntax-keyword-dynamically-perl 0.05-1 Failed [UNKNOWN] dh_auto_test: error: perl Build test --verbose 1 returned exit code 255
libtasn1-6 4.16.0-2 Failed [UNKNOWN] dh_auto_test: error: make -j4 check VERBOSE=1 returned exit code 2
libtemplates-parser 20-3 Failed [TIMEOUT]
libterralib 4.3.0+dfsg.2-12.1 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lterralib
libtexttools 2.1.0-16 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
libtrace3 3.0.21-1 Failed [GCC_ERROR] tracetop.cc:380:16: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
libutempter 1.1.6-6 Failed [GCC_ERROR] utempter.c:167:32: error: unknown warning group '-Wstringop-truncation', ignored [-Werror,-Wunknown-warning-option]
libvariable-magic-perl 0.62-1 Failed [UNKNOWN] dh_auto_test: error: make -j1 test TEST_VERBOSE=1 returned exit code 2
libvcflib 1.0.1+dfsg-3 Failed [TIMEOUT]
libvmime 0.9.2-6 Failed [GCC_ERROR/CLANG_ERROR] :11: fatal error: 'cstdint' file not found
libwebsockets 4.0.20-1 Failed [TIMEOUT]
libwx-perl 1:0.9932-5 Failed [UNKNOWN] dh_auto_configure: error: perl -I. Makefile.PL INSTALLDIRS=vendor "OPTIMIZE=-g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2" "LD=x86_64-linux-gnu-gcc -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -Wformat -Werror=format-security -Wl,-z,relro -Wl,-z,now" returned exit code 2
libxs-parse-sublike-perl 0.10-1 Failed [UNKNOWN] dh_auto_test: error: perl Build test --verbose 1 returned exit code 255
libyami-utils 1.3.0-2 Failed [GCC_ERROR] psnr.cpp:225:17: error: bool literal returned from 'main' [-Werror,-Wmain]
libzstd 1.4.5+dfsg-4 Failed [UNKNOWN] dh_auto_test: error: make -j4 test returned exit code 2
lierolibre 0.5-3 Failed [GCC_ERROR] ./src/gvl/io/encoding.hpp:586:19: error: cast from pointer to smaller type 'uint32_t' (aka 'unsigned int') loses information
liferea 1.13.3-1 Failed [CLANG_ERROR] clang: error: cannot specify -o when generating multiple output files
liggghts 3.8.0+repack1-7 Failed [GCC_ERROR] finish.cpp:722:40: error: ordered comparison between pointer and zero ('int *' and 'int')
limesuite 20.01.0+dfsg-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: CMakeFiles/LimeQuickTest.dir/LimeSDRTest.cpp.o: undefined reference to symbol 'pthread_create@@GLIBC_2.2.5'
linbox 1.6.3-2 Failed [CLANG_ERROR] error: unknown argument: '-fabi-version=6'
linux86 0.16.17-3.3 Failed [GCC_ERROR] tok_io.c:231:6: error: non-void function 'do_control' should return a value [-Wreturn-type]
log4cpp 1.1.3-3 Failed [GCC_ERROR] testDailyRollingFileAppender.cpp:43:46: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
looking-glass 0+b1-5 Failed [GCC_ERROR] rsa.c:105:13: fatal error: fields must have a constant size: 'variable length array in structure' extension will never be supported
lookup 1.08b-12 Failed [GCC_ERROR] lib/romaji2kana.c:59:12: error: source file is not valid UTF-8
loqui 0.6.4-4 Failed [GCC_ERROR] remark_entry.c:553:2: error: non-void function 'remark_entry_find_completion_matches' should return a value [-Wreturn-type]
lordsawar 0.3.2+frogknows-1 Failed [GCC_ERROR] ../../src/setlist.h:318:32: error: no class named 'const_iterator' in 'SetList<Tileset>'
lsp-plugins 1.1.26-1 Failed [UNKNOWN] XXX
lusernet.app 0.4.3-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /usr/include/GNUstep/GNUstepBase/GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
lwip 2.1.2+dfsg1-8 Failed [GCC_ERROR] api_msg.c:982:25: error: equality comparison with extraneous parentheses [-Werror,-Wparentheses-equality]
lwm 1.2.2-6 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
lxtask 0.1.9-1 OK [REASONS_NOT_COMPUTED]
lynkeos.app 3.3+dfsg1-2 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not foundIn file included from
m4 1.4.18-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./lib/./xalloc.h:120: undefined reference to `__muloti4'
maelstrom 1.4.3-L3.0.6+main-9 Failed [GCC_ERROR] ../load.h:124:65: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
mahimahi 0.98-1.1 Failed [GCC_ERROR] ./packetshell.hh:25:19: error: no matching constructor for initialization of 'NAT'
mailfilter 0.8.7-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: /usr/bin/../lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/libfl.so: undefined reference to `yylex'
mandos 1.8.12-1 Failed [GCC_ERROR] plugins.d/password-prompt.c:119:51: error: function definition is not allowed here
mariadb-10.3 1:10.3.24-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
mate-settings-daemon 1.24.1-1 Failed [GCC_ERROR] msd-xrandr-manager.c:2414:3: error: non-void function 'apply_intended_configuration' should return a value [-Wreturn-type]
mccs 1:1.1-9 Failed [GCC_ERROR] sources/cudf.c:674:16: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
mdm 0.1.3-2.1 Failed [TIMEOUT]
mediastreamer2 1:2.16.1-4 OK [REASONS_NOT_COMPUTED]
memtest86+ 5.01-3.1 Failed [GCC_ERROR] main.c:223:2: error: indirect goto in function with no address-of-label expressions
memtest86 4.3.7-3 Failed [GCC_ERROR] main.c:229:2: error: indirect goto in function with no address-of-label expressions
menu-cache 1.1.0-1 OK [REASONS_NOT_COMPUTED]
mercator 0.3.3-6 Failed [GCC_ERROR] polygon_intersect.h:667:37: error: no member named 'm_orient' in 'WFMath::Polygon<2>'
metview 5.10.0-2 Failed [GCC_ERROR] Service.cc:41:5: error: no matching function for call to 'xdrrec_create'
mgdiff 1.0-30 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
mgp 1.13a+upstream20090219-12 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
mia 2.4.7-1 Failed [GCC_ERROR] src.cxx:5:2: error: Altivec not supported
milkytracker 1.02.00+dfsg-2.1 Failed [GCC_ERROR] EQConstants.cpp:30:2: error: non-constant-expression cannot be narrowed from type 'typename __gnu_cxx::__enable_if<__is_integer<int>::__value, double>::__type' (aka 'double') to 'float' in initializer list [-Wc++11-narrowing]
mimetic 0.9.8-9 Failed [GCC_ERROR] mmfile.cxx:60:14: error: ordered comparison between pointer and zero ('char *' and 'int')
mingw-w64 8.0.0-1 Failed [GCC_ERROR] winbase.h:2712:56: error: a parameter list without types is only allowed in a function definition
minisapserver 0.3.6-1.1 Failed [GCC_ERROR] sapserver.cpp:94:33: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
minisat+ 1.0-4 Failed [GCC_ERROR] ./SatELite.h:509:56: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
minisat2 1:2.2.1-5 Failed [GCC_ERROR] ./minisat/utils/Options.h:285:33: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
mira 4.9.6-5 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: Could not link against boost_thread !
mknfonts.tool 0.5-12 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
mlv 3.1.0-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./MLV/input_box.c:883: undefined reference to `goUpInHistory_NTS'
mmseqs2 12-113e3+ds-1 Failed [GCC_ERROR/CLANG_ERROR] njn_dynprogprobproto.hpp:39:10: fatal error: 'vector' file not found
molds 0.3.1-1 Failed [GCC_ERROR] base/../mpi/MpiProcess.h:177:41: error: non-constant-expression cannot be narrowed from type 'MolDS_mpi::molds_mpi_int' (aka 'long') to 'int' in initializer list [-Wc++11-narrowing]
mona 1.4-17-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: C++ compiler not found
monkeysphere 0.43-3 Failed [GCC_ERROR] src/agent-transfer/main.c:409:14: error: variable 'mpilen' is used uninitialized whenever 'if' condition is false [-Werror,-Wsometimes-uninitialized]
moonshot-ui 1.1.0+libsecret~2 Failed [GCC_ERROR] examples/client.c:36:5: error: second parameter of 'main' (argument array) must be of type 'char **'
mozjs52 52.9.1-1.1 Failed [CONFIGURE_ERROR] configure: error: in `/tmp/icu-obj-CTtU0H'
mpdcon.app 1.1.99-5 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
mpgrafic 0.3.19-1 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
mpich 3.4~a2+really3.3.2-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: Unable to configure with Fortran support because configure could not determine the size of a Fortran INTEGER. Consider setting CROSS_F77_SIZEOF_INTEGER to the length in bytes of a Fortran INTEGER
msxpertsuite 5.8.7-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./debian/build/libmass/./libmass/Trace.cpp:1535: undefined reference to `__kmpc_for_static_init_4'
muffin 4.6.3-1 Failed [GCC_ERROR] clutter-main.c:3719:46: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
mumps 5.3.3-2 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
mystiq 20.03.23-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
nam 1.15-5 Failed [GCC_ERROR] tclcl.h:193:33: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
nanopb 0.4.3-1 Failed [GCC_ERROR] pb.h:285:5: error: '_Bool' is a C99 extension [-Werror,-Wc99-extensions]
nanopolish 0.13.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
ncap 1.9.2-7 Failed [GCC_ERROR] asprintf.c:35:30: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
ncl 6.6.2-6 Failed [GCC_ERROR/LD_ERROR/CLANG_ERROR/CLANG_LD_ERROR] collect2: error: ld returned 1 exit status
neon27 0.31.2-1 OK [REASONS_NOT_COMPUTED]
nestopia 1.50-1 Failed [GCC_ERROR] source/core/NstCartridgeUnif.cpp:741:5: error: non-constant-expression cannot be narrowed from type 'unsigned int' to 'Nes::byte' (aka 'unsigned char') in initializer list [-Wc++11-narrowing]
netmaze 0.81+jpg0.82-16 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
netpbm-free 2:10.0-15.3 OK [REASONS_NOT_COMPUTED]
netplan.io 0.99-3 Failed [CLANG_ERROR] clang: error: -lyaml: 'linker' input unused [-Werror,-Wunused-command-line-argument]
netplug 1.2.9.2-3 Failed [GCC_ERROR] if_info.c:295:37: error: function definition is not allowed here
newsboat 2.21-1 Failed [UNKNOWN] /usr/bin/curl-config: 1: krb5-config: not found
nfft 3.3.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: ../.libs/libnfft3l_threads.so: undefined reference to `__atomic_compare_exchange'
nfstrace 0.4.3.2+git20200805+b220d04-1 Failed [GCC_ERROR] parser_thread.h:47:19: error: braces around scalar initializer [-Werror,-Wbraced-scalar-init]
nield 0.6.1-2 Failed [GCC_ERROR] tcmsg_filter_flow.c:310:5: error: non-void function 'conv_flow_key' should return a value [-Wreturn-type]
nitpic 0.1-17 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
notify-osd 0.9.35+15.04.20150126-1 Failed [GCC_ERROR] ./display.c:291:2: error: non-void function 'stack_layout' should return a value [-Wreturn-type]
ns2 2.35+dfsg-3 Failed [GCC_ERROR] tclcl.h:193:33: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
nted 1.10.18-12 Failed [GCC_ERROR] voice.cpp:1366:59: error: ordered comparison between pointer and zero ('GList *' (aka '_GList *') and 'int')
nullmailer 1:2.2-3 Failed [GCC_ERROR] inject.cc:211:3: error: non-constant-expression cannot be narrowed from type 'size_t' (aka 'unsigned long') to 'unsigned int' in initializer list [-Wc++11-narrowing]
numptyphysics 0.2+svn157-0.4 Failed [GCC_ERROR] Canvas.cpp:457:26: error: non-constant-expression cannot be narrowed from type 'int' to 'Sint16' (aka 'short') in initializer list [-Wc++11-narrowing]
nvidia-settings 450.66-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
nvidia-texture-tools 2.0.8-1+dfsg-8.2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
nvptx-tools 0.20180301-1 Failed [GCC_ERROR] ./../include/libiberty.h:627:12: error: expected parameter declarator
nx-libs 2:3.5.99.24-1 Failed [GCC_ERROR/CLANG_ERROR] ./config/cf/Imake.tmpl:2081:10: fatal error: ' X11 .rules' file not found
objcryst-fox 1.9.6.0-2.2 Failed [CLANG_ERROR] error: invalid argument '-std=gnu++98' not allowed with 'C'
ocaml 4.11.1-3 Failed [UNKNOWN] /bin/sh: 1: x86_64-linux-gnu-clang: not found
octave-interval 3.2.0-6 Failed [UNKNOWN] chmod: cannot access 'debian/*/usr/lib/*/octave/packages/*/*/*.mex': No such file or directory
octave-sparsersb 1.0.8-1 Failed [GCC_ERROR] sparsersb.cc:120:49: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
odb 2.4.0-13 Failed [GCC_ERROR] ../odb/relational/header.hxx:56:24: error: non-const lvalue reference to type 'semantics::data_member' cannot bind to a value of unrelated type 'relational::header::image_member_impl<relational::mssql::sql_type>::member_info' (aka 'relational::member_base_impl<relational::mssql::sql_type>::member_info')
ode 2:0.16-3 Failed [GCC_ERROR] demo_cylvssphere.cpp:154:20: error: non-constant-expression cannot be narrowed from type 'dReal' (aka 'double') to 'float' in initializer list [-Wc++11-narrowing]
odil 0.12.0-2 Failed [PYTHON_TRACEBACK] XXX
odin 2.0.4-0.2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: Please install Blitz++ (Version 0.8 or higher) in order to use the reconstruction library (There is probably a precompiled package for your UNIX/Linux distribution, otherwise see http://blitz.sourceforge.net)
oggvideotools 0.9.1-5.1 Failed [CLANG_ERROR] error: invalid argument '--std=c++0x' not allowed with 'C'
ogmrip 1.0.1-3 Failed [GCC_ERROR] ogmrip-encoding.c:1200:7: error: cast to union type from type 'int' not present in union
ogre-1.9 1.9.0+dfsg1-12 Failed [GCC_ERROR] OgreX11EGLWindow.cpp:558:30: error: non-constant-expression cannot be narrowed from type 'Ogre::uint' (aka 'unsigned int') to 'int' in initializer list [-Wc++11-narrowing]
opa-ff 10.9.3.1.1-2 Failed [CLANG_ERROR] clang: error: clang frontend command failed due to signal (use -v to see invocation)
opari2 2.0.5-1 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
opari 1.1+dfsg-9 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
open-invaders 0.3-5 Failed [GCC_ERROR] ../headers/declare.h:27:41: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
open-iscsi 2.0.874-7.1 OK [REASONS_NOT_COMPUTED]
open3d 0.9.0+ds-3 Failed [UNKNOWN] XXX
openblas 0.3.12+ds-1 Failed [GCC_ERROR/LD_ERROR] ld: cannot find -lomp
opencascade 7.4.1+dfsg1-2 Failed [UNKNOWN] Failed to copy 'usr/bin/custom_gcc_64.sh': No such file or directory at /usr/share/dh-exec/dh-exec-install-rename line 51, <> line 3.
opencryptoki 3.8.1+dfsg-3.1 Failed [CLANG_ERROR] clang: error: unknown argument: '-fgnu-tm'
opendnssec 1:2.1.6-2 Failed [GCC_ERROR/CLANG_ERROR] ../../common/janitor.c:49:10: fatal error: 'backtrace.h' file not found
openfoam 1906.191111+dfsg1-2 Failed [GCC_ERROR] lnInclude/IListStream.H:161:13: error: 'List' is a private member of 'Foam::List<char>'
openhpi 3.8.0-2 Failed [GCC_ERROR] ipmi.cpp:1561:83: error: alias must point to a defined variable or function
openjade 1.4devel1-21.3 Failed [CONFIGURE_ERROR] configure: error: cannot compute sizeof (size_t)
openjdk-11-jre-dcevm 11.0.9+1-1 Failed [CONFIGURE_ERROR] configure: error: A gcc compiler is required. Try setting --with-tools-dir.
openjfx 11.0.7+0-5 Failed [CLANG_ERROR] error: unknown warning option '-Werror=cast-function-type'; did you mean '-Werror=bad-function-cast'? [-Werror,-Wunknown-warning-option]
openmpi 4.0.5-7 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: Cannot continue
openni 1.5.4.0+dfsg-4 Failed [GCC_ERROR] ../../../../../Wrappers/OpenNI.jni/org_OpenNI_NativeMethods.cpp:971:24: error: non-constant-expression cannot be narrowed from type 'jbyte' (aka 'signed char') to 'XnUInt8' (aka 'unsigned char') in initializer list [-Wc++11-narrowing]
opensmtpd-extras 6.7.1-2 Failed [GCC_ERROR] stdio.h:354:12: error: conflicting types for 'snprintf'
opensp 1.5.2-13 Failed [GCC_ERROR] ../include/Ptr.h:72:11: error: ISO C++11 does not allow access declarations; use using declarations instead
opensta 0~20191111gitc018cb2+dfsg-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: ../app/libOpenSTA.a(DispatchQueue.cc.o): undefined reference to symbol 'pthread_create@@GLIBC_2.2.5'
opensurgsim 0.7.0-11 Failed [GCC_ERROR/CLANG_ERROR] gtest.h:55:10: fatal error: 'cstddef' file not found
openuniverse 1.0beta3.1+dfsg-6 Failed [GCC_ERROR] scrnshot.cpp:50:37: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
openvpn-auth-ldap 2.0.4-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: Can't locate Objective C runtime headers
openvswitch 2.13.0+dfsg1-12 Failed [GCC_ERROR] ../lib/vlog.c:1127:35: error: no member named '__syslog_chk' in 'struct syslog_class'
oregano 0.84.41+dfsg.1-1 Failed [GCC_ERROR] ../src/model/item-data.c:456:2: error: void function 'item_data_set_property' should not return a value [-Wreturn-type]
orocos-bfl 0.8.0-5 Failed [GCC_ERROR] mixtureParticleFilter.cpp:105:27: error: member reference base type 'Mixture<SVar> *' is not a structure or union
os-autoinst 4.5.1527308405.8b586d5-4.2 OK [REASONS_NOT_COMPUTED]
oscar 1.1.1-2 Failed [GCC_ERROR] qbytearray.h:586:22: error: definition of implicit copy constructor for 'QByteRef' is deprecated because it has a user-declared copy assignment operator [-Werror,-Wdeprecated-copy]
osmo-iuh 0.3.0-6 Failed [GCC_ERROR] hnb-test.c:329:3: error: non-void function 'hnb_test_nas_rx_auth_req' should return a value [-Wreturn-type]
osmo-pcu 0.5.1-1 Failed [GCC_ERROR] encoding.cpp:335:30: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
otb 7.2.0+dfsg-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./obj-x86_64-linux-gnu/Modules/Wrappers/ApplicationEngine/src/./Modules/Wrappers/ApplicationEngine/src/otbWrapperApplicationRegistry.cxx:302: undefined reference to `itk::Directory::GetNumberOfFiles()'
packagesearch 2.7.11 Failed [GCC_ERROR] main.cpp:45:30: error: cannot pass non-trivial object of type 'const QString' to variadic function; expected type from format string was 'char *' [-Wnon-pod-varargs]
pacman 10-18 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
paexec 1.1.1-1 Failed [UNKNOWN] dh_auto_test: error: mkcmake PREFIX=/usr MANDIR=/usr/share/man INFODIR=/usr/share/info SYSCONFDIR=/etc STRIPFLAG= LIBDIR=/usr/lib/x86_64-linux-gnu LIBEXECDIR=/usr/lib/x86_64-linux-gnu test returned exit code 1
paje.app 1.98-1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
pan 0.146-2 Failed [GCC_ERROR] text-match.cc:476:8: error: no viable conversion from 'pan::StringView' to 'std::__cxx11::basic_string<char>'
pandas 1.1.3+dfsg-2 Failed [GCC_ERROR] pandas/_libs/algos.c:133804:3: error: 'tp_print' is deprecated [-Werror,-Wdeprecated-declarations]
pantomime 1.3.0+dfsg1-3 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
papi 6.0.0~dfsg-2 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
pari 2.11.4-3 Failed [UNKNOWN] XXX
passenger 5.0.30-1.2 OK [REASONS_NOT_COMPUTED]
passwordsafe 1.11.0+dfsg-1 Failed [GCC_ERROR] PasswordSafeSearch.cpp:156:20: error: no viable conversion from 'SearchPointer' to 'std::vector<pws_os::CUUID, std::allocator<pws_os::CUUID> >'
pbzip2 1.1.13-1 Failed [GCC_ERROR] pbzip2.cpp:1223:75: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
pccts 1.33MR33-6 Failed [GCC_ERROR] genmk.c:971:1: error: conflicting types for 'pclasses'
pchar 1.5-4 Failed [GCC_ERROR] ./pc.h:28:15: error: expected identifier
pcmanx-gtk2 1.3-2 Failed [GCC_ERROR] mainframe.cpp:190:56: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
pcp 5.2.1-1 Failed [GCC_ERROR] access.o: r .L.str.1 : Error: additional symbol
performous 1.1+git20181118-4 Failed [GCC_ERROR] platform.h:818:29: error: too few arguments provided to function-like macro invocation
perl 5.30.3-4 Failed [UNKNOWN] Can't open gnu/stubs-x32.h: No such file or directory
phnxdeco 0.33-3 Failed [GCC_ERROR] phnxdeco.c:37:5: error: first parameter of 'main' (argument count) must be of type 'int'
phoc 0.4.4-1 Failed [GCC_ERROR] ../src/main.c:59:33: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
photoflow 0.2.8+git20200114-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-fno-ipa-sra'
php7.4 7.4.11-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./ext-build/./Zend/zend_vm_execute.h:3754: undefined reference to `DTRACE_EXCEPTION_CAUGHT_ENABLED'
pikopixel.app 1.0-b9d-2 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
pingus 0.7.6-5.1 Failed [GCC_ERROR] src/lisp/getters.hpp:33:15: error: no viable conversion from 'std::shared_ptr<Lisp>' to 'const lisp::Lisp *'
pirs 2.0.2+dfsg-8 Failed [GCC_ERROR] pirs_diploid.cpp:639:15: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
pixman 0.36.0-1 Failed [UNKNOWN] dh_auto_test: error: cd build && make -j4 check VERBOSE=1 VERBOSE=1 returned exit code 2
pixmap 2.6pl4-20 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
pkcs11-dump 0.3.4-1.1 Failed [GCC_ERROR] pkcs11-dump.cpp:1139:6: error: non-constant-expression cannot be narrowed from type 'int' to 'CK_ATTRIBUTE_TYPE' (aka 'unsigned long') in initializer list [-Wc++11-narrowing]
pktools 2.6.7.6+ds-2 Failed [GCC_ERROR] Filter.h:800:52: error: member reference base type 'T *' is not a structure or union
plasma-desktop 4:5.17.5-3 OK [REASONS_NOT_COMPUTED]
plee-the-bear 0.6.0-7 Failed [GCC_ERROR] model_action.cpp:399:50: error: use of overloaded operator '>' is ambiguous (with operand types 'claw::real_number<universe::time_type>' (aka 'real_number<double>') and 'bear::universe::time_type' (aka 'double'))
plopfolio.app 0.1.0-8 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
plplot 5.15.0+dfsg-15 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text.caml_startup_common+0x52): undefined reference to `caml_data_segments'
pmars 0.9.2-1 Failed [GCC_ERROR] ./sim.h:92:12: error: redefinition of 'round' as different kind of symbol
pnetcdf 1.12.1-3 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
poe.app 0.5.1-6 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
poedit 2.4.1-1 Failed [GCC_ERROR] platform.h:818:29: error: too few arguments provided to function-like macro invocation
pokerth 1.1.2-1 OK [REASONS_NOT_COMPUTED]
pong2 0.1.3-2 Failed [GCC_ERROR] Framework.cpp:270:23: error: non-constant-expression cannot be narrowed from type 'double' to 'GLfloat' (aka 'float') in initializer list [-Wc++11-narrowing]
popplerkit.framework 0.0.20051227svn-8.1 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
posterazor 1.5.1-8 Failed [GCC_ERROR] TranslationEnglish.h:121:71: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
postgresql-12 12.4-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./build/src/backend/utils/sort/./build/../src/backend/utils/sort/tuplesort.c:1271: undefined reference to `TRACE_POSTGRESQL_SORT_DONE'
postgresql-13 13.0-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./build/src/backend/utils/sort/./build/../src/backend/utils/sort/tuplesort.c:1351: undefined reference to `TRACE_POSTGRESQL_SORT_DONE'
ppl 1:1.2-8.1 Failed [GCC_ERROR] ./ppl.hh:66465:8: error: missing 'typename' prior to dependent type template name 'OR_Matrix<T>::Pseudo_Row'
pplpy 0.8.4-4 Failed [GCC_ERROR] ppl.hh:66465:8: error: missing 'typename' prior to dependent type template name 'OR_Matrix<T>::Pseudo_Row'
presage 0.9.1-2.2 Failed [GCC_ERROR] scintilla/gtk/ScintillaGTK.cxx:1629:33: error: ordered comparison between pointer and zero ('GdkAtom' (aka '_GdkAtom *') and 'int')
preview.app 0.8.5-11 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
price.app 1.3.0-4 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
prime-phylo 1.0.11-9 Failed [GCC_ERROR] ODESolver.hh:359:20: error: in-class initializer for static data member of type 'const beep::Real' (aka 'const double') requires 'constexpr' specifier [-Wstatic-float-init]
primrose 6+dfsg1-4 Failed [GCC_ERROR] Panel.cpp:211:13: error: non-constant-expression cannot be narrowed from type 'int' to 'GLfloat' (aka 'float') in initializer list [-Wc++11-narrowing]
primus 0~20150328-12 Failed [GCC_ERROR] ./gl-passthru.def:2:1: error: ifunc must point to a defined function
princeprocessor 0.22-1 Failed [CLANG_ERROR] clang: error: cannot specify -o when generating multiple output files
procinfo 1:2.0.304-4 Failed [GCC_ERROR] ./lib/timeRoutines.cpp:134:38: error: non-constant-expression cannot be narrowed from type 'uint32_t' (aka 'unsigned int') to 'int' in initializer list [-Wc++11-narrowing]
progressivemauve 1.2.0+4713+dfsg-4 Failed [GCC_ERROR] CompactGappedAlignment.h:811:6: error: 'swap<mems::CompactGappedAlignment<mems::AbstractGappedAlignment<mems::HybridAbstractMatch<2, std::allocator<long long>, std::allocator<unsigned int> > > > >' is missing exception specification 'noexcept(__and_<is_nothrow_move_constructible<CompactGappedAlignment<AbstractGappedAlignment<HybridAbstractMatch<2, allocator<long long>, allocator<unsigned int> > > > >, is_nothrow_move_assignable<CompactGappedAlignment<AbstractGappedAlignment<HybridAbstractMatch<2, allocator<long long>, allocator<unsigned int> > > > > >::value)'
projectcenter.app 0.6.2+git20190606-2 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
projecteur 0.8-1 Failed [GCC_ERROR] new_allocator.h:156:4: error: destructor called on non-final 'KeySequenceAction' that has virtual functions but non-virtual destructor [-Werror,-Wdelete-non-abstract-non-virtual-dtor]
pscan-tfbs 1.2.2-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
pseudo 1.9.0+git20200626+067950b-2 Failed [GCC_ERROR] ./ports/linux/pseudo_wrappers.c:99:14: error: use of unknown builtin '__builtin_apply' [-Wimplicit-function-declaration]
psi 1.3-6 OK [REASONS_NOT_COMPUTED]
psicode 3.4.0-6 Failed [GCC_ERROR/CLANG_ERROR] ip_read.cc:15:10: fatal error: 'y.tab.h' file not found
pulseaudio 13.0-5 Failed [GCC_ERROR] ./pulsecore/atomic.h:120:33: error: cannot initialize a parameter of type 'unsigned long' with an lvalue of type 'void *'
pulseview 0.4.2-1 Failed [GCC_ERROR] cpp_dec_float.hpp:613:12: error: implicit instantiation of undefined template 'boost::serialization::nvp<bool>'
purelibc 1.0.3-1 Failed [GCC_ERROR] stdio.c:245:5: error: expected parameter declarator
purify 2.0.0-5 Failed [GCC_ERROR] relative_variation.h:44:11: error: no viable overloaded '='
pykdtree 1.3.1+ds-1 Failed [PYTHON_TRACEBACK/PYIMPORT] dh_auto_test: error: pybuild --test --test-nose -i python{version} -p "3.9 3.8" returned exit code 13
pymol 2.3.0+dfsg-1 Failed [GCC_ERROR] contrib/champ/champ.c:2787:3: error: unterminated function-like macro invocation
python-cffi 1.14.3-2 Failed [GCC_ERROR] _CFFI_test_verify_anonymous_struct_with_star_typedef.cpp:583:10: error: non-constant-expression cannot be narrowed from type 'long' to 'size_t' (aka 'unsigned long') in initializer list [-Wc++11-narrowing]
python-demgengeo 1.4-3 Failed [GCC_ERROR] src/CircMNTableXY2D.cc:285:29: error: 's_output_style' is a protected member of 'MNTable2D'
python-pyxattr 0.6.1-2 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '-specs=/usr/share/dpkg/no-pie-compile.specs' [-Werror,-Wunused-command-line-argument]
python-udatetime 0.0.16-4 Failed [PYTHON_TRACEBACK] dh_auto_test: error: pybuild --test -i python{version} -p "3.9 3.8" returned exit code 13
python2.7 2.7.18-1 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
python3.8 3.8.6-1 Failed [CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>/build-static'
python3.9 3.9.0-5 Failed [CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>/build-static'
qbs 1.17.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
qdjango 0.6.2-3 Failed [UNKNOWN] dh_auto_test: error: make -j1 check returned exit code 2
qemu 1:5.1+dfsg-4 Failed [GCC_ERROR] fdmon-io_uring.c:106:17: error: address argument to atomic operation must be a pointer to _Atomic type ('unsigned int *' invalid)
qgis 3.10.11+dfsg-1 Failed [CLANG_ERROR] clang: error: clang frontend command failed due to signal (use -v to see invocation)
qiv 2.3.2-2 Failed [UNKNOWN] XXX
qlcplus 4.12.3-1 Failed [GCC_ERROR] qbytearray.h:586:22: error: definition of implicit copy constructor for 'QByteRef' is deprecated because it has a user-declared copy assignment operator [-Werror,-Wdeprecated-copy]
qscintilla2 2.11.5+dfsg-3 Failed [UNKNOWN] /<<PKGBUILDDIR>>/Python/build-3.9/cfgtest_Qsci/./Qsci: error while loading shared libraries: libqscintilla2_qt5.so.15: cannot open shared object file: No such file or directory
qtads 2.1.7-0.1 Failed [GCC_ERROR] tads3/vmtz.cpp:1987:30: error: ordered comparison between pointer and zero ('vmtz_trans *' and 'int')
qtbase-opensource-src-gles 5.14.2+dfsg-3 Failed [QMAKE_ERROR] Project ERROR: failed to parse default search paths from compiler output
qtbase-opensource-src 5.14.2+dfsg-6 Failed [QMAKE_ERROR] Project ERROR: failed to parse default search paths from compiler output
qtcreator 4.13.2-1 OK [REASONS_NOT_COMPUTED]
qtop 2.3.4-2 Failed [GCC_ERROR] File.h:327:18: error: qualified reference to 'File' is a constructor name rather than a type in this context
quantlib 1.20-1 OK [REASONS_NOT_COMPUTED]
quickfix 1.15.1+dfsg-4 Failed [UNKNOWN] XXX
quisk 4.1.66-1 Failed [GCC_ERROR] charleston/chas_rx2.c:973:5: error: non-void function 'initchas_rx1' should return a value [-Wreturn-type]
qwtplot3d 0.2.7+svn191+gcc7-3 Failed [GCC_ERROR] ../src/qwt3d_lighting.cpp:178:27: error: non-constant-expression cannot be narrowed from type 'double' to 'GLfloat' (aka 'float') in initializer list [-Wc++11-narrowing]
r-cran-rstan 2.21.2-2 OK [REASONS_NOT_COMPUTED]
radsecproxy 1.8.2-2 Failed [GCC_ERROR] radsecproxy-hash.c:17:2: error: embedding a directive within macro arguments has undefined behavior [-Werror,-Wembedded-directive]
raidutils 0.0.6-23 Failed [GCC_ERROR] command.cpp:1670:7: error: non-constant-expression cannot be narrowed from type 'int' to 'uCHAR' (aka 'unsigned char') in initializer list [-Wc++11-narrowing]
rakarrack 0.6.1-5 Failed [GCC_ERROR] ../../src/rakarrack.cxx:851:43: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
rapmap 0.15.0+dfsg-1 Failed [GCC_ERROR/CLANG_ERROR] KSW2Aligner.hpp:4:10: fatal error: 'memory' file not found
raqm 0.7.0-4 Failed [GCC_ERROR] raqm.c:1934:24: error: overlapping comparisons always evaluate to true [-Werror,-Wtautological-overlap-compare]
rarcrack 0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] rarcrack.c:(.text+0x541): undefined reference to `nextpass'
rasmol 2.7.6.0-1 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
ratpoints 1:2.1.3-1 Failed [GCC_ERROR] ./sturm.c:176:5: error: function definition is not allowed here
rbdoom3bfg 1.2.0+dfsg~git20200817-1 Failed [GCC_ERROR] Image_files.cpp:923:3: error: non-constant-expression cannot be narrowed from type 'unsigned int' to 'unsigned char' in initializer list [-Wc++11-narrowing]
rcs 5.10.0-1 Failed [GCC_ERROR] b-excwho.c:126:15: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
recode 3.6-24 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: ./.libs/librecode.so: undefined reference to `aliases_lookup'
refind 0.12.0-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-fno-tree-loop-distribute-patterns'
renaissance 0.9.0-4 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
reprepro 5.3.0-1.1 Failed [GCC_ERROR] sourceextraction.c:137:2: error: illegal storage class on function
repsnapper 2.5a5-2 Failed [CLANG_ERROR] error: invalid argument '--std=c++11' not allowed with 'C'
ri-li 2.0.1+ds-9 Failed [GCC_ERROR] sprite.cc:355:16: error: ordered comparison between pointer and zero ('SDL_Surface *' and 'long')
rna-star 2.7.6a+dfsg-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
rnetclient 2017.1-1 Failed [GCC_ERROR] rnetclient.c:78:9: error: missing field 'key' initializer [-Werror,-Wmissing-field-initializers]
rng-tools-debian 2.1 Failed [GCC_ERROR] rngd_linux.c:189:17: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
rng-tools5 5-4 Failed [GCC_ERROR] rngd_linux.c:126:17: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
rsh-redone 85-2 Failed [GCC_ERROR] rlogin.c:388:30: error: function definition is not allowed here
rss-glx 0.9.1-6.1 Failed [GCC_ERROR] hyperspace.cpp:379:19: error: non-constant-expression cannot be narrowed from type 'double' to 'float' in initializer list [-Wc++11-narrowing]
rsskit 0.4-1 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
rsyslog 8.2010.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
rttr 0.9.6+dfsg1-3 Failed [GCC_ERROR] number_conversion.h:137:16: error: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Werror,-Wimplicit-int-float-conversion]
ruby-curses 1.2.4-1 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] conftest.c:15: undefined reference to `init'
ruby-thrift 0.11.0.0-3 Failed [GCC_ERROR] ruby.h:1863:1: error: unknown attribute '__error__' ignored [-Werror,-Wunknown-attributes]
ruby2.7 2.7.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./vm.c:1764: undefined reference to `RUBY_DTRACE_METHOD_RETURN_ENABLED'
rust-backtrace-sys 0.1.35-1 Failed [UNKNOWN] dh_auto_test: error: /usr/share/cargo/bin/cargo build returned exit code 101
rust-backtrace 0.3.44-6 Failed [UNKNOWN] dh_auto_test: error: /usr/share/cargo/bin/cargo test --all returned exit code 101
rust-cpal 0.10.0-2 Failed [UNKNOWN] dh_auto_test: error: /usr/share/cargo/bin/cargo build returned exit code 101
rust-include-dir-impl 0.5.0-1 Failed [UNKNOWN] dh_auto_test: error: /usr/share/cargo/bin/cargo test --all returned exit code 101
rust-publicsuffix 1.5.2-1 Failed [UNKNOWN] dh_auto_test: error: /usr/share/cargo/bin/cargo build returned exit code 101
rust-sequoia-openpgp 0.20.0-1 Failed [UNKNOWN] dh_auto_test: error: /usr/share/cargo/bin/cargo build returned exit code 101
rust-sequoia-sop 0.20.0-1 Failed [UNKNOWN] dh_auto_test: error: /usr/share/cargo/bin/cargo test --all returned exit code 101
rust-sequoia-sqv 0.20.0-1 Failed [UNKNOWN] dh_auto_test: error: /usr/share/cargo/bin/cargo build returned exit code 101
rust-sniffglue 0.11.1-2 Failed [UNKNOWN] dh_auto_test: error: /usr/share/cargo/bin/cargo build returned exit code 101
rust-syslog 4.0.1-2 Failed [UNKNOWN] dh_auto_test: error: /usr/share/cargo/bin/cargo build returned exit code 101
rust-vergen 3.0.4-2 Failed [UNKNOWN] dh_auto_test: error: /usr/share/cargo/bin/cargo build returned exit code 101
rust-which 3.0.0-2 Failed [UNKNOWN] dh_auto_test: error: /usr/share/cargo/bin/cargo build returned exit code 101
sachesi 2.0.4+ds-3 Failed [GCC_ERROR] src/installer_establish.cpp:22:13: error: static declaration of 'wolfSSL_RSA_get0_key' follows non-static declaration
safeclib 3.5-3 Failed [GCC_ERROR] test_mbsrtowcs_s.c:269:10: error: len overflow >dmax
sane-backends 1.0.31-2 Failed [GCC_ERROR] ./minigtest.h:45:29: error: call to function 'operator<<' that is neither visible in the template definition nor found by argument-dependent lookup
sbjson 2.3.2-4 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
scanbd 1.5.1-6 Failed [UNKNOWN] XXX
schroot 1.6.10-11 Failed [GCC_ERROR] sbuild-basic-keyfile.tcc:217:18: error: no viable overloaded '='
scim 1.4.18-2.2 Failed [GCC_ERROR] scim_panel_gtk.cpp:2563:34: error: type 'double' cannot be narrowed to 'guint16' (aka 'unsigned short') in initializer list [-Wc++11-narrowing]
scipy 1.5.2-2 Failed [PYTHON_TRACEBACK] XXX
scram 0.16.2-1 Failed [GCC_ERROR] preprocessor.h:51:17: error: constexpr if condition evaluates to 2, which cannot be narrowed to type 'bool' [-Wc++11-narrowing]
scribus 1.5.5+svn23928+dfsg-1 Failed [GCC_ERROR] path.h:260:11: error: no viable overloaded '='
scrm 1.7.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
sdl-ball 1.02-2 Failed [GCC_ERROR] ./menu.cpp:207:47: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
sdl-mixer1.2 1.2.12-16 Failed [GCC_ERROR] music_mad.c:227:2: error: non-void function 'mad_getSamples' should return a value [-Wreturn-type]
sdpa 7.3.14+dfsg-1 Failed [GCC_ERROR] mexFprintf.c:32:5: error: expected parameter declarator
sdrangelove 0.0.1.20150707-3 Failed [GCC_ERROR] miniz.cpp:2782:72: error: non-constant-expression cannot be narrowed from type 'char' to 'mz_uint8' (aka 'unsigned char') in initializer list [-Wc++11-narrowing]
selint 1.1.0-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>'
seqan2 2.4.0+dfsg-12 Failed [UNKNOWN] dh_auto_test: error: cd obj-x86_64-linux-gnu && make -j4 test ARGS\+=-j4 returned exit code 2
sight 20.0.0-2 Failed [GCC_ERROR] Graph.cpp:368:39: error: loop variable 'connection' has type 'const ConnectionContainerElt &' (aka 'const pair<shared_ptr<fwData::Edge>, pair<shared_ptr<fwData::Node>, shared_ptr<fwData::Node> > > &') but is initialized with type 'const std::pair<const std::shared_ptr<fwData::Edge>, std::pair<std::shared_ptr<fwData::Node>, std::shared_ptr<fwData::Node> > >' resulting in a copy [-Werror,-Wrange-loop-construct]
silverjuke 18.2.1-3 Failed [GCC_ERROR] src/prjm/src/Renderer/VideoEcho.cpp:80:30: error: non-constant-expression cannot be narrowed from type 'double' to 'float' in initializer list [-Wc++11-narrowing]
simgear 1:2020.1.3+dfsg-1 Failed [GCC_ERROR/CLANG_ERROR] newbucket.cxx:30:10: fatal error: 'cmath' file not found
sipxtapi 3.3.0~test18+dfsg.1-0.1 Failed [GCC_ERROR] utl/UtlString.cpp:735:77: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
skiboot 6.6.2-1 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '-specs=/usr/share/dpkg/no-pie-compile.specs' [-Werror,-Wunused-command-line-argument]
skstream 0.3.9-4 Failed [GCC_ERROR] skpoll.cpp:66:33: error: non-constant-expression cannot be narrowed from type 'unsigned long' to '__time_t' (aka 'long') in initializer list [-Wc++11-narrowing]
slim 1.3.6-5.2 Failed [GCC_ERROR] panel.cpp:51:13: error: ordered comparison between pointer and zero ('GC' (aka '_XGC *') and 'int')
smcroute 2.4.2-4 Failed [GCC_ERROR] conf.c:351:19: error: overlapping comparisons always evaluate to true [-Werror,-Wtautological-overlap-compare]
snap-aligner 1.0~beta.18+dfsg-4 Failed [GCC_ERROR] SNAPLib/AlignerContext.cpp:341:34: error: expected ')'
snapd-glib 1.54-1 OK [REASONS_NOT_COMPUTED]
snek 1.5-1 Failed [CLANG_ERROR] clang: error: -Wl,-z,now: 'linker' input unused [-Werror,-Wunused-command-line-argument]
snoopy 2.4.8-1 Failed [CLANG_ERROR] error: unknown warning option '-Werror=stringop-truncation'; did you mean '-Werror=string-conversion'? [-Werror,-Wunknown-warning-option]
soapyremote 0.5.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: CMakeFiles/SoapySDRServer.dir/ServerListener.cpp.o: undefined reference to symbol 'pthread_create@@GLIBC_2.2.5'
soapysdr 0.7.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: ../lib/libSoapySDR.so.0.7.2: undefined reference to `pthread_create'
socat 1.7.3.4-1 Failed [TIMEOUT]
soci 3.2.3-2 Failed [GCC_ERROR] session.cpp:202:22: error: ordered comparison between pointer and zero ('int *' and 'int')
sogo 4.3.2-1 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
sonic-visualiser 4.2-1 OK [REASONS_NOT_COMPUTED]
sope 4.3.2-2 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
soundmodem 0.20-5 Failed [GCC_ERROR] ../matlib/mat.hh:452:6: error: assigning to 'unsigned int *' from incompatible type 'void *'
source-highlight 3.1.9-3 Failed [GCC_ERROR] ./stdboosterror.h:7:72: error: parameter declarator cannot be qualified
spacearyarya 1.0.2-7.1 Failed [GCC_ERROR] ranking.c:18:5: error: non-void function 'ScoreRanking' should return a value [-Wreturn-type]
spades 3.13.1+dfsg-2 Failed [GCC_ERROR/CLANG_ERROR] AffineAlignment.hpp:44:10: fatal error: 'string' file not found
spaln 2.4.0+dfsg-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
sphde 1.4.0-2 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '-mhtm' [-Werror,-Wunused-command-line-argument]
sphinxsearch 2.2.11-2 Failed [GCC_ERROR] sphinx.cpp:27823:15: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
spim 8.0+dfsg-6.1 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
splat 1.4.2-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
spoa 3.4.0+ds-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
spring 104.0+dfsg-7 Failed [CLANG_ERROR/CLANG_LD_ERROR] atomic_base.h:384: undefined reference to `__atomic_is_lock_free'
ssm 1.4.0-1 Failed [GCC_ERROR] superpose.cpp:117:10: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
sssd 2.3.1-3 Failed [GCC_ERROR] ../src/providers/ldap/ldap_id.c:1412:5: error: implicit declaration of function 'SSSD_SDAP_ACCT_REQ_SEND_ENABLED' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
ssvnc 1.0.29-5 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
stalin 0.11-6 Failed [CLANG_ERROR] clang: error: unsupported option '-freg-struct-return' for target 'x86_64-pc-linux-gnu'
starpu 1.3.7+dfsg-1 Failed [TIMEOUT]
stdsyslog 0.03.3-4 Failed [GCC_ERROR] stdsyslog.c:560:121: error: format specifies type 'void *' but the argument has type 'char *' [-Werror,-Wformat-pedantic]
stella 6.3-1 Failed [TIMEOUT]
steptalk 0.10.0-6 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
stimfit 0.16.0-1 Failed [GCC_ERROR] ./funclib.cpp:165:20: error: no member named 'logl' in namespace 'std'; did you mean simply 'logl'?
stockfish 11-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
stopmotion 0.8.5-2 Failed [GCC_ERROR] oomtestutil.cpp:230:5: error: 'ferror' is missing exception specification 'throw()'
stormbaancoureur 2.1.6-3 Failed [GCC_ERROR] ./carpettrack.h:18:55: error: non-constant-expression cannot be narrowed from type 'double' to 'float' in initializer list [-Wc++11-narrowing]
stressapptest 1.0.6-2 Failed [GCC_ERROR] worker.cc:2994:14: error: case value evaluates to -5, which cannot be narrowed to type 'unsigned long' [-Wc++11-narrowing]
subtitleeditor 0.54.0-4 Failed [GCC_ERROR] document.cc:81:40: error: addition of default argument on redeclaration makes this constructor a copy constructor
sunclock 3.57-11 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
supercollider-sc3-plugins 3.9.1~repack-3 Failed [GCC_ERROR/CLANG_ERROR] Dfm1.cpp:22:10: fatal error: 'cmath' file not found
supercollider 1:3.10.4+repack-1 Failed [TIMEOUT]
supermin 5.2.0-2 Failed [CLANG_ERROR] clang: error: unsupported option '-specs /usr/lib/x86_64-linux-musl/musl-gcc.specs'
suricata 1:5.0.3-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: unable to find any of needed to build ebpf files
swarm-cluster 3.0.0+dfsg-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
switchsh 0~20070801-4 Failed [GCC_ERROR] switchsh.c:69:14: error: unused parameter 'argc' [-Werror,-Wunused-parameter]
sympathy 1.2.1+woking+cvs+git20171124-1 Failed [GCC_ERROR] vt102.c:366:10: error: equality comparison with extraneous parentheses [-Werror,-Wparentheses-equality]
syslinux 3:6.04~git20190206.bf6db5b4+dfsg1-3 Failed [GCC_ERROR/CLANG_ERROR] stdarg.h:9:15: fatal error: 'stdarg.h' file not found
systemd 246.6-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
systempreferences.app 1.2.0-2 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
t-coffee 13.41.0.28bdc39+dfsg-4 Failed [GCC_ERROR] dp_lib/evaluate_dirichlet.c:543:8: error: 'lgamma_r' is missing exception specification 'throw()'
tagcoll2 2.0.14-2 Failed [GCC_ERROR] ../tagcoll/Implications.h:67:8: error: no viable overloaded '|='
talksoup.app 1.0alpha-32-g55b4d4e-2 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
task 2.5.1+dfsg-11 Failed [GCC_ERROR/CLANG_ERROR] CLI2.h:29:10: fatal error: 'string' file not found
tbb 2020.3-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-flifetime-dse=1'
tboot 1.9.12+hg20200718-1 Failed [GCC_ERROR/CLANG_ERROR] common/com.ccommon/acpi.c:36:10: fatal error: 'stdbool.h' file not found
tclcl 1.20-9 Failed [GCC_ERROR] tclcl.h:193:33: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
tcm 2.20+TSQD-6 Failed [GCC_ERROR] application.c:86:2: error: no matching function for call to 'XtAppSetErrorHandler'
tcpreen 1.4.4-2 Failed [GCC_ERROR] main.cpp:111:27: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
tcpspy 1.7d-15 Failed [GCC_ERROR] tcpspy.c:721:7: error: non-void function 'main' should return a value [-Wreturn-type]
tcptrack 1.4.2-2 Failed [GCC_ERROR] ./IPAddress.h:19:58: error: all paths through this function will call itself [-Werror,-Winfinite-recursion]
tdfsb 0.0.10-3 Failed [GCC_ERROR] tdfsb.c:2798:33: error: non-void function 'keyboard' should return a value [-Wreturn-type]
telegram-cli 1.3.1+git20160323.6547c0b21-2 Failed [GCC_ERROR] lua-tg.c:664:27: error: unused function 'get_peer' [-Werror,-Wunused-function]
tennix 1.1-3.2 Failed [CLANG_ERROR] clang: error: cannot specify -o when generating multiple output files
terminal.app 0.9.9-3 Failed [GCC_ERROR/CLANG_ERROR] :58:11: fatal error: 'objc/objc.h' file not found
tesseract 4.1.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./src/lstm/weightmatrix.cpp:296: undefined reference to `__kmpc_for_static_fini'
textedit.app 5.0-2 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
tgif 1:4.2.5-1.3 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
tgl 2.0.1+git20160323.ffb04cac-3 Failed [CLANG_ERROR] error: unknown warning option '-Wno-cast-function-type'; did you mean '-Wno-bad-function-cast'? [-Werror,-Wunknown-warning-option]
tgt 1:1.0.79-3 Failed [GCC_ERROR] ./log.h:93:9: error: 'dprintf' macro redefined [-Werror,-Wmacro-redefined]
thc-ipv6 3.6-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-freorder-blocks-and-partition'
theano 1.0.5+dfsg-1 Failed [GCC_ERROR/PYTHON_TRACEBACK] [0;31mException[0m: ('The following error happened while compiling the node', Elemwise{Composite{scalar_sigmoid((i0 + i1))}}[(0, 0)](Dot22.0, InplaceDimShuffle{x,0}.0), '\n', "Compilation failed (return status=1): /<<PKGBUILDDIR>>/jupyter_tmp/.pybuild/compiledir_Linux-4.19--cloud-amd64-x86_64-with-glibc2.29--3.8.6-64/tmpzf1sui_5/mod.cpp:463:27: error: non-constant-expression cannot be narrowed from type 'npy_intp' (aka 'long') to 'int' in initializer list [-Wc++11-narrowing]. int init_totals[2] = {V3_n0, V3_n1};. ^~~~~. /<<PKGBUILDDIR>>/jupyter_tmp/.pybuild/compiledir_Linux-4.19--cloud-amd64-x86_64-with-glibc2.29--3.8.6-64/tmpzf1sui_5/mod.cpp:463:27: note: insert an explicit cast to silence this issue. int init_totals[2] = {V3_n0, V3_n1};. ^~~~~. static_cast<int>( ). /<<PKGBUILDDIR>>/jupyter_tmp/.pybuild/compiledir_Linux-4.19--cloud-amd64-x86_64-with-glibc2.29--3.8.6-64/tmpzf1sui_5/mod.cpp:463:34: error: non-constant-expression cannot be narrowed from type 'npy_intp' (aka 'long') to 'int' in initializer list [-Wc++11-narrowing]. int init_totals[2] = {V3_n0, V3_n1};. ^~~~~. /<<PKGBUILDDIR>>/jupyter_tmp/.pybuild/compiledir_Linux-4.19--cloud-amd64-x86_64-with-glibc2.29--3.8.6-64/tmpzf1sui_5/mod.cpp:463:34: note: insert an explicit cast to silence this issue. int init_totals[2] = {V3_n0, V3_n1};. ^~~~~. static_cast<int>( ). /<<PKGBUILDDIR>>/jupyter_tmp/.pybuild/compiledir_Linux-4.19--cloud-amd64-x86_64-with-glibc2.29--3.8.6-64/tmpzf1sui_5/mod.cpp:475:9: error: non-constant-expression cannot be narrowed from type 'ssize_t' (aka 'long') to 'int' in initializer list [-Wc++11-narrowing]. V3_stride0, V3_stride1, . ^~~~~~~~~~. /<<PKGBUILDDIR>>/jupyter_tmp/.pybuild/compiledir_Linux-4.19--cloud-amd64-x86_64-with-glibc2.29--3.8.6-64/tmpzf1sui_5/mod.cpp:475:9: note: insert an explicit cast to silence this issue. V3_stride0, V3_stride1, . ^~~~~~~~~~. static_cast<int>( ). /<<PKGBUILDDIR>>/jupyter_tmp/.pybuild/compiledir_Linux-4.19--cloud-amd64-x86_64-with-glibc2.29--3.8.6-64/tmpzf1sui_5/mod.cpp:475:21: error: non-constant-expression cannot be narrowed from type 'ssize_t' (aka 'long') to 'int' in initializer list [-Wc++11-narrowing]. V3_stride0, V3_stride1, . ^~~~~~~~~~. /<<PKGBUILDDIR>>/jupyter_tmp/.pybuild/compiledir_Linux-4.19--cloud-amd64-x86_64-with-glibc2.29--3.8.6-64/tmpzf1sui_5/mod.cpp:475:21: note: insert an explicit cast to silence this issue. V3_stride0, V3_stride1, . ^~~~~~~~~~. static_cast<int>( ). /<<PKGBUILDDIR>>/jupyter_tmp/.pybuild/compiledir_Linux-4.19--cloud-amd64-x86_64-with-glibc2.29--3.8.6-64/tmpzf1sui_5/mod.cpp:476:4: error: non-constant-expression cannot be narrowed from type 'ssize_t' (aka 'long') to 'int' in initializer list [-Wc++11-narrowing]. 0, V5_stride1. ^~~~~~~~~~. /<<PKGBUILDDIR>>/jupyter_tmp/.pybuild/compiledir_Linux-4.19--cloud-amd64-x86_64-with-glibc2.29--3.8.6-64/tmpzf1sui_5/mod.cpp:476:4: note: insert an explicit cast to silence this issue. 0, V5_stride1. ^~~~~~~~~~. static_cast<int>( ). 5 errors generated.. ", '[Elemwise{Composite{scalar_sigmoid((i0 + i1))}}[(0, 0)](<TensorType(float64, matrix)>, <TensorType(float64, row)>)]')
theseus 3.3.0-8 Failed [CLANG_ERROR] error: unknown warning option '-Wformat-truncation=0' [-Werror,-Wunknown-warning-option]
thunderbird 1:78.4.0-1 OK [REASONS_NOT_COMPUTED]
tightvnc 1:1.3.10-1 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
timemon.app 4.2-2 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
tinyobjloader 2.0.0~rc5+dfsg1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
tlsh 3.4.4+20151206-1.3 Failed [GCC_ERROR] rand_tags.cpp:369:39: error: ordered comparison between pointer and zero ('int *' and 'int')
tmd710-tncsetup 1.13-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
torcs 1.3.7+dfsg-4 Failed [GCC_ERROR] driver.cpp:805:13: error: non-constant-expression cannot be narrowed from type 'double' to 'float' in initializer list [-Wc++11-narrowing]
tpm2-tools 4.3.0-1 Failed [CLANG_ERROR] error: unknown warning option '-Wbool-compare' [-Werror,-Wunknown-warning-option]
transfermii 1:0.6.1-4 Failed [GCC_ERROR] wiimotefunctions.c:41:10: error: cannot compile this static initializer yet
trilinos 12.14.1-5 Failed [SEGMENTATION_FAULT] dh_auto_test: error: cd obj-x86_64-linux-gnu && make -j1 test ARGS\+=-j1 returned exit code 2
troffcvt 1.04-24 Failed [UNKNOWN] XXX
tvc 5.0.3+git20151221.80e144e+dfsg-3 Failed [GCC_ERROR] Utils.cpp:318:16: error: variable-sized object may not be initialized
tvoe 0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
u-boot 2020.10+dfsg-1 Failed [GCC_ERROR] fast_spi.h:38:1: error: static_assert expression is not an integral constant expression
ucblogo 6.1-1 Failed [GCC_ERROR] main.c:105:5: error: void function 'logo_stop' should not return a value [-Wreturn-type]
udisks2 2.9.1-2 Failed [UNKNOWN] dh_auto_test: error: make -j4 check VERBOSE=1 returned exit code 2
uhub 0.4.1-3.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
uid-wrapper 1.2.4+dfsg1-1 Failed [GCC_ERROR] uid_wrapper.c:2077:10: error: static function 'libc_getgroups' is used in an inline function with external linkage [-Werror,-Wstatic-in-inline]
uim 1:1.8.8-6.1 Failed [GCC_ERROR] main.cpp:68:55: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
ukopp 4.9-1 Failed [GCC_ERROR] ukopp-4.9.cc:1277:42: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
ukui-power-manager 2.0.2-1 Failed [GCC_ERROR] gpm-manager.c:1233:3: error: void function 'gpm_manager_engine_close_notify_cb' should not return a value [-Wreturn-type]
ukui-screensaver 3.0.1-1 Failed [GCC_ERROR] fullbackgroundwidget.cpp:101:16: error: ordered comparison between pointer and zero ('int (*)(int, const struct sockaddr *, socklen_t)' (aka 'int (*)(int, const sockaddr *, unsigned int)') and 'int')
ukwm 1.2.0-1 Failed [GCC_ERROR] clutter-main.c:3692:46: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
umbrello 4:20.08.1-1 Failed [UNKNOWN] dh_auto_configure: error: cd obj-x86_64-linux-gnu && cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON -DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON -DCMAKE_INSTALL_RUNSTATEDIR=/run -DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=ON "-GUnix Makefiles" -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_INSTALL_LIBDIR=lib/x86_64-linux-gnu -DCMAKE_BUILD_TYPE=Debian -DCMAKE_INSTALL_SYSCONFDIR=/etc -DKDE_INSTALL_USE_QT_SYS_PATHS=ON -DBUILD_KF5=ON .. returned exit code 1
umockdev 0.14.4-1 Failed [UNKNOWN] dh_auto_test: error: make -j4 check VERBOSE=1 returned exit code 2
unar 1.10.1-2 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
unarr 1.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
unicap 0.9.12+repack20150328.0.git2c600ae-3 Failed [GCC_ERROR] dcam_juju_capture.c:286:12: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
unifont 1:13.0.03-1 OK [REASONS_NOT_COMPUTED]
uniutils 2.27-2 Failed [GCC_ERROR] unifuzz.c:109:44: error: non-void function 'EmitAllRanges' should return a value [-Wreturn-type]
unscd 0.53-1 Failed [GCC_ERROR] nscd.c:2448:9: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
upx-ucl 3.96-2 Failed [GCC_ERROR] ./../src/lzma-sdk/C/7zip/Compress/LZMA/LZMAEncoder.cpp:971:9: error: misleading indentation; statement is not part of the previous 'if' [-Werror,-Wmisleading-indentation]
urjtag 0.10+r2007-1.2 Failed [GCC_ERROR] ../../include/libiberty.h:589:12: error: expected parameter declarator
usermode 1.113-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./userhelper.c:241: undefined reference to `powl'
uwsgi 2.0.19.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
vdr-plugin-dvd 0.3.6~b03+cvs20090426.0013-28 Failed [GCC_ERROR] player-dvd.c:3083:33: error: non-constant-expression cannot be narrowed from type 'uint16_t' (aka 'unsigned short') to 'char' in initializer list [-Wc++11-narrowing]
vdr-plugin-epgsearch 2.4.0+git20191101-1 Failed [GCC_ERROR] epgsearchext.c:1427:53: error: ordered comparison between pointer and zero ('char *' and 'int')
vdr-plugin-fritzbox 1.5.3-9 Failed [TIMEOUT]
vdr-plugin-mp3 0.10.2-25 Failed [GCC_ERROR] data-mp3.c:46:30: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
vdr-plugin-osdserver 0.1.3-20 Failed [GCC_ERROR] ./osdobjects.h:59:19: error: ISO C++11 does not allow access declarations; use using declarations instead
vdr-plugin-xine 0.9.4-17 Failed [GCC_ERROR] xineDevice.c:1401:19: error: non-constant-expression cannot be narrowed from type 'int' to 'uchar' (aka 'unsigned char') in initializer list [-Wc++11-narrowing]
vdr 2.4.1-4.1 Failed [GCC_ERROR] recording.c:3028:17: error: ordered comparison between pointer and zero ('cUnbufferedFile *' and 'int')
verbiste 0.1.47-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
veyon 4.4.2+repack1-1 Failed [GCC_ERROR] ObjectManager.h:58:25: error: calling 'toObject' with incomplete return type 'QJsonObject'
vg 1.27.1+ds-1 Failed [CLANG_ERROR] error: invalid argument '-std=c++14' not allowed with 'C'
viewpdf.app 1:0.2dfsg1-7 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
vifm 0.10.1-4 Failed [GCC_ERROR] abbrevs/suite.c:5:1: error: use of undeclared identifier 'stic_setup_once_func'
visualboyadvance 1.8.0.dfsg-5 Failed [GCC_ERROR] ../Cheats.cpp:2498:5: error: non-constant-expression cannot be narrowed from type 'unsigned int' to 'u8' (aka 'unsigned char') in initializer list [-Wc++11-narrowing]
vmatch 2.3.1+dfsg-6 Failed [CLANG_ERROR] error: unknown warning option '-Wno-unused-but-set-variable'; did you mean '-Wno-unused-const-variable'? [-Werror,-Wunknown-warning-option]
vnstat 2.6-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>'
volumecontrol.app 0.8-1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
vsearch 2.15.0-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>'
vte2.91 0.62.0-3 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ./build-udeb/meson-private/tmpuf6cylq1/./build-udeb/meson-private/tmpuf6cylq1/testfile.cpp:17: undefined reference to `fdwalk'
vtk7 7.1.1+dfsg2-4 Failed [GCC_ERROR] XdmfDsmComm.cxx:55:18: error: ordered comparison between pointer and zero ('void *' and 'int')
vzquota 3.1-4 Failed [GCC_ERROR] quotaon.c:1002:7: error: variable 'ugid' is used uninitialized whenever '||' condition is true [-Werror,-Wsometimes-uninitialized]
w1retap 1.4.4-4 Failed [GCC_ERROR] owfile.c:1843:51: error: overlapping comparisons always evaluate to true [-Werror,-Wtautological-overlap-compare]
w9wm 0.4.2-8 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
wannier90 3.1.0+ds-4 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
warmux 1:11.04.1+repack2-4 Failed [GCC_ERROR] map/tile.cpp:676:30: error: non-constant-expression cannot be narrowed from type 'uint' (aka 'unsigned int') to 'uint16_t' (aka 'unsigned short') in initializer list [-Wc++11-narrowing]
wav2cdr 2.3.4-4 Failed [GCC_ERROR] ./chelp.h2: error: embedding a #include directive within macro arguments is not supported
wcslib 7.3.1+ds-1 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
wesnoth-1.14 1:1.14.13-1 Failed [CLANG_ERROR] error: invalid argument '-std=c++11' not allowed with 'C'
wfmath 1.0.2+dfsg1-14 Failed [GCC_ERROR] intersect.cpp:182:6: error: explicit specialization of 'Intersect<2>' after instantiation
whitedune 0.30.10-2.2 Failed [GCC_ERROR] dune1.rc.c:6548:109: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
wlcs 1.1.0+dfsg-7 Failed [GCC_ERROR] xfail_supporting_test_listener.cpp:173:25: error: loop variable 'name' of type 'const std::__cxx11::basic_string<char>' creates a copy from type 'const std::__cxx11::basic_string<char>' [-Werror,-Wrange-loop-construct]
wmcdplay 1.1-2 Failed [GCC_ERROR] wmcdplay.cc:356:85: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
wmdate 0.7-4.1 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
wmnet 1.06-1 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
wnn6-sdk 1.0.0-18 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
wp2latex 3.92-1 Failed [GCC_ERROR] ../atoms/include/stringa.h:173:23: error: friend declaration specifying a default argument must be a definition
wrapperfactory.app 0.1.0-5 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
wreport 3.23-2 Failed [GCC_ERROR] ../wreport/utils/tests.h:191:21: error: call to function 'operator<<' that is neither visible in the template definition nor found by argument-dependent lookup
wsclean 2.10.1-1 Failed [GCC_ERROR] parallelfor.h:75:16: error: object of type 'aocommon::Barrier' cannot be assigned because its copy assignment operator is implicitly deleted
wsjtx 2.2.2+repack-2 Failed [GCC_ERROR] f95: error: unrecognized command-line option ‘-fopenmp=libomp’; did you mean ‘-fopenmp-simd’?
wtdbg2 2.5-7 Failed [GCC_ERROR] ./wtdbg.h:1755:2: error: function definition is not allowed here
wvdial 1.61-5 Failed [GCC_ERROR] uniconfgen.h:323:19: error: no class named 'Iter' in 'UniConfGen'
wvstreams 4.6.1-15 Failed [GCC_ERROR] ./include/wvscatterhash.h:186:46: error: invalid use of non-static data member 'xstatus'
wxastrocapture 1.8.1+git20140821.796e1a1+dfsg-1 Failed [GCC_ERROR] wxWebcam/Atik16Cmd.cpp:282:34: error: non-constant-expression cannot be narrowed from type 'int' to '_byte' (aka 'unsigned char') in initializer list [-Wc++11-narrowing]
wxhexeditor 0.24+repack-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./src/HexDialogs.cpp:2771: undefined reference to `__kmpc_dispatch_next_4u'
xarclock 1.0-17 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xautolock 1:2.2-7 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xaw3d 1.5+E-18.3 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xcal 4.1-19 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xcb 2.4-6 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xcftools 1.0.7-6 Failed [UNKNOWN] XXX
xcircuit 3.9.73+dfsg.1-1 Failed [GCC_ERROR] tclxcircuit.c:8950:13: error: non-void function 'defaultscript' should return a value [-Wreturn-type]
xcolors 1.5a-8 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xcolorsel 1.1a-22 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xdelta3 3.0.11-dfsg-1 Failed [GCC_ERROR] testing/file.h:69:14: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
xdemineur 2.1.1-21 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xdiskusage 1.48-10.1 Failed [CONFIGURE_ERROR] configure: error: installation or configuration problem: C++ compiler cannot create executables.
xdu 3.0-20 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xevil 2.02r2-10.1 Failed [GCC_ERROR] serverping.cpp:352:1: error: C++ requires a type specifier for all declarations
xfaces 3.3-29 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xfce4-sensors-plugin 1.3.0-2 OK [REASONS_NOT_COMPUTED]
xfishtank 2.5-1 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xflip 1.01-28 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xfsprogs 5.6.0-1 Failed [CONFIGURE_ERROR] configure: error: LTO not supported by compiler.
xgammon 0.99.1128-4 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xgks 2.6.1+dfsg.2-10 Failed [GCC_ERROR] input.c:209:2: error: non-void function 'XgksIProcessXEvent' should return a value [-Wreturn-type]
xine-lib-1.2 1.2.10-4 Failed [GCC_ERROR] ../../include/xine/xineutils.h:211:63: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
xjdic 24-11 Failed [GCC_ERROR] xjdfrontend.c:236:16: error: a parameter list without types is only allowed in a function definition
xjig 2.4-14.2 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xkeycaps 2.47-7 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xlax 2.4-2 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xmille 2.0-13 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xmix 2.1-7 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
xmlcopyeditor 1.2.1.3-4.1 Failed [GCC_ERROR] myipc.cpp:49:4: error: cannot initialize a member subobject of type 'WXWidget' (aka '_GtkWidget *') with an rvalue of type 'wxIntPtr' (aka 'long')
xmltooling 3.1.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
xmms2 0.8+dfsg-20 Failed [UNKNOWN] XXX