fix (recently broken) 'swank-server' example to work again on iOS

This commit is contained in:
pls.153 2022-03-10 12:21:07 +01:00
parent 4a0132fcfd
commit 4735b47159
2 changed files with 6 additions and 4 deletions

View file

@ -69,8 +69,9 @@
;; needed for ASDF and Quicklisp
(setf (logical-pathname-translations "SYS")
(list (list "sys:**;*.*"
(merge-pathnames "**/*.*" (user-homedir-pathname)))
(list "home:**;*.*"
(merge-pathnames "**/*.*" (user-homedir-pathname)))))
(setf (logical-pathname-translations "HOME")
(list (list "home:**;*.*"
(merge-pathnames "**/*.*" (user-homedir-pathname)))))
(ffi:c-inline nil nil :void "ecl_init_module(NULL, init_lib_ASDF)" :one-liner t)
(in-package :qml-user))