diff options
author | mmentovai@google.com <mmentovai@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-06 00:15:22 +0000 |
---|---|---|
committer | mmentovai@google.com <mmentovai@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-06 00:15:22 +0000 |
commit | 4956cfbdd0cda5969acd391c3fe10486bf659488 (patch) | |
tree | 53f66ef13324dfd171a385476579e5fa42dbcd46 /build/debug.xcconfig | |
parent | 35f7999be5e8ef6f623147e8aff9e39430045167 (diff) | |
download | chromium_src-4956cfbdd0cda5969acd391c3fe10486bf659488.zip chromium_src-4956cfbdd0cda5969acd391c3fe10486bf659488.tar.gz chromium_src-4956cfbdd0cda5969acd391c3fe10486bf659488.tar.bz2 |
Fix webkit.xcodeproj. Make it use our new xcconfig and common build directory
setup. Turn off headermaps and use explicit #include paths everywhere.
Review URL: http://codereview.chromium.org/269
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1815 0039d316-1c4b-4281-b951-d872f2087c98
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 c0de678..bddcd4b 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 _GLIBCXX_CONCEPT_CHECKS _GLIBCXX_DEBUG _GLIBCXX_DEBUG_PEDANTIC +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 OTHER_CFLAGS = $(OTHER_CFLAGS) -fstack-protector -fstack-protector-all // Code coverage support via gcov is disabled for normal debug builds because |