From a5ec8a9110de65eec4494c7588e2bb0bf1c5c24a Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Tue, 25 Feb 2014 18:24:07 +0800 Subject: [PATCH] Do not define _DEBUG. The vc++ compiler would define some internal contants if we define _DEBUG, since we are linking to the release build of chromiumcontent, this would result in linking errors. --- atom.gyp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atom.gyp b/atom.gyp index a419ae94278a..bf5b950d7c72 100644 --- a/atom.gyp +++ b/atom.gyp @@ -232,7 +232,7 @@ ], 'configurations': { 'Debug': { - 'defines': [ 'DEBUG', '_DEBUG' ], + 'defines': [ 'DEBUG' ], 'cflags': [ '-g', '-O0' ], }, },