summaryrefslogtreecommitdiff
path: root/meta.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--meta.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/meta.lua b/meta.lua
index 562a9d3..25b6a2d 100644
--- a/meta.lua
+++ b/meta.lua
@@ -1,14 +1,20 @@
1local optimizations = { 1local optimizations = {
2 --[[
2 tiny = "-Oz", 3 tiny = "-Oz",
3 size = "-Os", 4 size = "-Os",
5 ]]
4 debug = "-Og", 6 debug = "-Og",
7 --[[
5 zero = "-O0", 8 zero = "-O0",
6 one = "-O1", 9 one = "-O1",
7 two = "-O2", 10 two = "-O2",
8 three = "-O3", 11 three = "-O3",
12 ]]
9} 13}
10local debug = { 14local debug = {
15 --[[
11 release = "", 16 release = "",
17 ]]
12 debug = "-g", 18 debug = "-g",
13} 19}
14local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]} 20local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]}