diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2016-10-22 12:59:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-22 12:59:45 +0200 |
commit | ee6c5c5c232f3b458e7e4130c0e771ea456a4eeb (patch) | |
tree | 5dd3b42f1f3f56fb246941d00e9441bf4264b389 /platform/x11/detect.py | |
parent | 3dd405c517da351873c1bec01e202a603cee5f75 (diff) | |
parent | 2bf4553fe056c1fab5367dfae62426d3c7cf8168 (diff) |
Merge pull request #6858 from zaps166/gcc-color-output
SCons: Use colored output if available, change "colored"->"verbose"
Diffstat (limited to 'platform/x11/detect.py')
-rw-r--r-- | platform/x11/detect.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/platform/x11/detect.py b/platform/x11/detect.py index eb71ac7409..917a8a27d7 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -94,10 +94,6 @@ def configure(env): env.Append(CPPFLAGS=['-DTYPED_METHOD_BIND']) env.extra_suffix=".llvm" - if (env["colored"]=="yes"): - if sys.stdout.isatty(): - env.Append(CXXFLAGS=["-fcolor-diagnostics"]) - if (env["use_sanitizer"]=="yes"): env.Append(CXXFLAGS=['-fsanitize=address','-fno-omit-frame-pointer']) env.Append(LINKFLAGS=['-fsanitize=address']) |