From: Alexandru P. <al...@gm...> - 2024-11-20 18:38:35
|
> > In the quicklisp-client, searching for side-effects to *features* leads me > to: > > $ grep -rni 'set.* [*]features[*]' . > ./asdf.lisp:1908: :do (setf o feature) (pushnew feature > *features*) > ./asdf.lisp:1909: :else :do (setf *features* (remove feature > *features*)) > > asdf.lisp contains this code: > > (defun detect-os () > Thank you for a hint. > (return (or o (error "Congratulations for trying ASDF on an > operating system~%~ > that is neither Unix, nor Windows, nor Genera, nor even old MacOS.~%Now > you port it."))))) > What is this code meant to do?? This message seems to indicate that ASDF is run at completely new OS, and you as ASDF user face the situation to port it to a new OS. I do not remember to see such error, but maybe it is a good idea to ask ASDF team for assistance. |