build: disable NDEBUG in release builds for now
authorBen Noordhuis <info@bnoordhuis.nl>
Fri, 20 Jan 2012 15:00:25 +0000 (16:00 +0100)
committerBen Noordhuis <info@bnoordhuis.nl>
Fri, 20 Jan 2012 15:00:27 +0000 (16:00 +0100)
assert() sanity checks are a good thing.

common.gypi

index b250fe2..739a95b 100644 (file)
@@ -35,7 +35,7 @@
         },
       },
       'Release': {
-        'defines': [ 'NDEBUG' ],
+        'defines': [ 'NDEBUG' ],
         'cflags': [ '-O3', '-fomit-frame-pointer', '-fdata-sections', '-ffunction-sections' ],
         'msvs_settings': {
           'VCCLCompilerTool': {