summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xinit1
-rw-r--r--meta.lua6
2 files changed, 1 insertions, 6 deletions
diff --git a/init b/init
index 5e66063..8229b78 100755
--- a/init
+++ b/init
@@ -9,4 +9,3 @@ cd "/root/"
9cp $luaver/src/*.exe . 9cp $luaver/src/*.exe .
10cp $luaver/src/*.dll . 10cp $luaver/src/*.dll .
11cp $luaver/src/*.a . 11cp $luaver/src/*.a .
12exit -1
diff --git a/meta.lua b/meta.lua
index 1d2a57a..90da050 100644
--- a/meta.lua
+++ b/meta.lua
@@ -1,24 +1,20 @@
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 --[[
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}
9local optimizations = { 7local 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}
20local debug = { 16local debug = {
21 --release = "", 17 release = "",
22 debug = "-g", 18 debug = "-g",
23} 19}
24local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]} 20local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]}