我尝试过运行rbx compile
,但我不太清楚如何处理输出。我想用lli运行它,但是我收到以下错误。
$ lli hello.rbc
lli: hello.rbc:2:1: error: expected '=' here
18185007515559028006
^
答案 0 :(得分:1)
您不会使用lli运行Rubinius字节编译代码,因为.rbc文件不是LLVM可执行文件。相反,您使用特殊的Rubinius方法调用来运行它,该方法调用处理Rubinius虚拟机的预编译字节码。例如:
rbx -I. -e "Rubinius::CodeLoader.require_compiled 'hello'"
有关详细信息,请参阅Running Ruby With No Ruby。