I tried to install SML on OS X El Capitan (currently PB 6).
Unfortunately the command sml
in the Terminal gives me the following error message:
sml: unable to determine architecture/operating system
I used this question from stack overflow
and changed the _arch-n-opsys
file, so that it would recognize 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;;
But I still get the same error message:
sml: unable to determine architecture/operating system
Any idea how to solve this?