为什么在win64上安装Number::Format失败?



我正在尝试安装Number::Format以在Windows上与Padre一起使用:

cpanm Number::Format

我得到以下错误。我该如何解决这个问题?

    cpanm (App::cpanminus) 1.7034 on perl 5.020002 built for MSWin32-x86-multi-thread-64int
Work directory is C:Usersadmin/.cpanm/work/1433356714.11300
You have make C:STRAWB~1cbindmake.exe
You have LWP 6.08
Falling back to Archive::Tar 2.04
Searching Number::Format () on cpanmetadb ...
--> Working on Number::Format
Fetching http://www.cpan.org/authors/id/W/WR/WRW/Number-Format-1.73.tar.gz
-> OK
Unpacking Number-Format-1.73.tar.gz
Entering Number-Format-1.73
Checking configure dependencies from META.yml
Configuring Number-Format-1.73
Running Makefile.PL
Checking if your kit is complete...
Looks good
Generating a dmake-style Makefile
Writing Makefile for Number::Format
Writing MYMETA.yml and MYMETA.json
-> OK
Checking dependencies from MYMETA.json ...
Checking if you have POSIX 0 ... Yes (1.38_03)
Checking if you have ExtUtils::MakeMaker 0 ... Yes (6.98)
Checking if you have Test::More 0 ... Yes (1.001014)
Checking if you have Carp 0 ... Yes (1.3301)
Building and testing Number-Format-1.73
cp Format.pm bliblibNumberFormat.pm
C:Perlbinperl.exe "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harness::Switches; test_harness(0, 'bliblib', 'blibarch')" t/*.t
t/format_bytes.t ..... ok
t/format_negative.t .. ok
t/format_number.t .... ok
t/format_picture.t ... ok
t/format_price.t ..... ok
Invalid sep_by_space value at t/locale.t line 77.
# Looks like your test exited with 255 just after 5.
t/locale.t ........... 
Dubious, test returned 255 (wstat 65280, 0xff00)
All 5 subtests passed 
    (less 3 skipped subtests: 2 okay)
t/object.t ........... ok
t/round.t ............ ok
t/unformat_number.t .. ok
Test Summary Report
-------------------
t/locale.t         (Wstat: 65280 Tests: 5 Failed: 0)
  Non-zero exit status: 255
Files=9, Tests=147,  1 wallclock secs ( 0.11 usr +  0.03 sys =  0.14 CPU)
Result: FAIL
Failed 1/9 test programs. 0/147 subtests failed.
dmake.exe:  Error code 255, while making 'test_dynamic'
-> FAIL Installing Number::Format failed. See C:Usersadmin.cpanmwork1433356714.11300build.log for details. Retry with --force to force install it.

已经有一个bug报告了。这个问题还没有修复,但是有人上传了一个补丁,你可以试试:

Reason似乎是POSIX模块,它返回许多"-1"值,其中Number::Format->new()期望丢失哈希键…通过使用附带的补丁作为解决方案,我能够成功地测试和安装。但是在POSIX模块中解决这个问题可能更明智。

任何时候模块构建失败,您都应该检查CPAN Testers报告。在windows x64上,Perl 5.20.0的测试失败了,所以不仅仅是您。

最新更新