/core/externals/update-engine/XcodeConfigs/subconfig/Debug.xcconfig

http://macfuse.googlecode.com/ · Xcode Config · 33 lines · 7 code · 7 blank · 19 comment · 0 complexity · fa9b73de755fcb10e227523d2577b65c MD5 · raw file

  1. // Copyright 2008 Google Inc.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #include "CodeCoverage.xcconfig"
  15. // No optimization
  16. GCC_OPTIMIZATION_LEVEL = 0
  17. // Deployment postprocessing is what triggers Xcode to strip, turn it off
  18. DEPLOYMENT_POSTPROCESSING = NO
  19. // Dead code stripping off
  20. DEAD_CODE_STRIPPING = NO
  21. // Debug symbols should be on obviously
  22. GCC_GENERATE_DEBUGGING_SYMBOLS = YES
  23. // Define the DEBUG macro in all debug builds
  24. OTHER_CFLAGS = $(OTHER_CFLAGS) -DDEBUG=1
  25. // Turns on special C++ STL checks to "encourage" good STL use
  26. GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) _GLIBCXX_DEBUG_PEDANTIC _GLIBCXX_DEBUG _GLIBCPP_CONCEPT_CHECKS