diff options
| author | Alexander M Pickering <alex@cogarr.net> | 2024-09-23 19:51:36 -0500 |
|---|---|---|
| committer | Alexander M Pickering <alex@cogarr.net> | 2024-09-23 19:51:36 -0500 |
| commit | fd2f1c131b0707b03134330b423888e60d3a08f1 (patch) | |
| tree | 160fd589f070dba263b3be81252951f3cfbd7c85 | |
| parent | fd49ab63a76d5c959c352c205e91790a064d060d (diff) | |
| download | lua-packaging-master.tar.gz lua-packaging-master.tar.bz2 lua-packaging-master.zip | |
| -rwxr-xr-x | init | 1 | ||||
| -rw-r--r-- | meta.lua | 6 |
2 files changed, 1 insertions, 6 deletions
| @@ -9,4 +9,3 @@ cd "/root/" | |||
| 9 | cp $luaver/src/*.exe . | 9 | cp $luaver/src/*.exe . |
| 10 | cp $luaver/src/*.dll . | 10 | cp $luaver/src/*.dll . |
| 11 | cp $luaver/src/*.a . | 11 | cp $luaver/src/*.a . |
| 12 | exit -1 | ||
| @@ -1,24 +1,20 @@ | |||
| 1 | local lua_versions = { | 1 | local lua_versions = { |
| 2 | ["51"] = "https://www.lua.org/ftp/lua-5.1.5.tar.gz", | 2 | ["51"] = "https://www.lua.org/ftp/lua-5.1.5.tar.gz", |
| 3 | --[[ | ||
| 4 | ["52"] = "https://www.lua.org/ftp/lua-5.2.4.tar.gz", | 3 | ["52"] = "https://www.lua.org/ftp/lua-5.2.4.tar.gz", |
| 5 | ["53"] = "https://www.lua.org/ftp/lua-5.3.6.tar.gz", | 4 | ["53"] = "https://www.lua.org/ftp/lua-5.3.6.tar.gz", |
| 6 | ["54"] = "https://www.lua.org/ftp/lua-5.4.7.tar.gz", | 5 | ["54"] = "https://www.lua.org/ftp/lua-5.4.7.tar.gz", |
| 7 | ]] | ||
| 8 | } | 6 | } |
| 9 | local optimizations = { | 7 | local optimizations = { |
| 10 | tiny = "-Oz", | 8 | tiny = "-Oz", |
| 11 | --[[ | ||
| 12 | size = "-Os", | 9 | size = "-Os", |
| 13 | debug = "-Og", | 10 | debug = "-Og", |
| 14 | zero = "-O0", | 11 | zero = "-O0", |
| 15 | one = "-O1", | 12 | one = "-O1", |
| 16 | two = "-O2", | 13 | two = "-O2", |
| 17 | three = "-O3", | 14 | three = "-O3", |
| 18 | ]] | ||
| 19 | } | 15 | } |
| 20 | local debug = { | 16 | local debug = { |
| 21 | --release = "", | 17 | release = "", |
| 22 | debug = "-g", | 18 | debug = "-g", |
| 23 | } | 19 | } |
| 24 | local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]} | 20 | local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]} |
