Shammer's Philosophy

My private adversaria

Installing ClozureCL 1.12 into the Mojave was not completed...

I upgrade the my Mac whose version is Late 2013 to Mojave. Then, my clozure cl was unable to run. The error is below.

$ ccl64

sigreturn returned

? for help

[1569] Clozure CL kernel debugger: ^Csigreturn returned

? for help

[1569] Clozure CL kernel debugger: ^Z

[2]+  Stopped                 ccl64 -K :UTF-8

$

 I have seen this error before. But I can't find the way how to fix this. So I write this article for me for my future if I will see this issue again. The answer is written in 

github.com. See the following comment.

commented on Nov 13, 2018

 

This is a copy of this comment and just arranged for myself.

  1. xcode-select --install(if you have never done this)
  2. sudo rm -rf /usr/local/src/ccl
  3. sudo rm /usr/local/bin/ccl
  4. sudo rm /usr/local/bin/ccl64
  5. cd /usr/local/src
  6. sudo git clone https://github.com/Clozure/ccl.git
  7. sudo curl -L -O https://github.com/Clozure/ccl/releases/download/v1.12-dev.1/darwinx86.tar.gz
  8.  cd ccl
  9. sudo tar xf ../darwin86.tar.gz
  10. cd lisp-kernel/darwinx8664/
  11. sudo make clean
  12. sudo make
  13. cd ../..
  14. sudo ./dx86cl64
  15. (ccl:rebuild-ccl :full t) on the CLozureCL REPL

But, unfortunately step 15 wasn't finish. CPU utilization is about 100% more than 9 hours at Compiling /usr/local/src/ccl/compiler/optimizers.lisp. Do I have to debug more?