-
Notifications
You must be signed in to change notification settings - Fork 8
/
scanlog-10.0.0-2020-05-01
1110 lines (1110 loc) · 147 KB
/
scanlog-10.0.0-2020-05-01
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-4 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 [CLANG_ERROR] clang: error: unsupported option '-fpcc-struct-return' for target 'x86_64-pc-linux-gnu'
9base 1:6-9 Failed [GCC_ERROR] n3.c: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)
abiword 3.0.2-10 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-1 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-6 Failed [GCC_ERROR] asv_ctl.c:1722:1: error: void function 'str2d_' should not return a value [-Wreturn-type]
acfax 981011-17 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
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-29.2 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 20200326-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"
adun.app 0.81-13 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
aegisub 3.2.2+dfsg-5 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-10 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
afnix 2.9.2-2 Failed [UNKNOWN] XXX
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-4 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]
altermime 0.3.10-11 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 8.1.0+r23-2 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/CLANG_ERROR] SDL_platform.h:179:10: fatal error: 'begin_code.h' file not found
antlr4-cpp-runtime 4.8+dfsg-2 Failed [GCC_ERROR/CLANG_ERROR] antlr4-common.h:8:10: fatal error: 'algorithm' file not found
ap51-flash 2019.0.1-2 Failed [TIMEOUT]
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>>'
apngdis 2.9-2 Failed [CLANG_ERROR] error: invalid argument '-std=c99' not allowed with 'C++'
apophenia 1.0+ds-8 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: ../.libs/libapophenia.so: undefined reference to `__atomic_compare_exchange'
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-move 4.2.27-6 Failed [GCC_ERROR] pkgcache.h:102:26: error: expected ';' at end of declaration list
apt 2.0.2 Failed [GCC_ERROR] include/apt-pkg/pkgcache.h:102:26: error: expected ';' at end of declaration list
aptitude 0.8.12-3 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: need libapt-pkg 0.7 or later
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]
arj 3.10.22-23 Failed [UNKNOWN] XXX
asc 2.6.1.0-6 Failed [GCC_ERROR] pgbutton.cpp:105:8: error: case value evaluates to 2147483649, which cannot be narrowed to type 'int' [-Wc++11-narrowing]
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-29 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'
asterisk-flite 3.0-3 Failed [GCC_ERROR] utils.h:786:15: error: blocks support disabled - compile with -fblocks or pick a deployment target that supports them
asterisk-opus 13.7+20171009-2 Failed [GCC_ERROR] utils.h:786:15: error: blocks support disabled - compile with -fblocks or pick a deployment target that supports them
asterisk 1:16.2.1~dfsg-2 Failed [GCC_ERROR/CLANG_ERROR] conftest.c:9:10: fatal error: 'ac_nonexistent.h' file not found
atlas 3.10.3-9 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
audacity 2.3.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] atomic:224: undefined reference to `__atomic_is_lock_free'
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-20.1 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]
ayatana-ido 0.4.90-1 Failed [GCC_ERROR] idomediaplayermenuitem.c:84:36: error: implicit conversion from enumeration type 'GtkStateType' to different enumeration type 'GtkStateFlags' [-Werror,-Wenum-conversion]
ayatana-indicator-application 0.5.3-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-messages 0.6.1-1 Failed [CLANG_ERROR] clang: error: -Wl,-Bsymbolic-functions: '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
bandwidthd 2.0.1+cvs20090917-11 Failed [CLANG_ERROR/CLANG_LD_ERROR] bandwidthd.c:715: undefined reference to `Credit'
barcode 0.99-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./code11.c:107: undefined reference to `rpl_calloc'
baresip 0.6.1-1 Failed [UNKNOWN] dh_install: error: missing files, aborting
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.5.00-1 Failed [GCC_ERROR] multind.h:19:14: error: blocks support disabled - compile with -fblocks or pick a deployment target that supports them
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.1-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-20 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
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.3-2 Failed [CLANG_ERROR] clang: error: unknown argument: '-fstack-clash-protection'
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:153: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.0-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
berusky2 0.10+git20170630-3 Failed [GCC_ERROR] kofola/game_logic.cpp:8094:12: error: ordered comparison between pointer and zero ('int *' and 'int')
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.2-1 Failed [GCC_ERROR] ../../src/mldap.c:122:3: error: used type 'typeof (((isc_refcount_t *)0)->refs)' (aka '_Atomic(int_fast32_t)') where arithmetic or pointer type is required
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-1 Failed [UNKNOWN] XXX
binutils-mingw-w64 8.9 Failed [UNKNOWN] XXX
binutils-z80 4 Failed [UNKNOWN] XXX
binutils 2.34-6 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.1 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-2 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 [GCC_ERROR/CLANG_ERROR] ../../blitz/bzconfig.h:82:10: fatal error: 'blitz/llvm/bzconfig.h' file not found
blktrace 1.2.0-5 Failed [CLANG_ERROR] clang: error: -Wl,-z,deb-canary-3f647cadf56541fb9513cb63ec370187: 'linker' input unused [-Werror,-Wunused-command-line-argument]
blobandconquer 1.11-dfsg+20-1.1 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 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.50-1.2 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-1 Failed [GCC_ERROR] rombios32start.S:75:3: error: invalid instruction mnemonic 'addr32'
bogl 0.1.18-14 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]
boinc 7.16.6+dfsg-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>'
boost1.67 1.67.0-17 Failed [UNKNOWN] dh_install: error: missing files, aborting
boost1.71 1.71.0-6 Failed [UNKNOWN] dh_install: error: missing files, aborting
bootpc 0.64-7 Failed [GCC_ERROR] ./log.h:6:15: error: redefinition of 'log' as different kind of symbol
bpftrace 0.9.4-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-disc-message.cbrasero-misc.c:115:11: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
briquolo 0.5.7-8 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-2 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-4 Failed [SEGMENTATION_FAULT] XXX
bzrtp 1.0.6-3 Failed [UNKNOWN] XXX
calculix-ccx 2.11-1 Failed [GCC_ERROR] u_free.c:44:3: error: non-void function 'u_free' should return a value [-Wreturn-type]
camera.app 0.8.0-12 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
canna 3.7p3-14 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'
castxml 0.3.3-3 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 "-GUnix Makefiles" -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_AUTOGEN_VERBOSE=ON -DCMAKE_INSTALL_LIBDIR=lib/x86_64-linux-gnu -DCastXML_INSTALL_DOC_DIR:STRING=/usr/share/doc/castxml -DLLVM_DIR=/usr/lib/llvm-4.0/cmake .. returned exit code 1
cataclysm-dda 0.E-2 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-4 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.9-1 Failed [UNKNOWN] dh_auto_test: error: make -j4 test VERBOSE=1 returned exit code 2
ccbuild 2.0.7+git20160227.c1179286-2 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.87+ds1-1 Failed [GCC_ERROR] ../src/lib_ccx/utility.h:41:5: error: expected parameter declarator
ccls 0.20190823.6-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 "-GUnix Makefiles" -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_AUTOGEN_VERBOSE=ON -DCMAKE_INSTALL_LIBDIR=lib/x86_64-linux-gnu -DCCLS_VERSION=0.20190823.6-1 -DCLANG_RESOURCE_DIR=/usr/include/clang/10 .. returned exit code 1
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
ceph 14.2.9-1 Failed [GCC_ERROR] channel.h:35:33: error: no matching constructor for initialization of 'std::lock_guard<std::mutex>'
cernlib 20061220+dfsg3-4.4 Failed [UNKNOWN] XXX
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-1 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-2 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] behaviorconfig.cpp:98:52: 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.4.0-3 Failed [GCC_ERROR] csd-xrandr-manager.c:2304:1: error: conflicting types for 'register_manager_dbus'
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]
cld2 0.0.0-git20150806-7 Failed [CLANG_ERROR] error: invalid argument '-std=c++98' not allowed with 'C'
clementine 1.4.0~rc1+git174-gcb64d9705+dfsg-1 Failed [GCC_ERROR] playlistundocommands.h:113: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 2.10+dfsg-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-foptimize-register-move'
cog 0.6.0-1 Failed [GCC_ERROR] cog-launcher.c:529:9: error: cannot jump from this goto statement to its label
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-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: strtok_r is not available. Please file a bugreport!
comedilib 0.11.0-1.1 Failed [UNKNOWN] XXX
compiz-boxmenu 1.1.12-2 Failed [UNKNOWN] : error: cannot specify -o when generating multiple output files
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]
connectome-workbench 1.4.2-1 Failed [GCC_ERROR] AlgorithmCiftiCorrelationGradient.cxx:789:28: error: non-constant-expression cannot be narrowed from type 'int64_t' (aka 'long') to 'int' in initializer list [-Wc++11-narrowing]
cp2k 6.1-3 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
cpio 2.13+dfsg-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./obj/gnu/../../gnu/xmalloc.c:100: undefined reference to `__muloti4'
cpl-plugin-amber 4.3.9+dfsg-2 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.6+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.1+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.3.5+dfsg-2 Failed [GCC_ERROR] xsh_model_io.c:691:35: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
cpluff 0.1.4+dfsg1-1 Failed [GCC_ERROR] cpluff.c:84:35: error: too many arguments provided to function-like macro invocation
crawl 2:0.24.0-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-4 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
cubemap 1.4.3-1 Failed [CLANG_ERROR] error: invalid argument '-std=gnu++11' not allowed with 'C'
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]
cura-engine 1:4.5.0-2 Failed [GCC_ERROR] layerPart.cpp:77:56: error: variable 'total_layers' must have explicitly specified data sharing attributes
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
d-itg 2.8.1-r1023-3 Failed [GCC_ERROR] traffic.cpp:415:35: error: ordered comparison between pointer and zero ('char *' and 'int')
dascrubber 1.1-1 Failed [UNKNOWN] : error: cannot specify -o when generating multiple output files
dazzdb 1.0+git20200115.d8adde7-2 Failed [UNKNOWN] : error: cannot specify -o when generating multiple output files
db5.3 5.3.28+dfsg1-0.6 Failed [UNKNOWN] XXX
dballe 8.6-1 Failed [GCC_ERROR] ./file.h:17:1: error: 'File' defined as a class here but previously declared as a struct; this is valid, but may result in linker errors under the Microsoft C++ ABI [-Werror,-Wmismatched-tags]
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
dbusada 0.5.0-4 Failed [CLANG_ERROR] clang: error: unsupported option '--dump-ada-spec'
dbuskit 0.1.1-3 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: "could not find runtime.h. DBusKit requires gnustep-base >=1.20."
dcap 2.47.12-2 Failed [GCC_ERROR] ./util.h:14:12: error: expected parameter declarator
dclock 2.2.2-12 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
dds 2.9.0-7 Failed [CLANG_ERROR] error: unknown warning option '-Wnoexcept' [-Werror,-Wunknown-warning-option]
deal.ii 9.1.1-10 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
deepin-deb-installer 5.0.0-1 Failed [GCC_ERROR] pkgcache.h:102:26: error: expected ';' at end of declaration list
desmume 0.9.11-3 Failed [GCC_ERROR] gfx3d.cpp:1218:3: error: non-constant-expression cannot be narrowed from type 'int' to 'u8' (aka 'unsigned char') in initializer list [-Wc++11-narrowing]
devil 1.7.8-10 Failed [CLANG_ERROR] error: invalid argument '-std=gnu99' not allowed with 'C++'
dicom3tools 1.00~20190724083540-1 Failed [GCC_ERROR] ./Imakefile:177:3: error: invalid preprocessing directive
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-1 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]
doomsday 2.2.2+ds1-1 Failed [UNKNOWN] XXX
doxygen 1.8.17-1 Failed [GCC_ERROR/CLANG_ERROR] parserintf.h:23:10: fatal error: 'memory' 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
dspdfviewer 1.15.1-1 Failed [GCC_ERROR] moc_dspdfviewer.cpp:133:68: error: redundant parentheses surrounding declarator [-Werror,-Wredundant-parens]
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)
dune-pdelab 2.6~20180302-2 Failed [GCC_ERROR] owneroverlapcopy.hh:292:18: error: assigning to 'SolverCategory::Category' from incompatible type 'Dune::SolverCategory'
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] dviconv.c:221:6: error: non-void function 'dviconv' should return a value [-Wreturn-type]
dvi2ps 5.1j-1.3 Failed [GCC_ERROR] virfont.c:320:2: error: non-void function 'vf_mc' 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.1-1 Failed [GCC_ERROR] local_state_space_iteration_2.cc:97:35: error: reference to local binding 'ii1' declared in enclosing function 'ss2Iteration_pruning'
ebook-speaker 5.3-2 Failed [CLANG_ERROR] clang: error: unknown argument: '-faggressive-loop-optimizations'
eccodes 2.17.0-2 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)
edb-debugger 1.0.0-1 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
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]
elektroid 1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: connector.o: undefined reference to symbol 'ceil@@GLIBC_2.2.5'
elfutils 0.176-1.1 Failed [CONFIGURE_ERROR] configure: error: gcc with GNU99 support required
elogind 241.3-1+debian3 Failed [UNKNOWN] dh_auto_test: error: cd build && LC_ALL=C.UTF-8 MESON_TESTTHREADS=4 ninja test returned exit code 1
elpa 2016.05.001-6 Failed [CLANG_ERROR] clang: error: src/mod_precision.f90: 'compiler' input unused in cpp mode [-Werror,-Wunused-command-line-argument]
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)
endless-sky 0.9.8-1 Failed [GCC_ERROR/CLANG_ERROR] SDL_platform.h:179:10: fatal error: 'begin_code.h' file not found
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-7 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.4+dfsg-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
eso-midas 19.02pl1.1-1 Failed [GCC_ERROR/LD_ERROR/CLANG_ERROR/CLANG_LD_ERROR] collect2: error: ld returned 1 exit status
espeakedit 1.48.03-7 Failed [GCC_ERROR] espeakedit.cpp:314:186: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
esys-particle 2.3.5+dfsg1-4 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 [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
evince 3.36.0-2 Failed [GCC_ERROR] common/unarr.c:106:22: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
evolution-data-server 3.36.2-1 Failed [UNKNOWN] /<<PKGBUILDDIR>>/obj-x86_64-linux-gnu/src/libedataserverui/tmp-introspectakc_jat5/EDataServerUI-1.2: error while loading shared libraries: libebackend-1.2.so.10: cannot open shared object file: No such file or directory
evolver 2.70+ds-4 Failed [GCC_ERROR/CLANG_ERROR] :../../../src/include.h61::1061:: 10: fatal error: fatal error: 'quadmath.h' file not found
exodusii 6.02.dfsg.1-8 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
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]
f2j 0.8.1+dfsg-4 Failed [CLANG_ERROR] clang: error: clang frontend command failed due to signal (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.2 Failed [UNKNOWN] dh_auto_test: error: make -j4 test VERBOSE=1 returned exit code 2
faketime 0.9.7-3 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 18-3 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]
fbpanel 7.0-4 Failed [UNKNOWN] XXX
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-1 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
ffmpegfs 1.98-3 Failed [GCC_ERROR] ./logging.h:321:99: error: cannot pass object of non-trivial type 'std::__cxx11::basic_string<char>' through variadic function; call will abort at runtime [-Wnon-pod-varargs]
fftw3 3.3.8-2 Failed [CONFIGURE_ERROR] configure: error: gcc 4.6 or later required for quad precision support
fim 0.5.3-2 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.5.33220.ds4-1 Failed [GCC_ERROR/CLANG_ERROR] libtool.m4: error: problem compiling CXX test program
firefox-esr 68.7.0esr-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: compiler is incompatible with sanitize options
fis-gtm 6.3-007-1 Failed [GCC_ERROR] dm_start.s:18:2: error: unknown directive
flamp 2.2.05-1 Failed [GCC_ERROR] flamp.cxx:841:8: error: ordered comparison between pointer and zero ('void *' and 'int')
flatbuffers 1.11.0+dfsg1-1.3 Failed [GCC_ERROR] flatbuffers.h:1720:25: error: definition of implicit copy constructor for 'TableKeyComparator<reflection::Object>' is deprecated because it has a user-declared copy assignment operator [-Werror,-Wdeprecated-copy]
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:2019.1.1+dfsg-2 Failed [GCC_ERROR/CLANG_ERROR] js.h:28:10: fatal error: 'string' file not found
floatbg 1.0-28 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
fltk1.1 1.1.10-26 Failed [GCC_ERROR] menubar.cxx:139:28: error: non-constant-expression cannot be narrowed from type 'Fl_Labeltype' to 'uchar' (aka 'unsigned char') in initializer list [-Wc++11-narrowing]
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-4 Failed [UNKNOWN] /bin/bash: git: command not found
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)
fparserc++ 4.5.2-2 Failed [GCC_ERROR/CLANG_ERROR] mpfr/MpfrFloat.cc:3:10: fatal error: 'mpfr.h' file not found
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-2 Failed [CLANG_ERROR] error: invalid argument '-std=gnu++11' not allowed with 'C'
freebsd-glue 0.2.22 Failed [CLANG_ERROR] error: unknown warning option '-Werror=maybe-uninitialized'; did you mean '-Werror=uninitialized'? [-Werror,-Wunknown-warning-option]
freebsd-libs 10.3~svn296373-10 Failed [GCC_ERROR] ./libutil.h:62:9: error: unknown type name '__size_t'; did you mean '__ssize_t'?
freecontact 1.0.21-7 Failed [CLANG_ERROR] clang: error: unsupported option '--help=optimizers'
freefem++ 3.61.1+dfsg1-5 Failed [GCC_ERROR] lg.ypp:444:20: error: no matching function for call to 'make_pair'
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-2 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-56 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
fweb 1.62-13 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'?
gabedit 2.5.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./src/Spectrum/NMRSpectrum.c:725: undefined reference to `__kmpc_for_static_init_4'
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]
gargoyle-free 2011.1b-1 Failed [CLANG_ERROR] error: invalid argument '-std=gnu++98' not allowed with 'C'
gbatnav 1.0.4cvs20051004-5.1 Failed [GCC_ERROR] play.c:511:3: error: non-void function 'lookup_funcion' should return a value [-Wreturn-type]
gbsplay 0.0.93-3 Failed [UNKNOWN] XXX
gcc-10-cross-ports 6 Failed [GCC_ERROR/LD_ERROR] conftest.c:72: undefined reference to `getexecname'
gcc-10-cross 7 Failed [GCC_ERROR/LD_ERROR] conftest.c:(.text.startup+0x7): undefined reference to `getexecname'
gcc-9-cross-ports 18 Failed [GCC_ERROR/LD_ERROR] conftest.c:72: undefined reference to `getexecname'
gcc-9-cross 21 Failed [GCC_ERROR/LD_ERROR] conftest.c:72: undefined reference to `getexecname'
gcc-avr 1:5.4.0+Atmel3.6.1-2 Failed [GCC_ERROR] ../../gcc/gcc/config/elfos.h:102:25: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
gcc-h8300-hms 1:3.4.6+dfsg2-4.1 Failed [UNKNOWN] XXX
gcc-mingw-w64 22 Failed [UNKNOWN] XXX
gcin 2.8.8+dfsg1-1 Failed [GCC_ERROR/CLANG_ERROR] ./gcin-imcontext-qt.h:1:10: fatal error: 'QApplication' file not found
gcl 2.6.12-95 Failed [UNKNOWN] XXX
gdb 9.1-3 Failed [UNKNOWN] XXX
gdbm 1.18.1-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./diet-build/src/../../src/findkey.c:168: undefined reference to `bcmp'
gdis 0.90-5 Failed [GCC_ERROR] grid.c:61:1: error: void function 'grid_application_set' should not return a value [-Wreturn-type]
geant321 1:3.21.14.dfsg-11 Failed [UNKNOWN] XXX
gecode 6.2.0-3 Failed [GCC_ERROR] ./gecode/set/int/weights.hpp:127:14: error: no viable overloaded '='
geeqie 1:1.5.1-9 Failed [GCC_ERROR] layout_image.c:398:25: error: using the result of an assignment as a condition without parentheses [-Werror,-Wparentheses]
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-1 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+git20180508.a9c14a6+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
gfpoken 1-2 Failed [GCC_ERROR] main.c:681:3: error: non-void function 'leveldraw_drag_end' should return a value [-Wreturn-type]
ghdl 0.37+dfsg-1 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]
giac 1.5.0.87+dfsg1-4 Failed [GCC_ERROR] Graph.cc:550:24: error: non-constant-expression cannot be narrowed from type 'double' to 'GLfloat' (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)
glib2.0 2.64.2-1 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-5 Failed [GCC_ERROR] misc.c:294:2: error: non-void function 'uninitialize_common' should return a value [-Wreturn-type]
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-boxes 3.36.3-1 Failed [GCC_ERROR] src/25a6634@@gnome-boxes@exe/vm-configurator.c:1822:2: error: non-void function 'boxes_vm_configurator_get_sound_model' should return a value [-Wreturn-type]
gnome-builder 3.36.0-3 Failed [GCC_ERROR] ../src/plugins/buildui/gbp-buildui-config-view-addin.c:395:19: error: declaration shadows a variable in the global scope [-Werror,-Wshadow]
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.16.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]
gnumail 1.3.0-1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
gnustep-back 0.27.0-2 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
gnustep-base 1.26.0-7 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.27.0-5 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31: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]
goldendict 1.5.0~rc2+git20190930+ds-2 Failed [BUILDDEPS] E: apt-cache returned no information about goldendict source
gomoku.app 1.2.9-4 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
goo 0.155+ds-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./c/g2c/../grt.c:1047: undefined reference to `_CALL0'
google-perftools 2.7-1 Failed [UNKNOWN] XXX
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-4 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]
gramophone2 0.8.13a-3.1 Failed [GCC_ERROR] midifile.c:159:3: error: non-void function 'readheader' should return a value [-Wreturn-type]
granule 1.4.0-7-9 Failed [GCC_ERROR] ./GrappConf.h:31:7: error: forward declaration of class cannot have a nested name specifier
grass 7.8.2-1 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ld: /<<PKGBUILDDIR>>/dist.x86_64-pc-linux-gnu/lib/libgrass_gmath.7.8.so: undefined reference to `__kmpc_reduce'
grfcodec 6.0.6-4 Failed [GCC_ERROR] src/command.cpp:306:8: error: case value evaluates to -1, which cannot be narrowed to type 'uint' (aka 'unsigned int') [-Wc++11-narrowing]
gridengine 8.1.9+dfsg-9 Failed [GCC_ERROR] ../libs/gdi/sge_gdi_ctx.c:1054:19: error: no member named '__dprintf_chk' in 'struct sge_csp_path_class_str'
gridlock.app 1.10-5 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
grml2usb 0.17.0 Failed [GCC_ERROR] mbr.S:50:2: error: invalid instruction mnemonic 'lret'
gromacs 2020.2-2 Failed [UNKNOWN] XXX
growl-for-linux 0.8.5-7 Failed [GCC_ERROR] balloon.c:160:72: error: function definition is not allowed here
grpc 1.26.0-3 Failed [CLANG_ERROR/PYTHON_TRACEBACK] error: invalid argument '-std=gnu99' not allowed with 'C++'
grr.app 1.0-1 Failed [TIMEOUT]
grub2 2.04-7 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: could not force soft-float
grub 0.97-75 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: GRUB requires GAS .code16 addr32 support; upgrade your binutils
gsequencer 3.2.13-1 Failed [GCC_ERROR] ags/plugin/ags_lv2_turtle_parser.c:1059:15: error: variable 'tmp' is used uninitialized whenever 'if' condition is false [-Werror,-Wsometimes-uninitialized]
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]
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]
gtksourceview2 2.10.5-3 Failed [TIMEOUT]
guitarix 0.39.0+dfsg1-2 Failed [GCC_ERROR] ../src/headers/gx_system.h:135:12: error: cannot initialize a parameter of type 'void **' with an rvalue of type 'typeof ((oldv)) *' (aka '_jack_session_event **')
gwama 2.2.2+dfsg-2 Failed [GCC_ERROR] gammaf.cpp:65:8: error: 'gamma' is missing exception specification 'throw()'
gworkspace 0.9.4-2 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file 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-1 Failed [UNKNOWN] XXX
haskell-dbus 1.2.7-1 Failed [UNKNOWN] XXX
haskell-ncurses 0.2.16-3 Failed [UNKNOWN] XXX
haskell-thyme 0.3.5.5-4 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
ho22bus 0.9.1-2 Failed [BUILDDEPS] W: Unable to locate package ho22bus
holotz-castle 1.3.14-9 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.3+dfsg0-2 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-3 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.10.2-3 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>'
httraqt 1.4.9-1 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
i2pd 2.31.0-1 Failed [UNKNOWN] dh_auto_test: error: make -j4 test returned exit code 2
ibutils 1.5.7+0.2.gbd7e502-2 Failed [GCC_ERROR] ibissh_wrap.cpp:644:77: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
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-16 Failed [GCC_ERROR] ifhp.c:1061:43: error: unused parameter 'infovar' [-Werror,-Wunused-parameter]
igor 1.4.0+dfsg-1 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
infinipath-psm 3.3+20.604758e7-6 Failed [GCC_ERROR] ptl.c:539:1: error: unused function 'ips_lock_shared_context' [-Werror,-Wunused-function]
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.2-dfsg1-9 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'
intel-compute-runtime 20.13.16352-1 Failed [GCC_ERROR] program_info_from_patchtokens.cpp:21:21: error: loop variable 'kernel' of type 'const NEO::PatchTokenBinary::KernelFromPatchtokens' creates a copy from type 'const NEO::PatchTokenBinary::KernelFromPatchtokens' [-Werror,-Wrange-loop-construct]
intel-graphics-compiler 1.0.3627-2 Failed [GCC_ERROR] MetaDataValue.h:81:20: error: cannot initialize return object of type 'llvm::MDNode *' with an lvalue of type 'llvm::Metadata *'
intel-mediasdk 19.4.0-1 Failed [GCC_ERROR] mfx_dispatch_test_main.cpp:48:12: error: redefinition of 'fgets'
inventor 2.1.5-10-21 Failed [GCC_ERROR] ppp.c++:630:1: error: C++ requires a type specifier for all declarations
iotjs 1.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
ipmctl 02.00.00.3759+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
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'
itksnap 3.6.0-5 Failed [GCC_ERROR] SliceWindowInteractionDelegateWidget.cxx:126:30: error: non-constant-expression cannot be narrowed from type 'unsigned int' to 'GLint' (aka 'int') in initializer list [-Wc++11-narrowing]
ivtools 1.2.11a3-1 Failed [UNKNOWN] XXX
jackeq 0.5.9-3 Failed [GCC_ERROR] main.c:251:6: error: conflicting types for 'getSettings'
jellyfish 2.3.0-4 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.1.1+ds-1 Failed [GCC_ERROR] f95: error: unrecognized command line option ‘-fopenmp=libomp’; did you mean ‘-fopenmp-simd’?
json-c 0.13.1+dfsg-7 Failed [GCC_ERROR] json_object.c:701:26: error: implicit conversion from 'long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Werror,-Wimplicit-int-float-conversion]
k2pdfopt 2.51+ds-1 Failed [GCC_ERROR] ocrtess.c:70:6: error: conflicting types for 'ocrtess_lang_default'
kannel-sqlbox 0.7.2-5 Failed [GCC_ERROR] sqlbox_mssql.c:109:9: error: non-void function 'mssql_fetch_msg' should return a value [-Wreturn-type]
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]
kcm-fcitx 0.5.5-2 Failed [GCC_ERROR] skinpage.cpp:134:10: error: case value evaluates to 2401319027, which cannot be narrowed to type 'int' [-Wc++11-narrowing]
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 Failed [GCC_ERROR] purgatory/arch/i386/entry32-16.S:23:2: error: unknown directive
kino 1.3.4+dfsg0-1 Failed [GCC_ERROR] page_capture.cc:1649:12: error: non-constant-expression cannot be narrowed from type 'unsigned long' to '__syscall_slong_t' (aka 'long') in initializer list [-Wc++11-narrowing]
kinput2 3.1-13 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
kitty 0.17.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
klibc 2.0.7-1 Failed [GCC_ERROR/CLANG_ERROR] stdarg.h:9:15: fatal error: 'stdarg.h' file not found
klystrack 0.20171212-4 Failed [GCC_ERROR/CLANG_ERROR] src/action.c:33:10: fatal error: 'version.h' file not found
kmer 0~20150903+r2013-7 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-26 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
kraft 0.90-2 Failed [GCC_ERROR] datemodel.cpp:350:17: error: out-of-line declaration of a member must be a definition [-Wout-of-line-declaration]
kraptor 0.0.20040403+ds-2 Failed [GCC_ERROR] src/game.c:416:3: error: function definition is not allowed here
krita 1:4.2.9+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-3 Failed [CLANG_ERROR] clang: error: no such file or directory: '/Yc/<<PKGBUILDDIR>>/obj-x86_64-linux-gnu/src/libkst/kstcore_pch.h'
kvmtool 0.20170904-1.1 Failed [GCC_ERROR] x86/bios/e820.c:36:15: error: unexpected token in argument list
kwave 19.08.1-1 Failed [GCC_ERROR] MultiTrackReader.h:61:24: error: 'QList' is a private member of 'QList<Kwave::SampleReader *>'
kylin-burner 3.0.7-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-2 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-2 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
lastpass-cli 1.3.3-3 Failed [CLANG_ERROR] clang: error: unknown argument: '-fno-aggressive-loop-optimizations'
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]
latencytop 0.5 Failed [GCC_ERROR] fsync.c:66:4: error: non-void function 'chain_file' should return a value [-Wreturn-type]
ldapvi 1.7-10 Failed [GCC_ERROR] ldapvi.c:1468:30: error: non-void function 'copy_sasl_output' should return a value [-Wreturn-type]
le 1.16.5-0.1 Failed [BUILDDEPS] DEPS
lebiniou 3.41-1 Failed [GCC_ERROR/CLANG_ERROR] SDL_platform.h:179:10: fatal error: 'begin_code.h' file not found
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]
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
libapt-pkg-perl 0.1.36 Failed [GCC_ERROR] pkgcache.h:102:26: error: expected ';' at end of declaration list
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.4-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.6.3-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-1 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-22 2.2.5-2.1 Failed [GCC_ERROR] [34] [35] [36]capture.c:324:9: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
libdeflate 1.5-3 Failed [UNKNOWN] : Could not read profile default.profdata: No such file or directory
libdevel-cover-perl 1.33-1 Failed [UNKNOWN] dh_auto_test: error: make -j4 test TEST_VERBOSE=1 returned exit code 2
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-1 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
libept 1.2 Failed [GCC_ERROR] pkgcache.h:102:26: error: expected ';' at end of declaration list
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
libffi 3.3-4 Failed [CLANG_ERROR] clang: error: unsupported option '-print-multi-os-directory'
libfile-map-perl 0.66-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.8-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
libgdal-grass 3.0.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-3 Failed [GCC_ERROR] TagHeader.cpp:188:31: error: addition of default argument on redeclaration makes this constructor a default constructor
libghemical 3.0.0-4.2 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]
libgmpada 1.3-2 Failed [CLANG_ERROR] clang: error: unsupported option '--dump-ada-spec'
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
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]
libgroove 4.3.0-5 Failed [GCC_ERROR/CLANG_ERROR] SDL_platform.h:179:10: fatal error: 'begin_code.h' file not found
libgtkdatabox 1:0.9.3.1-1 Failed [UNKNOWN] XXX
libhdf4 4.2.15-1 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
libhugetlbfs 2.22-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: 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
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)
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.15.0-3 Failed [GCC_ERROR] ../../include/ixion/model_context.hpp:64:20: 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]
libkiwix 3.1.1-1 Failed [CLANG_ERROR] clang: error: -Wl,--start-group: 'linker' input unused [-Werror,-Wunused-command-line-argument]
libkkc 0.3.5-7 Failed [UNKNOWN] XXX
libktorrent 2.1.1-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]
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.13-1 Failed [GCC_ERROR/CLANG_ERROR] have_d64.in:2:2: error: GNU decimal type extension not supported
libmawk 1.0.2-2 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-1 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-2 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.6-1 Failed [GCC_ERROR] object.c:373:19: error: no member named '__builtin___snprintf_chk' in 'struct obj_ops'
libomxalsa 0.1-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: POSIX threads support is required
libomxcamera 0.1-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>'
libomxfbdevsink 0.1-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>'
libomxil-bellagio 0.9.3-4.1 Failed [GCC_ERROR] omx_base_component.c:1261:17: error: implicit conversion from enumeration type 'enum OMX_INDEXVENDORTYPE' to different enumeration type 'OMX_INDEXTYPE' (aka 'enum OMX_INDEXTYPE') [-Werror,-Wenum-conversion]
libomxmad 0.1-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: POSIX threads support is required
libomxvideosrc 0.1-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>'
libomxvorbis 0.1-3 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>'
libomxxvideo 0.1-3 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: POSIX threads support is required
liboping 1.10.0-3 Failed [GCC_ERROR] liboping.c:103:10: error: 'dprintf' macro redefined [-Werror,-Wmacro-redefined]
liborcus 0.15.4-2 Failed [GCC_ERROR] model_context.hpp:64:20: error: unknown type name 'nullptr_t'; did you mean 'std::nullptr_t'?
libpsm2 11.2.86-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-2 Failed [GCC_ERROR] pwiz/data/common/BinaryIndexStream.cpp:159:15: error: cannot assign to non-static data member within const member function 'operator[]'
libqapt 3.0.5-1 Failed [GCC_ERROR] pkgcache.h:102:26: error: expected ';' at end of declaration list
libqb 1.0.5-1 Failed [GCC_ERROR] _syslog_override.c:#define add_tcase_select(cnt) JOIN(add_tcase_, cnt)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.13-1 Failed [GCC_ERROR] ../ratbagd/ratbagd-json.c:536:3: error: cannot jump from this goto statement to its label
libraw 0.19.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./src/libraw_cxx.cpp:3422: undefined reference to `__kmpc_for_static_fini'
librcsb-core-wrapper 1.005-8 Failed [UNKNOWN] XXX
librdkafka 1.3.0-1 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '-specs=/usr/share/dpkg/no-pie-compile.specs' [-Werror,-Wunused-command-line-argument]
librecad 2.1.3-1.2 Failed [CLANG_ERROR] clang: error: unknown argument: '-fext-numeric-literals'
libreoffice 1:6.4.4~rc1-1 Failed [GCC_ERROR] formulagroupcl.cxx:1340:14: error: 'sc::opencl::OpAverage' is an incomplete type
libreswan 3.29-2 Failed [GCC_ERROR] libreswan_exit_log_errno.c:30:17: error: implicit conversion from enumeration type 'enum pluto_exit_code' to different enumeration type 'enum rc_type' [-Werror,-Wenum-conversion]
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
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]
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.0-1 Failed [CLANG_ERROR] clang: error: no such file or directory: 'temp.aux'
libsemanage 3.0-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
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
libsrtp2 2.3.0-4 Failed [UNKNOWN] ./rtpw: error while loading shared libraries: libsrtp2.so.1: cannot open shared object file: No such file or directory
libss7 2.0.0-3 Failed [GCC_ERROR] mtp3.c:1947:31: error: equality comparison with extraneous parentheses [-Werror,-Wparentheses-equality]
libssw 1.1-9 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.04-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 [UNKNOWN] XXX
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
libtorrent-rasterbar 1.2.5-1 Failed [CLANG_ERROR] clang: error: clang frontend command failed due to signal (use -v to see invocation)
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 [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
libvmime 0.9.2-5 Failed [GCC_ERROR/CLANG_ERROR] base.hpp:28:10: fatal error: 'string' file not found
libwebsockets 3.2.1-3 Failed [CLANG_ERROR] error: unknown warning option '-Werror=format-overflow'; did you mean '-Werror=shift-overflow'? [-Werror,-Wunknown-warning-option]
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
libwx-scintilla-perl 0.39-4 Failed [UNKNOWN] XXX
libxs-parse-sublike-perl 0.07-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.4+dfsg-3 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
liggghts 3.8.0+repack1-5 Failed [GCC_ERROR] finish.cpp:722:40: error: ordered comparison between pointer and zero ('int *' and 'int')
lilo 1:24.2-5 Failed [GCC_ERROR] edit.c:195:31: error: initializer element is not a compile-time constant
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] clang: error: unknown argument: '-fabi-version=6'
linpsk 1.3.5-1.1 Failed [GCC_ERROR] gui/crxdisplay.cpp:81:16: error: ordered comparison between pointer and zero ('Input *' and 'long')
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]
lldpad 1.0.1+git20200210.2022b0c-1 Failed [GCC_ERROR] lldp_evb_cmds.c:188:39: error: implicit conversion from enumeration type 'lldp_cmd' to different enumeration type 'cmd_status' [-Werror,-Wenum-conversion]
llvm-toolchain-6.0 1:6.0.1-14 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
llvmlite 0.32.0-1 Failed [TIMEOUT]
log4cpp 1.1.3-1 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]
lomiri-api 0.1.0-5 Failed [GCC_ERROR] GObjectMemory_test.cpp:232:38: error: cannot pass object of non-trivial type 'internal::GlibAssigner<unique_ptr<char, GlibDeleter<gchar> > >' through variadic function; call will abort at runtime [-Wnon-pod-varargs]
looking-glass 0+b1-4 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
looptools 2.8-1 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
loqui 0.6.4-3 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>'
lusernet.app 0.4.3-1 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
lwip 2.1.2+dfsg1-6 Failed [GCC_ERROR] api_msg.c:982:25: error: equality comparison with extraneous parentheses [-Werror,-Wparentheses-equality]
lwipv6 1.5a-5 Failed [GCC_ERROR] ../../../../ports/unix/netif/vdeif.c:485:3: error: non-void function 'vdeif_streampkt_input' should return a value [-Wreturn-type]
lwm 1.2.2-6 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
lynkeos.app 3.3+dfsg1-2 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
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'
mandos 1.8.11-1 Failed [GCC_ERROR] plugins.d/password-prompt.c:119:51: error: function definition is not allowed here
mapsembler2 2.2.4+dfsg-3 Failed [GCC_ERROR] ./GraphOutput.h:51:11: error: redefinition of 'hash<unsigned __int128>'
mariadb-10.3 1:10.3.22-1 Failed [GCC_ERROR] channel.h:35:33: error: no matching constructor for initialization of 'std::lock_guard<std::mutex>'
mate-settings-daemon 1.24.0-2 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-8 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]
mclibs 20061220+dfsg3-3.1 Failed [UNKNOWN] XXX
mdm 0.1.3-2.1 Failed [CLANG_ERROR] clang: error: cannot specify -o when generating multiple output files
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 2.1.47 Failed [GCC_ERROR] update-menus.cc:947:30: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
mercator 0.3.3-5 Failed [GCC_ERROR] polygon_intersect.h:667:37: error: no member named 'm_orient' in 'WFMath::Polygon<2>'
mes 0.22-1 Failed [GCC_ERROR/SEGMENTATION_FAULT] checking for cc is Mes C....config.c:2:2: error: no mesc
mgba 0.7.0-1 Failed [GCC_ERROR] cli-debugger.c:156:23: error: no member named '__printf_chk' in 'struct CLIDebuggerBackend'
mgdiff 1.0-30 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
mgp 1.13a+upstream20090219-11 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
midori 7.0-2.1 Failed [TIMEOUT]
milkytracker 1.02.00+dfsg-2 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 7.0.0-4 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-4 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-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./MLV/input_box.c:883: undefined reference to `goUpInHistory_NTS'
mmseqs2 11-e1a1c+ds-2 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 **'
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.18-1 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
mpich 3.4~a2+really3.3.2-1 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
mrboom 4.9-1 Failed [GCC_ERROR/CLANG_ERROR] SDL_platform.h:179:10: fatal error: 'begin_code.h' file not found
mrs 6.0.5+dfsg-7 Failed [UNKNOWN] XXX
mrtrix 0.2.13-2 Failed [GCC_ERROR] lib/file/dicom/select_cmdline.cpp:118:44: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
msxpertsuite 5.8.6-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./debian/build/libmass/./libmass/Trace.cpp:1535: undefined reference to `__kmpc_for_static_init_4'
muffin 4.4.3-1 Failed [GCC_ERROR] clutter-main.c:3719:46: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
mumps 5.2.1-2 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
muon 4:5.8.0-1 Failed [GCC_ERROR] pkgcache.h:102:26: error: expected ';' at end of declaration list
mydumper 0.9.5-1.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: CMakeFiles/mydumper.dir/mydumper.c.o: undefined reference to symbol 'ceilf@@GLIBC_2.2.5'
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]
nas 1.9.4-6 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
nbdkit 1.18.3-1 Failed [GCC_ERROR] main.c:116:2: error: embedding a #include directive within macro arguments is not supported
ncap 1.9.2-6 Failed [GCC_ERROR] asprintf.c:35:30: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
ncl 6.6.2-1 Failed [CLANG_ERROR] clang: error: no such file or directory: '1'
nestopia 1.50-1 Failed [GCC_ERROR] source/core/NstCpu.cpp:343:6: error: non-constant-expression cannot be narrowed from type 'unsigned int' to 'Nes::byte' (aka 'unsigned char') in initializer list [-Wc++11-narrowing]
net-cpp 2.2.1+dfsg1-4 Failed [GCC_ERROR] streaming_request.h:47:22: error: 'core::net::http::StreamingRequest::execute' hides overloaded virtual function [-Werror,-Woverloaded-virtual]
netmaze 0.81+jpg0.82-16 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
netplan.io 0.99-1 Failed [CLANG_ERROR] clang: error: -Wl,-z,relro: '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
netxx 0.3.2-2 Failed [GCC_ERROR] Netbuf.h:116:5: error: use of undeclared identifier 'setp'
newsboat 2.19-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+git20180104+6561cf6-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
nn 6.7.3-12 Failed [UNKNOWN] make[3]: *** No rule to make target ' articles.h', needed by 'nn.o'. Stop.
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 440.82-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.23-1 Failed [GCC_ERROR/CLANG_ERROR] ./config/cf/Imake.tmpl:2081:10: fatal error: ' X11 .rules' file not found
obs-studio 25.0.3+dfsg1-2 Failed [GCC_ERROR] v4l2-controls.c:105:3: error: non-void function 'add_control_property' should return a value [-Wreturn-type]
ocaml 4.08.1-8 Failed [UNKNOWN] /bin/sh: 1: x86_64-linux-gnu-clang: not found
octave-interval 3.2.0-5 Failed [UNKNOWN] chmod: cannot access 'debian/*/usr/lib/*/octave/packages/*/*/*.mex': No such file or directory
octave-sparsersb 1.0.6-3 Failed [GCC_ERROR] sparsersb.cc:100:49: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
odb-api 0.18.1-12 Failed [UNKNOWN] dh_auto_configure: error: cd debian/build && 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 "-GUnix Makefiles" -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_AUTOGEN_VERBOSE=ON -DCMAKE_INSTALL_LIBDIR=lib/x86_64-linux-gnu -DCMAKE_MODULE_PATH=/usr/share/ecbuild/cmake -DDISABLE_AIO=ON -DCMAKE_BUILD_TYPE=Release -DDISABLE_OS_CHECK=ON -DBUILD_SHARED_LIBS=ON -DENABLE_EIGEN=ON -DENABLE_NETCDF=ON -DENABLE_FORTRAN=ON -DCMAKE_Fortran_MODULE_DIRECTORY=/fortran/gfortran-mod-15 -DENABLE_PYTHON=ON -DENABLE_OMP=ON -DENABLE_ODB=ON -DENABLE_ODB_MPI=ON -DENABLE_ODB_API_SERVER_SIDE=ON -DPYTHON_EXECUTABLE=/usr/bin/python3.8 ../.. returned exit code 1
odb 2.4.0-12 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 [UNKNOWN] XXX
oggvideotools 0.9.1-5 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.8.0.0.201+dfsg.1-1 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-8 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
open-invaders 0.3-5 Failed [GCC_ERROR/CLANG_ERROR] ../headers/declare.h:27:41: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
openblas 0.3.9+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.
opencolorio 1.1.1~dfsg0-6 Failed [GCC_ERROR] Config.cpp:333:35: error: assigning field to itself [-Werror,-Wself-assign-field]
opencryptoki 3.8.1+dfsg-3.1 Failed [CLANG_ERROR] clang: error: unknown argument: '-fgnu-tm'
opendnssec 1:2.1.6-1 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>'
opengrm-ngram 1.3.2-3 Failed [UNKNOWN] XXX
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-14 14.0.1+7-1 Failed [BUILD_TIMEOUT] E: Build killed with signal TERM after 150 minutes of inactivity
openjfx 11.0.7+0-2 Failed [CLANG_ERROR] error: unknown warning option '-Werror=cast-function-type'; did you mean '-Werror=bad-function-cast'? [-Werror,-Wunknown-warning-option]
openmsx-catapult 0.15.0-2 Failed [UNKNOWN] XXX
openmsx 0.15.0-2 Failed [GCC_ERROR] src/utils/strCat.hh:424:8: error: 'auto' return without trailing return type; deduced return types are a C++14 extension
openmx 3.8.5+dfsg1-1 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
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.6.0-1 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'
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-10 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 [TIMEOUT]
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
ortp 1:1.0.2-1.1 Failed [GCC_ERROR] rtcp.c:475:25: error: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Werror,-Wimplicit-int-float-conversion]
oscar 1.1.0-testing-3-3 Failed [GCC_ERROR] ../../oscar/Graphs/gGraphView.h:274:5: error: definition of implicit copy assignment operator for 'SelectionHistoryItem' is deprecated because it has a user-declared copy constructor [-Werror,-Wdeprecated-copy]
osmo-iuh 0.3.0-5 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]
p7zip 16.02+dfsg-7 Failed [GCC_ERROR] ../../../../CPP/Windows/ErrorMsg.cpp:18:10: error: case value evaluates to -2147467263, which cannot be narrowed to type 'DWORD' (aka 'unsigned int') [-Wc++11-narrowing]
packagekit 1.1.13-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: need libapt-pkg 1.1 or later
packagesearch 2.7.11 Failed [TIMEOUT]
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
pam-python 1.0.7-1.1 Failed [GCC_ERROR] pam_python.c:1530:11: error: explicitly assigning value of variable of type 'void *' to itself [-Werror,-Wself-assign]
pan 0.146-1 Failed [GCC_ERROR] text-match.cc:476:8: error: no viable conversion from 'pan::StringView' to 'std::__cxx11::basic_string<char>'
pango1.0 1.44.7-4 Failed [GCC_ERROR] ../pango/break.c:409:4: error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough]
pantomime 1.3.0+dfsg1-3 Failed [GCC_ERROR/CLANG_ERROR] 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-1 Failed [UNKNOWN] XXX
paris-traceroute 0.93+git20160927-1 Failed [GCC_ERROR] ./use.h:1:9: error: 'USE_H' is used as a header guard here, followed by #define of a different macro [-Werror,-Wheader-guard]
passwordsafe 1.09.0+dfsg-2 Failed [CLANG_ERROR] clang: error: clang frontend command failed due to signal (use -v to see invocation)
paw 1:2.14.04.dfsg.2-9.1 Failed [UNKNOWN] XXX
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.1.0-1 Failed [GCC_ERROR] access.o: r .L.str.1 : Error: additional symbol
pcsc-cyberjack 3.99.5final.sp13+dfsg-2 Failed [GCC_ERROR] ifd.cpp:967:8: error: case value evaluates to 3221225848, which cannot be narrowed to type 'CJ_RESULT' (aka 'int') [-Wc++11-narrowing]
pekwm 0.1.17-3 Failed [GCC_ERROR] ActionHandler.cc:586:10: error: case value evaluates to 4294967286, which cannot be narrowed to type 'int' [-Wc++11-narrowing]
perl 5.30.0-10 Failed [UNKNOWN] Can't open gnu/stubs-x32.h: No such file or directory
pg-cron 1.2.0-1 Failed [CLANG_ERROR] clang: error: optimization flag '-fexcess-precision=standard' is not supported [-Werror,-Wignored-optimization-argument]
pgtop 3.7.0-18-gbbf1f12-3 Failed [GCC_ERROR] ./c.h:761:1: error: expected parameter declarator
phantomjs 2.1.1+dfsg-2 Failed [GCC_ERROR] webpage.cpp:80:89: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
phnxdeco 0.33-3 Failed [GCC_ERROR] phnxdeco.c:37:5: error: first parameter of 'main' (argument count) must be of type 'int'
php7.4 7.4.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./ext-build/./Zend/zend_vm_execute.h:3739: 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
plee-the-bear 0.6.0-6 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-7 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
plplot 5.15.0+dfsg-12 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x4a): 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
pmdk 1.8-1 Failed [GCC_ERROR] obj_basic_integration.c:659:15: error: overlapping comparisons always evaluate to false [-Werror,-Wtautological-overlap-compare]
pnetcdf 1.12.1-1 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
poe.app 0.5.1-5 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
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 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
posterazor 1.5.1-2 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.2-4 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-hll 2.14-1 Failed [CLANG_ERROR] clang: error: optimization flag '-fexcess-precision=standard' is not supported [-Werror,-Wignored-optimization-argument]
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-8 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-10 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-3 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
pseudo 1.9.0+git20190802+060058b-1 Failed [GCC_ERROR] ./ports/linux/pseudo_wrappers.c:84:14: error: use of unknown builtin '__builtin_apply' [-Wimplicit-function-declaration]
psicode 3.4.0-6 Failed [GCC_ERROR/CLANG_ERROR] ip_read.cc:15:10: fatal error: 'y.tab.h' file not found
ptouch-driver 1.4.2-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./rastertoptch.c:(.text+0x13be): undefined reference to `RLE_store_empty_lines'
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 *'
pygccjit 0.4-10 Failed [GCC_ERROR/CLANG_ERROR] gccjit/gccjit.c:599:10: fatal error: 'libgccjit.h' file not found
pykdtree 1.3.1-4 Failed [PYTHON_TRACEBACK/PYIMPORT] dh_auto_test: error: pybuild --test --test-nose -i python{version} -p 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-apt 2.1.3 Failed [GCC_ERROR] pkgcache.h:102:26: error: expected ';' at end of declaration list
python-cffi 1.14.0-2 Failed [GCC_ERROR] _CFFI_test_verify_anonymous_struct_with_star_typedef.cpp:554: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]
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.7 3.7.7-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
python3.8 3.8.3~rc1-1 Failed [CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>/build-static'
qbs 1.13.1-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.0-4 Failed [CLANG_ERROR] error: unknown warning option '-Wjump-misses-init' [-Werror,-Wunknown-warning-option]
qgis 3.10.5+dfsg-1 Failed [CLANG_ERROR] clang: error: clang frontend command failed due to signal (use -v to see invocation)
qlcplus 4.12.2-2 Failed [GCC_ERROR] virtualconsole/vcslider.h:233:9: error: definition of implicit copy assignment operator for 'LevelChannel' is deprecated because it has a user-declared copy constructor [-Werror,-Wdeprecated-copy]
qpxtool 0.8.0-1 Failed [GCC_ERROR] src/mainwindow.cpp:430:9: error: ordered comparison between pointer and zero ('QAction *' and 'int')
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.12.5+dfsg-2 Failed [QMAKE_ERROR] Project ERROR: failed to parse default search paths from compiler output
qtbase-opensource-src 5.12.5+dfsg-10 Failed [QMAKE_ERROR] Project ERROR: failed to parse default search paths from compiler output
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
qtwebengine-opensource-src 5.12.5+dfsg-7 Failed [UNKNOWN] XXX
quickfix 1.15.1+dfsg-4 Failed [UNKNOWN] XXX
quisk 4.1.55-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]
radsecproxy 1.8.1-1 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-22 Failed [BUILDDEPS] E: apt-cache returned no information about raidutils source
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
raster3d 3.0-4-1 Failed [GCC_ERROR/LD_ERROR] collect2: error: ld returned 1 exit status
ratpoints 1:2.1.3-1 Failed [GCC_ERROR] ./sturm.c:176:5: error: function definition is not allowed here
rcs-blame 1.3.1-4.1 Failed [GCC_ERROR] inttypes.h:290:8: error: unknown type name 'intmax_t'; did you mean '__intmax_t'?
rcs 5.9.4-6 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.11.4-1 Failed [GCC_ERROR] ./crc32c.c:28:3: error: illegal storage class on function
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.3a+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.2004.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-2 Failed [GCC_ERROR] ruby.h:1863:1: error: unknown attribute '__error__' ignored [-Werror,-Wunknown-attributes]
ruby2.5 2.5.7-1 Failed [BUILDDEPS] W: Unable to locate package ruby2.5
ruby2.7 2.7.0-6 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-cbindgen 0.14.1-1 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-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-2 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
salmon 1.2.1+ds1-1 Failed [GCC_ERROR/CLANG_ERROR] mer_dna.hpp:27:10: fatal error: 'iostream' file not found
samblaster 0.1.25-1 Failed [UNKNOWN] XXX
sbjson 2.3.2-4 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
scalapack 2.1.0-2 Failed [TIMEOUT]
scanbd 1.5.1-6 Failed [UNKNOWN] XXX
scantool 2.1-2 Failed [GCC_ERROR] about.c:36:100: error: illegal character encoding in string literal [-Werror,-Winvalid-source-encoding]
schroot 1.6.10-9 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.4.1-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+dfsg-6 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]
sdlbasic 0.0.20070714-6 Failed [GCC_ERROR] ScintillaGTK.cxx:1356:6: error: non-constant-expression cannot be narrowed from type 'int' to 'guint' (aka 'unsigned int') in initializer list [-Wc++11-narrowing]
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]
seaview 1:4.7-1 Failed [GCC_ERROR] seaview.cxx:3352:24: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
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
setools 4.3.0-1 Failed [CLANG_ERROR] error: unknown warning option '-Wno-suggest-attribute=format'; did you mean '-Wno-property-attribute-mismatch'? [-Werror,-Wunknown-warning-option]
seyon 2.20c-32 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
siconos 4.2.0+git20181026.0ee5349+dfsg.2-3 Failed [UNKNOWN] dh_auto_test: error: cd obj-x86_64-linux-gnu && make -j1 test "ARGS=-E 'fc3d__NSN_AC_Tol_1e-5_Max_1000_inTol_0_inMax_0_IPARAM_1_Capsules-i100-1090|fc3d__NSN_AC_TEST_Tol_1e-5_Max_1000_inTol_0_inMax_0_IPARAM_1_Capsules-i101-404|fc3d__NSN_AC_TEST_Tol_1e-3_Max_1000_inTol_0_inMax_0_Capsules-i101-404|fc3d__ADMM_Tol_1e-08_Max_100000_inTol_0_inMax_0_IPARAM_SICONOS_FRICTION_3D_ADMM_RHO_STRATEGY_RESIDUAL_BALANCING_LMGC_100_PR_PerioBox-i00361-60-03000.hdf5|fc3d__ADMM_Tol_1e-08_Max_100000_inTol_0_inMax_0_IPARAM_SICONOS_FRICTION_3D_ADMM_RHO_STRATEGY_RESIDUAL_BALANCING_SICONOS_FRICTION_3D_ADMM_FORCED_SPARSE_STORAGE_LMGC_100_PR_PerioBox-i00361-60-03000.hdf5|gfc3d__NSN_AC_Tol_0_Max_0_inTol_0_inMax_0_LMGC_GFC3D_CubeH8.hdf5|gfc3d__NSN_AC_Tol_1e-14_Max_0_inTol_0_inMax_0_LMGC_GFC3D-i00501-4-00000.hdf5|gfc3d__NSN_AC_WR_Tol_1e-14_Max_0_inTol_0_inMax_0_LMGC_GFC3D-i00501-4-00000.hdf5|TwistingTest::test_ExplicitTwisting_Lsodar'" ARGS\+=-j1 returned exit code 2
silverjuke 18.2.1-2 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:2019.1.1+dfsg-3 Failed [GCC_ERROR/CLANG_ERROR] SGMath.hxx:23:10: fatal error: 'iosfwd' file not found
simutrans 120.4.1-1 Failed [BUILDDEPS] E: apt-cache returned no information about simutrans source
sipxtapi 3.3.0~test17-3.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.5.2-1 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '-specs=/usr/share/dpkg/no-pie-compile.specs' [-Werror,-Wunused-command-line-argument]
sks-ecc 0.93-6 Failed [GCC_ERROR] tfm/mpi.c:2565:15: error: unknown register name '%cc' in asm
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.1 Failed [GCC_ERROR] panel.cpp:51:13: error: ordered comparison between pointer and zero ('GC' (aka '_XGC *') and 'int')
smbc 1.2.2-4 Failed [GCC_ERROR] smbc.c:316:2: error: function definition is not allowed here
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-3 Failed [GCC_ERROR] SNAPLib/AlignerContext.cpp:341:34: error: expected ')'
snoopy 2.4.6-6 Failed [GCC_ERROR] domain.c:119:23: error: expression which evaluates to zero treated as a null pointer constant of type 'char *' [-Werror,-Wnon-literal-null-conversion]
soapyremote 0.5.1-2 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'
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.0-1 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
sope 4.3.0-1 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-1.2 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)
sparse 0.6.1-2 Failed [GCC_ERROR] +/usr/include/stdio.h:27:11: error: unable to open 'bits/libc-header-start.h'
speech-dispatcher 0.9.1-5 Failed [GCC_ERROR] ./module_utils.h:125:63: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
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)
spring 104.0+dfsg-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] atomic_base.h:377: 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.2.3-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'
stdsyslog 0.03.3-3 Failed [GCC_ERROR] stdsyslog.c:560:121: error: format specifies type 'void *' but the argument has type 'char *' [-Werror,-Wformat-pedantic]
steptalk 0.10.0-6 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
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-2 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]
stunnel4 3:5.56-1 Failed [BUILDDEPS] E: apt-cache returned no information about stunnel4 source
styx 2.0.1-1 Failed [GCC_ERROR] sysbase1.c:579:50: error: invalid token at start of a preprocessor expression
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
sugar-toolkit-gtk3 0.117-1 Failed [UNKNOWN] XXX
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.0+repack-1 Failed [GCC_ERROR/CLANG_ERROR] SC_SndBuf.h:29:10: fatal error: 'atomic' file not found
supermin 5.2.0-1 Failed [CLANG_ERROR] clang: error: unsupported option '-specs /usr/lib/x86_64-linux-musl/musl-gcc.specs'
suricata 1:5.0.3-1 Failed [GCC_ERROR] llcllc: error: llc: filter.ll:19:53: error: expected ')' at end of argument list
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]
synaptic 0.90+nmu1 Failed [GCC_ERROR] pkgcache.h:102:26: error: expected ';' at end of declaration list
syslinux 3:6.04~git20190206.bf6db5b4+dfsg1-2 Failed [GCC_ERROR/CLANG_ERROR] stdarg.h:9:15: fatal error: 'stdarg.h' file not found
systemd 245.5-2 Failed [TIMEOUT]
systempreferences.app 1.2.0-2 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
systemtap 4.2-3 Failed [GCC_ERROR] ./elaborate.h:202:16: error: 'derived_probe::printsig' hides overloaded virtual function [-Werror,-Woverloaded-virtual]
t-coffee 13.41.0.28bdc39+dfsg-1 Failed [GCC_ERROR] dp_lib/evaluate_dirichlet.c:543:8: error: 'lgamma_r' is missing exception specification 'throw()'
tagcoll2 2.0.14-2 Failed [TIMEOUT]
talksoup.app 1.0alpha-32-g55b4d4e-2 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
tarantool-lts 1.5.5.37.g1687c02-1 Failed [GCC_ERROR] ecb.h:475:42: error: '_Noreturn' keyword must precede function declarator
task 2.5.1+dfsg-9 Failed [GCC_ERROR/CLANG_ERROR] CLI2.h:29:10: fatal error: 'string' file not found
tbb 2020.2-2 Failed [CLANG_ERROR] clang: error: unknown argument: '-flifetime-dse=1'
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-5 Failed [GCC_ERROR] c2r2mlistline.c:423:71: error: ordered comparison between pointer and zero ('CBDMessage *' and 'int')
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-14 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-1 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-2 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h: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-2 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'
thermald 1.9.1-1 Failed [CLANG_ERROR] error: unknown warning option '-Wunused-but-set-variable'; did you mean '-Wunused-const-variable'? [-Werror,-Wunknown-warning-option]
theseus 3.3.0-8 Failed [CLANG_ERROR] error: unknown warning option '-Wformat-truncation=0' [-Werror,-Wunknown-warning-option]
thin-provisioning-tools 0.8.5-4 Failed [SEGMENTATION_FAULT] XXX
tightvnc 1:1.3.9-9.1 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
timemon.app 4.2-2 Failed [TIMEOUT]
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')
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.2-2 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-3 Failed [SEGMENTATION_FAULT] dh_auto_test: error: cd obj-x86_64-linux-gnu && make -j2 test ARGS\+=-j2 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.04+dfsg-2 Failed [UNKNOWN] XXX
ucblogo 6.1-0.1 Failed [GCC_ERROR] main.c:105:5: error: void function 'logo_stop' should not return a value [-Wreturn-type]
ucommon 7.0.0-16 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
uhub 0.4.1-3.1 Failed [TIMEOUT]
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 2.1.1-1 Failed [GCC_ERROR] fullbackgroundwidget.cpp:94: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]
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-2 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
unicon 3.0.4+dfsg1-1 Failed [GCC_ERROR] tab2dat.c:33:7: error: void function 'load_phr' should not return a value [-Wreturn-type]
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-1 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-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./userhelper.c:241: undefined reference to `powl'
uwsgi 2.0.18-11 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
v4l-utils 1.18.0-2 Failed [BUILDDEPS] E: apt-cache returned no information about v4l-utils source
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 [GCC_ERROR] notifyosd.cpp:131:23: error: non-constant-expression cannot be narrowed from type 'unsigned int' to 'int' in initializer list [-Wc++11-narrowing]
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 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)