[pypy-commit] pypy reverse-debugger: (jerith, arigo) Bump DARWIN_VERSION_MIN to 10.7 to allow thread-local.

jerith pypy.commits at gmail.com
Sat Oct 8 05:40:15 EDT 2016


Author: Jeremy Thurgood <firxen at gmail.com>
Branch: reverse-debugger
Changeset: r87623:a740348ea339
Date: 2016-10-08 11:38 +0200
http://bitbucket.org/pypy/pypy/changeset/a740348ea339/

Log:	(jerith, arigo) Bump DARWIN_VERSION_MIN to 10.7 to allow thread-
	local.

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
@@ -6,10 +6,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. Bumped to 10.6
-# because 10.11 does not ship with 10.5 versions of libs
+# since 10.5, so we use that as minimum requirement. Bumped to 10.7
+# to allow the use of thread-local in __thread in C.
 #
-DARWIN_VERSION_MIN = '-mmacosx-version-min=10.6'
+DARWIN_VERSION_MIN = '-mmacosx-version-min=10.7'
 
 class Darwin(posix.BasePosix):
     name = "darwin"


More information about the pypy-commit mailing list