-
I am having a hard time understanding how box64 deals with native libraries. On one hand it seems that box64 will try to load native libraries for any library, while on the other hand it seems that box64 only supports wrapped libraries with explicit hardcoded support. If box64 does indeed support arbitrary wrapped libraries, where does it look for these? I have tried changing the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Only "hardcoded" libs can be used as native. You can see the list of libs in the code, look inside "library_list.h" |
Beta Was this translation helpful? Give feedback.
-
That's unfortunate, I was looking to get cuda working, but it seems like it is too complicated to add support for it. Do you happen to know of any other way I could potentially get this working? It is just a amd64 executable which references cuda. |
Beta Was this translation helpful? Give feedback.
Only "hardcoded" libs can be used as native. You can see the list of libs in the code, look inside "library_list.h"
The libs are open using
dlopen(...)
so LD_LIBRARY_PATH is used indeed.