Fix to load shared libraries from default locations in CMUCL and CLISP
[clg] / tools / asdf-extensions.lisp
CommitLineData
77dd2192 1(in-package :asdf)
2
ac3ab7d4 3(export '(*absolute-paths-as-default* *dso-extension*
fb1753d9 4 *operation* *system* *component* library shared-object))
34abe734 5
a4263d6d 6(defparameter *dso-extension*
e6ab30c2 7 #-(or darwin win32)"so" #+darwin"dylib" #+win32"dll")
34abe734 8
ac3ab7d4 9(defparameter *absolute-paths-as-default* nil)
1a9c1e08 10
57f6526c 11;;; The following code is more or less copied from sb-bsd-sockets.asd,
12;;; but extended to allow flags to be set in a general way. The class
b133c3a7 13;;; has been renamed from unix-dso to shared-object as this code is no
14;;; longer specific to unix
77dd2192 15
57f6526c 16(defclass shared-object (module)
b133c3a7 17 ((ldflags :initform nil :initarg :ldflags)
ac3ab7d4 18 (absolute :initform *absolute-paths-as-default*
19 :initarg :absolute :reader absolute-p)))
57f6526c 20
21(defun ensure-namestring (pathname)
77dd2192 22 (namestring
23 (typecase pathname
24 (logical-pathname (translate-logical-pathname pathname))
25 (t pathname))))
26
57f6526c 27(defmethod input-files ((operation compile-op) (dso shared-object))
77dd2192 28 (mapcar #'component-pathname (module-components dso)))
29
57f6526c 30(defmethod output-files ((operation compile-op) (dso shared-object))
77dd2192 31 (let ((dir (component-pathname dso)))
32 (list
34abe734 33 (make-pathname :type *dso-extension*
b6f51030 34 :name (component-name dso)
77dd2192 35 :directory (butlast (pathname-directory dir))
36 :defaults dir))))
37
57f6526c 38(defmethod perform :after ((operation compile-op) (dso shared-object))
a4263d6d 39 (let ((output (first (output-files operation dso)))
57f6526c 40 (inputs (mapcar #'ensure-namestring
a4263d6d 41 (mapcan #'(lambda (c)
42 (output-files operation c))
43 (module-components dso)))))
77dd2192 44 (unless (zerop
e6ab30c2 45 (run-shell-command "gcc ~A -o ~S ~{~S~^ ~} ~{~A~^ ~}"
46 #-(or darwin win32)"-shared"
a4263d6d 47 #+darwin "-bundle"
48 #+win32
49 (format nil "-shared -Wl,--out-implib,~S"
57f6526c 50 (ensure-namestring
a4263d6d 51 (make-pathname
52 :type "a"
53 :name (format nil "lib~Adll" (pathname-name output))
54 :defaults output)))
57f6526c 55 (ensure-namestring output)
e6ab30c2 56 inputs
57 (slot-value dso 'ldflags)))
77dd2192 58 (error 'operation-error :operation operation :component dso))))
59
dfdb198f 60#+clisp
61(defvar *loaded-libraries* ())
73572c12 62
b133c3a7 63(defun load-shared-object (pathname &optional (absolute-p t))
64 (let* ((namestring (ensure-namestring pathname))
65 (directory (namestring (pathname-sans-name+type namestring)))
66 (name+type (subseq namestring (length directory))))
67 #+sbcl
68 (progn
69 (sb-alien:load-shared-object namestring)
70 (unless absolute-p
71 (let ((shared-object (find namestring sb-alien::*shared-objects*
72 :key #'sb-alien::shared-object-file
73 :test #'equal)))
74 (setf (sb-alien::shared-object-file shared-object) name+type))))
75 #+cmu
76 (progn
77 (ext:load-foreign namestring)
78 (unless absolute-p
79 (let ((shared-object (rassoc namestring system::*global-table*
80 :test #'equal)))
81 (setf (cdr shared-object) name+type))))
82 #+clisp
83 (progn
fb1753d9 84 #?-(pkg-config:clisp>= 2 45)
57f6526c 85 (ffi::foreign-library namestring)
fb1753d9 86 #?(pkg-config:clisp>= 2 45)
87 (ffi:open-foreign-library namestring)
b133c3a7 88 (pushnew
89 (if absolute-p namestring name+type)
90 *loaded-libraries* :test #'string=))))
1a9c1e08 91
92
b133c3a7 93(defmethod perform ((o load-op) (dso shared-object))
77dd2192 94 (let ((co (make-instance 'compile-op)))
b133c3a7 95 (let ((pathname (car (output-files co dso))))
96 (load-shared-object pathname (absolute-p dso)))))
77dd2192 97
98
99
100(defclass c-source-file (source-file)
101 ((cflags :initform nil :initarg :cflags)
102 (optimization :initform 2 :initarg :optimization)
103 (definitions :initform nil :initarg :definitions)
104 (include-paths :initform nil :initarg :include-paths)))
105
106
107(defmethod output-files ((op compile-op) (c c-source-file))
73572c12 108 (list (make-pathname :type "o" :defaults (component-pathname c))))
77dd2192 109
110
111(defmethod perform ((op compile-op) (c c-source-file))
112 (unless
fb1753d9 113 (= 0 (run-shell-command "gcc -Wall ~A~{ ~A~} -o ~S -c ~S"
a4263d6d 114 #-win32 "-fPIC"
115 #+win32 "-DBUILD_DLL"
116 (nconc
117 (when (slot-value c 'optimization)
118 (list (format nil "-O~A" (slot-value c 'optimization))))
119 (loop
120 for symbol in (slot-value c 'definitions)
121 collect (format nil "-D~A" symbol))
122 (loop
123 for path in (slot-value c 'include-paths)
124 collect (format nil "-I~A" path))
125 (slot-value c 'cflags))
57f6526c 126 (ensure-namestring (first (output-files op c)))
127 (ensure-namestring (component-pathname c))))
77dd2192 128 (error 'operation-error :operation op :component c)))
129
130
131(defmethod perform ((operation load-op) (c c-source-file))
132 t)
133
134
fd9d29a4 135;;; Shared libraries
1a9c1e08 136
fd9d29a4 137(defclass library (component)
57f6526c 138 ((libdir :initarg :libdir :initform nil)
b133c3a7 139 (libname :initarg :libname :initform nil)
ac3ab7d4 140 (absolute :initform *absolute-paths-as-default*
141 :initarg :absolute :reader absolute-p)))
1a9c1e08 142
143
3e9e71e7 144(defun split-path (path)
fb1753d9 145 (when path
146 (labels ((split (path)
147 (unless (zerop (length path))
148 (let ((slash (position #\/ path)))
149 (if slash
150 (cons (subseq path 0 slash) (split (subseq path (1+ slash))))
151 (list path))))))
152 (if (and (not (zerop (length path))) (char= (char path 0) #\/))
153 (cons :absolute (split (subseq path 1)))
154 (cons :relative (split path))))))
155
1a9c1e08 156
157(defmethod component-pathname ((lib library))
fb1753d9 158 (or
159 (when (slot-value lib 'libname)
160 (let ((filename (format nil "~A~A" (namestring (make-pathname :directory (split-path (slot-value lib 'libdir)))) (slot-value lib 'libname))))
161 (when (probe-file filename)
162 (pathname filename))))
163
164 (make-pathname
165 :type *dso-extension*
166 :name (or (slot-value lib 'libname) (component-name lib))
167 :directory (split-path (slot-value lib 'libdir)))))
1a9c1e08 168
b133c3a7 169(defmethod perform ((o load-op) (lib library))
170 (load-shared-object (component-pathname lib) (absolute-p lib)))
fd9d29a4 171
b133c3a7 172(defmethod perform ((operation operation) (lib library))
fd9d29a4 173 nil)
174
b133c3a7 175(defmethod operation-done-p ((o load-op) (lib library))
176 (let* ((namestring (ensure-namestring (component-pathname lib)))
177 (directory (namestring (pathname-sans-name+type namestring)))
178 (name+type (subseq namestring (length directory)))
179 (stored-name (if (absolute-p lib) namestring name+type)))
180
181 #+sbcl(find stored-name sb-alien::*shared-objects* :key #'sb-alien::shared-object-file :test #'equal)
182 #+cmu(rassoc stored-name system::*global-table* :test #'equal)
183 #+clisp(find stored-name *loaded-libraries* :test #'equal)))
fd9d29a4 184
b133c3a7 185(defmethod operation-done-p ((o operation) (lib library))
fd9d29a4 186 t)
90309986 187
188
189;;; Binding of dynamic variables during perform
190
191(defvar *operation* nil)
192(defvar *system* nil)
193(defvar *component* nil)
194
195(defmethod perform :around ((operation operation) (c component))
196 (let ((*operation* operation)
197 (*component* c)
198 (*system* (component-system c)))
199 (call-next-method)))