diff options
author | Alexander M Pickering <alex@cogarr.net> | 2024-09-12 13:15:17 -0500 |
---|---|---|
committer | Alexander M Pickering <alex@cogarr.net> | 2024-09-12 13:15:17 -0500 |
commit | 115a749f0bd122cda5a85d5b8d054e4d0edcfb62 (patch) | |
tree | 34a1a2c2db0800f3bc3b6ab992930190d09d8aeb | |
parent | a50cdd16e9bc232e3603d929873d950c2c5ce36f (diff) | |
download | luajit-packaging-115a749f0bd122cda5a85d5b8d054e4d0edcfb62.tar.gz luajit-packaging-115a749f0bd122cda5a85d5b8d054e4d0edcfb62.tar.bz2 luajit-packaging-115a749f0bd122cda5a85d5b8d054e4d0edcfb62.zip |
More work on luajit
-rwxr-xr-x | init-nix | 3 | ||||
-rw-r--r-- | meta.lua | 8 |
2 files changed, 6 insertions, 5 deletions
@@ -4,5 +4,6 @@ rc-service networking start | |||
4 | 4 | ||
5 | apk add build-base | 5 | apk add build-base |
6 | cd luajit/src | 6 | cd luajit/src |
7 | echo "lua4win" > luajit_relver.txt | ||
8 | make host/minilua host/buildvm | 7 | make host/minilua host/buildvm |
8 | cp host/minilua /root | ||
9 | cp host/buildvm /root | ||
@@ -20,8 +20,8 @@ builds["luajit-meta"] = { | |||
20 | {"git","luajit"} | 20 | {"git","luajit"} |
21 | }, | 21 | }, |
22 | produces = { | 22 | produces = { |
23 | ["luajit/src/host/minilua"] = true, | 23 | ["minilua"] = true, |
24 | ["luajit/src/host/buildvm"] = true | 24 | ["buildvm"] = true |
25 | }, | 25 | }, |
26 | entrypoint="init-nix" | 26 | entrypoint="init-nix" |
27 | } | 27 | } |
@@ -33,8 +33,8 @@ for name, optimization, rel, flag, _, image in cartesian(optimizations, debug, c | |||
33 | requires = { | 33 | requires = { |
34 | {"git","luajit"}, | 34 | {"git","luajit"}, |
35 | {"cicd", "image-" .. image}, | 35 | {"cicd", "image-" .. image}, |
36 | {"cicd", "luajit-base:luajit/src/host/minilua"}, | 36 | {"cicd", "luajit-base:minilua"}, |
37 | {"cicd", "luajit-base:luajit/src/host/buildvm"}, | 37 | {"cicd", "luajit-base:buildvm"}, |
38 | }, | 38 | }, |
39 | produces = { | 39 | produces = { |
40 | ["lua.exe"] = true, | 40 | ["lua.exe"] = true, |