diff options
author | hurikhan <m4r10.5ch14ck@gmail.com> | 2015-01-13 12:54:23 +0800 |
---|---|---|
committer | hurikhan <m4r10.5ch14ck@gmail.com> | 2015-01-13 12:54:23 +0800 |
commit | 928e068f71afed015bdf6851dad7d4f57f827ef6 (patch) | |
tree | f42f541631d9068a74918ce006f0d45c13903e63 /platform | |
parent | 067a0d0e640e5c478715b55cd2f6fec39bf21326 (diff) |
-try fixing LLVM color diagnostic on osx
Diffstat (limited to 'platform')
-rw-r--r-- | platform/osx/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/osx/detect.py b/platform/osx/detect.py index 08784be810..5703cbc546 100644 --- a/platform/osx/detect.py +++ b/platform/osx/detect.py @@ -86,7 +86,7 @@ def configure(env): env["LD"]="clang++" if (env["colored"]=="yes"): if sys.stdout.isatty(): - env.Append(CXXFLAGS=["-fcolor-diagnostics"]) + env.Append(CPPFLAGS=["-fcolor-diagnostics"]) import methods |