I have seen that sb-ext:save-lisp-and-die
is used to make executables from sourc code, but how do you make the executable for specific systems? e.g. Linux, Windows, Apple.
I have seen that sb-ext:save-lisp-and-die
is used to make executables from sourc code, but how do you make the executable for specific systems? e.g. Linux, Windows, Apple.
Common Lisp is not a batch compiled language, it relies on having a running program in order to compile your code. As such you must be running on the target platform to deploy for to produce executables.