Rakudoをリポジトリからコンパイルしようとしてはまった
リポジトリってのはここ。
rakudo/rakudo · GitHub
症状
PackFile_unpack: This Parrot cannot read bytecode files with version 8.0.
この他にももう一つエラー出てた気がするけどscreenのタブ閉じてしまった...
解決
READMEに対処法が書かれてありました。
Build/install problems
Occasionally, there may be problems when building/installing Rakudo.
Make sure you have a backup of any custom changes you have done to the
source tree before performing the following steps:Try to remove the "parrot_install" subdirectory:
$ cd rakudo
$ rm -r parrot_install
$ git pull
$ perl Configure.pl --gen-parrot
$ makeOr, in case you are really stuck, start with a fresh source tree:
$ rm -r rakudo
$ git clone git://github.com/rakudo/rakudo.git
parrot_installを削除してダメだったらリポジトリごと削除してgit cloneしなおせだそうです。