[pypy-commit] pypy vmprof-newstack: bump the OS X min version

fijal noreply at buildbot.pypy.org
Thu Oct 29 11:34:08 EDT 2015


Author: fijal
Branch: vmprof-newstack
Changeset: r80482:37f4ca60d4ee
Date: 2015-10-29 14:56 +0000
http://bitbucket.org/pypy/pypy/changeset/37f4ca60d4ee/

Log:	bump the OS X min version

diff --git a/rpython/translator/platform/darwin.py b/rpython/translator/platform/darwin.py
--- a/rpython/translator/platform/darwin.py
+++ b/rpython/translator/platform/darwin.py
@@ -5,9 +5,10 @@
 #
 # Although Intel 32bit is supported since Apple Mac OS X 10.4, (and PPC since, ever)
 # the @rpath handling used in Darwin._args_for_shared is only availabe
-# since 10.5, so we use that as minimum requirement.
+# since 10.5, so we use that as minimum requirement. We bump it to 10.6
+# since 10.11 does not ship with 10.5 libs any more
 #
-DARWIN_VERSION_MIN = '-mmacosx-version-min=10.5'
+DARWIN_VERSION_MIN = '-mmacosx-version-min=10.6'
 
 class Darwin(posix.BasePosix):
     name = "darwin"


More information about the pypy-commit mailing list