summaryrefslogtreecommitdiffstats
path: root/tools/linux.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/linux.py')
-rw-r--r--tools/linux.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/linux.py b/tools/linux.py
index df8a78e..099a048 100644
--- a/tools/linux.py
+++ b/tools/linux.py
@@ -18,11 +18,6 @@ def generate(env):
env.Append(CCFLAGS=["-fPIC", "-Wwrite-strings"])
env.Append(LINKFLAGS=["-Wl,-R,'$$ORIGIN'"])
- if env["target"] == "debug":
- env.Append(CCFLAGS=["-Og", "-g"])
- elif env["target"] == "release":
- env.Append(CCFLAGS=["-O3"])
-
if env["arch"] == "x86_64":
# -m64 and -m32 are x86-specific already, but it doesn't hurt to
# be clear and also specify -march=x86-64. Similar with 32-bit.