Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2012-01-20 19:00:25 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2012-01-20 19:00:27 +0400
commit6b5853794d77094f960795cacf21d37841f1a890 (patch)
tree69349d9bb5dafa1a08c67f13c285d0d2d95b28af /common.gypi
parent4e5247772da5293a109dfff78a9eff89eb5eabdf (diff)
build: disable NDEBUG in release builds for now
assert() sanity checks are a good thing.
Diffstat (limited to 'common.gypi')
-rw-r--r--common.gypi2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.gypi b/common.gypi
index b250fe29e19..739a95b9f9c 100644
--- a/common.gypi
+++ b/common.gypi
@@ -35,7 +35,7 @@
},
},
'Release': {
- 'defines': [ 'NDEBUG' ],
+ # 'defines': [ 'NDEBUG' ],
'cflags': [ '-O3', '-fomit-frame-pointer', '-fdata-sections', '-ffunction-sections' ],
'msvs_settings': {
'VCCLCompilerTool': {