为什么 Quicklisp 在 MacOS 上加载 log4cl 失败

问题描述 投票:0回答:0

在 MacOS 上:当我尝试加载 log4cl 时出现编译错误:

CL-USER> (ql:quickload "log4cl")
To load "log4cl":
  Load 1 ASDF system:
    log4cl
; Loading "log4cl"
.
; 
; caught ERROR:
;   READ error during COMPILE-FILE:
;   
;     Lock on package SB-C violated when interning LAMBDA-PARENT while in package
;     LOG4CL-IMPL.
;   See also:
;     The SBCL Manual, Node "Package Locks"
;   
;     (in form starting at line: 99, column: 0, position: 3779)

 COMPILE-FILE-ERROR while
compiling #<CL-SOURCE-FILE "log4cl" "src" "naming-sbcl">
   [Condition of type UIOP/LISP-BUILD:COMPILE-FILE-ERROR]

在 Ubuntu 上:我没有看到该错误并且 log4cl 加载没有问题。这可能是什么原因?

lisp common-lisp sbcl quicklisp
© www.soinside.com 2019 - 2024. All rights reserved.