Skip to content

Commit

Permalink
[WORKSPACE] Pin LuaJit version.
Browse files Browse the repository at this point in the history
There are some incompatible changes in LuaJit later that require some more work on our end.
  • Loading branch information
tkoeppe committed Oct 5, 2023
1 parent fbf03c0 commit 3d6a4fe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,13 @@ http_archive(
],
)

LJ_VER="f0ff869bc2fffa17bb765c4c773457578da125a9"

http_archive(
name = "luajit_archive",
build_file = "@//bazel:luajit.BUILD",
strip_prefix = "LuaJIT-2.1",
urls = ["https://github.com/LuaJIT/LuaJIT/archive/v2.1.tar.gz"],
strip_prefix = "LuaJIT-{}".format(LJ_VER),
urls = ["https://github.com/LuaJIT/LuaJIT/archive/{}.tar.gz".format(LJ_VER)],
)

http_archive(
Expand Down

0 comments on commit 3d6a4fe

Please sign in to comment.