From 261cd576c151fe86969aa1d47b36a83d61529e69 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 9 Jan 2017 11:25:56 +0530 Subject: [PATCH] Get rid of debug symbols from linux-launcher --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index afa50d65b..c23a8b4ec 100755 --- a/setup.py +++ b/setup.py @@ -197,7 +197,7 @@ def package(args): os.chmod(path, 0o755 if f.endswith('.so') else 0o644) launcher_dir = os.path.join(ddir, 'bin') safe_makedirs(launcher_dir) - run_tool([cc, '-ggdb', 'linux-launcher.c', '-o', os.path.join(launcher_dir, 'kitty')]) + run_tool([cc, '-O3', 'linux-launcher.c', '-o', os.path.join(launcher_dir, 'kitty')]) def main():