我尝试在 OS X El Capitan(当前为 PB 6)上安装 SML。
不幸的是sml
,终端中的命令给了我以下错误消息:
sml: unable to determine architecture/operating system
并更改了_arch-n-opsys
文件,以便它能够识别 El Capitan:
i386) ARCH=x86;
case `uname -r` in
9*) OPSYS=darwin; HEAP_OPSYS=darwin ;; # MacOS X 10.5 Leopard
10*) OPSYS=darwin; HEAP_OPSYS=darwin ;; # MacOS X 10.6 Snow Leopard
11*) OPSYS=darwin; HEAP_OPSYS=darwin ;; # MacOS X 10.7 Lion
12*) OPSYS=darwin; HEAP_OPSYS=darwin ;; # MacOS X 10.8 Mountain Lion
13*) OPSYS=darwin; HEAP_OPSYS=darwin ;; # MacOS X 10.9 Mavericks
14*) OPSYS=darwin; HEAP_OPSYS=darwin ;; # MacOS X 10.10 Yosemite
15*) OPSYS=darwin; HEAP_OPSYS=darwin ;; # MacOS X 10.11 El Capitan
*) exit 1;;
esc;;
但我仍然收到相同的错误消息:
sml: unable to determine architecture/operating system
知道如何解决这个问题吗?