public
Description: A distribution of Aquamacs, SBCL and SLIME which offers the simplest way to run Common Lisp on Mac OS X
Homepage: http://www.newartisans.com/software/readylisp.html
Clone URL: git://github.com/jwiegley/ready-lisp.git
Click here to lend your support to: ready-lisp and make a donation at www.pledgie.com !
ready-lisp / customize-target-features.lisp
100644 10 lines (9 sloc) 0.312 kb
1
2
3
4
5
6
7
8
9
10
(lambda (features)
  (flet ((enable (x)
           (pushnew x features))
         (disable (x)
           (setf features (remove x features))))
    ;; Threading support, available only on x86/x86-64 Linux, x86 Solaris
    ;; and x86 Mac OS X (experimental).
    (enable :sb-thread)
    (enable :sb-executable)))