From: Pascal J. B. <pj...@in...> - 2011-10-31 22:14:13
|
Anton Vodonosov <avo...@ya...> writes: > Is it possible to have some init file for CLISP which is executed always > (in contrast to .clisprc which is executed only when CLISP is started with > REPL, but not when started from SLIME). > > The motivation is to have quicklisp always available for lisp code executed > by CLISP. clisp -q -norc -ansi (load "quicklisp/setup.lisp") (ext:save-init-mem "~/bin/ql-clisp" :executable t) (ext:quit) and now on use ~/bin/ql-clisp instead of clisp. Not tested, it may not work. Notably, quicklisp/setup.lisp probably hard-wires pathnames, so it probably won't work if launched from another account. -- __Pascal Bourguignon__ http://www.informatimago.com/ A bad day in () is better than a good day in {}. |