Re: [ccl-dev] CL+SSL crashes the IDE on M1 macs
Ron Garret <[email protected]>
| Newsgroups | gmane.lisp.openmcl.devel |
|---|---|
| Message-ID | <[email protected]> |
The weird thing is that my ccl-init doesn't actually load anything, in no small part because I am well aware of this pitfall. But also, I maintain multiple development environments (which is why I have multiple copies of quicklisp), so my ccl-init just defines init functions for those environments but doesn't actually run them. > On Dec 22, 2022, at 1:01 PM, Shannon Spires <[email protected]> wrote: > > I've made that mistake before. The key is to always use the "-n" flag whenever I run ./dx86cl64 to rebuild CCL (or to build the IDE). This forces CCL to ignore my ccl-init file so all the stuff in it doesn't become part of the new image. > > -SS > > > On 12/22/22 12:11 PM, Ron Garret wrote: >> I figured out what was going on. It turned out to have nothing to do with either CL+SSL or Quicklisp. >> >> When I start my IDE, I get this: >> >> Clozure Common Lisp Version 1.12.1 (v1.12.1-10-gca107b94) DarwinX8664 >> ? (find-package :quicklisp) >> NIL >> >> which is as expected. But in the command-line version I have this: >> >> Clozure Common Lisp Version 1.12.1 (v1.12.1-10-gca107b94) DarwinX8664 >> ? (find-package :quicklisp) >> #<Package "QUICKLISP-CLIENT"> >> >> So apparently many months ago when I built CCL I somehow ended up with an image that included Quicklisp and that is the image that the command line version is using. So when I load Quicklisp into that version, it gets to this point in the initialization process: >> >> (defvar *quicklisp-home* >> (make-pathname :name nil :type nil >> :defaults *load-truename*)) >> >> but that turns into a no-op because *quicklisp-home* is already bound. It just so happens that *quicklisp-home* in this image points to a different copy of Quicklisp than the one I was trying to use. >> >> (I have no idea how I ended up with a default image that has QL built in, particularly since my IDE doesn't have it. That is still really weird. But at least it's more run-of-the-mill weirdness.) >> >> rg >> > > -- > You received this message because you are subscribed to the Google Groups "ccl-dev" group. > To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. > To view this discussion on the web visit https://groups.google.com/d/msgid/ccl-dev/03b8d7de-1396-0724-06c7-7df8a2e050ae%40bearlanding.com.