lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Linking dlopen() and dlsym() on iOS is forbidden by apple now. 

https://forums.developer.apple.com/thread/73640

So I suggest add this into luaconf.h

#if defined(TARGET_OS_IPHONE) && defined(LUA_USE_DLOPEN)
#undef LUA_USE_DLOPEN
#endif