diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-02 21:46:57 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-02 21:46:57 +0000 |
commit | 3fb56d0f4f1fa1374fc70dbc66278b17a3802e41 (patch) | |
tree | dd15944433a0a9e6fa7e60ea05475fdd5b51b564 /build/common.gypi | |
parent | ef0a59e00b8a79890dc1ccc41427b7e40664a3cb (diff) | |
download | chromium_src-3fb56d0f4f1fa1374fc70dbc66278b17a3802e41.zip chromium_src-3fb56d0f4f1fa1374fc70dbc66278b17a3802e41.tar.gz chromium_src-3fb56d0f4f1fa1374fc70dbc66278b17a3802e41.tar.bz2 |
Exclude _GLIBCXX_DEBUG for clang.
This fixes build, and it's not obvious what the exact effect
is on clang.
TBR=thestig
BUG=65151
Review URL: https://codereview.chromium.org/21939003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215373 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/common.gypi')
-rw-r--r-- | build/common.gypi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/common.gypi b/build/common.gypi index 4097232..4709baa1 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -2547,7 +2547,7 @@ }], ], }], - ['OS=="linux"', { + ['OS=="linux" and clang!=1', { # Enable libstdc++ debugging facilities to help catch problems # early, see http://crbug.com/65151 . # TODO(phajdan.jr): Should we enable this for all of POSIX? |