summaryrefslogtreecommitdiff
path: root/meta.lua
diff options
context:
space:
mode:
authorAlexander M Pickering <alex@cogarr.net>2024-09-23 18:49:27 -0500
committerAlexander M Pickering <alex@cogarr.net>2024-09-23 18:49:27 -0500
commit1733d4192979133cad82bd6dbbc3cbcdc50ed6d3 (patch)
tree396bbf8e949d158d692dd6802c91a7385d8d02f3 /meta.lua
parent54625c9f9048292abfb0f3a2a48a2052bb4110f5 (diff)
downloadlua-packaging-1733d4192979133cad82bd6dbbc3cbcdc50ed6d3.tar.gz
lua-packaging-1733d4192979133cad82bd6dbbc3cbcdc50ed6d3.tar.bz2
lua-packaging-1733d4192979133cad82bd6dbbc3cbcdc50ed6d3.zip
Only make one build
Diffstat (limited to '')
-rw-r--r--meta.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta.lua b/meta.lua
index 90da050..1d2a57a 100644
--- a/meta.lua
+++ b/meta.lua
@@ -1,20 +1,24 @@
1local lua_versions = { 1local 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 --[[
3 ["52"] = "https://www.lua.org/ftp/lua-5.2.4.tar.gz", 4 ["52"] = "https://www.lua.org/ftp/lua-5.2.4.tar.gz",
4 ["53"] = "https://www.lua.org/ftp/lua-5.3.6.tar.gz", 5 ["53"] = "https://www.lua.org/ftp/lua-5.3.6.tar.gz",
5 ["54"] = "https://www.lua.org/ftp/lua-5.4.7.tar.gz", 6 ["54"] = "https://www.lua.org/ftp/lua-5.4.7.tar.gz",
7 ]]
6} 8}
7local optimizations = { 9local optimizations = {
8 tiny = "-Oz", 10 tiny = "-Oz",
11 --[[
9 size = "-Os", 12 size = "-Os",
10 debug = "-Og", 13 debug = "-Og",
11 zero = "-O0", 14 zero = "-O0",
12 one = "-O1", 15 one = "-O1",
13 two = "-O2", 16 two = "-O2",
14 three = "-O3", 17 three = "-O3",
18 ]]
15} 19}
16local debug = { 20local debug = {
17 release = "", 21 --release = "",
18 debug = "-g", 22 debug = "-g",
19} 23}
20local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]} 24local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]}