On Wed, Aug 11, 2010 at 5:18 AM, mac <[email protected]> wrote: > > It is certainly theoretically possible to call C++ from Clojure/Java > but it requires deep knowledge and lots of code for each C++ compiler > one would like to support.
I've done a fair amount of work getting specific C++ libraries to work with Clojure. I recommend swig, but even with that it's a messy and error-prone process, requires integration with your AOT build process, etc. Once that's all set up for each individual C++ lib, the Clojure code you write to use it can look as good and work as well as any Java interop code, so quite well and naturally. --Chouser http://joyofclojure.com/ -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
