virtual-machine - 如何在 Squeak 中加载 VMMaker?

标签 virtual-machine smalltalk squeak

我正在使用 Squeak 4.4 更新 12327 和 VM 版本 4.1.1。我尝试使用 ConfigurationOf 脚本加载 VMMaker,但总是失败,主要在 Freetype 包中出现异常。

Gofer new
       squeaksource: 'MetacelloRepository';
       package: 'ConfigurationOfVMMaker';
       load.
((Smalltalk at: #ConfigurationOfVMMaker) project version: '1.4') load

或者
Gofer new
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfVMMaker';
load.

(Smalltalk at:#ConfigurationOfVMMaker) project lastVersion load.

或者
Gofer new
     squeaksource: 'MetacelloRepository';
     package: 'ConfigurationOfVMMaker';
     load.

(ConfigurationOfVMMaker project version: '1.5') load.

既不包repository page ,也不是 wiki pages ( this onethis one )包含加载 VMMaker 的说明或链接,尽管包含很多解释。

最佳答案

这要感谢 David Lewis,在我们用来测试 Interpreter VM 的 CI 脚本中:

MCMcmUpdater updateFromRepositories: #('http://source.squeak.org/VMMaker').
(Smalltalk at: #VMMaker) initializeBrowserSupport. "activate Slang browsing"

关于virtual-machine - 如何在 Squeak 中加载 VMMaker?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14176298/

相关文章:

smalltalk - Smalltalk 中 Symbol 的 "best practice"可移植方式是什么?

c++ - 在 VM 中调试进程

keyboard - Ubuntu VMWare 虚拟机中的 Caps Lock 问题

repository - Pharo 工作流 : file out, 切片并保存到存储库

smalltalk - 吱吱小声 : Why reduction of a fraction does not happen after numerator and denominator values are modified in the inspect window?

smalltalk - Squeak Win 7 错误 : No content to install

java - 使用 Java 中的 REST API Azure 获取详细的错误消息

linux - 由于 rc.local 启动脚本而无法启动

smalltalk - 如何处理 Squeak FFI 中的多个指针级别(如 char**)

testing - 是否有用于跟踪 Pharo/Squeak 的分支级测试覆盖率的工具?