[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Lisp and C : explanations



   >From clisp-list@ma2s2.mathematik.uni-karlsruhe.de Mon Sep 12 23:25:53 1994
   Date: Mon, 12 Sep 94 23:33:16 +0200
   Errors-To: haible@ma2s2.mathematik.uni-karlsruhe.de
   Originator: clisp-list@ma2s2.mathematik.uni-karlsruhe.de
   Errors-To: haible@ma2s2.mathematik.uni-karlsruhe.de
   Reply-To: clisp-list <clisp-list@ma2s2.mathematik.uni-karlsruhe.de>
   Sender: clisp-list@ma2s2.mathematik.uni-karlsruhe.de
   Version: 5.5 -- Copyright (c) 1991/92, Anastasios Kotsikonas
   From: charpent@bacbuc.frmug.fr.net (Emmanuel Charpentier)

   ...

   What is Ecolisp ?

ECL is an implementation of Common Lisp designed for being embeddable
into C based applications.

ECL uses standard C calling conventions for Lisp compiled functions,
which allows C programs to easily call Lisp functions and
viceversa. No foreign function interface is required: data can be
exchanged between C and Lisp with no need for conversion.

ECL is based on a Common Runtime Support (CRS) which provides basic
facilities for memory managment, dynamic loading and dumping of binary
images, support for multiple threads of execution.  The CRS is built
into a library that can be linked with the code of the application.
ECL is modular: main modules are the program development tools (top
level, debugger, trace, stepper), the compiler, and CLOS.  A native
implementation of CLOS is available in ECL: one can configure ECL with
or without CLOS.  A runtime version of ECL can be built with just the
modules which are required by the application.

The ECL compiler compiles from Lisp to C, and then invokes the GCC
compiler to produce binaries.

ECL has been ported so far on:

 - Sun workstations with SunOS 4.x
 - Silicon Graphics with IRIX 4.x
 - IBM PC with DOS/go32.
 - IBM PC with Linux 1.0.

The newest versions are available via anonymous ftp from:

 - ftp.icsi.berkeley.edu [128.32.201.7], directory /pub/ai/ecl
 - ftp.di.unipi.it [131.114.4.36], directory /pub/lang/lisp

Since ECoLisp provides many of the features that are desired for GCL,
Richard Stallman has urged me to integrate my work with GCL.
Discussion is underway with Bill Schelter on how to do this.

A paper on ECoLisp has been presented at the Lisp Users and Vendors Conference
in Berkeley last month.

-- Beppe