Pergunta

Tentando o -v Switch, eu recebo a revisão do Parrot SVN:

$ perl6 -v
This compiler is built with the Parrot Compiler Toolkit, parrot revision 45822.

Mas como eu sei o Versão Rakudo, ou a vx.xx ou {some-git-hash}?

Obrigado,

Foi útil?

Solução

Atualmente você não pode saber :(

Há um patch para isso na RT que aguarda a revisão: http://rt.perl.org/rt3/ticket/display.html?id=73148 Mas até agora ainda não foi aplicado.

ATUALIZAÇÃO: Com um Rakudo suficientemente novo, você recebe:

$ perl6 -v

This is Rakudo Perl 6, version 2010.06-212-g1086ff8

Copyright 2008-2010, The Perl Foundation

Onde a coisa após a "versão" é o git describe resultado.

Outras dicas

Perl6 -v agora funciona. Ele fornece o último lançamento mensal, o número de commits desde então e o hash git.

A variável especial $*PERL pode fornecer a dica

> $*PERL.compiler
rakudo (2018.04.1)

> $*PERL.compiler.^attributes                                                                                                                                                                                     
(Str $!id Str $!release Str $!build-date Str $!codename Str $!name Str $!auth Version $!version Blob $!signature Str $!desc)

> $*PERL.compiler.^methods'                                                                                                                                                                                            
(BUILD build-date verbose-config Str gist id release codename name auth version signature desc BUILDALL) 

> $*PERL.compiler.name                                                                                                                                                                                       
rakudo

> $*PERL.compiler.version                                                                                                                                                                                       
v2018.04.1 

> $*PERL.compiler.auth                         
The Perl Foundation  

> $*PERL.compiler.build-date  # This being the date it was built on my machine                                                                                                                                                                                    
2018-05-18T21:59:11Z 

> $*PERL.compiler.verbose-config
...
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top