Crosscompiling CLISP for Windows: ================================= Currently only the core (boot) system works, not the modules. On a rececent Ubuntu system (tested on 16.04) you need compilers and crosscompilers, I assume the following should work on a PC of a developer: apt-get install gcc-mingw-w64-i686 mingw-w64-i686-dev nsis wine cmake Then do the following: # assuming, that you are in the extracted crosscompile-scripts folder: cd build cmake .. # cmake -DCLISP_STAGE=base .. # or # cmake -DCLISP_STAGE=full .. # instead would try to do a complete build, currently only the boot stage works. make make package This will download libsigsegv, libffcall and the current CLISP git version. The libraries and CLISP should be crosscompiled and you get a ZIP file and a Windows installer. Wolfgang Dautermann