X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fforeign.lisp;h=f8fb6b9429444f4f5d0ba8b05647b6db8db887f5;hb=05e28b18c3fc2d697f04fb0393f51ce00147825e;hp=8c32729a9f935da63effb445d56688e08807f562;hpb=3397c1325c8918fe7f187673ff33e469158955e0;p=sbcl.git diff --git a/src/code/foreign.lisp b/src/code/foreign.lisp index 8c32729..f8fb6b9 100644 --- a/src/code/foreign.lisp +++ b/src/code/foreign.lisp @@ -16,8 +16,7 @@ (defun extern-alien-name (name) (handler-case - #!-win32 (coerce name 'base-string) - #!+win32 (concatenate 'base-string "_" name) + (coerce name 'base-string) (error () (error "invalid external alien name: ~S" name)))) @@ -54,7 +53,10 @@ Dynamic symbols are entered into the linkage-table if they aren't there already. On non-linkage-table ports signals an error if the symbol isn't found." (declare (ignorable datap)) - (let ((static (find-foreign-symbol-in-table name *static-foreign-symbols*))) + #!+sb-dynamic-core + (values (ensure-foreign-symbol-linkage name datap) t) + #!-sb-dynamic-core + (let ((static (find-foreign-symbol-in-table name *static-foreign-symbols*))) (if static (values static nil) #!+os-provides-dlopen @@ -81,8 +83,7 @@ if the symbol isn't found." #!+linkage-table (multiple-value-bind (addr sharedp) (foreign-symbol-address symbol datap) - #+sb-xc-host - (aver (not sharedp)) + #+sb-xc-host #!-sb-dynamic-core (aver (not sharedp)) () ;; If the address is from linkage-table and refers to data ;; we need to do a bit of juggling. It is not the address of the ;; variable, but the address where the real address is stored. @@ -104,7 +105,7 @@ if the symbol isn't found." ;;; Cleanups before saving a core #-sb-xc-host (defun foreign-deinit () - #!+(and os-provides-dlopen (or (not linkage-table) win32)) + #!+(and os-provides-dlopen (not linkage-table)) (when (dynamic-foreign-symbols-p) (warn "~@