From 26df4e4ca8bfdb5feb500ba42dcae4bb053b091d Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Mon, 13 Jan 2014 22:11:58 +0000 Subject: [PATCH] Fix Glib flag in GN build. It had an extra underscore at the beginning. R=thakis@chromium.org TBR=thakis Review URL: https://codereview.chromium.org/137303002 git-svn-id: http://src.chromium.org/svn/trunk/src/build@244595 4ff67af0-8c30-449e-8e8b-ad334ec8d88c --- config/compiler/BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/compiler/BUILD.gn b/config/compiler/BUILD.gn index dee92f010..ce0aae7af 100644 --- a/config/compiler/BUILD.gn +++ b/config/compiler/BUILD.gn @@ -131,7 +131,7 @@ config("compiler") { # 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? - defines += [ "__GLIBCXX_DEBUG=1" ] + defines += [ "_GLIBCXX_DEBUG=1" ] # Use gold for linking on 64-bit Linux only (on 32-bit it runs out of # address space, and it doesn't support cross-compiling).