diff options
author | Alexander M Pickering <alex@cogarr.net> | 2024-09-25 18:12:03 -0500 |
---|---|---|
committer | Alexander M Pickering <alex@cogarr.net> | 2024-09-25 18:12:03 -0500 |
commit | 3d47a2f8e3da477ee50e78133368e4c9fae6f3c8 (patch) | |
tree | cfe3fa919b87c97d508a8e10ed33b609c5710faf | |
parent | f06c35a6af9cd11f33207cba1503ecd0d874cbba (diff) | |
download | luarocks-packaging-3d47a2f8e3da477ee50e78133368e4c9fae6f3c8.tar.gz luarocks-packaging-3d47a2f8e3da477ee50e78133368e4c9fae6f3c8.tar.bz2 luarocks-packaging-3d47a2f8e3da477ee50e78133368e4c9fae6f3c8.zip |
Add debugging symbols
-rw-r--r-- | meta.lua | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -32,10 +32,12 @@ local lua_versions = { | |||
32 | } | 32 | } |
33 | } | 33 | } |
34 | local optimizations = { | 34 | local 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 | } |
45 | local debug = { | 47 | local debug = { |
48 | --[[ | ||
46 | release = "", | 49 | release = "", |
47 | --[[ | ||
48 | debug = "-g", | ||
49 | ]] | 50 | ]] |
51 | debug = "-g", | ||
50 | } | 52 | } |
51 | local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]} | 53 | local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]} |
52 | 54 | ||