aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander M Pickering <alex@cogarr.net>2024-09-25 18:12:03 -0500
committerAlexander M Pickering <alex@cogarr.net>2024-09-25 18:12:03 -0500
commit3d47a2f8e3da477ee50e78133368e4c9fae6f3c8 (patch)
treecfe3fa919b87c97d508a8e10ed33b609c5710faf
parentf06c35a6af9cd11f33207cba1503ecd0d874cbba (diff)
downloadluarocks-packaging-3d47a2f8e3da477ee50e78133368e4c9fae6f3c8.tar.gz
luarocks-packaging-3d47a2f8e3da477ee50e78133368e4c9fae6f3c8.tar.bz2
luarocks-packaging-3d47a2f8e3da477ee50e78133368e4c9fae6f3c8.zip
Add debugging symbols
-rw-r--r--meta.lua8
1 files changed, 5 insertions, 3 deletions
diff --git a/meta.lua b/meta.lua
index d591548..88a4f23 100644
--- a/meta.lua
+++ b/meta.lua
@@ -32,10 +32,12 @@ local lua_versions = {
32 } 32 }
33} 33}
34local optimizations = { 34local optimizations = {
35 tiny = "-Oz",
36 --[[ 35 --[[
36 tiny = "-Oz",
37 size = "-Os", 37 size = "-Os",
38 ]]
38 debug = "-Og", 39 debug = "-Og",
40 --[[
39 zero = "-O0", 41 zero = "-O0",
40 one = "-O1", 42 one = "-O1",
41 two = "-O2", 43 two = "-O2",
@@ -43,10 +45,10 @@ local optimizations = {
43 ]] 45 ]]
44} 46}
45local debug = { 47local debug = {
48--[[
46 release = "", 49 release = "",
47 --[[
48 debug = "-g",
49 ]] 50 ]]
51 debug = "-g",
50} 52}
51local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]} 53local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]}
52 54