Hey all,
I'm trying to build a c made lua-package that I want to use in one of my plugins. It's basically a thin wrapper over curl by using the one that ships with windows today.
I've gone through some of the problems, like building x64 instead of x86. Now I've managed to get so far that I'm getting the "The specified procedure could not be found". I've gone through a dependency checker, and everything seems fine. Except for crt/kernel/vcruntime it only links to lua5.1.dll and the three symbols there (luaL_checklstring, luaL_register and lua_createtable) which it seems to find all three of.
I'm linking to a prebuilt 5.1.4 available here: https://sourceforge.net/projects/luabinaries/files/5.1.4/Windows%20Libraries/.
Should I go for luajit instead and use FFI? I was thinking that maybe I could share this module/plugin if I get it working as it seems like a simpler way than the way I've seen other people do here to get curl working.
Thanks for any ideas, suggestion or help :)
Cheers,
Simon
I'm trying to build a c made lua-package that I want to use in one of my plugins. It's basically a thin wrapper over curl by using the one that ships with windows today.
I've gone through some of the problems, like building x64 instead of x86. Now I've managed to get so far that I'm getting the "The specified procedure could not be found". I've gone through a dependency checker, and everything seems fine. Except for crt/kernel/vcruntime it only links to lua5.1.dll and the three symbols there (luaL_checklstring, luaL_register and lua_createtable) which it seems to find all three of.
I'm linking to a prebuilt 5.1.4 available here: https://sourceforge.net/projects/luabinaries/files/5.1.4/Windows%20Libraries/.
Should I go for luajit instead and use FFI? I was thinking that maybe I could share this module/plugin if I get it working as it seems like a simpler way than the way I've seen other people do here to get curl working.
Thanks for any ideas, suggestion or help :)
Cheers,
Simon