Source: stalin Section: lisp Priority: optional Build-Depends: debhelper-compat (= 13), libgc-dev, libx11-dev, libgl1-mesa-dev | libgl-dev, freeglut3-dev | libglut-dev Maintainer: Rob Browning Standards-Version: 3.8.4 Homepage: http://www.ece.purdue.edu/~qobi/software.html Package: stalin Architecture: i386 amd64 arm64 ia64 sparc kfreebsd-i386 kfreebsd-amd64 Depends: ${shlibs:Depends}, ${misc:Depends}, libgc-dev, dpkg-dev Description: An extremely aggressive Scheme compiler stalin is an aggressive self-hosting Scheme compiler, designed to generate resource efficient stand-alone executables with very high computational performance. It is a batch mode compiler like gcc, not an interpreter, and is designed to be used only after your code has stabilized. . It places a few limitations on the content of the source code. For example, you may not LOAD or EVAL new expressions or procedure definitions at runtime, but in exchange, it is able to perform various global analyses which may allow it to transparently map Scheme types to C types and to use native C arithmetic operations on a per-expression basis, whenever such operations are proven safe. Further stalin can often reduce or eliminate run-time type checking and dispatching, and omit garbage collection for data of limited scope or accessibility, while omitting unreachable data altogether. . stalin also has a foreign procedure interface to both Xlib and OpenGL.