-
Notifications
You must be signed in to change notification settings - Fork 8
/
scanlog-3.1-2012-06-23
2242 lines (2242 loc) · 272 KB
/
scanlog-3.1-2012-06-23
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~r11863-2 Failed [CLANG_TIMEOUT] XXX
3depict 0.0.10-1 Failed [GCC_ERROR/CLANG_ERROR] base.h:37:10: fatal error: 'omp.h' file not found
9menu 1.8-5 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
9wm 1.2-9 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
a56 1.3-6 Failed [GCC_ERROR] main.c:188:4: error: non-void function 'sym_def' should return a value [-Wreturn-type]
aalib 1.4p5-39.1 Failed [GCC_ERROR] aalinuxkbd.c:203:2: error: non-void function 'rawmode_init' should return a value [-Wreturn-type]
aaphoto 0.41-1.1 Failed [GCC_ERROR/CLANG_ERROR] aaphoto.c:235:10: fatal error: 'omp.h' file not found
abcm2ps 5.9.25-1 Failed [BUILDDEPS] Dependencies installation failed
abook 0.6.0~pre2-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] filter.c:754: undefined reference to `field_id'
ace-of-penguins 1.3-8 Failed [GCC_ERROR] ./make-imglib.c:205:5: error: non-void function 'tokenize' should return a value [-Wreturn-type]
ace 6.0.3-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] .obj/FTP_Simple_exec.o:(.rodata._ZTV21My_FTP_RequestHandler[_ZTV21My_FTP_RequestHandler]+0xb0): undefined reference to `ACE::IOS::StreamInterceptorBase<char, std::char_traits<char> >::before_write(char const*, long)'
acedb 4.9.39+dfsg.01-5 Failed [GCC_ERROR] aqlparse.l:219:6: error: conflicting types for 'yyerror'
acfax 981011-14.1 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
ack 1.39-12 Failed [GCC_ERROR] kanjixcheck.c:215:3: error: non-void function 'CodeCheckAll' should return a value [-Wreturn-type]
aclock.app 0.2.3-4.3 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
acm 5.0-28 Failed [GCC_ERROR] disscope.c:175:2: error: non-void function 'main' should return a value [-Wreturn-type]
aconnectgui 0.9.0rc2-1-9 Failed [UNKNOWN] configure: error: Sufficiently new version of libasound not found.
acovea 5.1.1-2.1 Failed [GCC_ERROR] ./acovea.h:549:25: error: use of undeclared identifier 'm_fitness'; did you mean 'fitness'?
acpid 1:2.0.16-1 Failed [UNKNOWN] configure: error: C compiler cannot create executables
acpidump 20100513-3 Failed [GCC_ERROR] turbostat.c:477:3: error: non-void function 'print_nehalem_info' should return a value [-Wreturn-type]
actionaz 3.4.1-1.1 Failed [GCC_ERROR] type_traits:256:39: error: use of undeclared identifier '__float128'
activiz.net 1:1.0~git20111123-6 Failed [GCC_ERROR] stl_algobase.h:378: error: expected primary-expression before ')' token
adanaxisgpl 1.2.5.dfsg.1-4.1 Failed [GCC_ERROR] ./Mushcore/MushcoreSingleton.h:86:5: error: use of undeclared identifier 'SingletonPtrSet'
addresses-for-gnustep 0.4.7-1 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
adios 1.3-10 Failed [GCC_ERROR] adios_internals.c:4046:9: error: non-void function 'adios_generate_var_characteristics_v1' should return a value [-Wreturn-type]
adplug 2.2.1+dfsg1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ../src/.libs/libadplug.so: undefined reference to `OPL_CALC_RH'
adun.app 0.81-5 Failed [GCC_ERROR] AdLinkedList.c:53:5: error: redefinition of a 'extern inline' function 'AdUnsafeLinkedListAdd' is not supported in C99 mode
aegis 4.24.3-3 Failed [UNKNOWN] test/02/t0289a-walt.sh: 23: .: test_funcs: not found
aegisub 2.1.9-1 Failed [UNKNOWN] XXX
aesfix 1.0.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
aeskeyfind 1:1.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
aeskulap 0.2.2b1-11 Failed [GCC_ERROR] ./poolinstance.h:53:25: error: no function named 'remove_instance' with type 'void (const Glib::RefPtr<ImagePool::Instance> &)' was found in the specified scope
affiche 0.6.0-8 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
afpfs-ng 0.8.1-5 Failed [GCC_ERROR] loop.c:90:14: error: non-void function 'just_end_it_now' should return a value [-Wreturn-type]
afterstep 2.2.11-7 Failed [CLANG_ERROR/CLANG_LD_ERROR] asvector.c:299: undefined reference to `vector_move_data_up'
agave 0.4.7-2.1 Failed [GCC_ERROR] refptr.h:208:16: error: member access into incomplete type 'gcs::PaletteTreeModel'
agda-bin 2.3.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
agda 2.3.0.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
agenda.app 0.42.2-1 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
agg 2.5+dfsg1-8 Failed [GCC_ERROR] ../include/agg_renderer_outline_aa.h:1378:45: error: binding of reference to type 'agg::line_profile_aa' to a value of type 'const agg::line_profile_aa' drops qualifiers
aghermann 0.6.0.1-1 Failed [GCC_ERROR] ./sigproc.ii:64:20: error: redefinition of default argument
akonadi 1.7.2-1 Failed [GCC_ERROR] ../../server/src/nepomuk/queryserviceclient.h:81:113: error: expected ')'
alex 3.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
allegro4.2 2:4.2.2-3 Failed [BUILDDEPS] Dependencies installation failed
alliance 5.0-20120515-1 Failed [GCC_ERROR] elp.c:252:1: error: non-void function 'elpLotrsShrink' should return a value [-Wreturn-type]
alsa-tools 1.0.25-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] extract_ac3.c:251: undefined reference to `next_32_bits'
altermime 0.3.10-7 Failed [GCC_ERROR] ffget.c:553:20: error: equality comparison with extraneous parentheses [-Werror,-Wparentheses-equality]
altos 1.0.3 Failed [UNKNOWN] XXX
amide 1.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ui_study_cb.c:554: undefined reference to `amitk_space_b2s'
amideco 0.31e-3.1 Failed [GCC_ERROR] amideco.c:45:5: error: first parameter of 'main' (argument count) must be of type 'int'
amphetamine 0.8.10-18 Failed [CLANG_ERROR] error: invalid value '9' in '-O9'
ampliconnoise 1.25-1 Failed [GCC_ERROR] FCluster.c:675:3: error: non-void function 'outputCluster' should return a value [-Wreturn-type]
anjuta-extras 3.4.0-1 Failed [GCC_ERROR] style-editor.c:454:2: error: void function 'style_data_parse' should not return a value [-Wreturn-type]
anjuta 2:3.4.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find /usr/bin/../lib/libprofile_rt.a: No such file or directory
ann 1.1.2+doc-3 Failed [GCC_ERROR] ann2fig.cpp:583:1: error: C++ requires a type specifier for all declarations
ants 1.9.2+svn680.dfsg-4 Failed [GCC_ERROR] itkBSplineControlPointImageFilter.txx:890:16: error: default arguments cannot be added to an out-of-line definition of a member of a class template
apertium 3.1.0-2 Failed [GCC_ERROR] hmm.cc:730:23: error: variable length array of non-POD element type 'vector<TTag>'
aplus-fsf 4.22.1-4.2 Failed [GCC_ERROR] ../MSTypes/MSFloatMatrix.H:30:1: error: template specialization requires 'template<>'
apparmor 2.7.103-2 Failed [BUILDDEPS] Dependencies installation failed
apparmor 2.7.103-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] parser_interface.c:424: undefined reference to `sd_write_name'
apron 0.9.10-5.2 Failed [GCC_ERROR] ppl.hh:14384:15: error: flexible array member 'vec_' of non-POD element type 'Coefficient []'
aprsd 1:2.2.5-13-5.2 Failed [GCC_ERROR] cstring:101:3: error: declaration conflicts with target of using declaration already in scope
aprsdigi 2.4.4-3.1 Failed [GCC_ERROR/CLANG_ERROR] testparse.c:19:10: fatal error: 'netax25/kernel_ax25.h' file not found
aptitude 0.6.8-1 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--param ssp-buffer-size=4'
aqemu 0.8.2-2 Failed [GCC_ERROR] VM.cpp:4566:75: error: reference to type 'const QString' could not bind to an rvalue of type 'bool'
aqsis 1.8.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] aqsl.cpp:86: undefined reference to `ArgParse::ArgParse()'
aqualung 0.9~beta11-1.2 Failed [GCC_ERROR] gui_main.c:3237:60: error: expected ';' at end of declaration
arbtt 0.6.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
ardour 1:2.8.12-2 Failed [GCC_ERROR] libs/ardour/session.cc:2153:26: error: 'connecting_legal' is a protected member of 'ARDOUR::IO'
arj 3.10.22-10 Failed [UNKNOWN] XXX
arpon 2.0-2.1 Failed [GCC_ERROR] arpon.c:1114:71: error: comparison of unsigned expression < 0 is always false [-Werror,-Wtautological-compare]
asc 2.4.0.0-3 Failed [GCC_ERROR] movementtest.cpp:23:4: error: right operand to ? is void, but left operand is of type 'int'
ascd 0.13.2-5 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
ascdc 0.3-14 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
asclock 2.0.12-23 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
asmon 0.71-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] ../wmgeneral/misc.c:(.text+0x26c): undefined reference to `list_cons'
aspectc++ 1:1.1+svn20120529-1 Failed [GCC_ERROR] limits.h:36: error: unexpected token `(' in conditional
assimp 2.0.863+dfsg-2 Failed [BUILDDEPS] build-dependency not installable: libboost1.46-dev
aster 10.6.0-1-4 Failed [PYTHON_TRACEBACK] XXX
asterisk-chan-capi 1.1.5-1 Failed [GCC_ERROR/CLANG_ERROR] logger.h:87:64: error: expected function body after function declarator
asterisk 1:1.8.13.0~dfsg-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] utils.h:480: multiple definition of `_ast_calloc'
asymptote 2.15-1 Failed [CLANG_ERROR] clang: error: unsupported option '--no-var-tracking'
at-spi2-core 2.5.2-1 Failed [GCC_ERROR] deviceeventcontroller.c:1228:11: error: non-void function 'send_and_allow_reentry' should return a value [-Wreturn-type]
atftp 0.7.dfsg-11 Failed [GCC_ERROR] argz.c:44:8: error: redefinition of a 'extern inline' function 'argz_next' is not supported in C99 mode
atlas-cpp 0.6.2-3 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibatlas-cpp-0.6-1 -Idebian/libatlas-cpp-0.6-1.symbols -Pdebian/libatlas-cpp-0.6-1 -edebian/libatlas-cpp-0.6-1/usr/lib/x86_64-linux-gnu/libAtlas-0.6.so.1.0.0
atlas 3.8.4-7 Failed [GCC_ERROR] dasum.c:179:5: error: "This kernel requires SSE2"
atom4 4.1-5.1 Failed [GCC_ERROR] engine/ai.cc:343:1: error: control reaches end of non-void function [-Werror,-Wreturn-type]
ats-lang-anairiats 0.2.6-1 Failed [UNKNOWN] XXX
attica 0.2.0-1 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibattica0 -Idebian/libattica0.symbols -Pdebian/libattica0 returned exit code 1
audacious-analog-vumeter-plugin 1.0.0-0.1 Failed [GCC_ERROR/CLANG_ERROR] plugin_main.c:1:10: fatal error: 'gtk/gtk.h' file not found
audacity 2.0.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] fftlib.c:1050: undefined reference to `bfstages'
auto-multiple-choice 1.1.1-2 Failed [GCC_ERROR] AMC-traitement-image.c:228:28: error: expected ';' at end of declaration
autofs 5.0.6-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] automount.c:1408: undefined reference to `dump_core'
autolog 0.40-13.1 Failed [GCC_ERROR] autolog.c:358:2: error: non-void function 'save_users' should return a value [-Wreturn-type]
autounit 0.20.1-4 Failed [GCC_ERROR] test.c:305:7: error: expected expression
avant-window-navigator 0.4.1~bzr830-2 Failed [BUILDDEPS] build-dependency not installable: valac-0.10 (>= 0.9.1)
avifile 1:0.7.48~20090503.ds-12 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'
ax25-tools 0.0.10-rc2+cvs20120204-3 Failed [GCC_ERROR] ./rip98d.h:47:12: error: restrict requires a pointer or reference
ax25mail-utils 0.11-6.1 Failed [GCC_ERROR/CLANG_ERROR] ulistd.c:57:10: fatal error: 'netax25/kernel_ax25.h' file not found
axis2c 1.6.0-5.1 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--param ssp-buffer-size=4'
ball 1.4.1+20111206-3 Failed [GCC_ERROR] global.h:39:38: error: token is not a valid binary operator in a preprocessor subexpression
bandwidthd 2.0.1+cvs20090917-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] graph.c:73: undefined reference to `HostIp2CharIp'
banshee-community-extensions 2.4.0-1 Failed [GCC_ERROR] ./FloatingAverage.h:86:28: error: reference to non-static member function must be called; did you mean to call it with no arguments?
base-passwd 3.5.24 Failed [BUILDDEPS] Dependencies installation failed
bash 4.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
batmon.app 0.6-1 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
battleball 2.0-17 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
baycomepp 0.10-12.2 Failed [CLANG_ERROR/CLANG_LD_ERROR] sysdeps.h:214: multiple definition of `gettime'
baycomusb 0.10-12.1 Failed [CLANG_TIMEOUT] XXX
bbrun 1.6-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] misc.c:122: undefined reference to `list_cons'
beast 0.7.4-4 Failed [GCC_ERROR] ./birnetutils.hh:222:53: error: cannot initialize a variable of type 'bool' with an rvalue of type 'void'
bin-prot 2.0.7-1 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '-fno-defer-pop'
binutils-avr 2.20.1-2 Unknown [UNKNOWN] XXX
binutils-mingw-w64 1 Failed [UNKNOWN] XXX
binutils-mingw-w64 2 Unknown [UNKNOWN] XXX
binutils-msp430 2.22~msp20120406-2 Unknown [TIMEOUT]
binutils-z80 2.22-3 Failed [BUILDDEPS] Dependencies installation failed
binutils 2.22-6.1 Failed [GCC_ERROR] ../../bfd/opncls.c:256:5: error: expression result unused [-Werror,-Wunused-value]
biococoa 2.2.2-1 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
biosig4c++ 1.3.0-2 Failed [GCC_ERROR/CLANG_ERROR] cstdlib:139:3: error: declaration conflicts with target of using declaration already in scope
bird 1.3.7-1 Failed [GCC_ERROR] netlink.c:623:10: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
bisonc++ 4.01.00-1 Failed [GCC_ERROR] bisonc++.cc:14:9: error: initialization of non-aggregate type 'Arg::LongOption' (aka 'FBB::LongOption__') with an initializer list
blackbox 0.70.1-12 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibbt0 -Idebian/libbt0.symbols -Pdebian/libbt0 -edebian/libbt0/usr/lib/x86_64-linux-gnu/libbt.so.0.0.0
blacs-mpi 1.1-31 Failed [GCC_ERROR/LD_ERROR] blacsF77init_MPI-LINUX-0.a: could not read symbols: Archive has no index; run ranlib to add one
blacs-pvm 1.1-21 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
blas 1.2.20110419-3 Failed [UNKNOWN] XXX
blas 1.2.20110419-5 Failed [UNKNOWN] XXX
bliss 0.72-2 Failed [CLANG_ERROR] error: invalid value '9' in '-O9'
blktap 2.0.90-1 Failed [GCC_ERROR] libvhd.c:1073:2: error: indirection of non-volatile null pointer will be deleted, not trap [-Werror,-Wnull-dereference]
blobwars 1.19-2 Failed [GCC_ERROR] src/player.cpp:293:34: error: equality comparison with extraneous parentheses [-Werror,-Wparentheses-equality]
bluemon 1.4-6 Failed [GCC_ERROR] bluetooth-monitor.c:299:10: error: non-void function 'get_link_qual' should return a value [-Wreturn-type]
bluetile 0.6-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
bnfc 2.4.2.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
bobcat 3.01.00-1 Failed [GCC_ERROR] tmp/bobcat/fswap:94:12: error: 'Xch' is a private member of 'FBB::FSwap'
bogl 0.1.18-8 Failed [GCC_ERROR] bogl-font.c:83:23: error: expected ';' at end of declaration
bognor-regis 0.6.12+git20101007.02c25268-7 Failed [GCC_ERROR] bognor-upnp-cp.c:117:9: error: non-void function 'make_device_description' should return a value [-Wreturn-type]
boinc-app-seti 6.12~svn1305-2 Failed [GCC_ERROR] vector/x86_ops.h:135:42: error: type of machine mode does not match type of base type
boinc 7.0.27+dfsg-3 Failed [GCC_ERROR] ./unzip/extract.c:221:26: error: a parameter list without types is only allowed in a function definition
bomberclone 0.11.9-4 Failed [UNKNOWN] configure: error:
booth 0.1.0-1 Failed [CLANG_ERROR] clang: error: unknown warning option '-Wunsigned-char'
botan1.8 1.8.13-4 Failed [UNKNOWN] XXX
bowtie 0.12.7-3 Failed [GCC_ERROR] ./ebwt.h:3938:11: error: default arguments cannot be added to an out-of-line definition of a member of a class template
brickos 0.9.0.dfsg-6 Failed [GCC_ERROR] lnp.c:472:5: error: redefinition of a 'extern inline' function 'lnp_integrity_active' is not supported in C99 mode
brp-pacu 2.1.1+git20110314~repack1-2 Failed [GCC_ERROR] gui.c:876:7: error: void function 'open_cb' should not return a value [-Wreturn-type]
bsnes 0.088-3 Failed [GCC_ERROR] type_traits:256:39: error: use of undeclared identifier '__float128'
btrfs-tools 0.19+20120328-4 Failed [CLANG_ERROR] error: unknown argument: '-MMD'
bustle 0.2.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
busybox 1:1.20.0-4 Failed [GCC_ERROR] findutils/find.c:904:2: error: illegal storage class on function
bwa 0.6.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] bwt.c:71: undefined reference to `bwt_occ'
bwbasic 2.20pl2-11 Failed [GCC_ERROR] bwx_tty.c:69:1: error: 'main' must return 'int'
bwm-ng 0.6-3.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] bwm-ng.c:212: undefined reference to `get_iface_stats'
c2hs 0.16.3-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
cabal-debian 1.25-1 Failed [UNKNOWN] XXX
cadabra 1.29-1 Failed [GCC_ERROR] ./youngtab.hh:587:23: error: use of non-static data member 'rows' of 'filled_tableau' from nested type 'iterator'
cain 1.9-4 Failed [GCC_ERROR] ../numerical/random/discrete/DgPmfAndSumOrderedPairPointer.h:47:16: error: dependent using declaration resolved to type without 'typename'
cairo 1.12.2-2 Failed [GCC_ERROR] cairo-mutex-impl-private.h:262:3: error: "XXX: No mutex implementation found. Cairo will not work with multiple threads. Define CAIRO_NO_MUTEX to 1 to acknowledge and accept this limitation and compile cairo without thread-safety support."
calcurse 2.9.2-1 Failed [GCC_ERROR] io.c:1400:3: error: expected ';' at end of declaration
calf 0.0.18.6-5 Failed [GCC_ERROR] ./calf/buffer.h:156:20: error: member reference base type 'const data_type *' (aka 'const typename T::data_type *') is not a structure or union
calligra 1:2.4.2-2 Failed [GCC_ERROR] utils.h:541:42: error: reference to non-static member function must be called
camera.app 0.8.0-9 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
camlimages 1:4.0.1-4 Failed [GCC_ERROR] jpegread.c:420:3: error: non-void function 'read_jpeg_scanlines' should return a value [-Wreturn-type]
camomile 0.8.4-1 Failed [UNKNOWN] XXX
canna 3.7p3-9 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
cantor 4:4.7.4-3 Failed [BUILDDEPS] build-dependency not installable: kalgebra-dev
capi4hylafax 1:01.03.00.99.svn.300-16 Failed [GCC_ERROR] aStdLib.cpp:253:14: error: cannot initialize a variable of type 'tWiChar *' (aka 'wchar_t *') with an rvalue of type 'const wchar_t *'
caret 5.6.4~dfsg.1-3 Failed [GCC_ERROR/CLANG_ERROR] BrainModelVolumeROISmoothing.cxx:29:10: fatal error: 'omp.h' file not found
carettah 0.1.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
cbmc 4.1-1.2 Failed [GCC_ERROR] ../goto-programs/goto_program_template.h:333:30: error: invalid use of incomplete type 'contextt'
cbrpager 0.9.22-1 Failed [GCC_ERROR] global.c:775:7: error: non-void function 'main_canvas_keypressed1' should return a value [-Wreturn-type]
ccbuild 2.0.3-1 Failed [GCC_ERROR/CLANG_ERROR] src/system/system.ih:44:10: fatal error: 'omp.h' file not found
cccd 0.3beta4-7 Failed [GCC_ERROR] cddbp.c:100:19: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
ccrypt 1.9-4 Failed [UNKNOWN] XXX
cctools 3.5.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
cd-hit 4.6-2012-04-25-1 Failed [GCC_ERROR/CLANG_ERROR] cdhit-common.c++:36:9: fatal error: 'omp.h' file not found
cdebconf 0.167 Failed [BUILDDEPS] Dependencies installation failed
cdebootstrap 0.5.9 Failed [GCC_ERROR] ../../../../src/frontend/standalone/message.c:79:12: error: unused function 'unused' [-Werror,-Wunused-function]
cdecl 2.5-11 Failed [GCC_ERROR] cdecl.c:244:24: error: expected identifier or '('
cegui-mk2 0.7.6-2 Failed [GCC_ERROR] ../../cegui/include/CEGUIWindowFactoryManager.h:486:9: error: cannot catch reference to incomplete type 'CEGUI::Exception'
cenon.app 3.93-1.2 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
centerim 4.22.10-2 Failed [GCC_ERROR] jconn.c:827:3: error: non-void function 'jabber_recieve_file_fd' should return a value [-Wreturn-type]
ceph 0.44.1-1 Failed [GCC_ERROR] ./include/interval_set.h:90:35: error: no class named 'const_iterator' in 'interval_set<T>'
cernlib 20061220+dfsg3-2 Failed [GCC_ERROR] Imake.rules:2486:25: error: '#' is not followed by a macro parameter
charmap.app 0.2-11 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
chasen 2.4.4-18 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibchasen2 -Idebian/libchasen2.symbols -Pdebian/libchasen2 returned exit code 1
chiark-tcl 1.1.1 Failed [GCC_ERROR] writeable.c:78:15: error: variable 'hd' is uninitialized when used here [-Werror,-Wuninitialized]
chicken 4.7.0-1 Unknown [TIMEOUT]
chimera2 2.0a19-7 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
chromium-browser 20.0.1132.34~r141824-1 Failed [BUILDDEPS] Dependencies installation failed
chromium-browser 20.0.1132.43~r143823-1 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--param ssp-buffer-size=4'
chrony 1.26-1 Failed [UNKNOWN] cp: cannot stat `faq.html': No such file or directory
cifs-utils 2:5.5-1 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--param ssp-buffer-size=4'
clam-chordata 1.0.0-2 Failed [GCC_ERROR] TypeInfo.hxx:30:27: error: no type named 'type_info' in namespace 'std'
clam-networkeditor 1.4.0-3.1 Failed [GCC_ERROR] OutPort.hxx:287:9: error: call to function 'SameType' that is neither visible in the template definition nor found by argument-dependent lookup
clam 1.4.0-5.1 Failed [GCC_ERROR] scons/libs/core/include/CLAM/TypeInfo.hxx:30:27: error: no type named 'type_info' in namespace 'std'
clearsilver 0.10.5-1.3 Failed [GCC_ERROR] neo_files.c:219:12: error: expected expression
clisp 1:2.49-8.1 Failed [GCC_ERROR] lispbibl.d:9107:30: error: global register variables are not supported
clthreads 2.4.0-4 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibclthreads2 -Idebian/libclthreads2.symbols.amd64 -Pdebian/libclthreads2 -edebian/libclthreads2/usr/lib/x86_64-linux-gnu/libclthreads.so.2.4.0
clutter-gesture 0.0.2.1-7 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--param ssp-buffer-size=4'
clxclient 3.6.1-6 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibclxclient3 -Idebian/libclxclient3.symbols.amd64 -Pdebian/libclxclient3 -edebian/libclxclient3/usr/lib/x86_64-linux-gnu/libclxclient.so.3.6.1
cmdpack 1.03-1 Failed [GCC_ERROR] src/banner.h:7:2: error: embedding a #include directive within macro arguments is not supported
cmph 0.9-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./.libs/libcmph.so: undefined reference to `__jenkins_hash_vector'
codeblocks 10.05-2.1 Failed [GCC_ERROR] ../../../../src/include/scripting/squirrel/squtils.h:97:15: error: call to function 'sq_vm_realloc' that is neither visible in the template definition nor found by argument-dependent lookup
coin3 3.1.3-2.2 Failed [CLANG_ERROR] clang: error: the clang compiler does not support '-fno-for-scope'
coinor-cbc 2.5.0-2.3 Failed [TIMEOUT]
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_domain.hpp:180:18: error: return type of virtual function 'getSet' is not covariant with the return type of the function it overrides ('flopc::MP_set_base' is incomplete)
collectd 5.1.0-1 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] conftest.c:55: undefined reference to `shl_load'
comedilib 0.10.0-1 Failed [UNKNOWN] XXX
comedilib 0.10.0-3 Failed [UNKNOWN] XXX
compiz 0.8.4-5.2 Failed [GCC_ERROR] window.cpp:893:13: error: cannot initialize a variable of type 'KDecorationDefines::Region' with an rvalue of type 'long'
condor 7.8.1~dfsg.1-1 Failed [GCC_ERROR] HashTable.h:264:23: error: invalid operands to binary expression ('ThreadInfo' and 'const ThreadInfo')
cook 2.33-1 Failed [UNKNOWN] XXX
coriander 2.0.1-1 Failed [UNKNOWN] configure: error: The XV overlay libraries were not found
couchdb 1.1.1-2 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '-L/usr/local/lib'
courier 0.68.1-1 Failed [GCC_ERROR] ./webmlmd.H:52:12: error: elaborated type refers to a typedef
covered 0.7.10-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] lxt.c:153: undefined reference to `lxt2_rd_get_num_facs'
cowdancer 0.70 Failed [UNKNOWN] cow-shell unlink .ilist: No such file or directory
cp2k 2.2.426-4 Failed [CLANG_ERROR] clang: error: unable to execute command: posix_spawn failed: Cannot allocate memory
cpl 6.1.1-2 Failed [GCC_ERROR] cpl_column.c:12926:29: error: cannot compile this complex compound assignment yet
cpphs 1.13.3-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
cpuburn 1.4a-3 Failed [GCC_ERROR] burnK7.S:83:10: error: unexpected token in '.fill' directive
cqrlib 1.1.2-1 Failed [GCC_ERROR] ./cqrlib.h:576:31: error: member reference base type 'CPPQR<DistanceType, VectorType, MatrixType> *' is not a structure or union
crash 6.0.6-1 Unknown [TIMEOUT]
crawl 2:0.10.3-2 Failed [CLANG_ERROR] error: unknown argument: '-MD'
critterding 1.0-beta12.1-1.2 Failed [GCC_ERROR/CLANG_ERROR] ./../scenes/entities/worldb.h:15:10: fatal error: 'omp.h' file not found
crm114 20100106-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] crm_svm_matrix.h:252: undefined reference to `vector_set'
cronutils 1.2-1 Failed [GCC_ERROR] runstat.c:87:31: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
crtmpserver 1.0~dfsg-3 Failed [GCC_ERROR/CLANG_ERROR] <command line>:23:10: fatal error: 'common' file not found
crystalspace 1.4.0+dfsg-4 Failed [BUILDDEPS] unsatisfiable build-dependencies: libmng-dev, libsdl1.2-dev, libcegui-mk2-dev, libcucul-dev
csound 1:5.17.11~dfsg-1 Failed [UNKNOWN] XXX
ctn 3.0.6-13 Failed [GCC_ERROR] queue.c:256:5: error: non-void function 'queueDisplayImage' should return a value [-Wreturn-type]
ctwm 3.7-3.2 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
cuba 3.0+20111124-2 Failed [GCC_ERROR] ./src/vegas/Integrate.c:17:15: error: fields must have a constant size: 'variable length array in structure' extension will never be supported
cups-filters 1.0.18-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] dynstring.c:98: undefined reference to `dyn_vprintf'
cups 1.5.3-2 Failed [UNKNOWN] XXX
curves 0.8.19 Failed [GCC_ERROR] ./cvs.h:83:3: error: unknown type name 'VOIDPINT'
cutter-testing-framework 1.1.7-1.2 Failed [GCC_ERROR] ../../cppcutter/cppcut-assertions-helper.h:59:9: error: call to function 'assert_equal_reference' that is neither visible in the template definition nor found by argument-dependent lookup
cvc3 2.4.1-2 Failed [GCC_ERROR] ./minisat_global.h:154:43: error: implicit instantiation of undefined template 'MiniSat::STATIC_ASSERTION_FAILURE<false>'
cvm 0.96-1 Failed [UNKNOWN] XXX
cwidget 0.5.16-3.4 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--param ssp-buffer-size=4'
cynthiune.app 0.9.5-14 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
cyrus-sasl2 2.1.25.dfsg1-4 Failed [GCC_ERROR] ../../lib/common.c:844:20: error: void function 'sasl_dispose' should not return a value [-Wreturn-type]
cython 0.15.1-2 Failed [PYTHON_TRACEBACK] XXX
dacs 1.4.27b-1 Failed [UNKNOWN] XXX
dancer-ircd 1.0.36-8 Failed [GCC_ERROR] channel.c:564:80: error: unused parameter 'was_kicked' [-Werror,-Wunused-parameter]
darcs-monitor 0.3.8-2 Failed [BUILDDEPS] unsatisfiable build-dependency: libghc6-haxml-dev (< 1:1.14) but 1:8 is to be installed
darcs 2.8.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
datapacker 1.0.1+nmu1 Failed [BUILDDEPS] unsatisfiable build-dependencies: libghc6-unix-dev, libghc6-filepath-dev
db1-compat 2.1.3-15 Failed [BUILDDEPS] Dependencies installation failed
db4.8 4.8.30-12 Failed [GCC_ERROR] libtool.m4: error: problem compiling CXX test program
db5.3 5.3.15-4 Failed [GCC_ERROR] ../src/dbinc/atomic.h:179:19: error: definition of builtin function '__atomic_compare_exchange'
db 5.1.29-4 Failed [GCC_ERROR] ../src/dbinc/atomic.h:179:19: error: definition of builtin function '__atomic_compare_exchange'
dballe 5.18-1 Failed [GCC_ERROR] tests.h:58:15: error: call to function 'operator!=' that is neither visible in the template definition nor found by argument-dependent lookup
dbus-c++ 0.9.0-6 Failed [GCC_ERROR] ../../include/dbus-c++/dispatcher.h:259:5: error: no matching function for call to '_init_threading'
dcap 2.47.6-2 Failed [GCC_ERROR] ./util.h:14:12: error: expected parameter declarator
dclock 2.2.2-6 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
dcraw 8.99-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
ddccontrol 0.4.2-10 Failed [CLANG_ERROR/CLANG_LD_ERROR] i2c-algo-bit.c:507: undefined reference to `readbytes'
ddd 1:3.3.12-3 Unknown [TIMEOUT]
dds2tar 2.5.2-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
dds 2.1.2+ddd105-1 Failed [GCC_ERROR/CLANG_ERROR] ./dll.h:26:14: fatal error: 'omp.h' file not found
deal.ii 7.1.0-1 Failed [BUILDDEPS] build-dependency not installable: libtrilinos-dev (>= 9.0.2.dfsg-4)
deb-gview 0.2.9 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--param ssp-buffer-size=4'
debconf-kde 0.2-2 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibdebconf-kde0 -Idebian/libdebconf-kde0.symbols.amd64 -Pdebian/libdebconf-kde0 -edebian/libdebconf-kde0/usr/lib/libdebconf-kde.so.0.1.0
deborphan 1.7.28.7 Failed [CLANG_ERROR/CLANG_LD_ERROR] deborphan.c:179: undefined reference to `xmalloc'
debram 1.0.3-0.2 Failed [CLANG_ERROR/CLANG_LD_ERROR] conv.c:131: undefined reference to `unlat1'
devil 1.7.8-6.1 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,-Wconversion]
diagnostics 0.3.3-1.3 Failed [GCC_ERROR] annotations.cpp:46:1: error: unused function 'dummy_for_semicolon_do_not_use' [-Werror,-Wunused-function]
dialign-t 1.0.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] diag.c:1845: undefined reference to `find_diags_dialign'
dico 2.2-1 Failed [GCC_ERROR] tree.c:1044:4: error: non-void function 'node_reduce' should return a value [-Wreturn-type]
dicom3tools 1.0~20120505-1 Failed [GCC_ERROR] ./Imakefile:163:3: error: invalid preprocessing directive
diet 2.8.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ../utils/DAGDA/libDIET_Dagda.so.2.8: undefined reference to `operator>>=(short, cdrStream&)'
dietlibc 0.33~cvs20120325-3 Failed [GCC_ERROR] <instantiation>:2:23: error: expected '@' or '%' before type
dimbl 0.11-1 Failed [UNKNOWN] configure: error: We need OpenMP, please use a recent compiler!
discount 2.1.3-3 Failed [UNKNOWN] XXX
distcc 3.1-5 Failed [GCC_ERROR] src/snprintf.h:30:5: error: expected parameter declarator
distro-info 0.10 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--param ssp-buffer-size=4'
disulfinder 1.2.11-2 Failed [GCC_ERROR] Input/buildXfolds.cpp:16:41: error: variable length array of non-POD element type 'std::vector<std::string>'
dmalloc 5.5.2-2 Failed [CLANG_TIMEOUT] XXX
dmalloc 5.5.2-5 Failed [GCC_ERROR] malloc.c:1911:3: error: non-void function 'dmalloc_tag_pnt' should return a value [-Wreturn-type]
dmapi 2.2.10-1 Failed [UNKNOWN] XXX
dmtcp 1.2.5-1 Failed [CLANG_ERROR] clang: error: unsupported argument '-adhl=mtcp.lis' to option '-Wa,'
docsis 0.9.6+git16-g61ee500+dfsg-1 Failed [GCC_ERROR] stdlib.h:488:13: error: conflicting types for 'free'
dolfin 1.0.0-6 Failed [GCC_ERROR] ErrorControl.h:195:40: error: no function named 'adapt' with type 'const dolfin::ErrorControl &(const dolfin::ErrorControl &, boost::shared_ptr<const Mesh>, bool)' was found in the specified scope
donkey 0.5-19 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--param ssp-buffer-size=4'
dosbox 0.74-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] clang: error: linker command failed with exit code 1 (use -v to see invocation)
doxymacs 1.8.0-6 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '-fexpensive-optimizations'
dragonegg 3.0-3.2 Failed [GCC_ERROR] g++-4.6: error: directory": No such file or directory
drift 2.2.3-2.1 Failed [UNKNOWN] Could not find module `System'
drizzle 1:7.1.36-stable-1 Failed [GCC_ERROR] drizzled/cursor.cc:1339:7: error: unknown flag
dsbltesters 0.9.5-4 Failed [GCC_ERROR] httptest.c:41:7: error: conflicting types for 'getline'
dump 0.4b44-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ext2fs.h:1692: multiple definition of `ext2fs_div64_ceil'
dumpet 2.1-4 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--param ssp-buffer-size=4'
dune-grid 2.2.0-1 Failed [GCC_ERROR] ../../../dune/grid/albertagrid/elementinfo.hh:264:26: error: reference to non-static member function must be called; did you mean to call it with no arguments?
dvdisaster 0.72.4-1 Failed [UNKNOWN] XXX
dvi2dvi 2.0alpha-9.2 Failed [GCC_ERROR] dviconv.c:119:7: error: non-void function 'dviconv' should return a value [-Wreturn-type]
dvi2ps 5.1j-1 Failed [GCC_ERROR] virfont.c:320:2: error: non-void function 'vf_mc' should return a value [-Wreturn-type]
dx 1:4.4.4-4 Failed [GCC_ERROR] lock.c:939:2: error: non-void function 'DXunlock' should return a value [-Wreturn-type]
dynalogin 0.9.14-1 Failed [GCC_ERROR] dynalogind.c:65:3: error: non-void function 'read_line' should return a value [-Wreturn-type]
dynare 4.3.0-2 Failed [GCC_ERROR] DynamicModel.cc:213:19: error: variable length array of non-POD element type 'ostringstream' (aka 'basic_ostringstream<char>')
e2fsprogs 1.42.4-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] ext2fs.h:1692: multiple definition of `ext2fs_div64_ceil'
e2tools 0.0.16-6.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ext2fs.h:1692: multiple definition of `ext2fs_div64_ceil'
e2undel 0.82-1.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ext2fs.h:1692: multiple definition of `ext2fs_div64_ceil'
ebview 0.3.6.2-1.2 Failed [CLANG_ERROR/CLANG_LD_ERROR] dump.c:123: undefined reference to `isjisp'
ecl 11.1.1-4 Failed [GCC_ERROR] unixint.d:261:17: error: non-void function 'lisp_signal_handler' should return a value [-Wreturn-type]
edenmath.app 1.1.1a-7 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
efibootmgr 0.5.4-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] disk.c:154: undefined reference to `get_scsi_pci'
efilinux 1.0-1 Failed [GCC_ERROR] efibind.h:88:9: error: unknown type name 'uint64_t'
eggdrop 1.6.20-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] match.c:436: undefined reference to `cron_matchfld'
einstein 2.0.dfsg.2-9 Failed [CLANG_ERROR] error: invalid value '6' in '-O6'
eiskaltdcpp 2.2.6-4 Failed [GCC_ERROR] stl_stack.h:220:16: error: expected parameter declarator
ekeyd 1.1.5-4 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--param ssp-buffer-size=4'
elfutils 0.153-1 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--param ssp-buffer-size=4'
elilo 3.12-4.1 Failed [GCC_ERROR] efibind.h:88:9: error: unknown type name 'uint64_t'
elmerfem 6.1.0.svn.5396.dfsg-5.2 Failed [GCC_ERROR] iso_varying_string.src:1363:14: error: empty character constant
embassy-domsearch 0.1.0++20100721-3 Failed [BUILDDEPS] unsatisfiable build-dependencies: XXX
ember 0.6.2+dfsg-2 Failed [GCC_ERROR] CEGUIWindowFactoryManager.h:486:9: error: cannot catch reference to incomplete type 'CEGUI::Exception'
emil 2.1.0-beta9.dfsg-1.1 Failed [GCC_ERROR] conv.c:71:1: error: second parameter of 'main' (argument array) must be of type 'char **'
enblend-enfuse 4.0+dfsg-4 Failed [GCC_ERROR] ../../src/anneal.h:669:19: error: read-only variable is not assignable
enigma 1.10~~pre-alpha+r2236-1 Failed [GCC_ERROR] ./ecl_dict.hh:134:27: error: calling a private constructor of class 'ecl::XInvalidKey'
eq10q 1.2-2 Failed [GCC_ERROR] pstream.h:1820:28: error: out-of-line definition of 'redi::basic_pstreambuf::wpipe' differs from the declaration in the return type
eris 1.3.19-5 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -pliberis-1.3-19 -Idebian/liberis-1.3-19.symbols -Pdebian/liberis-1.3-19 -edebian/liberis-1.3-19/usr/lib/x86_64-linux-gnu/liberis-1.3.so.19.0.0
esperanza 0.4.0+git20091017-2 Failed [GCC_ERROR] coll.h:615:6: error: binding of reference to type 'Xmms::Coll::Coll' to a value of type 'const Xmms::Coll::Coll' drops qualifiers
esys-particle 2.1-4 Failed [GCC_ERROR] ./SphAggGougeBlock.hpp:39:37: error: no viable conversion from 'const_iterator' (aka '__normal_iterator<const_pointer, std::vector<boost::shared_ptr<esys::lsm::SphereBlockGenerator>, std::allocator<boost::shared_ptr<esys::lsm::SphereBlockGenerator> > > >') to 'vector<SBG_ptr>::iterator' (aka '__normal_iterator<pointer, std::vector<boost::shared_ptr<esys::lsm::SphereBlockGenerator>, std::allocator<boost::shared_ptr<esys::lsm::SphereBlockGenerator> > > >')
eterm 0.9.6-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ./.libs/libEterm.so: undefined reference to `posix_get_pty'
etl 0.04.15-1 Failed [CLANG_TIMEOUT] XXX
etoile 0+20080616+dfsg-2 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
etsf-io 1.0.3-4 Failed [UNKNOWN] configure: error: "No 'NetCDF' library found."
etw 3.6+svn140-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] loops.c:284: undefined reference to `HandleControl'
eurephia 1.0.1-3 Failed [GCC_ERROR] eurephiadm.c:203:46: error: expected ';' at end of declaration
evolvotron 0.6.1-2 Failed [UNKNOWN] XXX
exactimage 0.8.5-4 Failed [GCC_ERROR] agg_renderer_outline_aa.h:1378:45: error: binding of reference to type 'agg::line_profile_aa' to a value of type 'const agg::line_profile_aa' drops qualifiers
excellent-bifurcation 0.0.20071015-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] display_init.c:(.text+0x3e89): undefined reference to `xpart'
exim4 4.80-3 Failed [BUILDDEPS] Dependencies installation failed
exim4 4.80-4 Failed [GCC_ERROR] acl.c:2735:31: error: use of '%n' in format string discouraged (potentially insecure) [-Werror,-Wformat-security]
ext3grep 0.10.1-3.2 Failed [UNKNOWN] XXX
extrema 4.4.5.dfsg-3 Failed [GCC_ERROR] AxisPopup.cpp:217:19: error: variable length array of non-POD element type 'wxString'
eztrace 0.7-2-2 Failed [GCC_ERROR] pthread_core.c:69:5: error: non-void function 'pthread_create' should return a value [-Wreturn-type]
fairymax 4.8q-2 Failed [GCC_ERROR] fairymax.c:476:20: error: non-void function 'LoadGame' should return a value [-Wreturn-type]
fastx-toolkit 0.0.13.2-1 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--param ssp-buffer-size=4'
faumachine 20110812-1.2 Failed [GCC_ERROR] libinit_rm_a-video.s:2:8: error: .code16 not supported yet
fbreader 0.12.10dfsg-6 Failed [GCC_ERROR] Library.cpp:42:10: error: qualified reference to 'Library' is a constructor name rather than a type wherever a constructor can be declared
fcitx-googlepinyin 0.1.5-2 Failed [GCC_ERROR] eim.cpp:281:9: error: no matching function for call to 'iconv'
fcitx-unikey 0.1.0-1 Failed [GCC_ERROR] unikey-im.cpp:113:5: error: no matching function for call to 'iconv'
fcitx 1:4.2.4.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] Fcitx-1.0.o:(.data+0x8): undefined reference to `fcitx_input_method_get_type'
fdm 1.6+cvs20111013-2 Failed [CLANG_ERROR] clang: error: '-I-' not supported, please use -iquote instead
ferret-vis 6.6.2-1.1 Unknown [UNKNOWN] XXX
ffindex 0.9.3-2 Failed [GCC_ERROR] ffindex.c:359:68: error: expected ';' at end of declaration
fftw3 3.3.2-3 Failed [UNKNOWN] configure: error: don't know how to enable OpenMP
fgfs-atlas 0.3.1-2 Failed [GCC_ERROR] Atomic:244:48: error: cannot initialize a parameter of type 'void *' with an lvalue of type 'const void *const'
fgrun 1.6.0-1 Failed [GCC_ERROR] Atomic:244:48: error: cannot initialize a parameter of type 'void *' with an lvalue of type 'const void *const'
fhist 1.18-1 Failed [GCC_ERROR] common/input.c:34:1: error: redefinition of a 'extern inline' function 'input_name' is not supported in C99 mode
file-browser-applet 0.6.6-1 Failed [BUILDDEPS] Dependencies installation failed
filezilla 3.5.3-1 Failed [GCC_ERROR/CLANG_ERROR] conftest.c:11:10: fatal error: 'ac_nonexistent.h' file not found
filtergen 0.12.4-5.1 Failed [GCC_ERROR] fg-iptables.c:338:2: error: use of GNU old-style field designator extension [-Werror,-Wgnu-designator]
filters 2.48 Failed [GCC_ERROR] cockney.l:21:12: error: expected ';' at end of declaration
fim 0.3-beta-prerelease-1.3 Failed [GCC_ERROR/CLANG_ERROR] regex.c:54:11: fatal error: 'config.h' file not found
firebird2.1 2.1.5.18496-0.ds2-1 Failed [GCC_ERROR] ../src/include/../common/classes/alloc.h:434:14: error: exception specification in declaration does not match previous declaration
firebird2.1 2.1.5~svn+54537.ds2-1 Failed [BUILDDEPS] Dependencies installation failed
flasm 1.62-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] lex.yy.c:(.text+0xc7e): undefined reference to `newLine'
fldigi 3.21.45-2 Failed [GCC_ERROR] throb/throb.cxx:413:16: error: variable length array of non-POD element type 'complex'
flexc++ 0.98.00-1 Failed [GCC_ERROR] fswap:94:12: error: 'Xch' is a private member of 'FBB::FSwap'
flexml 1.9.2-1 Failed [UNKNOWN] XXX
flightgear 2.4.0-1.1 Failed [GCC_ERROR] Atomic:244:48: error: cannot initialize a parameter of type 'void *' with an lvalue of type 'const void *const'
flint 1.011-2 Failed [GCC_ERROR] QS/mpQS.c:403:5: error: second parameter of 'main' (argument array) must be of type 'char **'
floatbg 1.0-28 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
flow-tools 1:0.68-12.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ftfil.c:3094: undefined reference to `eval_match_src_as'
fltk1.1 1.1.10-14 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibfltk1.1 -Idebian/libfltk1.1.symbols -Pdebian/libfltk1.1 -edebian/libfltk1.1/usr/lib/x86_64-linux-gnu/libfltk.so.1.1
fltk1.3 1.3.0-8 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibfltk1.3 -Idebian/libfltk1.3.symbols -Pdebian/libfltk1.3 -edebian/libfltk1.3/usr/lib/x86_64-linux-gnu/libfltk.so.1.3
flush 0.9.12-3 Failed [GCC_ERROR] format.cpp:180:28: error: call to '_F' is ambiguous
foundry 0.0.20100226-1 Failed [GCC_ERROR] ./tree_bison_tree.hpp:93:1: error: 'node_const_visitor' defined as a class here but previously declared as a struct [-Werror,-Wmismatched-tags]
fplll 2.1.6+20071129-2.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] .libs/dummy.o: could not read symbols: Bad value
fracplanet 0.4.0-2 Failed [UNKNOWN] XXX
fracplanet 0.4.0-3 Failed [UNKNOWN] XXX
freecad 0.12.5284-dfsg-7 Failed [GCC_ERROR] DocumentObjectGroup.cpp:186:1: error: explicit specialization of 'classTypeId' after instantiation
freecdb 0.75 Failed [CLANG_ERROR/CLANG_LD_ERROR] cdbmake.c:59: undefined reference to `getch'
freecell-solver 3.4.0-1 Failed [BUILDDEPS] Dependencies installation failed
freecraft 1:1.20-1.1 Failed [CLANG_ERROR/CLANG_LD_ERROR] stdafx.h:90: multiple definition of `MulDiv'
freedroidrpg 0.15.1-1 Failed [GCC_ERROR] quest_browser_ui.c:609:4: error: expected ';' at end of declaration
freefem++ 3.19.1-1 Failed [GCC_ERROR] ./../femlib/GenericMesh.hpp:119:72: error: void function 'SetNumPerm' should not return a value [-Wreturn-type]
freefem3d 1.0pre10-3.1 Failed [GCC_ERROR] ../solver/ConformTransformation.hpp:590:15: error: no member named 'gaussPivot' in the global namespace
freehdl 0.0.7-1.1 Failed [GCC_ERROR] ../freehdl/std-vhdl-types.hh:1486:58: error: called object type 'int' is not a function or function pointer
freerdp 1.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] ../../libfreerdp-core/libfreerdp-core.so.1.0.1: undefined reference to `update_read_delta_points'
freesci 0.6.4-7 Failed [GCC_ERROR] core.c:916:3: error: non-void function 'sfx_send_midi' should return a value [-Wreturn-type]
freetuxtv 0.6.5~dfsg1-1 Failed [GCC_ERROR] gtk-libvlc-instance.c:152:3: error: non-void function 'gtk_libvlc_instance_new' should return a value [-Wreturn-type]
freetype 2.4.9-1 Failed [UNKNOWN] configure: error: C compiler cannot create executables
fribidi 0.19.2-3 Failed [GCC_ERROR] fribidi-char-sets-cap-rtl.c:109:6: error: expected expression
frog 0.12.9-3 Failed [UNKNOWN] configure: error: We need OpenMP, please use a recent compiler!
frown 0.6.1-13 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
frozen-bubble 2.212-3 Failed [CLANG_ERROR] clang: error: -lglib-2.0: 'linker' input unused when '-c' is present
fstrcmp 0.4.D001-1 Failed [CLANG_ERROR] clang: error: -Wl,--as-needed: 'linker' input unused when '-c' is present
fsvs 1.2.3-0+nmu1 Failed [UNKNOWN] configure: error: You have a sparse S_IFMT. Please tell the dev@ mailing list.
fte 0.50.2b6-1 Failed [GCC_ERROR] con_linux.cpp:434:12: error: variable length array of non-POD element type 'TCell'
ftp.app 0.2-3 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
ftphs 1.0.8-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
fvwm1 1.24r-55 Failed [GCC_ERROR/CLANG_ERROR] Imake.rules:1674:27: error: empty character constant
fvwm 1:2.5.30.ds-1.1 Failed [UNKNOWN] configure: error: "
fwbuilder 5.1.0-3 Failed [GCC_ERROR] CompilerDriver_ipt_run.cpp:655:16: error: invalid operands to binary expression ('QTextStream' and '<overloaded function type>')
fweb 1.62-11.1 Failed [GCC_ERROR] ./t_type.h:53:5: error: second parameter of 'main' (argument array) must be of type 'char **'
g-wrap 1.9.14-1 Failed [GCC_ERROR] inttypes.h:298:8: error: unknown type name 'intmax_t'
g15daemon-audacious 2.5.7-4 Failed [UNKNOWN] configure: error: Cannot find glib2/gtk2/pango
gabedit 2.4.2-2 Failed [GCC_ERROR/CLANG_ERROR] Grid.c:23:10: fatal error: 'omp.h' file not found
galib 2.4.7-3 Failed [GCC_ERROR] ../../ga/../ga/GA1DArrayGenome.C:225:3: error: use of undeclared identifier 'initializer'
gambas3 3.1.1-2 Failed [GCC_ERROR] gb_error.c:92:26: error: expected ';' at end of declaration
game-music-emu 0.5.5-2 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibgme0 -Idebian/libgme0.symbols -Pdebian/libgme0 -c4 returned exit code 2
gamera 3.3.3-1 Failed [GCC_ERROR] GA1DArrayGenome.C:225:3: error: use of undeclared identifier 'initializer'
gamin 0.1.10-4 Failed [GCC_ERROR] gam_eq.c:127:3: error: non-void function 'gam_eq_flush' should return a value [-Wreturn-type]
gammu 1.31.90-1 Failed [GCC_ERROR] backtext.c:2984:30: error: adding 'int' to a string does not append to the string [-Werror,-Wstring-plus-int]
ganeti 2.5.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x1d1): undefined reference to `base_GHCziStable_StablePtr_con_info'
gap 4r4p12-2 Failed [UNKNOWN] XXX
garden-of-coloured-lights 1.0.8-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] enemy.c:4421: undefined reference to `ypart'
gargoyle-free 2011.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] terps/nitfol/op_math.c:(.text+0x2d): undefined reference to `set_var'
gauche-c-wrapper 0.6.1-4.1 Failed [CLANG_ERROR] clang: error: unable to execute command: Broken pipe
gauche-gtk 0.4.1-13 Failed [GCC_ERROR] configure.in:10: error: possibly undefined macro: AC_GAUCHE_INIT_EXT
gauche 0.9.1-5 Failed [BUILDDEPS] Dependencies installation failed
gbatnav 1.0.4cvs20051004-5 Failed [GCC_ERROR] play.c:509:3: error: non-void function 'lookup_funcion' should return a value [-Wreturn-type]
gbsplay 0.0.91-1 Failed [UNKNOWN] XXX
gcc-3.3 1:3.3.6ds1-25 Unknown [TIMEOUT]
gcc-4.4 4.4.7-1 Failed [GCC_ERROR] ../../src/gcc/toplev.c:536:1: error: redefinition of a 'extern inline' function 'floor_log2' is not supported in C99 mode
gcc-avr 1:4.7.0-2 Failed [UNKNOWN] bash: debian/runcheck.sh: No such file or directory
gcc-h8300-hms 1:3.4.6-7 Unknown [UNKNOWN] XXX
gcc-m68hc1x 1:3.3.6+3.1+dfsg-3 Unknown [UNKNOWN] XXX
gcc-msp430 4.6.3~mspgcc-20120406-3 Unknown [TIMEOUT]
gccxml 0.9.0+cvs20120420-3 Failed [GCC_ERROR] genmodes.c:829:28: error: use of '%n' in format string discouraged (potentially insecure) [-Werror,-Wformat-security]
gcin 2.7.6.1+dfsg-1 Failed [GCC_ERROR] pho-play.cpp:15:5: error: non-void function 'pho_play' should return a value [-Wreturn-type]
gcj-4.6 4.6.3-2 Unknown [TIMEOUT]
gcj-4.7 4.7.1-1 Unknown [TIMEOUT]
gcl 2.6.7-101 Failed [CLANG_ERROR/CLANG_LD_ERROR] sys_pre_gcl.c:(.text+0x0): multiple definition of `m__gmpz_add'
gcompris 12.01-1 Failed [GCC_ERROR] gcompris_confirm.c:211:10: error: implicit conversion from enumeration type 'GtkJustification' to different enumeration type 'GtkAnchorType' [-Werror,-Wconversion]
gdb-avr 7.2-1 Unknown [TIMEOUT]
gdb-mingw-w64 5 Failed [GCC_ERROR] ../../../upstream/libiberty/../include/libiberty.h:616:12: error: expected parameter declarator
gdb-msp430 7.2a~mspgcc-20111205-1 Unknown [TIMEOUT]
gdb 7.4.1-1.1 Failed [GCC_ERROR] opncls.c:249:5: error: expression result unused [-Werror,-Wunused-value]
gdc-4.4 1.063-4.4.7-1 Failed [GCC_ERROR] ../../src/gcc/toplev.c:536:1: error: redefinition of a 'extern inline' function 'floor_log2' is not supported in C99 mode
gdc-4.6 0.29.1-4.6.3-1 Failed [GCC_ERROR] cstring:101:3: error: declaration conflicts with target of using declaration already in scope
gdcm 2.2.0-13 Failed [GCC_ERROR] stl_algobase.h:378: error: expected primary-expression before ')' token
gdigi 0.2.0+hg20110905r195-1 Failed [GCC_ERROR/CLANG_ERROR] gui.c:24:10: fatal error: 'knob.h' file not found
gdis 0.90-4 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-9 Failed [GCC_ERROR] Imake.rules:2486:25: error: '#' is not followed by a macro parameter
gearmand 0.32-2 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lpthreads
gegl 0.2.0-2 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibgegl-0.2-0 -Idebian/libgegl-0.2-0.symbols -Pdebian/libgegl-0.2-0 -edebian/libgegl-0.2-0/usr/lib/x86_64-linux-gnu/libgegl-0.2.so.0.199.1
geki2 2.0.3-8 Failed [GCC_ERROR] ranking.c:18:5: error: non-void function 'ScoreRanking' should return a value [-Wreturn-type]
geki3 1.0.3-7 Failed [GCC_ERROR] ranking.c:18:5: error: non-void function 'ScoreRanking' should return a value [-Wreturn-type]
genius 1.0.14-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] gtkplot3d.c:1749: undefined reference to `roundint'
geos 3.3.3-1 Failed [GCC_ERROR/CLANG_ERROR] geos_wrap.cxx:856:10: fatal error: 'ruby.h' file not found
geotranz 3.1-2.1 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibgeotranz3.1 -Idebian/libgeotranz3.1.symbols -Pdebian/libgeotranz3.1 returned exit code 1
gerris 20110329-dfsg.2-1 Failed [UNKNOWN] configure: error:
gesftpserver 0.1-3 Failed [UNKNOWN] XXX
getfem++ 4.1.1-10 Failed [GCC_ERROR] ./gmm/gmm_interface.h:834:25: error: reference to non-static member function must be called
gforth 0.7.0+ds1-6 Failed [UNKNOWN] make[1]: emacs: Command not found
gfpoken 0.32-2 Failed [GCC_ERROR] main.c:681:3: error: non-void function 'leveldraw_drag_end' should return a value [-Wreturn-type]
ggobi 2.1.10-4 Failed [GCC_ERROR] ggobi-data.c:45:7: error: #line directive requires a positive integer argument
ghc-mod 1.10.15-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
ghc 7.4.1-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
ghostscript 9.05~dfsg-6 Failed [GCC_ERROR] ./base/gsdevice.c:1010:25: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
giftrans 1.12.2-16 Failed [UNKNOWN] XXX
gimp-dimage-color 1.1.0-3 Failed [GCC_ERROR] gimpmatrix.h:23:2: error: "Only <libgimpmath/gimpmath.h> can be included directly."
gimp-plugin-registry 5.20120621 Failed [GCC_ERROR] ./refinerThreaded.h:297:25: error: expected ';' at end of declaration
gimp 2.8.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] gimp.c:256: undefined reference to `xcf_init'
ginkgocadx 2.12.0.4889-1 Failed [GCC_ERROR] idicom.h:199:23: error: implicit instantiation of undefined template 'std::basic_stringstream<char, std::char_traits<char>, std::allocator<char> >'
git-annex 3.20120614 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
git 1:1.7.10.4-1 Failed [CLANG_ERROR] error: invalid object 100644 1000000000000000000000000000000000000000 for 'dir/file1'
gitg 0.2.4-1.1 Failed [GCC_ERROR] gitg-blame-renderer.c:169:58: error: implicit conversion from enumeration type 'GtkStateType' to different enumeration type 'GtkStateFlags' [-Werror,-Wconversion]
github-backup 1.20120314 Failed [BUILDDEPS] build-dependency not installable: libghc-github-dev
gitit 0.10-1 Unknown [TIMEOUT]
gitit 0.10.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
givaro 3.7.0-2 Failed [GCC_ERROR] ../src/library/poly1/givaro/givpoly1kara.inl:36:35: error: read-only variable is not assignable
glade-3 3.6.7-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] glade-xml-utils.c:893: undefined reference to `g_module_open'
glib2.0 2.32.3-1 Failed [GCC_ERROR] test-printf.c:570:36: error: use of '%n' in format string discouraged (potentially insecure) [-Werror,-Wformat-security]
glibmm2.4 2.32.0-1 Failed [UNKNOWN] XXX
gliv 1.9.7-2 Failed [GCC_ERROR] gliv-image.c:55:7: error: #line directive requires a positive integer argument
glob2 0.9.4.4-2.1 Failed [GCC_ERROR] src/AICastor.cpp:2296:23: error: 'BuildProject' is a private member of 'Game'
globus-xio 3.3-1 Failed [GCC_ERROR] globus_xio_http_client.c:313:40: error: use of '%n' in format string discouraged (potentially insecure) [-Werror,-Wformat-security]
gltron 0.70final-10 Failed [GCC_ERROR] event.c:392:44: error: if statement has empty body [-Werror,-Wempty-body]
glunarclock 1:0.34.1-1 Failed [BUILDDEPS] build-dependency not installable: libpanel-applet2-dev
glusterfs 3.2.7-1 Failed [GCC_ERROR] argp-fmtstream.c:395:1: error: redefinition of a 'extern inline' function 'argp_fmtstream_write' is not supported in C99 mode
gmerlin-encoders 1.2.0-2 Failed [GCC_ERROR] ffmpeg_common.c:1045:5: error: non-void function 'flush_video' should return a value [-Wreturn-type]
gmerlin 1.2.0~dfsg-2 Failed [GCC_ERROR] bgyadif.c:769:9: error: ambiguous instructions require an explicit suffix (could be 'cmpb', 'cmpw', 'cmpl', or 'cmpq')
gmfsk 0.6+0.7pre1-2.3 Failed [CLANG_ERROR/CLANG_LD_ERROR] misc.h:179: multiple definition of `clamp'
gmp 2:5.0.5+dfsg-2 Failed [GCC_ERROR] tmp-mod_1_4.s:167:7: error: ambiguous instructions require an explicit suffix (could be 'subb', 'subw', 'subl', or 'subq')
gmpc-plugins 11.8.16-1 Failed [GCC_ERROR] gmpc-mpddata-model-tagedit.c:53:7: error: #line directive requires a positive integer argument
gmpc 11.8.16-3 Failed [GCC_ERROR] gmpc-profiles.c:38:7: error: #line directive requires a positive integer argument
gmsh 2.6.0.dfsg-2 Failed [GCC_ERROR] gmm_interface.h:834:25: error: reference to non-static member function must be called
gmysqlcc 0.3.0-2 Failed [GCC_ERROR] gmlc_gui_server_tab_data.c:678:82: error: expected ';' at end of declaration
gnac 0.2.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] profiles/gnac-profiles-default.c:(.text+0x1ac): undefined reference to `libgnac_critial_real'
gnash 0.8.10-6 Failed [GCC_ERROR] ../../libcore/swf/DefineButtonTag.h:262:50: error: 'getKeyCode' is a private member of 'gnash::SWF::ButtonAction'
gnat-4.4 4.4.6-6 Failed [BUILDDEPS] unsatisfiable build-dependency: gcc-4.4-source (< 4.4.7) but 4.4.7-1 is to be installed
gnats 4.1.0-2 Failed [GCC_ERROR] <stdout>:2453:17: error: conflicting types for 'yy_scan_string'
gngb 20060309-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] interrupt.c:237: undefined reference to `get_nb_spr'
gnokii 0.6.30+dfsg-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] xgnokii.c:1187: undefined reference to `GUI_HideAbout'
gnome-chemistry-utils 0.12.11-1 Failed [UNKNOWN] dh_makeshlibs: dpkg-gensymbols -plibgcu0 -Idebian/libgcu0.symbols -Pdebian/libgcu0 returned exit code 1
gnome-commander 1.2.8.15-3 Failed [GCC_ERROR] ./../dict.h:58:71: error: call to function 'make_pair' that is neither visible in the template definition nor found by argument-dependent lookup
gnome-pie 0.5.3-1 Failed [GCC_ERROR] triggerSelectWindow.c:545:138: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
gnome-scan 0.6.2-1.1 Failed [BUILDDEPS] unsatisfiable build-dependency: libgegl-0.0-dev (>= 0.0.21) (versioned dep on a virtual pkg?)
gnu-efi 3.0i-3 Failed [GCC_ERROR] ../../lib/../inc/ia32/efibind.h:88:9: error: unknown type name 'uint64_t'
gnucap 1:0.36~20091207-2 Failed [GCC_ERROR] ./mg_.h:134:19: error: variable has incomplete type 'C_Comment'
gnudatalanguage 0.9.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] plotting_xyouts.cpp:260: undefined reference to `plP_mmpcy'
gnuift 0.1.14-12 Failed [GCC_ERROR] perl-compile-test-program.cc:71:3: error: use of undeclared identifier 'my_perl'
gnumail 1.2.0~pre3+snap20071004-5 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
gnunet 0.9.3-1 Failed [UNKNOWN] cp: cannot stat `debian/tmp/usr/lib/libnss_gns.so.2': No such file or directory
gnupg2 2.0.19-1 Failed [GCC_ERROR] inttypes.h:298:8: error: unknown type name 'intmax_t'
gnupg 1.4.12-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] mpi-inline.h:68: multiple definition of `mpihelp_add'
gnustep-back 0.20.1-2 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
gnustep-base 1.22.1-2 Failed [UNKNOWN] configure: error: Could not find Objective-C headers
gnustep-dl2 0.12.0-8 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
gnustep-examples 1:1.3.0-1 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
gnustep-gui 0.20.0-3 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
gnustep-netclasses 1.06.dfsg-5 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
gobby-infinote 0.4.94-5 Failed [GCC_ERROR] ../../code/util/config.hpp:455:7: error: explicit specialization of 'Gobby::serialize::default_context_to<Glib::ustring>' after instantiation
gobby 0.4.13-2 Failed [GCC_ERROR] ./inc/config.hpp:463:7: error: explicit specialization of 'serialise::default_context_to<Glib::ustring>' after instantiation
gofigure2 0.9.0-1 Failed [GCC_ERROR] Octree.inl:719:3: error: reference to non-static member function must be called
golang 2:1.0.1-1 Failed [GCC_ERROR] ctime.c:19:26: error: adding 'int' to a string does not append to the string [-Werror,-Wstring-plus-int]
gomoku.app 1.2.9-1 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
gonzui 1.2+cvs20070129-3 Failed [UNKNOWN] make[1]: *** No targets specified and no makefile found. Stop.
google-glog 0.3.2-3 Failed [UNKNOWN] XXX
goplay 0.5-1.1 Failed [GCC_ERROR] engine.h:153:24: error: calling a protected constructor of class 'wibble::commandline::OptionGroup'
gorm.app 1.2.16-1 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
gosmore 0.0.0.20100711-2 Failed [GCC_ERROR] libgosm.cpp:147:53: error: expected ')'
gpdftext 0.1.5-1 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--param ssp-buffer-size=4'
gpe-calendar 0.92-4 Failed [GCC_ERROR] calendars-widgets.c:711:38: error: expected ';' at end of declaration
gpe-timesheet 0.32-2 Failed [GCC_ERROR] sql.c:531:9: error: non-void function 'find_children_cb' should return a value [-Wreturn-type]
gpiv 0.6.1-2 Failed [GCC_ERROR] ../../../src/display_intregs.c:142:5: error: non-void function 'create_intreg_data' should return a value [-Wreturn-type]
gpivtools 0.6.0-3 Failed [UNKNOWN] configure: error: "missing omp.h"
gpm 1.20.4-6 Failed [GCC_ERROR/CLANG_ERROR] prog/display-buttons.c:39:10: fatal error: 'gpm.h' file not found
gprolog 1.3.0-6.1 Failed [UNKNOWN] XXX
gpsd 3.6-3 Failed [UNKNOWN] XXX
gpsd 3.6-4 Unknown [TIMEOUT]
gpsdrive 2.10~pre4-6.dfsg-5.1 Failed [GCC_ERROR] gpsdrive.c:3383:31: error: expected ';' at end of declaration
gpsshogi 0.5.0-1 Failed [GCC_ERROR] dualThreatmateState.h:14:11: error: no matching constructor for initialization of 'volatile struct Flags'
gramophone2 0.8.13a-1 Failed [GCC_ERROR] midifile.c:159:3: error: non-void function 'readheader' should return a value [-Wreturn-type]
grantlee 0.1.4-1 Failed [GCC_ERROR] node.h:195:27: error: use 'template' keyword to treat 'findChildren' as a dependent template name
granule 1.4.0-7-1 Failed [GCC_ERROR] Granule.cpp:59:1: error: extraneous 'template<>' in declaration of variable 'm_default_entity_loader'
graphviz 2.26.3-11 Failed [UNKNOWN] cp: cannot stat `debian/tmp/usr/lib/graphviz/ruby/libgv_ruby.so': No such file or directory
grass 6.4.2-2 Failed [GCC_ERROR/CLANG_ERROR/CLANG_LD_ERROR] ld: cannot find -lgrass_gis.6.4.2
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]
gridlock.app 1.10-3.2 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
gridsite 1.7.16-1 Failed [GCC_ERROR] gridsite-storage.c:256:7: error: non-void function 'main' should return a value [-Wreturn-type]
grml2usb 0.12.2 Failed [GCC_ERROR] mbr.S:32:9: error: .code16 not supported yet
groff 1.21-7 Failed [BUILDDEPS] Dependencies installation failed
grr.app 0.9.0-1 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
grub 0.97-66 Failed [UNKNOWN] configure: error: GRUB requires GAS .code16 addr32 support; upgrade your binutils
gspiceui 1.0.00+dfsg-1 Failed [CLANG_ERROR] error: invalid integral value 'fast' in '-Ofast'
gsql 0.2.2-1.2 Failed [GCC_ERROR] conf.c:229:2: error: non-void function 'gsql_conf_dir_list' should return a value [-Wreturn-type]
gtamsanalyzer.app 0.42-6 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
gtg-trace 0.2+dfsg-1 Failed [GCC_ERROR] C/paje_GTGBasic1_c.c:14:12: error: expected parameter declarator
gtimer 2.0.0-1.1 Failed [GCC_ERROR] custom-list.c:613:3: error: non-void function 'custom_list_append_record' should return a value [-Wreturn-type]
gtk2hs-buildtools 0.12.3-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
gtkrsync 1.0.4 Failed [BUILDDEPS] build-dependency not installable: libghc6-unix-dev
guile-1.6 1.6.8-10.1 Failed [UNKNOWN] XXX
guile-1.8 1.8.8+1-8 Failed [UNKNOWN] XXX
guile-2.0 2.0.5+1-3 Failed [UNKNOWN] XXX
guile-cairo 1.4.0-3 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--param ssp-buffer-size=4'
guile-gnome-platform 2.16.2-1 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--param ssp-buffer-size=4'
guppy 0.1.9-2 Failed [PYIMPORT] ImportError: guppy/sets/setsc.so: undefined symbol: _PyLong_AsScaledDouble
guymager 0.6.7-3 Failed [GCC_ERROR] aewf.cpp:126:12: error: field has incomplete type 'uint []'
gwc 0.21.17~dfsg0-2 Failed [CLANG_ERROR] error: invalid value '6' in '-O6'
gworkspace 0.8.8-1.1 Failed [GCC_ERROR/CLANG_ERROR] preface.h:112:11: fatal error: 'objc/objc.h' file not found
gxneur 0.15.0-2 Failed [CLANG_ERROR] clang: error: argument unused during compilation: '--param ssp-buffer-size=4'
handlersocket 1.1.0-7-g1044a28-1 Failed [GCC_ERROR] HandlerSocket.xs:525:19: error: variable length array of non-POD element type 'execute_arg'
happy 1.18.9-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
hardening-wrapper 2.2 Failed [UNKNOWN] XXX
hardinfo 0.5.1-1.2 Failed [CLANG_ERROR/CLANG_LD_ERROR] shell.c:1005: undefined reference to `strend'
hardware-monitor 1.4.3-2 Failed [BUILDDEPS] build-dependency not installable: libpanel-applet2-dev
harminv 1.3.1-8 Failed [CLANG_ERROR/CLANG_LD_ERROR] .libs/harminv.o: could not read symbols: Bad value
haskell-acid-state 0.6.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-active 0.1.0.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-adjunctions 2.4.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-aeson 0.6.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-algebra 2.1.1.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-alut 2.1.0.2-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-ami 0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-ansi-terminal 0.5.5-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-ansi-wl-pprint 0.6.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-arrows 0.4.4.0-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-asn1-data 0.6.1.3-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-attempt 0.4.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-attoparsec-conduit 0.4.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-attoparsec-enumerator 0.3-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-attoparsec 0.10.1.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-augeas 0.6.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-authenticate 1.2.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-base-unicode-symbols 0.2.2.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-base16-bytestring 0.1.1.4-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-base64-bytestring 0.1.1.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-bifunctors 0.1.3.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-binary-communicator 1.0.2.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-binary-shared 0.8.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-bindings-dsl 1.0.15-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-bindings-gpgme 0.1.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-bindings-libzip 0.10-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-bitarray 0.0.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-blaze-builder-conduit 0.4.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-blaze-builder-enumerator 0.2.0.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-blaze-builder 0.3.1.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-blaze-html 0.4.3.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-blaze-markup 0.5.1.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-blaze-textual 0.2.0.6-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-bloomfilter 1.2.6.8-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-boolean 0.0.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-boomerang 1.3.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-brainfuck 0.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-byteorder 1.0.3-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-bytestring-lexing 0.4.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-bytestring-mmap 0.2.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-bytestring-nums 0.3.5-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-bytestring-show 0.3.5.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-bzlib 0.5.0.3-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-cabal-file-th 0.2.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-cabal-install 0.14.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-cairo 0.12.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-case-insensitive 0.4.0.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-categories 1.0.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-cautious-file 1.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-cereal-conduit 0.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-cereal 0.3.5.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-certificate 1.2.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-cgi 3001.1.8.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-chart 0.15-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-chell 0.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-citeproc-hs 0.3.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-clientsession 0.7.5-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-clock 0.2.0.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-clocked 0.4.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-cmdargs 0.9.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-colour 2.3.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-comonad-transformers 2.1.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-comonad 1.1.1.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-comonads-fd 2.1.1.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-conduit 0.4.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-configfile 1.0.6-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-configurator 0.2.0.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-contravariant 0.2.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-convertible 1.0.11.0-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-cookie 0.4.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-cprng-aes 0.2.3-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-cpu 0.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-criterion 0.6.0.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-crypto-api 0.10.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-crypto-conduit 0.3.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-crypto-pubkey-types 0.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-crypto 4.2.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-cryptocipher 0.3.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-cryptohash 0.7.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-css-text 0.1.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-csv-conduit 0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-csv-enumerator 0.10.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-csv 0.1.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-curl 1.3.7-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-data-accessor-mtl 0.2.0.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-data-accessor-template 0.2.1.9-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-data-accessor 0.2.2.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-data-binary-ieee754 0.4.2.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-data-default 0.4.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-data-inttrie 0.0.7-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-data-lens 2.10.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-data-memocombinators 0.4.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-dataenc 0.14.0.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-datetime 0.2.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-debian 3.64-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-diagrams-cairo 0.5.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-diagrams-core 0.5.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-diagrams-lib 0.5-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-diff 0.1.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-digest 0.0.1.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-dimensional 0.10.1.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-directory-tree 0.10.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-dlist 0.5-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-download-curl 0.1.3-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-dpkg 0.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-dyre 0.8.7-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-edison-api 1.2.1-18 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-edison-core 1.2.1.3-9 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-edit-distance 0.2.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-editline 0.2.1.0-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-ekg 0.3.1.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-email-validate 0.2.8-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-entropy 0.2.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-enumerator 0.4.19-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-erf 2.0.0.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-event-list 0.1.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-exception-transformers 0.3.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-executable-path 0.0.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-explicit-exception 0.1.7-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-failure 0.2.0.1-1 Failed [BUILDDEPS] unsatisfiable build-dependencies: debhelper (>= 7), cdbs, haskell-devscripts (>= 0.8), ghc, ghc-prof, libghc-transformers-dev (>= 0.2), libghc-transformers-dev (< 0.4), libghc-transformers-prof
haskell-fast-logger 0.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-fastcgi 3001.0.2.3-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-fclabels 1.1.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-feed 0.3.8-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-fgl 5.4.2.4-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-file-embed 0.0.4.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-filemanip 0.3.5.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-filestore 0.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-free 2.1.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-gconf 0.12.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-gd 3000.7.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-ghc-events 0.4.0.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-ghc-mtl 1.0.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-ghc-paths 0.1.0.8-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-ghc-syb-utils 0.2.1.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-gio 0.12.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-github 0.2.1-3 Failed [BUILDDEPS] unsatisfiable build-dependency: libghc-http-conduit-dev (< 1.3.0) but 1.4.1.6-1+b2 is to be installed
haskell-github 0.4.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-glade 0.12.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-glfw 0.5.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-glib 0.12.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-glut 2.1.2.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-gnuidn 0.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-gnutls 0.1.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-gsasl 0.3.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-gstreamer 0.12.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-gtk 0.12.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-gtkglext 0.12.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-gtksourceview2 0.12.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-haddock 2.10.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hakyll 3.2.7.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hamlet 1.0.1.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-happstack-server 7.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-happstack 7.0.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-harp 0.4-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hashable 1.1.2.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hashed-storage 0.5.9-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hashmap 1.3.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hashtables 1.0.1.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-haskeline 0.6.4.7-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-haskell-src 1.0.1.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-haskore 0.2.0.3-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hastache 0.3.3-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-haxr 3000.8.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hcard 0.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hcwiid 0.0.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hfuse 0.2.4.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hinotify 0.3.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hint 0.3.3.4-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hipmunk 5.2.0.8-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hjavascript 0.4.7-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hjscript 0.5.0-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hjsmin 0.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hledger-interest 1.4.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hledger-lib 0.18-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hledger-vty 0.16.1-3 Failed [BUILDDEPS] unsatisfiable build-dependencies: XXX
haskell-hledger-web 0.18-1 Failed [UNKNOWN] XXX
haskell-hledger-web 0.18.1-1 Failed [UNKNOWN] XXX
haskell-hledger 0.18-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hostname 1.0-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hs-bibutils 4.12-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hs3 0.5.6-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hscurses 1.4.1.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hsemail 1.7.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hsh 2.0.3-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hsp 0.6.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hspec 1.1.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hsql-mysql 1.8.1-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hsql-odbc 1.8.1.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hsql-postgresql 1.8.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hsql-sqlite3 1.8.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hsql 1.8.1-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hssyck 0.50-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hstringtemplate 0.6.8-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hsx 0.9.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-html 1.0.1.2-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-http-conduit 1.4.1.6-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-http-date 0.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-http-types 0.6.11-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-http 1:4000.2.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hunit 1.2.4.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hxt-cache 9.0.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hxt-charproperties 9.1.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hxt-curl 9.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hxt-http 9.1.4-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hxt-regex-xmlschema 9.0.4-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hxt-relaxng 9.1.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hxt-tagsoup 9.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hxt-unicode 9.0.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hxt-xpath 9.1.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hxt-xslt 9.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-hxt 9.2.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-iconv 0.4.1.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-ieee754 0.7.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-ifelse 0.85-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-io-choice 0.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-io-storage 0.3-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-iospec 0.2.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-irc 0.5.0.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-iteratee 0.8.8.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-ixset 1.0.3-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-json 0.5-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-keys 2.1.3.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-knob 0.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-lambdabot-utils 4.2.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-language-c 0.4.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-language-haskell-extract 0.2.1-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-language-javascript 0.5.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-largeword 1.0.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-lazysmallcheck 0.6-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-leksah-server 0.12.0.4-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-leksah 0.12.0.3-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-lexer 1.0-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-libtagc 0.12.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-libxml-sax 0.7.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-libzip 0.10-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-lifted-base 0.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-listlike 3.1.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-llvm-base 3.0.1.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-llvm 3.0.1.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-logict 0.5.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-ltk 0.12.0.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-maccatcher 2.1.5-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-markov-chain 0.0.3.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-math-functions 0.1.1.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-maths 0.4.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-maybet 0.1.2-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-mbox 0.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-memotrie 0.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-mersenne-random 1.0.0.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-midi 0.2.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-mime-mail 0.4.1.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-mmap 0.5.7-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-monad-control 0.3.1.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-monad-loops 0.3.2.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-monad-par 0.1.0.3-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-monadcatchio-mtl 0.3.0.4-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-monadcatchio-transformers 0.3.0.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-monadcryptorandom 0.4.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-monadrandom 0.1.6-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-monads-tf 0.1.0.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-monoid-transformer 0.0.2-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-mtl 2.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-mtlparse 0.1.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-murmur-hash 0.1.0.5-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-mwc-random 0.11.0.0-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-ncurses 0.2.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-netwire 3.1.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-network-conduit 0.4.0.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-network-protocol-xmpp 0.4.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-network 2.3.0.13-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-newtype 0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-non-negative 0.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-numbers 2009.8.9-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-numeric-quest 0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-numinstances 1.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-numtype 1.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-oeis 0.3.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-openal 1.3.1.3-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-opengl 2.2.3.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-openpgp-asciiarmor 0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-options 0.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-pandoc-types 1.9.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-pango 0.12.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-parallel 3.2.0.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-parseargs 0.1.3.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-parsec2 2.1.0.1-6 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-parsec 3.1.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-pastis 0.1.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-path-pieces 0.1.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-patience 0.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-pcre-light 0.4-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-pem 0.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-persistent-template 0.9.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-persistent 0.9.0.4-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-polyparse 1.7-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-pool-conduit 0.1.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-postgresql-libpq 0.8.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-pretty-show 1.1.1-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-primes 0.2.1.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-primitive 0.4.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-psqueue 1.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-puremd5 2.1.0.3-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-pwstore-fast 2.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-quickcheck1 1.2.0.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-quickcheck 2.4.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-random-shuffle 0.0.3-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-random 1.0.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-ranged-sets 0.3.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-ranges 0.2.4-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-reactive-banana 0.6.0.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-readline 1.0.1.0-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-recaptcha 0.1-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-regex-base 0.93.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-regex-compat 0.95.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-regex-pcre 0.94.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-regex-posix 0.95.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-regex-tdfa-utf8 1.0-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-regex-tdfa 1.1.8-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-regexpr 0.5.4-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-representable-functors 2.4.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-representable-tries 2.4.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-resource-pool 0.2.1.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-resourcet 0.3.2.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-rsa 1.2.1.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-safe 0.3.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-safecopy 0.6.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-sdl-gfx 0.6.0-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-sdl-image 0.6.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-sdl-mixer 0.6.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-sdl-ttf 0.6.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-sdl 0.6.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-semigroupoids 1.3.1.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-semigroups 0.8.3.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-sendfile 0.7.6-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-sfml-audio 0.4.0.1816-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-sha 1.5.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-shakespeare-css 1.0.1.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-shakespeare-i18n 1.0.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-shakespeare-js 1.0.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-shakespeare-text 1.0.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-shakespeare 1.0.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-shellac 0.9.5.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-show 0.4.1.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-silently 1.1.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-simple-sendfile 0.2.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-simpleea 0.1.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-simpleirc 0.2.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-skein 0.1.0.7-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-smallcheck 0.6-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-smtpclient 1.0.4-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-snap-core 0.8.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-snap-server 0.8.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-socks 0.4.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-split 0.1.4.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-src-exts 1.11.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-statevar 1.0.0.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-static-hash 0.0.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-statistics 0.10.1.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-stm 2.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-stream 0.4.6-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-strict-concurrency 0.2.4.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-strict 0.3.2-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-strptime 1.0.6-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-svgcairo 0.12.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-syb-with-class-instances-text 0.0.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-syb-with-class 0.6.1.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-syb 0.3.6.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-system-filepath 0.4.6-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-tagged 0.4.2.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-tagsoup 0.12.6-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-tar 0.3.2.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-template 0.2.0.7-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-temporary 1.1.2.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-terminfo 0.3.2.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-test-framework-hunit 0.2.7-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-test-framework-quickcheck2 0.2.12.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-test-framework-th-prime 0.0.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-test-framework-th 0.2.2-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-test-framework 0.6-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-testpack 2.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-texmath 0.6.0.6-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-text-icu 0.6.3.4-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-text 0.11.2.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-tinyurl 0.1.0-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-tls-extra 0.4.6-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-tls 0.9.5-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-transformers-base 0.4.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-transformers 0.3.0.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-type-level 0.2.4-5 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-uniplate 1.6.7-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-unix-bytestring 0.3.5-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-unix-compat 0.3.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-unixutils 1.50-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-unlambda 0.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-unordered-containers 0.2.1.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-uri 0.1.6-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-url 2.1.2-4 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-utf8-light 0.4.0.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-utf8-string 0.3.7-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-utility-ht 0.0.5.1-3 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-uuagc-cabal 1.0.2.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-uuid 1.2.3-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-uulib 0.9.14-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-vault 0.2.0.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-vector-algorithms 0.5.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-vector-space-points 0.1.1.0-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-vector-space 0.8.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-vector 0.9.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-void 0.5.5.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-vte 0.12.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-vty 4.7.0.14-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-wai-app-file-cgi 0.5.8-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-wai-app-static 1.2.0.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-wai-extra 1.2.0.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-wai-logger-prefork 0.1.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-wai-logger 0.1.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-wai-test 1.2.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-wai 1.2.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-warp-tls 1.2.0.4-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-warp 1.2.1.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-web-routes 0.25.3-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-webkit 0.12.3-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-weighted-regexp 0.3.1.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-x11-xft 0.3.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-x11 1.5.0.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-xdg-basedir 0.2.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-xhtml 3000.2.1-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-xml-conduit 0.7.0.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-xml-types 0.3.1-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-xml2html 0.1.2.3-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-xml 1.3.12-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-xss-sanitize 0.3.2-1 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'
haskell-yaml-light 0.1.4-2 Failed [CLANG_ERROR/CLANG_LD_ERROR] (.text+0x49): undefined reference to `base_GHCziTopHandler_flushStdHandles_closure'