diff options
Diffstat (limited to 'build/debug.xcconfig')
-rw-r--r-- | build/debug.xcconfig | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build/debug.xcconfig b/build/debug.xcconfig index bddcd4b..d9ceb839 100644 --- a/build/debug.xcconfig +++ b/build/debug.xcconfig @@ -6,7 +6,10 @@ COPY_PHASE_STRIP = NO GCC_OPTIMIZATION_LEVEL = 0 -GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) DEBUG +// Would be nice to define DEBUG to prevent against people incorrectly using +// it intstead of !NDEBUG, but it causes libxml to spew diagnostic info all +// over our layout tests. +// GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) DEBUG // Additional libc++ strictness; disabled because they break some things in // WebKit and some additional things when building with gcc 4.2. // GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) DEBUG _GLIBCXX_CONCEPT_CHECKS _GLIBCXX_DEBUG _GLIBCXX_DEBUG_PEDANTIC |