dlib_open can't load dynamic library under macos
Closed this issue · 1 comments
cnsitk commented
line 29-24 in osbs/unix/dlib.c :
#if defined(__LINUX__) static const char_t *i_LIB_PREFIX = "lib"; static const char_t *i_LIB_SUFIX = ".so"; #elif defined(__MACOS__) static const char_t *i_LIB_PREFIX = "lib"; static const char_t *i_LIB_SUFIX = ".so"; #else #error Unknown platform #endif
static const char_t *i_LIB_SUFIX = ".so";
this line may be need change to static const char_t *i_LIB_SUFIX = ".dylib";
the nappgui_src version:
commit 50887ca (grafted, HEAD -> main, origin/main, origin/HEAD)