customize-target-features.lisp 221 B

1234567
  1. (lambda (features)
  2. (flet ((enable (x) (pushnew x features))
  3. (disable (x) (setf features (remove x features))))
  4. (enable :sb-thread)
  5. (enable :sb-core-compression)
  6. (${enable_disable_largefile} :largefile)))