Where to go with EQL5 and QT specific questions?

pls.153 pls.153 at protonmail.com
Thu Apr 29 15:25:26 UTC 2021


On Thursday, April 29, 2021 4:31 PM, Erik Winkels <aerique at xs4all.nl> wrote:
>
>     Condition of type: FILE-ERROR
>     Filesystem error with pathname "SYS:help.doc".
>     Either
>     1.  the file does not exist, or
>     2.  we are not allowed to access the file, or
>     3.  the pathname points to a broken symbolic link.
>         No restarts available.
>
>         Top level in: #<process TOP-LEVEL 0xb0581fc0>.
>

I had the same issue on iOS, here is what I did:

  ;; needed e.g. for loading 'help.doc'
  (setf (logical-pathname-translations "SYS")
        (list (list #p"sys:**;*.*"
                    (merge-pathnames "**/*.*"
                                     (user-homedir-pathname)))))

Now you can put "help.doc" in (user-homedir-pathname), and ECL will find it.

Paul



More information about the ecl-devel mailing list