We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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";
#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";
static const char_t *i_LIB_SUFIX = ".dylib";
the nappgui_src version: commit 50887ca (grafted, HEAD -> main, origin/main, origin/HEAD)
The text was updated successfully, but these errors were encountered:
Hi @cnsitk! Thank you very much for reporting. The issue has been fixed in this commit: 393f098
Sorry, something went wrong.
frang75
No branches or pull requests
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 tostatic const char_t *i_LIB_SUFIX = ".dylib";
the nappgui_src version:
commit 50887ca (grafted, HEAD -> main, origin/main, origin/HEAD)
The text was updated successfully, but these errors were encountered: