luvi icon indicating copy to clipboard operation
luvi copied to clipboard

A project in-between luv and luvit.

Results 18 luvi issues
Sort by recently updated
recently updated
newest added

Currently only have a few precompiled binaries for Luvi's newer releases. We've been meaning to set this up for a while but never gotten around to it. Example of when...

in progress
build
ci

https://andrewkelley.me/post/zig-cc-powerful-drop-in-replacement-gcc-clang.html I think this might enable us to build all the prebuilt luvi binaries using a single linux host such as our CI servers.

build

hey guys, i wanted to install discordia on my raspberry pi and for that i need lit and luvit aswell. But i cant find a working way to install it,...

When adding files from memory to a zip, we need the ability to set a custom timestamp.

enhancement

When my luvit app crashes, it reports full path of lua files. When the path is too long to display, it was truncated with ... This is not friendly for...

Hey, I've got Luvi to install but I can't get to install "lit". I've tried to rebuild it from source and then "sudo install lit /usr/local/bin" but it still didn't...

- [x] Bump luv to master branch - [x] Bump lua-openssl to 0.8.3-1 - [x] Use OpenSSL 3.1.1 - [x] Remove pcre - [ ] Add pcre2 # Current status...

Hello, I tried building luvi with shared OpenSSL 3.0, PCRE, and Luv. When cmake tried to build `luvi`, it failed with an error. ``` ld: error: jitted_tmp/src/lua/init.lua_luvi_generated.o: SHT_STRTAB string table...

This is rather large overhaul of the cmake and make files as well as removing appveyor from CI. This moves all CI and release builds to github actions. The makefile...

I have a simple app using `weblit` ```lua -- main.lua local weblit = require('weblit') local app = weblit.app.bind({ port = 3000 }) app.use(weblit.autoHeaders) app.route({ path = "/" }, function(req, res)...