Clozure CL on Mac OS X: Get Rid of the GUI?
3 answers
Here is the solution.
I originally installed CCL "Mac way" - from the App Store (silly me). No matter what I called dx86cl64 it always opened the listener window.
I uninstalled the app, downloaded ftp://clozure.com/pub/release/1.7/ccl-1.7-darwinx86.tar.gz and unpacked it to / opt / ccl -1.7. Then I created ~ / bin / ccl with this content:
#!/bin/sh
exec "/opt/ccl-1.7/dx86cl64" -K utf-8 $*
The problem has been resolved.
+2
source to share