Gary V. Vaughan
Gary V. Vaughan
Oh that's interesting. Can you investigate what exactly is segfaulting? - You could try installing with `build-aux/luke install` (you can copy all the options from the rockspec file) to rule...
Hey! luaposix uses [specl](https://github.com/gvvaughan/specl) for BDD tests. The test cases are all in the spec/ directory. To run them locally, you would need to: ``` $ eval `luarocks path` $...
I don't have any cross compilation environment or way to develop/test code to support it. But I'd be very happy to merge PRs that allow you to easily run a...
would it be sufficient to add a section to the README for cross compilation recommending building with LUA_INCDIR="$(pkgconf lua$LUAVER --cflags-only-I)" LUA_LIBDIR="$(pkgconf lua$LUAVER --libs)" Or would it be better to get...
Please provide a PR to fix this in the next release!
I dont have or want access to Windows, and I dont think luaposix has ever worked on Windows. Feel free to post more details or patches here for others if...
Thanks for the feedback! I think the main impediment to luaposix working on Windows is that Windows does not provide (m)any POSIX apis. If it compiles and installs correctly on...
Hmm... so is it that CC=gcc LD=gcc are wrong? I would have expected `luarocks` to have picked CC=msvc.exe or similar. Do you have a compiler and a linker installed on...
Hi Haizaar, You can already do this with the low-level API, much the same as capturing line and column numbers. Adding it to the high-level API is likely to confuse...
Sure. In my Specl project on github, I rewrote the libYAML C high-level parser in Lua using the lyaml low-level parser and added in line and column numbers for each...