From 88be50f8da8f4ea0b9f4bbcbe299daaecc777707 Mon Sep 17 00:00:00 2001 From: rdb Date: Thu, 4 Oct 2012 15:09:21 +0000 Subject: [PATCH] disable 64-bit osx building for now --- makepanda/makepanda.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/makepanda/makepanda.py b/makepanda/makepanda.py index e41abf0020..7a8a3fd1fc 100755 --- a/makepanda/makepanda.py +++ b/makepanda/makepanda.py @@ -992,10 +992,6 @@ def CompileCxx(obj,src,opts): cmd += " -mmacosx-version-min=" + OSXTARGET if (UNIVERSAL): cmd += " -arch i386" - if int(platform.mac_ver()[0][3]) >= 5 and not RTDIST and not RUNTIME: - #XXX we don't support 64-bits rtdist or plugin at the moment. - # 10.5 supports building 64-bits Cocoa apps. - cmd += " -arch x86_64" if ("NOPPC" not in opts): cmd += " -arch ppc" @@ -1309,10 +1305,6 @@ def CompileLink(dll, obj, opts): cmd += " -mmacosx-version-min=" + OSXTARGET if (UNIVERSAL): cmd += " -arch i386" - if int(platform.mac_ver()[0][3]) >= 5 and not RTDIST and not RUNTIME: - #XXX we don't support 64-bits rtdist or plugin at the moment. - # 10.5 supports building 64-bits Cocoa apps. - cmd += " -arch x86_64" if ("NOPPC" not in opts): cmd += " -arch ppc" if (LDFLAGS !=""): cmd += " " + LDFLAGS