projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
30b3657
)
Do not define _DEBUG.
author
Cheng Zhao
<zcbenz@gmail.com>
Tue, 25 Feb 2014 10:24:07 +0000
(18:24 +0800)
committer
Cheng 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
patch
|
blob
|
history
diff --git
a/atom.gyp
b/atom.gyp
index
a419ae9
..
bf5b950
100644
(file)
--- a/
atom.gyp
+++ b/
atom.gyp
@@
-232,7
+232,7
@@
],
'configurations': {
'Debug': {
- 'defines': [ 'DEBUG'
, '_DEBUG'
],
+ 'defines': [ 'DEBUG' ],
'cflags': [ '-g', '-O0' ],
},
},