[–] fabriceleal 11y ago ↗ A more complete example, giving you a Lisp REPL, and calling C code from Lisp: http://vwood.github.io/embedded-ecl.htmlAnd a "port" to Windows: https://github.com/fabriceleal/ecl-win-vs11-example.Also a tiny non-working "game-engine" that uses SDL1.2 (while not working, may have more examples): https://github.com/rjmacready/pico-gmengine
[–] samsaga2 11y ago ↗ - Guile last version: 2.0.11 (2014-03-20) - Ecl last version: 12.7.1 (2012-07-24)I think guile it's better for language embedding. Anyway if you prefer lisp (to use an asdf package for example) maybe it's better sbcl with ffi.Chicken scheme it's also nice and very portable. [–] lispm 11y ago ↗ ECL last version: 13.5.1 http://sourceforge.net/projects/ecls/files/ecls/13.5/MKCL, fork of ECL Last version MKCL 1.1.9: 2014/07/04 http://common-lisp.net/project/mkcl/ [–] bachmeier 11y ago ↗ > Anyway if you prefer lisp (to use an asdf package for example) maybe it's better sbcl with ffi.You can't easily embed SBCL inside a C program, can you?Gambit and Bigloo are also full-featured Scheme variants that compile to C and are therefore easy to embed in a C program.
[–] lispm 11y ago ↗ ECL last version: 13.5.1 http://sourceforge.net/projects/ecls/files/ecls/13.5/MKCL, fork of ECL Last version MKCL 1.1.9: 2014/07/04 http://common-lisp.net/project/mkcl/
[–] bachmeier 11y ago ↗ > Anyway if you prefer lisp (to use an asdf package for example) maybe it's better sbcl with ffi.You can't easily embed SBCL inside a C program, can you?Gambit and Bigloo are also full-featured Scheme variants that compile to C and are therefore easy to embed in a C program.
4 comments
[ 2.6 ms ] story [ 18.8 ms ] threadAnd a "port" to Windows: https://github.com/fabriceleal/ecl-win-vs11-example.
Also a tiny non-working "game-engine" that uses SDL1.2 (while not working, may have more examples): https://github.com/rjmacready/pico-gmengine
I think guile it's better for language embedding. Anyway if you prefer lisp (to use an asdf package for example) maybe it's better sbcl with ffi.
Chicken scheme it's also nice and very portable.
MKCL, fork of ECL Last version MKCL 1.1.9: 2014/07/04 http://common-lisp.net/project/mkcl/
You can't easily embed SBCL inside a C program, can you?
Gambit and Bigloo are also full-featured Scheme variants that compile to C and are therefore easy to embed in a C program.