summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index cf60bd9..ec34197 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -2681,6 +2681,15 @@ void cmGlobalXCodeGenerator
{
osxArch = "$(ARCHS_STANDARD_32_64_BIT)";
}
+ else if(this->XcodeVersion <= 25)
+ {
+#ifdef __i386
+ osxArch = "i386";
+#endif
+#ifdef __ppc__
+ osxArch = "ppc";
+#endif
+ }
else
{
osxArch = "$(ARCHS_STANDARD_32_BIT)";