Hisham Muhammad

Results 636 comments of Hisham Muhammad

@doronbehar You can override CFLAGS globally in LuaRocks by setting `variables.CFLAGS` in the configuration file. From the CLI you can set the configuration file like this: ``` luarocks config --...

Patches are welcome! :) I took a quick look at the code to give you some pointers, and I think that to achieve what you want you could create a...

I've been experimenting locally with this idea too. @Tieske suggested this could be implemented as a command, `luarocks-shell`. The command, if implemented by writing it during build, may be less...

This ended up falling on the wayside, sorry. My initial attempt at a stand-alone `luarocks-shell` for Unix was simply this: ``` bash #!/bin/sh export PATH=$(dirname $(readlink -f "$0"))":$PATH" eval $(luarocks...

@Tieske Would it be possible to launch a CMD instance that auto-runs the Visual Studio setup batch file on startup then gives you an interactive shell? This would be necessary...

I see no way of doing this without breaking compatibility. @agladysh, we could add a feature for that enabled only when `use_extensions` is set in the config file, but we...

We _will_ add C++ and C99 support in LuaRocks 3. The revision of the rockspec format is scheduled.

Rockspec format 3.0 ended up not getting explicit C++ and C99 support added, and instead we got `build_dependencies` so that people can specify their own build backends like the ones...

@edrx No, `luarocks unpack` works fine here, for both `croissant` and `stacktraceplus`. Could you post the output you get from running `luarocks unpack --verbose croissant`? Please try it with the...

No, because it is testing the existence of absolute path as an OS feature to see if the path fragment should be used. But you raise a valid question: just...