You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Clojure
Does anyone have ClojureCLR running under emacs via slime?
Failing that, can anyone give me some pointers as to how I might hacking swank-clojure.el (or whatever) to get this to work?
Mike
Shawn Hoover
unread,
Feb 14, 2010, 10:43:43 AM2/14/10
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to clo...@googlegroups.com
Hi Mike,
I've not heard of anyone doing this. The changes to swank-clojure.el would involve changing how it sets up the Clojure process. Instead of calling Java with a classpath, it needs to call ClojureCLR's executable. The real work would be in the swank-clojure clj sources. Every use of a Java standard library class would have to be replaced with an appropriate CLR base class library class.
Shawn
Stuart Sierra
unread,
Feb 14, 2010, 11:53:19 AM2/14/10
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Clojure
On Feb 14, 10:43 am, Shawn Hoover <shawn.hoo...@gmail.com> wrote: > The real work would be in the swank-clojure clj sources.
Yes, you would basically have to rewrite swank-clojure, as it depends heavily on the JDK socket libraries. -SS
Terje Norderhaug
unread,
Feb 14, 2010, 7:38:24 PM2/14/10
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to clo...@googlegroups.com
Perhaps this could be implemented like CL Swank <http://github.com/technomancy/slime>, with a portable core and platform specific backend modules.