You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The fix would be to replace #define LUA_MOD_EXPORT extern (extern on defined functions doesn't make sense anyway, AFAIK) with #define LUA_MOD_EXPORT __attribute__((visibility("default"))) and to add -fvisibility=hidden to CFLAGS in the Makefile.
The text was updated successfully, but these errors were encountered:
But:
Seems like this function overrides the one from this library: https://www.mankier.com/3/context_new.
The fix would be to replace
#define LUA_MOD_EXPORT extern
(extern
on defined functions doesn't make sense anyway, AFAIK) with#define LUA_MOD_EXPORT __attribute__((visibility("default")))
and to add-fvisibility=hidden
toCFLAGS
in theMakefile
.The text was updated successfully, but these errors were encountered: