summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander M Pickering <alex@cogarr.net>2024-08-05 13:41:32 -0500
committerAlexander M Pickering <alex@cogarr.net>2024-08-05 13:41:32 -0500
commit69536eef26656f46a20a5ef7fab74490b304371f (patch)
tree8b63b855f870078ea2750572811fb29162fe0c93
parentc53b217a1fcb76922f6da97b51ac9e8b5f26b332 (diff)
downloadlua-packaging-69536eef26656f46a20a5ef7fab74490b304371f.tar.gz
lua-packaging-69536eef26656f46a20a5ef7fab74490b304371f.tar.bz2
lua-packaging-69536eef26656f46a20a5ef7fab74490b304371f.zip
Dont do a lot of packages
-rw-r--r--meta.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta.lua b/meta.lua
index 575cb37..437f724 100644
--- a/meta.lua
+++ b/meta.lua
@@ -6,13 +6,15 @@ local lua_versions = {
6} 6}
7local optimizations = { 7local optimizations = {
8 size = "-Os", 8 size = "-Os",
9 --[[
9 zero = "-O0", 10 zero = "-O0",
10 one = "-O1", 11 one = "-O1",
11 two = "-O2", 12 two = "-O2",
13 ]]
12 three = "-O3", 14 three = "-O3",
13} 15}
14local debug = { 16local debug = {
15 release = "", 17 --release = "",
16 debug = "-g", 18 debug = "-g",
17} 19}
18local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]} 20local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]}