Do not define _DEBUG.
authorCheng Zhao <zcbenz@gmail.com>
Tue, 25 Feb 2014 10:24:07 +0000 (18:24 +0800)
committerCheng Zhao <zcbenz@gmail.com>
Tue, 25 Feb 2014 10:24:07 +0000 (18:24 +0800)
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

index a419ae9..bf5b950 100644 (file)
--- a/atom.gyp
+++ b/atom.gyp
     ],
     'configurations': {
       'Debug': {
-        'defines': [ 'DEBUG', '_DEBUG' ],
+        'defines': [ 'DEBUG' ],
         'cflags': [ '-g', '-O0' ],
       },
     },