- Up - | Next >> |
Requirements
A running Mozart Oz Programming System is needed. It can be downloaded from http://www.ps.uni-sb.de/mozart
.
Getting SML To Oz Compiler
Current SML to Oz Compiler sources are available via anonymous cvs
CVSROOT | :pserver:anoncvs@ps.uni-sb.de:/CVS |
Module | SML |
Password | anoncvs |
An example session to check out the SML to Oz Compiler might look as follows:
% cvs -d :pserver:anoncvs@ps.uni-sb.de:/CVS login
(Logging in to anoncvs@ps.uni-sb.de)
CVS password: anoncvs
% cvs -d :pserver:anoncvs@ps.uni-sb.de:/CVS get SML
Emacs/ XEmacs
Add the following lines to your .emacs
file and don't forget to replace SMLOZHOME?
with the path to the directory where you have installed the SML to Oz Compiler (for example: ~/SML
).
(setq load-path
(append '("SMLOZHOME?/sml-mode")
load-path))
(setq auto-mode-alist
(append '(("\\.ozsml\\'" . ozsml-mode))
auto-mode-alist))
(autoload 'ozsml-mode "ozsml" "" t)
Change to the $SMLOZHOME
directory and type
% make
to compile the sources.
- Up - | Next >> |