Where should a Quicklisp QUICKLOAD go in my source? Nowhere?

前端 未结 4 2260
[愿得一人]
[愿得一人] 2021-02-15 10:11

Let\'s say I build an application on top of net.aserve and bordeaux-threads. My package declaration might look like this:

(defpackage :         


        
4条回答
  •  借酒劲吻你
    2021-02-15 11:10

    In your asd file, you should define the depends realtion as below:''

    (asdf:defsystem #:aserve
     :serial t
     :depends-on (#:hunchentoot :hunchentoot-cgi
               #::bordeaux-threads
               #:parenscript)
     ...)
    

    After then you just need to (ql:quickload :aserve) .

提交回复
热议问题