From d5ce0c7cd967e2baba70986b763b1bf853a3806f Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Mon, 14 Oct 2013 23:09:22 +0300 Subject: Use -pipe for great speed. --- environment.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'environment.py') diff --git a/environment.py b/environment.py index c7f88de08..3d3d18fe7 100644 --- a/environment.py +++ b/environment.py @@ -516,6 +516,9 @@ class GnuCCompiler(CCompiler): self.id = 'gcc' self.gcc_type = gcc_type + def get_always_flags(self): + return ['-pipe'] + def get_std_warn_flags(self): return GnuCCompiler.std_warn_flags @@ -607,6 +610,9 @@ class GnuCPPCompiler(CPPCompiler): CPPCompiler.__init__(self, exelist, version, is_cross, exe_wrap) self.id = 'gcc' + def get_always_flags(self): + return ['-pipe'] + def get_debug_flags(self): return GnuCPPCompiler.std_debug_flags -- cgit v1.2.3