greatwolf

Results 58 comments of greatwolf

Just reporting back incase future visitors run into the same problem. I was able to successfully build lua-apr using mingw gcc4.6.3 with MSYS environment. I had to modify the makefile...

`LUALIB_API` is not the right macro to use. This is how `luaconf.h` defines it on my setup: ``` /* Linkage of public API functions. */ #if defined(LUA_BUILD_AS_DLL) #if defined(LUA_CORE) ||...

But then I would have to be responsible for it! :crying_cat_face: But on a serious note, I don't have too much time myself nowadays, so busy dealing with cryptos. Only...

I'm not see lua's import library included in the link command. Can you try building this with cmake by generating an NMake file?

The issue is with the linker not finding the symbols for lua's C api functions. Check that lua51.lib import library make sure it's getting passed to the linker.

I'm not familiar with the Ruby C api but I'd assume it provides all the tools and functions you'll need to get at Ruby's language features and semantics. I don't...

Two things come to mind, you can either move the `python.so` into one of the default search paths that Lua looks in(eg. from the stacktrace) or you can add the...

What's the name of the lunatic .so built? What's the full path of its location? Also what version of lua/luajit is being used? Note that lua C modules are sensitive...

@bastibe Sure thing, it would be nice to have multiple maintainers ;)

Thanks for testing and feedback! :) I just tried this on win7 64bit with python 3.3.0 but I can't reproduce the crash you're seeing. I'll try this on a linux...