diff options
Diffstat (limited to 'environment.py')
-rw-r--r-- | environment.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/environment.py b/environment.py index c7f88de..3d3d18f 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 |