如何让 perlbrew 安装特定的开发 perl 版本(即不是 perl-bleed)

How do I make perlbrew install a specific development perl version (ie not perl-bleed)

我正在尝试使用 perlbrew 安装除 perl-bleed 之外的开发 perl 版本,例如:

$ perlbrew install perl-5.21.5

如果我跟踪我看到的日志文件,则会失败

$ tail ~/perl5/perlbrew/build.perl-5.21.5.log
    Data corruption and crashes are possible.

    It is most seriously suggested that you do not continue any further
    unless you want to help in developing and debugging Perl.

    If you *still* want to build perl, you can answer 'y' now,
    or pass -Dusedevel to Configure.

Do you really want to continue? [n]  
Okay, bye.

如何让 perlbrew 回答是?

您需要将 -Dusedevel 传递给 perlbrew,例如:

$ perlbrew install perl-5.21.5 -Dusedevel