I am going to run the following .pl file.
:- load_foreign_library(testenv).
I have created the testenv.so
file from C. This whole process runs fine when I put the testenv.so
file in the current running folder. However, I need to put the .so file in a given folder, and run the prolog from another folder. So I need to a way to point the prolog to the correct location.
I tried LD_LIBRARY_PATH
env variable, and also “file_search_path” (the latter one I am not sure if I used it correctly). nothing works so far.
How can I make it work? and another question, is there a C interface api function that I can use to load the .so file, instead of using the prolog directive?
Thanks!