{"id":44020039,"url":"https://github.com/li-ruijie/luajit","last_synced_at":"2026-06-14T09:01:25.479Z","repository":{"id":337965216,"uuid":"1151085769","full_name":"li-ruijie/luajit","owner":"li-ruijie","description":"Automated CI pipeline that builds LuaJIT for Linux and Windows (MSVC/MinGW, static/dynamic) and publishes GitHub Releases daily","archived":false,"fork":false,"pushed_at":"2026-02-20T07:03:52.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-20T11:23:13.387Z","etag":null,"topics":["build-automation","ci-cd","cross-platform","github-actions","linux","lua","luajit","mingw","msvc","windows"],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/li-ruijie.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-06T03:16:36.000Z","updated_at":"2026-02-20T07:01:41.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/li-ruijie/luajit","commit_stats":null,"previous_names":["li-ruijie/luajit"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/li-ruijie/luajit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/li-ruijie%2Fluajit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/li-ruijie%2Fluajit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/li-ruijie%2Fluajit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/li-ruijie%2Fluajit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/li-ruijie","download_url":"https://codeload.github.com/li-ruijie/luajit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/li-ruijie%2Fluajit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34315075,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-14T02:00:07.365Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["build-automation","ci-cd","cross-platform","github-actions","linux","lua","luajit","mingw","msvc","windows"],"created_at":"2026-02-07T16:09:36.066Z","updated_at":"2026-06-14T09:01:25.461Z","avatar_url":"https://github.com/li-ruijie.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# LuaJIT Builds\n\nAutomated builds of the latest [LuaJIT](https://luajit.org/) rolling release for Windows and Linux.\n\nA GitHub Actions workflow clones the upstream repository daily, checks for new commits, and produces static and dynamic builds for each platform.\n\n## Downloads\n\nPre-built archives are available on the [Releases](../../releases) page.\n\n| Archive | Platform | Linkage |\n|---------|----------|---------|\n| `luajit-{version}-linux-x64-static.tar.gz` | Linux x64 | Static |\n| `luajit-{version}-linux-x64-dynamic.tar.gz` | Linux x64 | Dynamic |\n| `luajit-{version}-windows-msvc-x64-static.zip` | Windows x64 (MSVC) | Static |\n| `luajit-{version}-windows-msvc-x64-dynamic.zip` | Windows x64 (MSVC) | Dynamic |\n| `luajit-{version}-windows-mingw-x64-static.zip` | Windows x64 (MinGW) | Static |\n| `luajit-{version}-windows-mingw-x64-dynamic.zip` | Windows x64 (MinGW) | Dynamic |\n\nEach archive contains the LuaJIT binary, libraries, headers, and the JIT library (`jit/*.lua`).\n\n## Linkage\n\n\"Static\" and \"dynamic\" refer to the LuaJIT library itself (`libluajit.a`/`lua51.lib` vs `lua51.dll`). The C runtime is always linked dynamically on Windows so that `ffi.C` can resolve CRT symbols (e.g. `_wstat64`) at runtime.\n\n| Build | LuaJIT library | C runtime |\n|-------|----------------|-----------|\n| linux-x64-static | `libluajit.a` (static) | glibc (static) |\n| linux-x64-dynamic | `libluajit.so` (dynamic) | glibc (dynamic) |\n| windows-msvc-x64-static | `lua51.lib` (static) | UCRT dynamic (`/MD`) |\n| windows-msvc-x64-dynamic | `lua51.dll` (dynamic) | UCRT dynamic (`/MD`) |\n| windows-mingw-x64-static | `libluajit.a` (static) | UCRT dynamic (`-lucrt`) |\n| windows-mingw-x64-dynamic | `lua51.dll` (dynamic) | UCRT dynamic (`-lucrt`) |\n\nAll Windows builds depend on `api-ms-win-crt-*.dll` (UCRT API sets, included in Windows 10+). MSVC builds also depend on `VCRUNTIME140.dll` (included in the [Visual C++ Redistributable](https://aka.ms/vs/17/release/vc_redist.x64.exe)).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fli-ruijie%2Fluajit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fli-ruijie%2Fluajit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fli-ruijie%2Fluajit/lists"}