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

http://macfuse.googlecode.com/ · Xcode Config · 44 lines · 10 code · 10 blank · 24 comment · 0 complexity · 08cad3e69e61dc3f1e758d1b379e3fb7 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. // Build for PPC and Intel
  15. ARCHS = i386 ppc
  16. // Zerolink prevents link warnings so turn it off
  17. ZERO_LINK = NO
  18. // Prebinding considered unhelpful in 10.3 and later
  19. PREBINDING = NO
  20. // Strictest warning policy
  21. WARNING_CFLAGS = -Wall -Werror -Wendif-labels -Wnewline-eof
  22. // Work around Xcode bugs by using external strip. See:
  23. // http://lists.apple.com/archives/Xcode-users/2006/Feb/msg00050.html
  24. SEPARATE_STRIP = YES
  25. // Force C99 dialect
  26. GCC_C_LANGUAGE_STANDARD = c99
  27. // Obj-C exceptions are needed for @synchronized(self)
  28. GCC_ENABLE_OBJC_EXCEPTIONS = YES
  29. // not sure why apple defaults this on, but it's pretty risky
  30. ALWAYS_SEARCH_USER_PATHS = NO
  31. // Turn on position dependent code for most cases (overridden where appropriate)
  32. GCC_DYNAMIC_NO_PIC = YES
  33. // Use Obj-C fast dispatch (configs don't support 10.2 where you don't want it)
  34. GCC_FAST_OBJC_DISPATCH = YES