nekodjin
Explore posts from serversTTCTheo's Typesafe Cult
•Created by nekodjin on 8/8/2023 in #questions
JSDoc - Functions Taking Never
3 replies
DllImport Troubles
Hello there. I'm running on linux. I'm trying to load symbols from a library named
libxyz.so
. I have written it as such:
however, I get this runtime error:
I used the LD_DEBUG
environment variable as instructed, and discovered that while the runtime is correctly identifying the possible permutations (xyz
, libxyz
, xyz.so
, libxyz.so
) it is only searching for those permutations in the system search path (i.e. /usr/lib
) and nowhere else. That is to say, it is not searching the current directory, which is where the file is located. How can I remedy this?26 replies