4

我正在尝试使用 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 回答是?

4

1 回答 1

4

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

$ perlbrew install perl-5.21.5 -Dusedevel
于 2015-01-23T20:59:30.773 回答