Skip to content

Commit

Permalink
Merge pull request #69 from takagi/issue/41
Browse files Browse the repository at this point in the history
Issue/41 error when loading.
  • Loading branch information
takagi committed Mar 31, 2016
2 parents 07cae75 + b704331 commit d56ea39
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ Since cl-cuda is not available in Quicklisp distribution because of its testing

Then `(ql:quickload :cl-cuda)` from `REPL` to load it.

You may encounter the following error, please install CFFI explicitly `(ql:quickload :cffi)` before loading cl-cuda. Just once is enough.

Component CFFI-GROVEL not found
[Condition of type ASDF/FIND-SYSTEM:MISSING-COMPONENT]


## Requirements

Cl-cuda requires following:
Expand Down
7 changes: 4 additions & 3 deletions cl-cuda.asd
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
|#

(in-package :cl-user)
(defpackage cl-cuda-asd
(:use :cl :asdf))
(in-package :cl-cuda-asd)

(eval-when (:load-toplevel :execute)
(asdf:operate 'asdf:load-op 'cffi-grovel))

(defpackage cl-cuda-asd
(:use :cl :asdf))
(in-package :cl-cuda-asd)


;;;
;;; Cuda-grovel-file ASDF component
Expand Down

0 comments on commit d56ea39

Please sign in to comment.