-
Notifications
You must be signed in to change notification settings - Fork 8
/
scanlog-3.9.1-2017-07-06
2274 lines (2274 loc) · 270 KB
/
scanlog-3.9.1-2017-07-06
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.21-2 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ../../build/unix/gold/ld: error: hidden symbol 'ceil' is not defined locally
2048-qt 0.1.6-1 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
389-dsgw 1.1.11-2 Failed [GCC_ERROR] ../edit.c:30:5: error: third parameter of 'main' (environment) must be of type 'char **'
3dchess 0.8.1-20 Failed [CLANG_ERROR] clang: error: unsupported option '-fpcc-struct-return' for target 'x86_64-pc-linux-gnu'
3depict 0.0.19-1 Failed [GCC_ERROR/CLANG_ERROR] base.h:37:10: fatal error: 'omp.h' file not found
3dldf 2.0.3+dfsg-6 Failed [GCC_ERROR] ./scanprse.web:9720:13: error: out-of-line definition of 'pickup_command' does not match any declaration in namespace 'Scan_Parse'
9base 1:6-7 Failed [GCC_ERROR] n1.c:124:5: error: unterminated function-like macro invocation
9menu 1.9-1 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
aaphoto 0.45-1 Failed [GCC_ERROR/CLANG_ERROR] aaphoto.c:239:10: fatal error: 'omp.h' file not found
abcm2ps 7.8.9-1 Failed [UNKNOWN] dh_auto_test: make -j1 test VERBOSE=1 returned exit code 2
abgate 1.1.8-1 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
abinit 8.0.8-1 Failed [GCC_ERROR/LD_ERROR] ld: final link failed: Bad value
abiword 3.0.2-2 Failed [GCC_ERROR] gr_UnixCairoGraphics.cpp:183:37: error: use of undeclared identifier 'nullptr'
accelio 1.7-2 Failed [GCC_ERROR] ../common/xio_nexus.c:255:32: error: unused function 'xio_nexus_task_lookup' [-Werror,-Wunused-function]
acedb 4.9.39+dfsg.02-1 Failed [GCC_ERROR] aqlparse.l:219:6: error: conflicting types for 'yyerror'
aces3 3.0.8-5.1 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
aclock.app 0.4.0-1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
aconnectgui 0.9.0rc2-1-10 Failed [CONFIGURE_ERROR] configure: error: Sufficiently new version of libasound not found.
acpid 1:2.0.28-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: "asprintf() not found"
adacontrol 1.18r9-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatct'
adanaxisgpl 1.2.5.dfsg.1-6 Failed [GCC_ERROR] ./Mushcore/MushcoreSingleton.h:86:5: error: use of undeclared identifier 'SingletonPtrSet'
adasockets 1.9-1.1 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
addresses-for-gnustep 0.4.8-2 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
adplug 2.2.1+dfsg3-0.4 Failed [CLANG_ERROR/CLANG_LD_ERROR] ../src/.libs/libadplug.so: undefined reference to `set_mul'
adun.app 0.81-9 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
aegisub 3.2.2+dfsg-3 Failed [GCC_ERROR] util.cpp:30:2: error: no member named 'this_thread' in namespace 'std'; did you mean 'boost::this_thread'?
aeskulap 0.2.2b1+git20161206-2 Failed [BUILDDEPS] Dependencies installation failed
aespipe 2.4d-1 Failed [CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>'
affiche 0.6.0-8 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
afflib 3.7.15-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
afnix 2.6.3-1 Failed [GCC_ERROR] ./Number.hpp:49:20: error: 'afnix::Number::format' hides overloaded virtual function [-Werror,-Woverloaded-virtual]
afterstep 2.2.12-10 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./DEB-build-tree/build-dynamic/libAfterBase/asvector.c:299: undefined reference to `vector_move_data_up'
agave 0.4.7-2.1 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
agenda.app 0.42.2-1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
agg 2.5+dfsg1-12 Failed [GCC_ERROR] ../include/agg_renderer_outline_aa.h:1378:45: error: binding value of type 'const agg::line_profile_aa' to reference to type 'agg::line_profile_aa' drops 'const' qualifier
aghermann 1.1.2-1 Failed [GCC_ERROR] mc-artifacts.cc:51:1: error: explicit specialization of 'estimate_E<float>' after instantiation
ahven 2.6-1.1 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatf'
aiscm 0.12.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lomp
akonadi-calendar 16.04.2-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
akonadi-search 16.04.3-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
alex 3.2.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc964c_0/ghc_4.c:1:0: error:
algobox 0.9+dfsg-1 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
alliance 5.1.1-1.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] AAstar.cpp:871: undefined reference to `TMatrix<CNode>::operator[](int)'
alljoyn-core-1504 15.04b-8 Failed [GCC_ERROR] alljoyn_core/router/UDPTransport.cc:449:16: error: unused variable 'UDP_WAIT_WATCHDOG_TIMEOUT' [-Werror,-Wunused-const-variable]
alljoyn-core-1509 15.09a-5 Failed [GCC_ERROR] alljoyn_c/src/PermissionConfigurationListener.cc:33:17: error: using directive refers to implicitly-defined namespace 'std' [-Werror]
alljoyn-core-1604 16.04a-3 Failed [GCC_ERROR] alljoyn_c/src/PermissionConfigurationListener.cc:32:17: error: using directive refers to implicitly-defined namespace 'std' [-Werror]
alljoyn-gateway-1504 15.04~git20160606-3 Failed [CLANG_ERROR] clang: error: unknown argument: '-print-multiarch'
alljoyn-services-1504 15.04-6 Failed [GCC_ERROR] build/linux/x86_64/release/dist/notification/inc/alljoyn/notification/NotificationService.h:101:5: error: declaration does not declare anything [-Werror,-Wmissing-declarations]
alljoyn-services-1509 15.09-4 Failed [GCC_ERROR] build/linux/x86_64/release/dist/notification/inc/alljoyn/notification/NotificationService.h:101:5: error: declaration does not declare anything [-Werror,-Wmissing-declarations]
alljoyn-services-1604 16.04-3 Failed [GCC_ERROR] build/linux/x86_64/release/dist/notification/inc/alljoyn/notification/NotificationService.h:101:5: error: declaration does not declare anything [-Werror,-Wmissing-declarations]
altermime 0.3.10-8 Failed [GCC_ERROR] mime_alter.c:709:13: error: variable 'newblock' is used uninitialized whenever 'if' condition is false [-Werror,-Wsometimes-uninitialized]
amideco 0.31e-3.1 Failed [GCC_ERROR] amideco.c:45:5: error: first parameter of 'main' (argument count) must be of type 'int'
amsynth 1.6.4-1 Failed [GCC_ERROR] ustring.h:224:20: warning/usr/include/glibmm-2.4/glibmm/ustring.h:256:13: error: expected ';' at end of declaration list
analitza 4:16.08.3-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
android-platform-dalvik 7.0.0+r33-1 Failed [GCC_ERROR] debian/additionalSrc/dmtracedump/tracedump.cc:252:14: error: use of undeclared identifier 'nullptr'
android-platform-frameworks-base 1:7.0.0+r33-1 Failed [GCC_ERROR] c++0x_warning.h:32:2: error: This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
android-platform-libnativehelper 7.0.0+r33-1 Failed [GCC_ERROR] c++0x_warning.h:32:2: error: This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
android-platform-system-core 1:7.0.0+r33-2 Failed [GCC_ERROR] adb/adb_auth_host.cpp:95:5: error: no matching function for call to 'RSA_get0_key'
android-platform-system-tools-aidl 1:7.0.0+r33-1 Failed [GCC_ERROR] strings.h:47:23: error: no member named 'next' in namespace 'std'
anet 0.3.3-1 Failed [CLANG_ERROR] clang: error: clangunknown argument: '-gnatec=/<<PKGBUILDDIR>>/obj/linux/lib/dynamic/GNAT-TEMP-000001.TMP':
anfo 0.98-5 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.22.0-3 Failed [GCC_ERROR] anjuta-status.c:215:30: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
ants 2.1.0-5 Failed [GCC_ERROR] itkSmartPointer.h:178:20: error: expected ';' at end of declaration list
apbs 1.4-1 Failed [UNKNOWN] XXX
apitrace 7.1+git20170623.d38a69d6+repack-1 Failed [GCC_ERROR/CLANG_ERROR] os_backtrace.cpp:48:12: fatal error: 'backtrace.h' file not found
aplus-fsf 4.22.1-9 Failed [CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>'
apt-move 4.2.27-5 Failed [GCC_ERROR] tagfile.h:93:15: error: ISO C++ forbids forward references to 'enum' types
apt 1.5~beta1 Failed [GCC_ERROR] libnoprofile.c:22:5: error: expected parameter declarator
aptitude 0.8.8-1 Failed [GCC_ERROR] trackable.h:40:59: error: expected ';' at end of declaration list
aptsh 0.0.8 Failed [GCC_ERROR] tagfile.h:93:15: error: ISO C++ forbids forward references to 'enum' types
aqsis 1.8.2-8 Failed [CLANG_ERROR/CLANG_LD_ERROR] cpp_iterator.hpp:1357: undefined reference to `boost::wave::grammars::cpp_grammar_gen<boost::wave::cpplexer::lex_iterator<boost::wave::cpplexer::lex_token<boost::wave::util::file_position<boost::wave::util::flex_string<char, std::char_traits<char>, std::allocator<char>, boost::wave::util::CowString<boost::wave::util::AllocatorStringStorage<char, std::allocator<char> >, char*> > > > >, std::__cxx11::list<boost::wave::cpplexer::lex_token<boost::wave::util::file_position<boost::wave::util::flex_string<char, std::char_traits<char>, std::allocator<char>, boost::wave::util::CowString<boost::wave::util::AllocatorStringStorage<char, std::allocator<char> >, char*> > > >, boost::fast_pool_allocator<boost::wave::cpplexer::lex_token<boost::wave::util::file_position<boost::wave::util::flex_string<char, std::char_traits<char>, std::allocator<char>, boost::wave::util::CowString<boost::wave::util::AllocatorStringStorage<char, std::allocator<char> >, char*> > > >, boost::default_user_allocator_new_delete, boost::mutex, 32u, 0u> > >::parse_cpp_grammar(boost::wave::cpplexer::lex_iterator<boost::wave::cpplexer::lex_token<boost::wave::util::file_position<boost::wave::util::flex_string<char, std::char_traits<char>, std::allocator<char>, boost::wave::util::CowString<boost::wave::util::AllocatorStringStorage<char, std::allocator<char> >, char*> > > > > const&, boost::wave::cpplexer::lex_iterator<boost::wave::cpplexer::lex_token<boost::wave::util::file_position<boost::wave::util::flex_string<char, std::char_traits<char>, std::allocator<char>, boost::wave::util::CowString<boost::wave::util::AllocatorStringStorage<char, std::allocator<char> >, char*> > > > > const&, boost::wave::util::file_position<boost::wave::util::flex_string<char, std::char_traits<char>, std::allocator<char>, boost::wave::util::CowString<boost::wave::util::AllocatorStringStorage<char, std::allocator<char> >, char*> > > const&, bool&, boost::wave::cpplexer::lex_token<boost::wave::util::file_position<boost::wave::util::flex_string<char, std::char_traits<char>, std::allocator<char>, boost::wave::util::CowString<boost::wave::util::AllocatorStringStorage<char, std::allocator<char> >, char*> > > >&, std::__cxx11::list<boost::wave::cpplexer::lex_token<boost::wave::util::file_position<boost::wave::util::flex_string<char, std::char_traits<char>, std::allocator<char>, boost::wave::util::CowString<boost::wave::util::AllocatorStringStorage<char, std::allocator<char> >, char*> > > >, boost::fast_pool_allocator<boost::wave::cpplexer::lex_token<boost::wave::util::file_position<boost::wave::util::flex_string<char, std::char_traits<char>, std::allocator<char>, boost::wave::util::CowString<boost::wave::util::AllocatorStringStorage<char, std::allocator<char> >, char*> > > >, boost::default_user_allocator_new_delete, boost::mutex, 32u, 0u> >&)'
arc-gui-clients 0.4.6-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./obj-x86_64-linux-gnu/src/arcproxy-ui/./src/common/arcproxy-utils.cpp:1564: undefined reference to `Arc::XMLNode::operator std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >() const'
arj 3.10.22-15 Failed [UNKNOWN] XXX
asc 2.6.1.0-2 Failed [GCC_ERROR] trackable.h:40:59: error: expected ';' at end of declaration list
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-28 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'
aspell 0.60.7~20110707-3 Failed [GCC_ERROR] ./common/errors.hpp:17:36: error: redeclaration of 'aerror_other' with a different type: 'const acommon::ErrorInfo *const' vs 'const struct AspellErrorInfo *const'
asterisk-espeak 3.0-3 Failed [GCC_ERROR] utils.h:1049:15: error: blocks support disabled - compile with -fblocks or pick a deployment target that supports them
asterisk-flite 2.3-1 Failed [GCC_ERROR] utils.h:1049:15: error: blocks support disabled - compile with -fblocks or pick a deployment target that supports them
asterisk-opus 13.7+20161113-3 Failed [GCC_ERROR] utils.h:1049:15: error: blocks support disabled - compile with -fblocks or pick a deployment target that supports them
asterisk 1:13.14.1~dfsg-2 Failed [GCC_ERROR/CLANG_ERROR] conftest.c:9:10: fatal error: 'ac_nonexistent.h' file not found
astroscrappy 1.0.5-1 Failed [GCC_ERROR/CLANG_ERROR] astroscrappy/utils/median_utils.c:439:10: fatal error: 'omp.h' file not found
astyle 2.06-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
atk1.0 2.22.0-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
atlas-cpp 0.6.3-3 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
atlas 3.10.3-1 Failed [SEGMENTATION_FAULT] XXX
ats-lang-anairiats 0.2.11-1 Failed [GCC_ERROR] bool.cats:42:5: error: expected parameter declarator
ats2-lang 0.2.9-1 Failed [GCC_ERROR] ./prelude/CATS/integer.cats:42:5: error: expected parameter declarator
attica-kf5 5.28.0-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
attica 0.4.2-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
aubio 0.4.3-4.1 Failed [UNKNOWN] XXX
audacious 3.7.2-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
autodock-vina 1.1.2-3 Failed [CLANG_ERROR] clang: error: unsupported option '--lto'
autodocksuite 4.2.6-3 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>/autodock'
autolog 0.40+debian-1 Failed [GCC_ERROR] autolog.c:358:2: error: non-void function 'save_users' should return a value [-Wreturn-type]
avifile 1:0.7.48~20090503.ds-19 Failed [GCC_ERROR] common/avm_output.cpp:20:12: error: qualified reference to 'AvmOutput' is a constructor name rather than a type wherever a constructor can be declared
awardeco 0.2-3.1 Failed [GCC_ERROR] awardeco.c:37:5: error: first parameter of 'main' (argument count) must be of type 'int'
bagel 0.0~git20170109-1 Failed [GCC_ERROR] rmawindow.cc:343:16: error: explicit instantiation of 'bagel::RMATask' must occur in namespace 'bagel'
ball 1.4.3~beta1-3 Failed [TESTS_FAILURES] Tests failures
baloo 4:4.14.3-3 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
banshee-community-extensions 2.4.0-4 Failed [GCC_ERROR] ./FloatingAverage.h:86:28: error: reference to non-static member function must be called
baresip 0.5.4-1 Failed [CLANG_ERROR] clang: error: unsupported option '--print-multiarch'
bart 0.4.00-1 Failed [GCC_ERROR/CLANG_ERROR] mem.c:15:10: fatal error: 'omp.h' file not found
basemap 1.0.7+dfsg-4 Failed [CLANG_ERROR/PYTHON_TRACEBACK] error: invalid integral value 'g' in '-Og'
bash 4.4-5 Failed [CLANG_ERROR] clang: error: unknown argument: '-no-pie'
basic256 1.1.4.0-2 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
batctl 2016.5-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-17 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
batmon.app 0.9-1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
baycomepp 0.10-15 Failed [CLANG_ERROR/CLANG_LD_ERROR] sysdeps.h:223: multiple definition of `gettime'
baycomusb 0.10-14 Failed [CLANG_ERROR/CLANG_LD_ERROR] sysdeps.h:146: multiple definition of `gettime'
bcal 1.6-1 Failed [GCC_ERROR/CLANG_ERROR] src/bcal.c:22:10: fatal error: 'quadmath.h' file not found
bfs 1.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
bind-dyndb-ldap 10.1-1 Failed [GCC_ERROR] ../../src/ldap_helper.c:2300:67: error: duplicate 'const' declaration specifier [-Werror,-Wduplicate-decl-specifier]
bing 1.3.5-2 Failed [GCC_ERROR] bing_misc.c:208:46: error: too many arguments provided to function-like macro invocation
bino 1.6.5-1 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
binutils-avr 2.26.20160125+Atmel3.5.4-1 Failed [GCC_ERROR] bfd.c:511:21: error: passing an object that undergoes default argument promotion to 'va_start' has undefined behavior [-Werror,-Wvarargs]
binutils-mingw-w64 7.4 Failed [UNKNOWN] dh_auto_test: make -j1 check returned exit code 2
binutils-msp430 2.22~msp20120406-5.1 Failed [GCC_ERROR] bfd.c:470:21: error: passing an object that undergoes default argument promotion to 'va_start' has undefined behavior [-Werror,-Wvarargs]
bio-eagle 2.3.2-1 Failed [GCC_ERROR/CLANG_ERROR] EagleMain.cpp:26:10: fatal error: 'omp.h' file not found
biococoa 2.2.2-2 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
biosig4c++ 1.3.0-2.2 Failed [GCC_ERROR] c++0x_warning.h:32:2: error: This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
bird 1.6.3-3 Failed [GCC_ERROR] netlink.c:888:10: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
bisonc++ 6.00.00-2 Failed [GCC_ERROR] c++0x_warning.h:32:2: error: This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
bitz-server 1.0.0-3 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
blacs-mpi 1.1-40 Failed [GCC_ERROR/LD_ERROR] ld: final link failed: Nonrepresentable section on output
blacs-pvm 1.1-21 Failed [GCC_ERROR/LD_ERROR] ld: final link failed: Bad value
blender 2.78.c+dfsg0-2 Failed [GCC_ERROR/CLANG_ERROR] COLLADABUhash_map.h:77:18: fatal error: 'ext/hash_fun.h' file not found
blitz++ 1:0.10+ds-2 Failed [GCC_ERROR] ../../blitz/array/expr.h:111:26: error: implicit instantiation of undefined template 'blitz::FastTV2Iterator<int, 2>'
blktap 2.0.90-4 Failed [GCC_ERROR] libvhdio.c:1442:14: error: comparison of constant 2148012658 with expression of type 'int' is always false [-Werror,-Wtautological-constant-out-of-range-compare]
blobwars 2.00-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
bluez-qt 5.28.0-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
bluez 5.45-1 Failed [GCC_ERROR] profiles/midi/midi.c:79:75: error: function definition is not allowed here
bmusb 0.7.0-2 Failed [GCC_ERROR] bmusb.cpp:635:16: error: 'target' attribute takes one argument
bnfc 2.8.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
bogl 0.1.18-11 Failed [GCC_ERROR] bogl-font.c:84:3: error: function definition is not allowed here
boinc-app-eah-brp 0.20170426+dfsg-2 Failed [UNKNOWN] error: Could not read profile default.profdata: No such file or directory
boinc 7.6.33+dfsg-12 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/<<BUILDDIR>>/boinc-7.6.33+dfsg'
bomberclone 0.11.9-7 Failed [GCC_ERROR] udp.c:268:20: error: comparison of unsigned expression < 0 is always false [-Werror,-Wtautological-compare]
booth 1.0-2 Failed [GCC_ERROR] transport.c:546:21: error: comparison of unsigned expression < 0 is always false [-Werror,-Wtautological-compare]
bootpc 0.64-7 Failed [GCC_ERROR] ./log.h:6:15: error: redefinition of 'log' as different kind of symbol
bpfcc 0.3.0-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-no-pie'
bppsuite 2.3.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] CMakeFiles/bppseqgen.dir/bppSeqGen.cpp.o:(.rodata._ZTVN3bpp24ConstantRateDistributionE[_ZTVN3bpp24ConstantRateDistributionE]+0x278): undefined reference to `virtual thunk to bpp::AbstractParameterAliasable::getAliases[abi:cxx11]() const'
brainparty 0.61+dfsg-3 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.1-4 Failed [GCC_ERROR] brasero-misc.c:115:11: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
btfs 2.12-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./src/btfs.cc:373: undefined reference to `libtorrent::session_handle::wait_for_alert(boost::chrono::duration<long, boost::ratio<1l, 1000000000l> >)'
buffy 1.5-4 Failed [GCC_ERROR] trackable.h:40:59: error: expected ';' at end of declaration list
busybox 1:1.22.0-19 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./build/udeb/archival/tar.c:1180: undefined reference to `unpack_Z_stream'
bwbasic 2.20pl2-11 Failed [GCC_ERROR] bwx_tty.c:69:1: error: 'main' must return 'int'
bwm-ng 0.6.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./src/output.c:387: undefined reference to `dyn_bit_value2str'
c2hs 0.28.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
cabal-debian 4.35.6-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
cadabra 1.46-3 Failed [GCC_ERROR] c++0x_warning.h:32:2: error: This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
cain 1.10+dfsg-2 Failed [GCC_ERROR] ../numerical/random/discrete/DgPmfAndSumOrderedPairPointer.h:47:16: error: dependent using declaration resolved to type without 'typename'
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]
calibre 3.1.1+dfsg-1 Failed [GCC_ERROR/PYTHON_TRACEBACK] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
camera.app 0.8.0-10 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
canna 3.7p3-13.1 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
cantata 2.0.1.ds1-2 Failed [GCC_ERROR] utils.cpp:776:38: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
canu 1.5+dfsg-1 Failed [GCC_ERROR] stores/gkStore.H:543:59: error: use of undeclared identifier 'omp_get_thread_num'
carettah 0.4.2-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
casablanca 2.9.1-1 Failed [GCC_ERROR/CLANG_ERROR] basic_types.h:16:10: fatal error: 'string' file not found
cb2bib 1.9.2-1 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
cbmc 5.6-1 Failed [TESTS_FAILURES] Tests failures
ccbuild 2.0.7+git20160227.c1179286-1 Failed [GCC_ERROR/CLANG_ERROR] lock.hh:23:10: fatal error: 'omp.h' file not found
cclive 0.9.3-0.1 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
cctools 4.0-1.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lperl
cd-hit 4.6.8-1 Failed [GCC_ERROR/CLANG_ERROR] cdhit-common.c++:36:9: fatal error: 'omp.h' file not found
cen64-qt 20160829-alpha-1 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
cenon.app 4.0.2-1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
ceph 10.2.5-7.2 Failed [GCC_ERROR] client/fuse_ll.cc:533:10: error: case value evaluates to 2150143745, which cannot be narrowed to type 'int' [-Wc++11-narrowing]
cernlib 20061220+dfsg3-4.3 Failed [UNKNOWN] XXX
cgal 4.9-1 Failed [UNKNOWN] XXX
cgit 1.1+git2.10.2-3 Failed [GCC_ERROR] ../filter.c:387:10: error: no member named '__fprintf_chk' in 'struct cgit_filter'
charmap.app 0.3~rc1-3 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
chasen 2.4.5-35 Failed [GCC_ERROR] print.c:186:16: error: expected parameter declarator
chealpix 3.30.0-4 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>'
cheese 3.22.1-1 Failed [GCC_ERROR] src/cheese-window.c:619:162: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
chemfp 1.1p1-2.1 Failed [GCC_ERROR/CLANG_ERROR] src/chemfp.c:88:10: fatal error: 'omp.h' file not found
choreonoid 1.5.0+dfsg-0.1 Failed [GCC_ERROR] ItemManager.h:144:35: error: implicit instantiation of undefined template 'boost::shared_ptr<cnoid::ItemManager::CreationPanelFilterBase>'
ciftilib 1.5.1-1 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
cigi-ccl 3.3.3a+svn818-10 Failed [UNKNOWN] dh_install: missing files, aborting
cjs 3.2.0-3 Failed [GCC_ERROR] gi/boxed.cpp:553:16: error: cannot initialize return object of type 'GIFieldInfo *' (aka '_GIBaseInfoStub *') with an rvalue of type 'int'
clamfs 1.0.1-3 Failed [GCC_ERROR] string.h:734:35: error: friend declaration specifying a default argument must be a definition
classified-ads 0.11-1 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
clblas 2.12-1 Failed [UNKNOWN] dh_install: missing files, aborting
cld2 0.0.0-git20150806-5 Failed [CLANG_ERROR] error: invalid argument '-std=c++98' not allowed with 'C/ObjC'
clementine 1.3.1+git276-g3485bbe43+dfsg-1 Failed [GCC_ERROR] playlistundocommands.h:112:7: error: private field 'column_' is not used [-Werror,-Wunused-private-field]
clfft 2.12.2-1 Failed [UNKNOWN] dh_install: missing files, aborting
cloop 3.14.1.2 Failed [UNKNOWN] checking for C compiler default output file name... configure: error: C compiler cannot create executables
clutter-1.0 1.26.2+dfsg-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
clutter-gesture 0.0.2.1-7.1 Failed [CLANG_ERROR] error: unknown warning option '-Werror=unused-but-set-variable'; did you mean '-Werror=unused-const-variable'? [-Werror,-Wunknown-warning-option]
cmake 3.7.2-1 Failed [GCC_ERROR/TESTS_FAILURES] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
cmdpack 1.03-1 Failed [GCC_ERROR] src/banner.h:7:2: error: embedding a #include directive within macro arguments is not supported
cmocka 1.1.1-1 Failed [SEGMENTATION_FAULT/TESTS_FAILURES] Tests failures
cmst 2017.03.18-2 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
coinor-cbc 2.8.12-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./.libs/libCbcSolver.so: undefined reference to `virtual thunk to OsiClpSolverInterface::getColName[abi:cxx11](int, unsigned int) const'
coinor-csdp 6.1.1-1 Failed [GCC_ERROR/CLANG_ERROR] op_o.c:15:10: fatal error: 'omp.h' file not found
coinor-flopc++ 1.0.6-3.1 Failed [GCC_ERROR] ./MP_set.hpp:208:14: error: no matching conversion for functional-style cast from 'const flopc::SUBSETREF' to 'flopc::MP_domain'
coinor-symphony 5.6.1-1 Failed [GCC_ERROR/CLANG_ERROR] Master/master.c:25:10: fatal error: 'omp.h' file not found
collada-dom 2.4.4+ds1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: final link failed: Nonrepresentable section on output
collada2gltf 20140924-4 Failed [GCC_ERROR/CLANG_ERROR] COLLADABUhash_map.h:77:18: fatal error: 'ext/hash_fun.h' file not found
collectd 5.7.1-1.1 Failed [GCC_ERROR] rte_memcpy.h:814:2: error: implicit declaration of function '_mm_alignr_epi8' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
colorcode 0.8.5-1 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
colpack 1.0.10-1 Failed [GCC_ERROR/CLANG_ERROR] ./Utilities/CoutLock.h:25:11: fatal error: 'omp.h' file not found
comedilib 0.10.2-4 Failed [CLANG_ERROR] clang: error: clang frontend command failed with exit code 70 (use -v to see invocation)
compiz 1:0.9.13.0+16.10.20160818.2-5.1 Failed [GCC_ERROR] ccs-private.h:22:9: error: 'CCS_PRIVATE_H' is used as a header guard here, followed by #define of a different macro [-Werror,-Wheader-guard]
condor 8.4.11~dfsg.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: CMakeFiles/ec2_gahp.dir/io_loop_pthread.cpp.o: undefined reference to symbol 'pthread_create@@GLIBC_2.2.5'
contextfree 3.0.5+dfsg1-2.3 Failed [GCC_ERROR] src-common/CmdInfo.cpp:63:50: error: cannot initialize a parameter of type 'UIDtype *' (aka 'unsigned long *') with an rvalue of type 'const UIDtype *' (aka 'const unsigned long *')
courier-authlib 0.68.0-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
couriergrey 0.3.2-5 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
cp2k 4.1-1 Failed [GCC_ERROR/LD_ERROR] ld: final link failed: Nonrepresentable section on output
cpl-plugin-amber 4.3.7+dfsg-1 Failed [GCC_ERROR] amber_ascii_export.c:497:23: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
cpl-plugin-visir 4.3.3+dfsg-1 Failed [CLANG_ERROR/CLANG_LD_ERROR/TESTS_FAILURES] ld: ../../recipes/.libs/visir_util_run_swarp.o: undefined reference to symbol 'sem_close@@GLIBC_2.2.5'
cpl-plugin-xshoo 2.9.1+dfsg-1 Failed [GCC_ERROR] xsh_model_io.c:691:35: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
cpluff 0.1.4+dfsg1-1 Failed [GCC_ERROR] cpluff.c:84:35: error: too many arguments provided to function-like macro invocation
cppformat 3.0.1+ds-1 Failed [GCC_ERROR] c++0x_warning.h:32:2: error: This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
cpphs 1.20.8-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
cqrlib 1.1.2-2.1 Failed [GCC_ERROR] ./cqrlib.h:576:30: error: member reference base type 'CPPQR<DistanceType, VectorType, MatrixType> *' is not a structure or union
crash 7.1.8-2 Failed [GCC_ERROR] ./../include/libiberty.h:616:12: error: expected parameter declarator
crawl 2:0.20.1-1 Failed [CLANG_ERROR] clang: error: unsupported argument 'jobserver' to option 'flto='
crda 3.18-1 Failed [CLANG_ERROR] clang: error: cannot specify -o when generating multiple output files
crimson 0.5.2-1.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./src/cf/./path.h:76: undefined reference to `vtable for Path'
critterding 1.0-beta12.1-1.3 Failed [GCC_ERROR/CLANG_ERROR] ./../scenes/entities/worldb.h:15:10: fatal error: 'omp.h' file not found
cronutils 1.9-1 Failed [GCC_ERROR] runstat.c:79:31: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
crossguid 0.0+git200150803-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
crtmpserver 1.0~dfsg-5.3 Failed [GCC_ERROR/CLANG_ERROR] <built-in>:1:10: fatal error: 'common' file not found
csound 1:6.09.0~dfsg-1 Failed [GCC_ERROR/CLANG_ERROR] src.c:2:10: fatal error: 'omp.h' file not found
csoundqt 0.9.4-1 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
cssc 1.4.0-5 Failed [SEGMENTATION_FAULT/TESTS_FAILURES] Tests failures
csvimp 0.5.4-2 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
ctpp2 2.8.3-20.1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
ctwm 3.7-4 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
cupt 2.9.9 Failed [UNKNOWN] XXX
curry-base 0.4.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
curry-frontend 0.4.2-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
cutesdr 1.13.42-2 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
cutycapt 0.0~svn10-0.1 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
cvc3 2.4.1-5.1 Failed [GCC_ERROR] ./minisat_global.h:154:43: error: implicit instantiation of undefined template 'MiniSat::STATIC_ASSERTION_FAILURE<false>'
cwidget 0.5.17-6 Failed [GCC_ERROR] basic_string.h:122:19: error: union member '_M_local_buf' has a non-trivial constructor
cxref 1.6e-2 Failed [UNKNOWN] mv: cannot stat 'README.c.tex': No such file or directory
cynthiune.app 1.0.0-1 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
cyphesis-cpp 0.6.2-2 Failed [GCC_ERROR] stream.h:306:19: error: no member named 'm_poly' in 'WFMath::Polygon<2>'
cysignals 1.3.2+ds-1 Failed [PYTHON_TRACEBACK/SEGMENTATION_FAULT] RuntimeError: Everything ok!
cython 0.25.2-1 Failed [CLANG_ERROR] error: invalid integral value 'g' in '-Og'
daligner 1.0+20161119-1 Failed [CLANG_ERROR] clang: error: cannot specify -o when generating multiple output files
darcs-monitor 0.4.2-12 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
darcs 2.12.5-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
darkradiant 2.2.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: final link failed: Nonrepresentable section on output
datapacker 1.0.2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc31d7_0/ghc_5.c:1:0: error:
dataquay 0.9.1-1 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
davix 0.6.6-1 Failed [TESTS_FAILURES] Tests failures
dazzdb 1.0+20161112-2 Failed [CLANG_ERROR] clang: error: cannot specify -o when generating multiple output files
db5.3 5.3.28-12 Failed [GCC_ERROR/TESTS_FAILURES] ../src/dbinc/atomic.h:179:19: error: definition of builtin function '__atomic_compare_exchange'
dballe 7.21-1 Failed [GCC_ERROR] ./core/csv.h:140:1: error: 'CSVWriter' defined as a class here but previously declared as a struct [-Werror,-Wmismatched-tags]
dbus-c++ 0.9.0-8 Failed [GCC_ERROR] ../../include/dbus-c++/dispatcher.h:259:5: error: no matching function for call to '_init_threading'
dbusada 0.3.3-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatygAdISuxo'
dbuskit 0.1.1-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: Objective C preprocessor "/lib/cpp" fails sanity check
dcap 2.47.10-3 Failed [GCC_ERROR] ./util.h:14:12: error: expected parameter declarator
dclock 2.2.2-9 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
ddccontrol 0.4.2-11 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./src/ddcpci/i2c-algo-bit.c:507: undefined reference to `readbytes'
ddd 1:3.3.12-5.1 Failed [GCC_ERROR] strclass.h:813:19: error: friend declaration specifying a default argument must be a definition
dds 2.5.2+ddd105-1 Failed [GCC_ERROR/CLANG_ERROR] ./dll.h:38:14: fatal error: 'omp.h' file not found
deal.ii 8.4.2-2 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ./obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/./obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8: undefined reference to `pthread_create'
debian-xcontrol 0.0.4-1.1 Failed [GCC_ERROR] tagfile.h:93:15: error: ISO C++ forbids forward references to 'enum' types
debug-me 1.20170520-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc4bea_0/ghc_4.c:1:0: error:
devil 1.7.8-10 Failed [CLANG_ERROR] error: invalid argument '-std=gnu99' not allowed with 'C++/ObjC++'
dia-newcanvas 0.6.10-5.4 Failed [GCC_ERROR] dia-canvas-view-gdk.c:181:28: error: implicit conversion from enumeration type 'GdkFill' to different enumeration type 'GdkFillRule' [-Werror,-Wenum-conversion]
diagnostics 0.3.3-12 Failed [GCC_ERROR] ../../../diagnostics/macros/invariance_annotation.hpp:66:40: error: expected ';' at end of declaration list
dicom3tools 1.00~20170222075252-1 Failed [GCC_ERROR] ./Imakefile:177:3: error: invalid preprocessing directive
dicomscope 3.6.0-16 Failed [GCC_ERROR] osconfig.h:1117:2: error: DCMTK was configured to use the C++11 STL, but your compiler is not configured for building with C++11 features.
dietlibc 0.34~cvs20160606-7 Failed [CLANG_ERROR] clang: error: unknown argument: '-no-pie'
dimbl 0.15-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: We need OpenMP. use a decent compiler.
din 5.2.1-5 Failed [GCC_ERROR] main.cc:296:49: error: non-aggregate type 'const color' cannot be initialized with an initializer list
dislocker 0.6.1-7 Failed [GCC_ERROR] ruby.h:933:1: error: attribute 'deprecated' is ignored, place it after "struct" to apply attribute to type declaration [-Werror,-Wignored-attributes]
distcc 3.1-6.2 Failed [GCC_ERROR] src/snprintf.h:30:5: error: expected parameter declarator
djinn 2014.9.7-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
djview4 4.10.6-1 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
dmtx-utils 0.7.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lomp
dnaclust 3-4 Failed [GCC_ERROR] ./multi_dim.hpp:62:8: error: no matching constructor for initialization of 'std::range_error'
dnsdist 1.1.0-2 Failed [CONFIGURE_ERROR] configure: error: Could not find libre2
dogecoin 1.10.0-5 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
dolphin 4:16.08.3-3 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
dosbox 0.74-4.2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
dpdk 16.11.2-4 Failed [CLANG_ERROR] error: unknown target CPU 'generic'
drbd-utils 8.9.10-2 Failed [GCC_ERROR] ./CompactDisplay.h:159:19: error: private field 'out' is not used [-Werror,-Wunused-private-field]
drumkv1 0.8.3-1 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
dsniff 2.4b1+debian-26 Failed [GCC_ERROR] ./sshmitm.c:45:21: error: redefinition of 'csin' as different kind of symbol
dspdfviewer 1.15.1-1 Failed [GCC_ERROR] runtimeconfiguration.cpp:201:14: error: instantiation of function 'boost::program_options::parse_config_file<char>' required here, but no definition is available [-Werror,-Wundefined-func-template]
dune-common 2.5.0-1 Failed [GCC_ERROR/LD_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ld: final link failed: Nonrepresentable section on output
dune-geometry 2.5.0-1 Failed [GCC_ERROR/LD_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ld: final link failed: Nonrepresentable section on output
dune-grid-glue 2.5.0~20161206g666200e-2 Failed [GCC_ERROR/LD_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ld: final link failed: Nonrepresentable section on output
dune-grid 2.5.0-1 Failed [GCC_ERROR/LD_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ld: final link failed: Nonrepresentable section on output
dune-pdelab 2.5.0~20170124g7cf9f47a-1 Failed [GCC_ERROR/LD_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ld: final link failed: Nonrepresentable section on output
dune-uggrid 2.5.0-1 Failed [GCC_ERROR/LD_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ld: final link failed: Nonrepresentable section on output
duo-unix 1.9.21-1 Failed [UNKNOWN] dpkg-shlibdeps: error: cannot continue due to the error above
dvbcut 0.7.1-1 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
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.2 Failed [GCC_ERROR] virfont.c:320:2: error: non-void function 'vf_mc' should return a value [-Wreturn-type]
dx 1:4.4.4-9 Failed [GCC_ERROR] edfio.c:329:14: error: static declaration of 'mkfifo' follows non-static declaration
dymo-cups-drivers 1.4.0-6 Failed [GCC_ERROR] TestAssert.h:61:13: error: call to function 'operator<<' that is neither visible in the template definition nor found by argument-dependent lookup
dynalogin 1.0.0-3 Failed [GCC_ERROR] dynalogind.c:79:3: error: non-void function 'read_line' should return a value [-Wreturn-type]
dynare 4.5.0-1 Failed [GCC_ERROR] c++0x_warning.h:32:2: error: This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
e-mem 1.0.0-1 Failed [GCC_ERROR/CLANG_ERROR] e-mem.cpp:38:10: fatal error: 'omp.h' file not found
eccodes 2.4.0-1 Failed [GCC_ERROR/CLANG_ERROR] grib_api_internal.h:135:11: fatal error: 'omp.h' file not found
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
edenmath.app 1.1.1a-7.1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
efibootmgr 15-1 Failed [UNKNOWN] make[3]: *** No rule to make target 'efivar.h', needed by 'efibootmgr.o'. Stop.
efitools 1.4.2-2 Failed [CLANG_ERROR] clang: error: unknown argument: '-fno-toplevel-reorder'
efivar 30-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
efte 1.1-2 Failed [GCC_ERROR] s_string.cpp:74:5: error: 'strcasecmp' is missing exception specification 'throw()'
eiciel 0.9.11-3 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
eigensoft 6.1.4+dfsg-1 Failed [GCC_ERROR] gds.c:412:5: error: non-void function 'ewens' should return a value [-Wreturn-type]
einspline 0.9.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./src/time_multi.c:1021: undefined reference to `eval_UBspline_2d_c_vg'
ekg2 1:0.4~pre+20120506.1-13 Failed [GCC_ERROR] Makefile.am:144: error: 'plugins/autoresponder/autoresponder.la' is not a standard libtool library name
elastix 4.8-11 Failed [GCC_ERROR] itkSmartPointer.h:178:20: error: expected ';' at end of declaration list
elfutils 0.168-1 Failed [CONFIGURE_ERROR] configure: error: gcc with GNU99 support required
elpa 2016.05.001-4 Failed [GCC_ERROR/CLANG_ERROR/SEGMENTATION_FAULT] 8 gcc clang 0x000055c7120f2dd7 : error: unable to execute command: Segmentation faultclang::driver::Driver::BuildJobsForAction(clang::driver::Compilation&, clang::driver::Action const*, clang::driver::ToolChain const*, char const*, bool, bool, char const*, std::map<std::pair<clang::driver::Action const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, clang::driver::InputInfo, std::less<std::pair<clang::driver::Action const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::allocator<std::pair<std::pair<clang::driver::Action const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > const, clang::driver::InputInfo> > >&, bool) const
emacs24 24.5+1-11 Failed [CONFIGURE_ERROR] configure: error: in `/<<BUILDDIR>>/emacs24-24.5+1/debian/build-x'
emacs25 25.2+1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lomp
ember 0.7.2+dfsg-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./src/services/config/ConfigService.cpp:314: undefined reference to `varconf::ParseError::operator std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >()'
empire-lafe 1.1-1 Failed [GCC_ERROR] ./lafe.h:10:14: error: redefinition of 'log' as different kind of symbol
encfs 1.9.1-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see
enemylines3 1.2-8 Failed [GCC_ERROR] ./generators/generators.h:2:7: error: forward declaration of class cannot have a nested name specifier
engauge-digitizer 9.7+ds.1-1 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
entangle 0.7.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lomp
entropybroker 2.8-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] stl_algobase.h:200: undefined reference to `CryptoPP::VariableKeyLength<16u, 16u, 32u, 8u, 4u, 0u>::DEFAULT_KEYLENGTH'
epm 4.2-8 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: final link failed: Nonrepresentable section on output
equalx 0.7.1-4 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
ergo 3.5-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>'
eris 1.3.23-5 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]
eso-midas 17.02pl1.2-1 Failed [GCC_ERROR/LD_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ld: final link failed: Nonrepresentable section on output
espeak-ng 1.49.0+dfsg-11 Failed [GCC_ERROR] src/libespeak-ng/speech.c:101:3: error: void function 'open_audio' should not return a value [-Wreturn-type]
esperanza 0.4.0+git20091017-5 Failed [GCC_ERROR] coll.h:615:6: error: binding value of type 'const Xmms::Coll::Coll' to reference to type 'Xmms::Coll::Coll' drops 'const' qualifier
espresso 6.0-3 Failed [GCC_ERROR/LD_ERROR] ld: final link failed: Nonrepresentable section on output
esys-particle 2.3.4+dfsg1-4 Failed [GCC_ERROR] ./SphAggGougeBlock.hpp:39:37: error: no viable conversion from '__normal_iterator<const_pointer, [...]>' to '__normal_iterator<pointer, [...]>'
eterm 0.9.6-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./.libs/libEterm.so: undefined reference to `posix_get_pty'
etl 0.04.19-1 Failed [BUILD_TIMEOUT] E: Build killed with signal TERM after 150 minutes of inactivity
etoile 0+20080616+dfsg-2 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
eurephia 1.1.0-6 Failed [GCC_ERROR] eurephiadm.c:203:47: error: function definition is not allowed here
evas-loaders 1.8.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lomp
eviacam 2.1.1-1 Failed [GCC_ERROR] crvmisc.cpp:62:7: error: case value evaluates to 2147483680, which cannot be narrowed to type 'int' [-Wc++11-narrowing]
evince 3.22.1-3 Failed [GCC_ERROR] synctex_parser_utils.c:106:29: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
evolution-rss 0.3.95-6 Failed [GCC_ERROR] rss.c:4377:2: error: non-void function 'process_attachments' should return a value [-Wreturn-type]
evolver 2.70+ds-3 Failed [GCC_ERROR/CLANG_ERROR] ../../../src/include.h:61:10: fatal error: 'quadmath.h' file not found
exactimage 0.9.2-1 Failed [GCC_ERROR] agg_renderer_outline_aa.h:1378:45: error: binding value of type 'const agg::line_profile_aa' to reference to type 'agg::line_profile_aa' drops 'const' qualifier
exiv2 0.25-3.1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
exodusii 6.02.dfsg.1-7 Failed [GCC_ERROR/LD_ERROR] ld: final link failed: Nonrepresentable section on output
ext3grep 0.10.2-3 Failed [GCC_ERROR] ./is_blockdetection.h:46:33: error: no member named 'memset' in namespace 'std'; did you mean simply 'memset'?
extremetuxracer 0.7.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./src/gui.cpp:234: undefined reference to `sf::String::operator std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >() const'
extundelete 0.2.4-1 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]
eztrace 1.1-5-5 Failed [GCC_ERROR/CLANG_ERROR] ../../../../src/modules/omp/gomp.c:17:10: fatal error: 'omp.h' file not found
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 Failed [TESTS_FAILURES] Tests failures
faketime 0.9.6-7 Failed [CLANG_ERROR] error: unknown warning option '-Wno-nonnull-compare'; did you mean '-Wno-enum-compare'? [-Werror,-Wunknown-warning-option]
fastd 18-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
fasttree 2.1.9-2 Failed [GCC_ERROR/CLANG_ERROR] fasttree.c:305:10: fatal error: 'omp.h' file not found
fbpanel 7.0-3 Failed [UNKNOWN] XXX
fceux 2.2.2+dfsg0-1 Failed [GCC_ERROR] src/utils/endian.h:85:2: error: cannot combine with previous 'typedef' declaration specifier
fcitx-qt5 1.0.5-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
fcoe-utils 1.0.29+git20140505-1 Failed [GCC_ERROR] lib/sa_log.c:73:28: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
fdclone 3.01b-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] sigset.h:117: multiple definition of `__sigaddset'
ferret-vis 7.1-1 Failed [GCC_ERROR] grab_image_xwd.c:309:2: error: non-void function 'Window_Dump' should return a value [-Wreturn-type]
fet 5.31.6-1 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
fflas-ffpack 2.2.2-4 Failed [GCC_ERROR] type_traits:1831:24: error: implicit instantiation of undefined template 'std::__make_unsigned_selector<unsigned __int128, false, false>'
fftw3 3.3.6p2-1 Failed [CONFIGURE_ERROR] configure: error: don't know how to enable OpenMP
fim 0.5~rc2-5 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.2.32703.ds4-4 Failed [GCC_ERROR/CLANG_ERROR] libtool.m4: error: problem compiling CXX test program
firetools 0.9.46-2 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
fis-gtm 6.3-000A-1 Failed [GCC_ERROR] g_msf.si:21:12: error: unknown token in expression
flexc++ 2.06.02-2 Failed [GCC_ERROR] ./../state/state.h:16:10: error: no type named 'shared_ptr' in namespace 'std'
flightcrew 0.7.2+dfsg-9 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: final link failed: Nonrepresentable section on output
flightgear 1:2016.4.4+dfsg-3 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
flite 2.0.0-release-3 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>'
floatbg 1.0-28 Failed [GCC_ERROR/CLANG_ERROR] Imake.tmpl:2243:10: fatal error: ' X11 .rules' file not found
flowcanvas 0.7.1+dfsg0-0.4 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
fontmanager.app 0.1-1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
fox1.6 1.6.54-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: final link failed: Nonrepresentable section on output
fractgen 2.1.0-1 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
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]
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'?
freecdb 0.75 Failed [CLANG_ERROR/CLANG_LD_ERROR] cdbmake.c:59: undefined reference to `getch'
freeciv 2.5.7-2 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: selected client 'qt' cannot be built: Missing Qt5 development files
freecontact 1.0.21-5 Failed [CLANG_ERROR] clang: error: unsupported option '--help=optimizers'
freefem3d 1.0pre10-3.4 Failed [GCC_ERROR/CLANG_ERROR] libtool.m4: error: problem compiling CXX test program
freefem 3.5.8-5.1 Failed [GCC_ERROR] setjmp.h:59:12: error: conflicting types for '__sigsetjmp'
freeglut 2.8.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: fractals-fractals.o: undefined reference to symbol 'sin@@GLIBC_2.2.5'
freehdl 0.0.8-2.2 Failed [GCC_ERROR] ../freehdl/std-vhdl-types.hh:1486:58: error: called object type 'uchar' (aka 'unsigned char') is not a function or function pointer
freeimage 3.17.0+ds1-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] x86_64-linux-gnu-ld: cannot find -lomp
freeipmi 1.4.11-1.1 Failed [CLANG_ERROR] clang: error: no such file or directory: 'libipmiconsole.3'
freelan 2.0-2 Failed [GCC_ERROR] build/release/libs/cryptoplus/src/integer.cpp:69:25: error: instantiation of variable 'cryptoplus::pointer_wrapper<asn1_string_st>::deleter' required here, but no definition is available [-Werror,-Wundefined-var-template]
freemat 4.2+dfsg1-4 Failed [CLANG_ERROR] error: invalid argument '-std=c++11' not allowed with 'C/ObjC'
freetype 2.8-0.2 Failed [GCC_ERROR] ttdebug.c:1935:16: error: implicitly declaring library function 'snprintf' with type 'int (char *, unsigned long, const char *, ...)' [-Werror,-Wimplicit-function-declaration]
fribidi 0.19.7-1 Failed [GCC_ERROR] fribidi-char-sets-cap-rtl.c:109:6: error: expected expression
fritzing 0.9.3b+dfsg-4 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
frog 0.13.7-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lomp
frown 0.6.2.3-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
frozen-bubble 2.212-8 Failed [CLANG_ERROR] clang: error: -lglib-2.0: 'linker' input unused
fso-audiod 0.12.0-3 Failed [GCC_ERROR] alsaloop.c:87:2: error: void function 'my_exit' should not return a value [-Wreturn-type]
ftp.app 0.5-1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
ftphs 1.0.9.1-8 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
funguloids 1.06-12 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./src/menu.cpp:294: undefined reference to `Ogre::UTFString::operator std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >() const'
fuzzylite 5.1+dfsg-5 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
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 **'
fwupdate 9-1 Failed [CLANG_ERROR] clang: error: unknown argument: '-maccumulate-outgoing-args'
ga 5.4~beta~r10636+dfsg-5 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: f2c string convention is neither after args nor after string
gabedit 2.4.8-3 Failed [GCC_ERROR/CLANG_ERROR] MolecularMechanics.c:24:10: fatal error: 'omp.h' file not found
galera-3 25.3.20-1 Failed [GCC_ERROR] galerautils/src/gu_int128.h:162:19: error: use of old-style cast [-Werror,-Wold-style-cast]
gambas3 3.9.2-2 Failed [GCC_ERROR] gb_error.c:94:3: error: function definition is not allowed here
game-music-emu 0.6.1-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
gamera 1:3.4.2+git20160808.1725654-1 Failed [CLANG_ERROR] error: invalid integral value 'g' in '-Og'
gamin 0.1.10-5 Failed [GCC_ERROR] gam_eq.c:127:3: error: non-void function 'gam_eq_flush' should return a value [-Wreturn-type]
ganv 1.4.2~dfsg0-2 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
gargoyle-free 2011.1b-1 Failed [CLANG_ERROR] error: invalid argument '-std=gnu++98' not allowed with 'C/ObjC'
gauche-c-wrapper 0.6.1-8 Failed [UNKNOWN] dh_auto_test: make -j1 check VERBOSE=1 returned exit code 2
gbatnav 1.0.4cvs20051004-5 Failed [GCC_ERROR] play.c:509:3: error: non-void function 'lookup_funcion' should return a value [-Wreturn-type]
gbgoffice 1.4-10 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
gbsplay 0.0.93-2 Failed [UNKNOWN] XXX
gcc-6-cross-ports 22 Failed [GCC_ERROR/LD_ERROR/CLANG_ERROR] conftest.c:142: undefined reference to `setproctitle'
gcc-6-cross 24 Failed [GCC_ERROR/LD_ERROR/CLANG_ERROR] conftest.c:142: undefined reference to `setproctitle'
gcc-6 6.4.0-1 Failed [GCC_ERROR/LD_ERROR/CLANG_ERROR] conftest.c:142: undefined reference to `setproctitle'
gcc-7 7.1.0-9 Failed [GCC_ERROR/LD_ERROR/CLANG_ERROR] conftest.c:142: undefined reference to `setproctitle'
gcc-arm-none-eabi 15:5.4.1+svn241155-1 Failed [GCC_ERROR] ../../../src/libiberty/../include/libiberty.h:628:12: error: expected parameter declarator
gcc-h8300-hms 1:3.4.6+dfsg2-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] ../../gcc/cp/except.c:(.text+0xf0e): undefined reference to `libc_name_p'
gcc-python-plugin 0.15-3 Failed [GCC_ERROR] coretypes.h:62:1: error: class 'rtx_def' was previously declared as a struct [-Werror,-Wmismatched-tags]
gcin 2.8.5+dfsg1-1 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
gconfmm2.6 2.28.3-1 Failed [GCC_ERROR] trackable.h:40:59: error: expected ';' at end of declaration list
gdal 2.1.2+dfsg-5 Failed [GCC_ERROR] cpl_port.h:858:5: error: expected parameter declarator
gdb-msp430 7.2a~mspgcc-20111205-3.1 Failed [GCC_ERROR] interp.c:1883:5: error: non-void function 'get_stop_addr' should return a value [-Wreturn-type]
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 4.4.0-5 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
gegl 0.3.18-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
geis 2.2.17-1.1 Failed [GCC_ERROR] geis_filter.c:483:21: error: passing an object that undergoes default argument promotion to 'va_start' has undefined behavior [-Werror,-Wvarargs]
geki2 2.0.3-9 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]
gelemental 1.2.0-10 Failed [GCC_ERROR] refptr.h:82:70: error: use of undeclared identifier 'nullptr'
gem 1:0.93.3-10 Failed [GCC_ERROR] gemlist_info.cpp:37:42: error: addition of default argument on redeclaration makes this constructor a default constructor
geotranz 3.3-1 Failed [GCC_ERROR] ../../GEOTRANS3/java_gui/geotrans3/jni/JNICCSObjectTranslator.h:14:7: error: forward declaration of class cannot have a nested name specifier
getfem++ 5.1+dfsg1-4 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: g++ do not support option -std=c++11. Update g++ to at least release 4.8.1.
gforth 0.7.3+dfsg-4 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]
ghc 8.0.2-5 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: Building ghc-pwd failed
ghex 3.18.3-1 Failed [GCC_ERROR] chartable.c:193:28: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
giac 1.2.3.53+dfsg1-2 Failed [GCC_ERROR] ./index.h:572:11: error: no template named 'hash_map' in namespace 'std'; did you mean '__gnu_cxx::hash_map'?
giada 0.14.0~dfsg1-1 Failed [CLANG_ERROR] error: unknown warning option '-Werror=misleading-indentation'; did you mean '-Werror=missing-declarations'? [-Werror,-Wunknown-warning-option]
gigedit 1.0.0-3 Failed [GCC_ERROR] refptr.h:82:70: error: use of undeclared identifier 'nullptr'
gimagereader 3.2.1-1 Failed [CLANG_ERROR] error: invalid argument '-std=c++11' not allowed with 'C/ObjC'
gimp-dds 3.0.1-1 Failed [GCC_ERROR/CLANG_ERROR] mipmap.c:31:10: fatal error: 'omp.h' file not found
gimp-plugin-registry 7.20140602 Failed [GCC_ERROR] ./refinerThreaded.h:298:3: error: function definition is not allowed here
gimplensfun 0.2.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lomp
gip 1.7.0-1-4 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
gitg 3.23.0-1 Failed [GCC_ERROR] gitg-diff-image-side-by-side.vala:48:30: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
gitit 0.12.1.1+dfsg-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
gkrellmitime 1.0.1-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: final link failed: Nonrepresentable section on output
glimpse 4.18.7-3 Failed [GCC_ERROR] misc.c:294:2: error: non-void function 'uninitialize_common' should return a value [-Wreturn-type]
gltron 0.70final-12.1 Failed [CONFIGURE_ERROR] configure: error: OpenGL is not installed
gmchess 0.29.6-2.1 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
gmerlin 1.2.0~dfsg+1-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: final link failed: Nonrepresentable section on output
gmic 1.7.9+zart-4 Failed [GCC_ERROR/CLANG_ERROR] ../src/./CImg.h:362:10: fatal error: 'omp.h' file not found
gmlive 0.22.3-1 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
gmsh 2.15.0+dfsg1-3 Failed [GCC_ERROR] MeshOpt.cpp:164:34: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
gnash 0.8.11~git20160608-1.3 Failed [GCC_ERROR] agg_scanline_u.h:476:30: error: type 'base_type' (aka 'agg::scanline_u8') is not a direct or virtual base of 'scanline32_u8_am<AlphaMask>'
gnat-mingw-w64 19.4 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: GNAT is required to build ada
gnats 4.1.0-3 Failed [GCC_ERROR] ./gnats.h:140:12: error: conflicting types for 'asprintf'
gnome-boxes 3.22.4-1 Failed [GCC_ERROR] installer-media.c:522:3: error: non-void function 'boxes_installer_media_construct_for_path_finish' should return a value [-Wreturn-type]
gnome-color-chooser 0.2.5-1.1 Failed [GCC_ERROR] refptr.h:82:70: error: use of undeclared identifier 'nullptr'
gnome-nibbles 1:3.22.2.2-1 Failed [GCC_ERROR] preferences-dialog.c:918:151: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
gnome-online-accounts 3.22.5-1 Failed [GCC_ERROR] goakerberosidentity.c:344:39: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
gnome-pie 0.7.0-1 Failed [GCC_ERROR] pieOptionsWindow.c:820:187: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
gnome-screensaver 3.6.1-7 Failed [GCC_ERROR] gs-listener-dbus.c:362:39: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
gnome-shell-pomodoro 0.13.1-1 Failed [GCC_ERROR] gnome-shell-extension.c:650:2: error: non-void function 'gnome_plugin_gnome_shell_extension_get_info' should return a value [-Wreturn-type]
gnome-sudoku 1:3.22.2-1 Failed [GCC_ERROR] sudoku-printer.c:130:120: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
gnome-tetravex 1:3.22.0-1 Failed [GCC_ERROR] gnome-tetravex.c:1165:134: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
gnss-sdr 0.0.8-1 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lc++
gnucap 1:0.36~20091207-2 Failed [GCC_ERROR] ./mg_.h:134:19: error: variable has incomplete type 'C_Comment'
gnucash 1:2.6.15-1 Failed [TESTS_FAILURES] Tests failures
gnudatalanguage 0.9.7-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lomp
gnuift 0.1.14+ds-1 Failed [GCC_ERROR] perl-compile-test-program.cc:71:3: error: use of undeclared identifier 'my_perl'
gnumail 1.2.2-1.1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
gnuplot 5.0.5+dfsg1-7 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
gnustep-back 0.25.0-2 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
gnustep-base 1.24.9-3.1 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-1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
gnustep-gui 0.25.0-4 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: 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.7.3-2.1 Failed [GCC_ERROR/CLANG_ERROR] GSObjCRuntime.h:58:11: fatal error: 'objc/objc.h' file not found
gobby 0.5.0-8.1 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
gobject-introspection 1.50.0-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
golang-1.7 1.7.6-1 Failed [UNKNOWN] XXX
golang-1.8 1.8.3-1 Failed [UNKNOWN] ./test.bash: line 18: sysctl: command not found
goldencheetah 4.0.0~DEV1607-2 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
gomoku.app 1.2.9-2 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
goo 0.155-15 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./c/g2c/../grt.c:1047: undefined reference to `_CALL0'
gorm.app 1.2.23-1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
gosmore 0.0.0.svn30327-1 Failed [CLANG_ERROR] clang: error: cannot specify -o when generating multiple output files
gpg-remailer 3.03.00-2 Failed [GCC_ERROR] mail/../cleartextmail/../mailer/send.f:11:17: error: cannot cast 'Mailer<GPGMail>' to its private base class 'MailerBase'
gpgmepp 16.04.3-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
gpick 0.2.5+git20161221-1 Failed [GCC_ERROR] source/gtk/ColorCell.cpp:47:84: error: use of undeclared identifier 'nullptr'
gpm 1.20.4-6.2 Failed [GCC_ERROR/CLANG_ERROR] prog/display-buttons.c:39:10: fatal error: 'gpm.h' file not found
gprbuild 2015-6 Failed [CLANG_ERROR] clang: error: unknown argument: '-gnatea'
gprolog 1.4.5-4.1 Failed [CONFIGURE_ERROR] configure: error: in `/<<PKGBUILDDIR>>/src'
gpsd 3.16-4 Failed [CLANG_ERROR] error: invalid argument '-std=gnu++98' not allowed with 'C/ObjC'
gpsshogi 0.7.0-1.1 Failed [GCC_ERROR] c++0x_warning.h:32:2: error: This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
gr-iqbal 0.37.2-7 Failed [GCC_ERROR] cxvec.h:45:15: error: expected ';' at end of declaration list
grail 3.1.0-2.1 Failed [GCC_ERROR] handle.cpp:65:5: error: moving a temporary object prevents copy elision [-Werror,-Wpessimizing-move]
gramophone2 0.8.13a-3 Failed [GCC_ERROR] midifile.c:159:3: error: non-void function 'readheader' should return a value [-Wreturn-type]
grantlee5 5.1.0-2 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
grantlee 0.4.0-4 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
granule 1.4.0-7-6 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
gravit 0.5.1+dfsg-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: frame.o: undefined reference to symbol 'pthread_create@@GLIBC_2.2.5'
graywolf 0.1.4+20170307gite1bf319-2 Failed [GCC_ERROR] buster.c:230:2: error: non-void function 'Ybuster_addpt' should return a value [-Wreturn-type]
grcm 0.1.6-1 Failed [GCC_ERROR] callbacks.c:134:4: error: non-void function 'on_ConnectionsWindow_delete_event' should return a value [-Wreturn-type]
grib-api 1.19.0-1 Failed [GCC_ERROR/CLANG_ERROR] grib_api_internal.h:135:11: fatal error: 'omp.h' file not found
gridengine 8.1.9+dfsg-4 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-4 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
grml2usb 0.14.14 Failed [GCC_ERROR] mbr.S:38:16: error: unexpected token in argument list
growl-for-linux 0.8.5-1 Failed [GCC_ERROR] balloon.c:160:72: error: function definition is not allowed here
grr.app 1.0-1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
grub2 2.02-1 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: could not force soft-float
grub 0.97-72 Failed [CLANG_ERROR/CONFIGURE_ERROR] configure: error: GRUB requires GAS .code16 addr32 support; upgrade your binutils
gsequencer 0.8.7-1 Failed [GCC_ERROR] ags/lib/ags_function.c:438:3: error: illegal storage class on function
gsmartcontrol 0.8.7-1.2 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
gst-plugins-espeak 0.4.0-2 Failed [GCC_ERROR] espeak.c:203:59: error: function definition is not allowed here
gstreamermm-1.0 1.8.0+dfsg-3 Failed [GCC_ERROR] ../gstreamermm/caps.h:667:18: error: variable has incomplete type 'Gst::Structure'
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-2 Failed [GCC_ERROR] C/paje_GTGBasic1_c.c:14:12: error: expected parameter declarator
gthumb 3:3.5.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lomp
gtimer 2.0.0-1.2 Failed [GCC_ERROR] custom-list.c:613:3: error: non-void function 'custom_list_append_record' should return a value [-Wreturn-type]
gtk+3.0 3.22.16-1 Failed [UNKNOWN] dh_makeshlibs: failing due to earlier errors
gtk2hs-buildtools 0.13.2.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
gtkdataboxmm 0.9.4-4 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
gtkglextmm 1.2.0-8 Failed [GCC_ERROR] refptr.h:82:70: error: use of undeclared identifier 'nullptr'
gtkguitune 0.8-6 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
gtkmathview 0.8.0-14 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./auto/dumpEntitiesTable.cc:43: undefined reference to `GdomeSmartDOM::GdomeString::operator std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >() const'
gtkmm3.0 3.22.1-1 Failed [GCC_ERROR/TESTS_FAILURES] gtk-demo/demowindow.cc:54:7: error: 'auto' return without trailing return type; deduced return types are a C++14 extension
gtksourceview2 2.10.5-3 Failed [GCC_ERROR] test-widget.c:271:26: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
gtkspellmm 3.0.5+dfsg-1 Failed [GCC_ERROR] ustring.h:256:13: error: expected ';' at end of declaration list
gtranslator 2.91.7-3 Failed [GCC_ERROR] gtr-viewer.c:154:27: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
guidedog 1.2.0-3 Failed [GCC_ERROR] qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that.
guitarix 0.35.2-2 Failed [CLANG_ERROR] error: invalid argument '-std=c++11' not allowed with 'C/ObjC'
guymager 0.8.3-1 Failed [GCC_ERROR] aewf.cpp:143:12: error: field has incomplete type 'uint []'
gwama 2.2.2+dfsg-1 Failed [GCC_ERROR] normaldistr.cpp:69:8: error: 'erf' is missing exception specification 'throw()'
gworkspace 0.9.3-1 Failed [GCC_ERROR/CLANG_ERROR] Foundation.h:31:9: fatal error: 'objc/objc.h' file not found
gxneur 0.20.0-1 Failed [GCC_ERROR] ./xkb.h:20:9: error: '_XKBGXNEUR_H_' is used as a header guard here, followed by #define of a different macro [-Werror,-Wheader-guard]
happy 1.19.5-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc964c_0/ghc_4.c:1:0: error:
hashrat 1.8.7+dfsg-2 Failed [GCC_ERROR] Log.c:202:12: error: non-void function 'LogFileInternalWrite' should return a value [-Wreturn-type]
haskell-abstract-deque 0.3-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-abstract-par 0.3.3-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-acid-state 0.14.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-adjunctions 4.3-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-aeson-pretty 0.8.2-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-ansi-terminal 0.6.3-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-ansi-wl-pprint 0.6.7.3-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-appar 0.1.4-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-argon2 1.2.0-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-asn1-encoding 0.9.5-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-asn1-parse 0.9.4-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-asn1-types 0.3.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-assert-failure 0.1.1.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-async 2.1.1.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-attoparsec-enumerator 0.3.4-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-authenticate-oauth 1.5.1.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-authenticate 1.3.3.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-auto-update 0.1.4-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-aws 0.14.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-base-orphans 0.5.4-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-base-unicode-symbols 0.2.2.4-9 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-base16-bytestring 0.1.1.6-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-basic-prelude 0.6.1.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-bencode 0.6.0.0-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-bifunctors 5.4.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-binary-conduit 1.2.4.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-bindings-dsl 1.0.23-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-bindings-sane 0.0.1-9 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-blaze-builder 0.4.0.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-blaze-svg 0.3.6.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-blaze-textual 0.2.1.0-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-blogliterately 0.8.4-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-bmp 1.2.6.3-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-bool-extras 0.4.0-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-boolean 0.2.4-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-boomerang 1.4.5.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-boundedchan 1.0.3.0-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-boxes 0.1.4-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-brainfuck 0.1.0.3-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-brick 0.17.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-byteable 0.1.1-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-bytedump 1.0-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-byteorder 1.0.4-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-bytes 0.15.3-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_7.c:1:0: error:
haskell-bytestring-conversion 0.3.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-bytestring-lexing 0.5.0.2-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-bytestring-mmap 0.2.2-10 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-bytestring-progress 1.0.7-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-bytestring-show 0.3.5.6-8 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-bzlib 0.5.0.5-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-cabal-file-th 0.2.4-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-cabal-helper 0.7.3.0-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-cabal-install 1.24.0.2-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-cabal 1.24.2.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_283.c:1:0: error:
haskell-cairo 0.13.3.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-call-stack 0.1.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-case-insensitive 1.2.0.9-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-categories 1.0.7-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-cereal-conduit 0.7.3-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-cereal 0.5.4.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-cgi 3001.3.0.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-charset 0.3.7.1-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-charsetdetect-ae 1.1.0.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-chart-cairo 1.8.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-chart 1.8.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-chasingbottoms 1.3.1.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-chell 0.4.0.1-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-chunked-data 0.3.0-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-cipher-aes128 0.7.0.3-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_6.c:1:0: error:
haskell-clock 0.7.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-cmark 0.5.5.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-cmdargs 0.10.17-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-code-page 0.1.3-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-colour 2.3.3-10 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-comonad 5.0.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_7.c:1:0: error:
haskell-concurrent-output 1.7.9-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-cond 0.4.1.1-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-config-value 0.5-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-configfile 1.1.4-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-configurator 0.3.0.0-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-connection 0.2.8-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-constraints 0.8-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-contravariant 1.4-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-control-monad-free 0.6.1-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-control-monad-loop 0.1-8 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-convertible 1.1.1.0-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-cookie 0.4.2.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-cprng-aes 0.6.1-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-cpu 0.1.2-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-cracknum 1.5-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-crypto-api 0.13.2-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-crypto-cipher-types 0.0.9-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-crypto-pubkey-openssh 0.2.7-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-crypto-pubkey-types 0.4.3-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-crypto-pubkey 0.2.8-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-crypto-random-api 0.2.0-8 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-crypto-random 0.0.9-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-crypto 4.2.5.1-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-cryptocipher 0.6.2-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-cryptohash-conduit 0.1.1-8 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-cryptohash-cryptoapi 0.1.4-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-csv-conduit 0.6.7-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-csv 0.1.2-11 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-curl 1.3.8-9 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-data-accessor-mtl 0.2.0.4-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-data-accessor 0.2.2.7-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-data-binary-ieee754 0.4.4-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-data-default-class 0.1.2.0-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-data-default-instances-base 0.1.0.1-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-data-default-instances-containers 0.0.1-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-data-default-instances-dlist 0.0.1-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-data-default-instances-old-locale 0.0.1-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-data-default 0.7.1.1-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-data-inttrie 0.1.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-data-memocombinators 0.5.1-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-data-ordlist 0.4.7.0-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-dav 1.3.1-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-dbus 0.10.13-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-debian 3.91.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-decimal 0.4.2-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-deepseq-generics 0.2.0.0-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-dependent-map 0.2.4.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-dependent-sum-template 0.0.0.5-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-dependent-sum 0.3.2.2-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-diagrams-core 1.3.0.8-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-diagrams-lib 1.3.1.4-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-diagrams-solve 0.1.0.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-dice 0.1-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-diff 0.3.4-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-digest 0.0.1.2-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-dimensional 1.0.1.3-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-directory-tree 0.12.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-disk-free-space 0.1.0.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-djinn-ghc 0.0.2.3-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-djinn-lib 0.0.1.2-8 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-dlist-instances 0.1.1.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-dlist 0.8.0.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-dns 2.0.10-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-doctest 0.11.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-dpkg 0.0.3-10 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-drbg 0.5.5-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-dual-tree 0.2.0.9-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-dynamic-state 0.2.2.0-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-dyre 0.8.12-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-easy-file 0.2.1-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-edison-api 1.3.1-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-edison-core 1.3.1.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-edit-distance 0.2.2.1-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-either 4.4.1.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-ekg-core 0.1.1.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-ekg-json 0.1.0.5-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-ekg 0.4.0.13-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-entropy 0.3.7-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_6.c:1:0: error:
haskell-enumerator 0.4.20-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-enummapset-th 0.6.1.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-erf 2.0.0.0-11 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-errors 2.1.3-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-exact-pi 0.4.1.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-exception-transformers 0.4.0.5-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-executable-path 0.0.3.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-expiring-cache-map 0.0.6.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-extensible-exceptions 0.1.1.4-8 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-extra 1.4.10-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-fail 4.9.0.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-failure 0.2.0.3-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-fb 1.0.13-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-fclabels 2.0.3.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-fdo-notify 0.3.1-8 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-feed 0.3.12.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-fgl 5.5.3.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-file-embed 0.0.10-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-file-location 0.4.9-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-filelock 0.1.0.1-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-filemanip 0.3.6.3-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-filestore 0.6.2-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-fingertree 0.1.1.0-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-fixed 0.2.1.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-flexible-defaults 0.0.1.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-fmlist 0.9-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-foldl 1.2.4-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-free 4.12.4-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-fsnotify 0.2.1-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-gd 3000.7.3-10 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-generic-deriving 1.11.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-generic-trie 0.3.0.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-generics-sop 0.2.5.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-geniplate-mirror 0.7.5-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-ghc-events 0.4.4.0-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-ghc-mtl 1.2.1.0-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-ghc-paths 0.1.0.9-9 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-ghc-syb-utils 0.2.3-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-gio 0.13.3.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-gitlib 3.1.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-gitrev 1.2.0-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-glib 0.13.4.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-glob 0.7.14-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-gloss-rendering 1.10.3.5-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-gloss 1.10.2.5-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-gluraw 2.0.0.3-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-glut 2.7.0.12-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-gnutls 0.2-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-graphscc 1.0.4-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-graphviz 2999.18.1.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-groups 0.4.0.0-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-gsasl 0.3.6-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-gtk-traymanager 0.1.6-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-gtk3 0.14.6-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-gtk 0.14.6-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-haddock-library 1.4.3-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-half 0.2.2.3-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-happstack-server 7.4.6.4-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-harp 0.4.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hashable-extras 0.2.3-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-hashmap 1.3.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hashtables 1.2.1.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-haskell-src 1.0.2.0-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hastache 0.6.1-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-haxr 3000.11.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-hclip 3.0.0.4-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hcwiid 0.0.5-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hdbc-session 0.1.1.0-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hedis 0.9.8-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-heredoc 0.2.0.0-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hex 0.1.2-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hierarchical-clustering 0.4.6-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hinotify 0.3.9-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-hint 0.6.0-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hjsmin 0.2.0.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hmatrix-gsl 0.17.0.0-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-hmatrix 0.17.0.2-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-hoauth2 0.5.4.0-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hookup 0.1.0.0-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hostname 1.0-12 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-hs-bibutils 5.5-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-hsemail 1.7.7-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-hsh 2.1.2-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-hsopenssl-x509-system 0.1.0.3-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hsopenssl 0.11.4.8-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_6.c:1:0: error:
haskell-hsp 0.10.0-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hspec-discover 2.4.3-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-hspec-expectations 0.8.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-hstatsd 0.1-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-hstringtemplate 0.8.6-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-hsyslog 4-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-html 1.0.1.2-13 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-http-client-tls 0.2.4.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-http-common 0.8.2.0-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-http-date 0.0.6.1-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-http-reverse-proxy 0.4.4-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-http-streams 0.8.5.3-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-http 1:4000.3.7-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-hunit 1.3.1.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-hxt-charproperties 9.2.0.1-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hxt-curl 9.1.1.1-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hxt-http 9.1.5.2-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-hxt-regex-xmlschema 9.2.0.3-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hxt-relaxng 9.1.5.5-8 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hxt-tagsoup 9.1.4-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hxt-unicode 9.0.2.4-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-hxt 9.3.1.16-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-icalendar 0.4.0.3-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-iconv 0.4.1.3-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-idna 0.3.0-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-ieee754 0.7.9-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-ifelse 0.85-13 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-incremental-parser 0.2.5.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-intern 0.9.1.4-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-intervals 0.7.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-io-storage 0.3-11 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-io-streams-haproxy 1.0.0.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-io-streams 1.3.6.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-iproute 1.7.1-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-irc-core 2.2.0.0-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-irc 0.6.1.0-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-ircbot 0.6.5.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-ixset-typed 0.3.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-ixset 1.0.7-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-js-flot 0.8.3-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-js-jquery 3.1.1-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-json 0.9.1-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-juicypixels 3.2.8.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-kan-extensions 5.0.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-keys 3.11-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-knob 0.1.1-10 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-lambdabot-core 5.1-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-lambdabot-irc-plugins 5.1-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-lambdabot-misc-plugins 5.1-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-lambdabot-novelty-plugins 5.1-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-lambdabot-reference-plugins 5.1-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-lambdabot-social-plugins 5.1-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-lambdahack 0.5.0.0-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-language-c 0.5.0-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-language-haskell-extract 0.2.4-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-language-python 0.5.4-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-lazysmallcheck 0.6-9 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-lens-action 0.2.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_7.c:1:0: error:
haskell-lens-aeson 1.0.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_7.c:1:0: error:
haskell-lexer 1.0.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-libxml-sax 0.7.5-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-lifted-async 0.9.1.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-lifted-base 0.2.3.10-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-linear 1.20.6-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_7.c:1:0: error:
haskell-listlike 4.5.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-log-domain 0.10.3.1-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-logict 0.6.0.2-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-lrucache 1.2.0.0-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-lucid-svg 0.7.0.0-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-lucid 2.9.8.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-math-functions 0.2.1.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-maths 0.4.8-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-mbox 0.3.3-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-memoize 0.8.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-memotrie 0.6.7-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-mersenne-random-pure64 0.2.0.5-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-microlens-ghc 0.4.8.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-microlens-mtl 0.1.10.0-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-microlens-platform 0.3.8.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-microlens-th 0.4.1.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-microlens 0.4.8.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-mime-mail-ses 0.3.2.3-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-mime-mail 0.4.13.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-mime-types 0.1.0.7-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-mime 0.4.0.2-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-minimorph 0.1.6.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-miniutter 0.4.6.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-misfortune 0.1.1.2-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-mmap 0.5.9-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-mmorph 1.0.9-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-monad-control 1.0.1.0-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-monad-journal 0.7.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-monad-logger 0.3.24-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-monad-par-extras 0.3.3-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-monad-unlift 0.2.0-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-monadcryptorandom 0.7.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-monadlib 3.7.3-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-monadplus 1.4.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-monadprompt 1.0.0.5-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-monadrandom 0.4.2.3-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-monads-tf 0.1.0.3-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-mono-traversable-instances 0.1.0.0-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-monoid-extras 0.4.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-monoid-subclasses 0.4.2.1-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-mountpoints 1.0.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-mtl 2.2.1-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-mtlparse 0.1.4.0-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-mueval 0.9.1.1.2-9 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-multipart 0.1.2-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-musicbrainz 0.2.4-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-mwc-random 0.13.6.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-names-th 0.2.0.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-ncurses 0.2.15-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-netwire 5.0.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-network-conduit-tls 1.2.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-network-info 0.2.0.8-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-network-multicast 0.2.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-network-protocol-xmpp 0.4.8-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-network-uri 2.6.1.0-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-network 2.6.3.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-newtype-generics 0.5-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-newtype 0.2-9 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-nonce 1.0.3-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-numeric-extras 0.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-numinstances 1.4-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-numtype-dk 0.5.0.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-numtype 1.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-objectname 1.1.0.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-oeis 0.3.9-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-ofx 0.4.2.0-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-old-locale 1.0.0.7-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-old-time 1.1.0.3-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-oo-prototypes 0.1.0.0-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-open-browser 0.2.1.0-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-opengl 3.0.2.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-openglraw 3.2.4.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-openpgp-asciiarmor 0.1-9 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-openssl-streams 1.2.1.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-operational 0.2.3.5-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-options 1.2.1.1-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-optparse-applicative 0.13.2.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-optparse-simple 0.0.3-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-pandoc-citeproc 0.10.4.1-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_6.c:1:0: error:
haskell-pandoc-types 1.16.1.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-pango 0.13.3.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-parallel-tree-search 0.4.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-parallel 3.2.1.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-parseargs 0.2.0.8-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-parsec 3.1.11-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-path-io 1.2.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-patience 0.1.1-9 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-pcap 0.4.5.2-11 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-pcre-light 0.4.0.4-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-persistable-record 0.4.1.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-persistable-types-hdbc-pg 0.0.1.4-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-persistent-postgresql 2.6.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-persistent-sqlite 2.6.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-pipes-parse 3.0.8-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-pipes-safe 2.2.5-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-pipes-zlib 0.4.4.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-pipes 4.3.4-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-pointed 5-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-pointedlist 0.6.1-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-polynomial 0.7.2-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-polyparse 1.12-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-posix-pty 0.2.1.1-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-postgresql-libpq 0.9.3.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_6.c:1:0: error:
haskell-postgresql-simple 0.5.3.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-pqueue 1.3.2.2-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-prelude-extras 0.4.0.3-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-presburger 1.3.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-pretty-show 1.6.13-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-prettyclass 1.0.0.0-6 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-prim-uniq 0.1.0.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-primes 0.2.1.0-10 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-primitive 0.6.1.0-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-process-extras 0.4.1.4-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-profunctors 5.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-psqueue 1.1-10 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-psqueues 0.2.2.3-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-publicsuffixlist 0.1-9 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-punycode 2.0-8 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-puremd5 2.1.3-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-pwstore-fast 2.4.4-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-qrencode 1.0.4-8 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-quickcheck-io 0.1.4-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-quickcheck-safe 0.1.0.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-quickcheck-simple 0.1.0.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-quickcheck-unicode 1.0.1.0-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-quickcheck 2.9.2-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-random-fu 0.2.7.0-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-random-shuffle 0.0.4-8 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-random-source 0.3.0.6-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-random 1.1-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-reactive-banana 1.1.0.1-2 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-readable 0.3.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-readline 1.0.3.0-7 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-recaptcha 0.1.0.3-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-recursion-schemes 5.0.1-1 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-reducers 3.12.1-4 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-refact 0.3.0.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-reflection 2.1.2-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghce93e_0/ghc_5.c:1:0: error:
haskell-reform-happstack 0.2.5.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-reform 0.2.7.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-regex-applicative-text 0.1.0.1-3 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-regex-base 0.93.2-10 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-regex-compat-tdfa 0.95.1.4-5 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error:
haskell-regex-compat 0.95.1-10 Failed [GCC_ERROR/CLANG_ERROR] In file included from /tmp/ghc8e97_0/ghc_4.c:1:0: error: