-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherrors.pl
1524 lines (1524 loc) · 171 KB
/
errors.pl
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
cpanm (App::cpanminus) 1.7041 on perl 5.024000 built for MSWin32-x64-multi-thread
Work directory is /.cpanm/work/1469736091.5824
You have make C:\Users\Мишин\Downloads\strawberry-perl-5.24.0.1-64bit-portable\c\bin\dmake.exe
You have LWP 6.15
Falling back to Archive::Tar 2.06
!
! Can't write to C:\Users\Мишин\Downloads\strawberry-perl-5.24.0.1-64bit-portable\perl\site\lib and C:\Users\Мишин\Downloads\strawberry-perl-5.24.0.1-64bit-portable\perl\site\bin: Installing modules to /perl5
! To turn off this warning, you have to do one of the following:
! - run me as a root or with --sudo option (to install to C:\Users\Мишин\Downloads\strawberry-perl-5.24.0.1-64bit-portable\perl\site\lib and C:\Users\Мишин\Downloads\strawberry-perl-5.24.0.1-64bit-portable\perl\site\bin)
! - Configure local::lib in your existing shell to set PERL_MM_OPT etc.
! - Install local::lib by running the following commands
!
! cpanm --local-lib=~/perl5 local::lib && eval $(perl -I ~/perl5/lib/perl5/ -Mlocal::lib)
!
Searching Plack () on cpanmetadb ...
--> Working on Plack
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Plack-1.0039.tar.gz
-> OK
Unpacking Plack-1.0039.tar.gz
Entering Plack-1.0039
Checking configure dependencies from META.json
Checking if you have ExtUtils::MakeMaker 6.58 ... Yes (7.16)
Checking if you have File::ShareDir::Install 0.06 ... Yes (0.10)
Configuring Plack-1.0039
Running Makefile.PL
Warning: prerequisite Apache::LogFormat::Compiler 0.12 not found.
Warning: prerequisite Cookie::Baker 0.05 not found.
Warning: prerequisite Devel::StackTrace::AsHTML 0.11 not found.
Warning: prerequisite Filesys::Notify::Simple 0 not found.
Warning: prerequisite HTTP::Body 1.06 not found.
Warning: prerequisite HTTP::Headers::Fast 0.18 not found.
Warning: prerequisite Hash::MultiValue 0.05 not found.
Warning: prerequisite Stream::Buffered 0.02 not found.
Warning: prerequisite Test::TCP 2.00 not found.
Checking if your kit is complete...
Looks good
... Detected uninstalled Perl. Trying to continue.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
Have \users\df0f~1\downlo~1\strawb~1.1-6\perl\lib
Want \users\мишин\downloads\strawberry-perl-5.24.0.1-64bit-portable\perl\lib
Generating a dmake-style Makefile
Writing Makefile for Plack
Writing MYMETA.yml and MYMETA.json
-> OK
Checking dependencies from MYMETA.json ...
Checking if you have File::ShareDir 1.00 ... Yes (1.102)
Checking if you have Pod::Usage 1.36 ... Yes (1.68)
Checking if you have HTTP::Tiny 0.034 ... Yes (0.058)
Checking if you have Apache::LogFormat::Compiler 0.12 ... No
Checking if you have Devel::StackTrace::AsHTML 0.11 ... No
Checking if you have URI 1.59 ... Yes (1.71)
Checking if you have Filesys::Notify::Simple 0 ... No
Checking if you have Test::More 0.88 ... Yes (1.001014)
Checking if you have HTTP::Headers::Fast 0.18 ... No
Checking if you have HTTP::Body 1.06 ... No
Checking if you have Devel::StackTrace 1.23 ... Yes (2.01)
Checking if you have HTTP::Message 5.814 ... Yes (6.11)
Checking if you have Cookie::Baker 0.05 ... No
Checking if you have Test::TCP 2.00 ... No
Checking if you have Stream::Buffered 0.02 ... No
Checking if you have Test::Requires 0 ... Yes (0.10)
Checking if you have ExtUtils::MakeMaker 0 ... Yes (7.16)
Checking if you have Hash::MultiValue 0.05 ... No
Checking if you have parent 0 ... Yes (0.234)
Checking if you have Try::Tiny 0 ... Yes (0.24)
==> Found dependencies: Apache::LogFormat::Compiler, Devel::StackTrace::AsHTML, Filesys::Notify::Simple, HTTP::Headers::Fast, HTTP::Body, Cookie::Baker, Test::TCP, Stream::Buffered, Hash::MultiValue
Searching Apache::LogFormat::Compiler (0.12) on cpanmetadb ...
--> Working on Apache::LogFormat::Compiler
Fetching http://www.cpan.org/authors/id/K/KA/KAZEBURO/Apache-LogFormat-Compiler-0.33.tar.gz
-> OK
Unpacking Apache-LogFormat-Compiler-0.33.tar.gz
Entering Apache-LogFormat-Compiler-0.33
Checking configure dependencies from META.json
Checking if you have Module::Build 0.38 ... Yes (0.4218)
Checking if you have ExtUtils::Install 1.46 ... Yes (2.04)
Configuring Apache-LogFormat-Compiler-0.33
Running Build.PL
C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/c/bin/../lib/gcc/x86_64-w64-mingw32/4.9.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lperl524
collect2.exe: error: ld returned 1 exit status
C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/c/bin/../lib/gcc/x86_64-w64-mingw32/4.9.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lperl524
collect2.exe: error: ld returned 1 exit status
Created MYMETA.yml and MYMETA.json
Creating new 'Build' script for 'Apache-LogFormat-Compiler' version '0.33'
cp META.json MYMETA.json
cp META.yml MYMETA.yml
-> OK
Checking dependencies from MYMETA.json ...
Checking if you have POSIX::strftime::Compiler 0.30 ... No
Checking if you have POSIX 0 ... Yes (1.65)
Checking if you have URI::Escape 1.60 ... Yes (3.31)
Checking if you have Test::MockTime 0 ... No
Checking if you have Test::More 0.98 ... Yes (1.001014)
Checking if you have Time::Local 0 ... Yes (1.2300)
Checking if you have Test::Requires 0 ... Yes (0.10)
Checking if you have Try::Tiny 0.12 ... Yes (0.24)
Checking if you have HTTP::Request::Common 0 ... Yes (6.11)
==> Found dependencies: POSIX::strftime::Compiler, Test::MockTime
Searching POSIX::strftime::Compiler (0.30) on cpanmetadb ...
--> Working on POSIX::strftime::Compiler
Fetching http://www.cpan.org/authors/id/K/KA/KAZEBURO/POSIX-strftime-Compiler-0.42.tar.gz
-> OK
Unpacking POSIX-strftime-Compiler-0.42.tar.gz
Entering POSIX-strftime-Compiler-0.42
Checking configure dependencies from META.json
Checking if you have ExtUtils::Install 1.46 ... Yes (2.04)
Checking if you have Module::Build 0.38 ... Yes (0.4218)
Configuring POSIX-strftime-Compiler-0.42
Running Build.PL
C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/c/bin/../lib/gcc/x86_64-w64-mingw32/4.9.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lperl524
collect2.exe: error: ld returned 1 exit status
C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/c/bin/../lib/gcc/x86_64-w64-mingw32/4.9.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lperl524
collect2.exe: error: ld returned 1 exit status
Created MYMETA.yml and MYMETA.json
Creating new 'Build' script for 'POSIX-strftime-Compiler' version '0.42'
cp META.json MYMETA.json
cp META.yml MYMETA.yml
-> OK
Checking dependencies from MYMETA.json ...
Checking if you have Exporter 0 ... Yes (5.72)
Checking if you have Test::More 0.98 ... Yes (1.001014)
Checking if you have Time::Local 0 ... Yes (1.2300)
Checking if you have Carp 0 ... Yes (1.40)
Checking if you have POSIX 0 ... Yes (1.65)
Building and testing POSIX-strftime-Compiler-0.42
Building POSIX-strftime-Compiler
t\00_compile.t ... ok
t\01_basic.t ..... ok
t\02_timezone.t .. ok
t\03_isoweek.t ... ok
t\04_tzset.t ..... skipped: POSIX::tzset not implemented on this architecture at t\04_tzset.t line 9.
All tests successful.
Files=5, Tests=375, 1 wallclock secs ( 0.05 usr + 0.02 sys = 0.06 CPU)
Result: PASS
Building POSIX-strftime-Compiler
Installing C:\Users\DF0F~1\perl5\lib\perl5\POSIX\strftime\Compiler.pm
-> OK
Successfully installed POSIX-strftime-Compiler-0.42
‘Ёб⥬Ґ Ґ г¤ Ґвбп ©вЁ гЄ § л© Їгвм.
Searching Test::MockTime (0) on cpanmetadb ...
--> Working on Test::MockTime
Fetching http://www.cpan.org/authors/id/D/DD/DDICK/Test-MockTime-0.15.tar.gz
-> OK
Unpacking Test-MockTime-0.15.tar.gz
Entering Test-MockTime-0.15
Checking configure dependencies from META.json
Checking if you have ExtUtils::MakeMaker 6.58 ... Yes (7.16)
Configuring Test-MockTime-0.15
Running Makefile.PL
Checking if your kit is complete...
Looks good
... Detected uninstalled Perl. Trying to continue.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
Have \users\df0f~1\downlo~1\strawb~1.1-6\perl\lib
Want \users\мишин\downloads\strawberry-perl-5.24.0.1-64bit-portable\perl\lib
Generating a dmake-style Makefile
Writing Makefile for Test::MockTime
Writing MYMETA.yml and MYMETA.json
-> OK
Checking dependencies from MYMETA.json ...
Checking if you have Time::Piece 1.08 ... Yes (1.31)
Checking if you have Time::Local 0 ... Yes (1.2300)
Checking if you have Test::More 0 ... Yes (1.001014)
Checking if you have ExtUtils::MakeMaker 0 ... Yes (7.16)
Building and testing Test-MockTime-0.15
dmake.exe: C:\Users\Мишин\Downloads\strawberry-perl-5.24.0.1-64bit-portable\c\bin\startup\startup.mk: line 32: Error: -- Name contains non-printable character [0xffffffcc]
-> FAIL Installing Test::MockTime failed. See \.cpanm\work\1469736091.5824\build.log for details. Retry with --force to force install it.
-> FAIL Installing the dependencies failed: Module 'Test::MockTime' is not installed
-> FAIL Bailing out the installation for Apache-LogFormat-Compiler-0.33.
Searching Devel::StackTrace::AsHTML (0.11) on cpanmetadb ...
--> Working on Devel::StackTrace::AsHTML
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Devel-StackTrace-AsHTML-0.15.tar.gz
-> OK
Unpacking Devel-StackTrace-AsHTML-0.15.tar.gz
Entering Devel-StackTrace-AsHTML-0.15
Checking configure dependencies from META.json
Checking if you have ExtUtils::MakeMaker 6.58 ... Yes (7.16)
Configuring Devel-StackTrace-AsHTML-0.15
Running Makefile.PL
Checking if your kit is complete...
Looks good
... Detected uninstalled Perl. Trying to continue.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{fffd}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{fffd}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
Have \users\df0f~1\downlo~1\strawb~1.1-6\perl\lib
Want \users\мишин\downloads\strawberry-perl-5.24.0.1-64bit-portable\perl\lib
Generating a dmake-style Makefile
Writing Makefile for Devel::StackTrace::AsHTML
Writing MYMETA.yml and MYMETA.json
-> OK
Checking dependencies from MYMETA.json ...
Checking if you have Devel::StackTrace 0 ... Yes (2.01)
Checking if you have ExtUtils::MakeMaker 0 ... Yes (7.16)
Checking if you have Test::More 0.88 ... Yes (1.001014)
Building and testing Devel-StackTrace-AsHTML-0.15
dmake.exe: C:\Users\Мишин\Downloads\strawberry-perl-5.24.0.1-64bit-portable\c\bin\startup\startup.mk: line 32: Error: -- Name contains non-printable character [0xffffffcc]
-> FAIL Installing Devel::StackTrace::AsHTML failed. See \.cpanm\work\1469736091.5824\build.log for details. Retry with --force to force install it.
Searching Filesys::Notify::Simple (0) on cpanmetadb ...
--> Working on Filesys::Notify::Simple
Fetching http://www.cpan.org/authors/id/M/MI/MIYAGAWA/Filesys-Notify-Simple-0.12.tar.gz
-> OK
Unpacking Filesys-Notify-Simple-0.12.tar.gz
Entering Filesys-Notify-Simple-0.12
Checking configure dependencies from META.json
Checking if you have ExtUtils::MakeMaker 6.58 ... Yes (7.16)
Configuring Filesys-Notify-Simple-0.12
Running Makefile.PL
Warning: prerequisite Test::SharedFork 0 not found.
Checking if your kit is complete...
Looks good
... Detected uninstalled Perl. Trying to continue.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
Have \users\df0f~1\downlo~1\strawb~1.1-6\perl\lib
Want \users\мишин\downloads\strawberry-perl-5.24.0.1-64bit-portable\perl\lib
Generating a dmake-style Makefile
Writing Makefile for Filesys::Notify::Simple
Writing MYMETA.yml and MYMETA.json
-> OK
Checking dependencies from MYMETA.json ...
Checking if you have File::Temp 0 ... Yes (0.2304)
Checking if you have Test::SharedFork 0 ... No
Checking if you have Test::More 0 ... Yes (1.001014)
==> Found dependencies: Test::SharedFork
Searching Test::SharedFork (0) on cpanmetadb ...
--> Working on Test::SharedFork
Fetching http://www.cpan.org/authors/id/E/EX/EXODIST/Test-SharedFork-0.35.tar.gz
-> OK
Unpacking Test-SharedFork-0.35.tar.gz
Entering Test-SharedFork-0.35
Checking configure dependencies from META.json
Checking if you have ExtUtils::MakeMaker 6.64 ... Yes (7.16)
Configuring Test-SharedFork-0.35
Running Makefile.PL
Checking if your kit is complete...
Looks good
... Detected uninstalled Perl. Trying to continue.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
Have \users\df0f~1\downlo~1\strawb~1.1-6\perl\lib
Want \users\мишин\downloads\strawberry-perl-5.24.0.1-64bit-portable\perl\lib
Generating a dmake-style Makefile
Writing Makefile for Test::SharedFork
Writing MYMETA.yml and MYMETA.json
-> OK
Checking dependencies from MYMETA.json ...
Checking if you have Time::HiRes 0 ... Yes (1.9733)
Checking if you have Test::Builder 0.32 ... Yes (1.001014)
Checking if you have Test::More 0.88 ... Yes (1.001014)
Checking if you have Test::Requires 0 ... Yes (0.10)
Checking if you have App::Prove 0 ... Yes (3.36)
Checking if you have Test::Builder::Module 0 ... Yes (1.001014)
Checking if you have Test::Builder::Tester 0 ... Yes (1.28)
Checking if you have File::Temp 0 ... Yes (0.2304)
Building and testing Test-SharedFork-0.35
dmake.exe: C:\Users\Мишин\Downloads\strawberry-perl-5.24.0.1-64bit-portable\c\bin\startup\startup.mk: line 32: Error: -- Name contains non-printable character [0xffffffcc]
-> FAIL Installing Test::SharedFork failed. See \.cpanm\work\1469736091.5824\build.log for details. Retry with --force to force install it.
-> FAIL Installing the dependencies failed: Module 'Test::SharedFork' is not installed
-> FAIL Bailing out the installation for Filesys-Notify-Simple-0.12.
Searching HTTP::Headers::Fast (0.18) on cpanmetadb ...
--> Working on HTTP::Headers::Fast
Fetching http://www.cpan.org/authors/id/T/TO/TOKUHIROM/HTTP-Headers-Fast-0.20.tar.gz
-> OK
Unpacking HTTP-Headers-Fast-0.20.tar.gz
Entering HTTP-Headers-Fast-0.20
Checking configure dependencies from META.json
Checking if you have Module::Build 0.38 ... Yes (0.4218)
Checking if you have ExtUtils::Install 1.46 ... Yes (2.04)
Configuring HTTP-Headers-Fast-0.20
Running Build.PL
C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/c/bin/../lib/gcc/x86_64-w64-mingw32/4.9.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lperl524
collect2.exe: error: ld returned 1 exit status
C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/c/bin/../lib/gcc/x86_64-w64-mingw32/4.9.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lperl524
collect2.exe: error: ld returned 1 exit status
Created MYMETA.yml and MYMETA.json
Creating new 'Build' script for 'HTTP-Headers-Fast' version '0.20'
cp META.json MYMETA.json
cp META.yml MYMETA.yml
-> OK
Checking dependencies from MYMETA.json ...
Checking if you have HTTP::Date 0 ... Yes (6.02)
Checking if you have Test::Requires 0 ... Yes (0.10)
Checking if you have Test::More 0.98 ... Yes (1.001014)
Building and testing HTTP-Headers-Fast-0.20
Building HTTP-Headers-Fast
t\00_compile.t .............. ok
t\01-compat.t ............... ok
t\02-isa.t .................. ok
t\as_string_without_sort.t .. ok
t\charset.t ................. ok
t\headers.t ................. ok
t\headers_flatten.t ......... ok
t\lazy_load_for_storable.t .. ok
All tests successful.
Files=8, Tests=188, 2 wallclock secs ( 0.06 usr + 0.03 sys = 0.09 CPU)
Result: PASS
Building HTTP-Headers-Fast
Installing C:\Users\DF0F~1\perl5\lib\perl5\HTTP\Headers\Fast.pm
-> OK
Successfully installed HTTP-Headers-Fast-0.20
‘Ёб⥬Ґ Ґ г¤ Ґвбп ©вЁ гЄ § л© Їгвм.
Searching HTTP::Body (1.06) on cpanmetadb ...
--> Working on HTTP::Body
Fetching http://www.cpan.org/authors/id/G/GE/GETTY/HTTP-Body-1.22.tar.gz
-> OK
Unpacking HTTP-Body-1.22.tar.gz
Entering HTTP-Body-1.22
Checking configure dependencies from META.yml
Checking if you have ExtUtils::MakeMaker 6.58 ... Yes (7.16)
Configuring HTTP-Body-1.22
Running Makefile.PL
Checking if your kit is complete...
Looks good
... Detected uninstalled Perl. Trying to continue.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{fffd}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{fffd}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
Have \users\df0f~1\downlo~1\strawb~1.1-6\perl\lib
Want \users\мишин\downloads\strawberry-perl-5.24.0.1-64bit-portable\perl\lib
Generating a dmake-style Makefile
Writing Makefile for HTTP::Body
Writing MYMETA.yml and MYMETA.json
-> OK
Checking dependencies from MYMETA.json ...
Checking if you have Encode 0 ... Yes (2.84)
Checking if you have HTTP::Headers 0 ... Yes (6.11)
Checking if you have Test::Deep 0 ... Yes (1.120)
Checking if you have Digest::MD5 0 ... Yes (2.55)
Checking if you have IO::File 1.14 ... Yes (1.16)
Checking if you have ExtUtils::MakeMaker 0 ... Yes (7.16)
Checking if you have Test::More 0.86 ... Yes (1.001014)
Checking if you have Carp 0 ... Yes (1.40)
Checking if you have HTTP::Request::Common 0 ... Yes (6.11)
Checking if you have File::Spec::Functions 0 ... Yes (3.63)
Checking if you have File::Temp 0.14 ... Yes (0.2304)
Building and testing HTTP-Body-1.22
dmake.exe: C:\Users\Мишин\Downloads\strawberry-perl-5.24.0.1-64bit-portable\c\bin\startup\startup.mk: line 32: Error: -- Name contains non-printable character [0xffffffcc]
-> FAIL Installing HTTP::Body failed. See \.cpanm\work\1469736091.5824\build.log for details. Retry with --force to force install it.
Searching Cookie::Baker (0.05) on cpanmetadb ...
--> Working on Cookie::Baker
Fetching http://www.cpan.org/authors/id/K/KA/KAZEBURO/Cookie-Baker-0.06.tar.gz
-> OK
Unpacking Cookie-Baker-0.06.tar.gz
Entering Cookie-Baker-0.06
Checking configure dependencies from META.json
Checking if you have ExtUtils::Install 1.46 ... Yes (2.04)
Checking if you have Module::Build 0.38 ... Yes (0.4218)
Configuring Cookie-Baker-0.06
Running Build.PL
C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/c/bin/../lib/gcc/x86_64-w64-mingw32/4.9.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lperl524
collect2.exe: error: ld returned 1 exit status
C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/c/bin/../lib/gcc/x86_64-w64-mingw32/4.9.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lperl524
collect2.exe: error: ld returned 1 exit status
Created MYMETA.yml and MYMETA.json
Creating new 'Build' script for 'Cookie-Baker' version '0.06'
cp META.json MYMETA.json
cp META.yml MYMETA.yml
-> OK
Checking dependencies from MYMETA.json ...
Checking if you have Test::Time 0 ... No
Checking if you have URI::Escape 0 ... Yes (3.31)
Checking if you have Exporter 0 ... Yes (5.72)
Checking if you have Test::More 0.98 ... Yes (1.001014)
==> Found dependencies: Test::Time
Searching Test::Time (0) on cpanmetadb ...
--> Working on Test::Time
Fetching http://www.cpan.org/authors/id/S/SA/SATOH/Test-Time-0.04.tar.gz
-> OK
Unpacking Test-Time-0.04.tar.gz
Entering Test-Time-0.04
Checking configure dependencies from META.yml
Checking if you have ExtUtils::MakeMaker 6.58 ... Yes (7.16)
Configuring Test-Time-0.04
Running Makefile.PL
Subroutine readme_from redefined at inc/Module/Install/ReadmeFromPod.pm line 11.
Subroutine _readme_txt redefined at inc/Module/Install/ReadmeFromPod.pm line 64.
Subroutine _readme_htm redefined at inc/Module/Install/ReadmeFromPod.pm line 77.
Subroutine _readme_man redefined at inc/Module/Install/ReadmeFromPod.pm line 96.
Subroutine _readme_pdf redefined at inc/Module/Install/ReadmeFromPod.pm line 106.
Subroutine _all_from redefined at inc/Module/Install/ReadmeFromPod.pm line 122.
Subroutine use_test_base redefined at inc/Module/Install/TestBase.pm line 13.
Cannot determine perl version info from lib/Test/Time.pm
Checking if your kit is complete...
Looks good
... Detected uninstalled Perl. Trying to continue.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00cc}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00f8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00e8}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.
"\x{00ed}" does not map to cp866 at C:/Users/Мишин/Downloads/strawberry-perl-5.24.0.1-64bit-portable/perl/lib/ExtUtils/MakeMaker.pm line 1269.