[pypy-commit] pypy default: disable shared-by default on OS X for now, before we figure out how to do it

fijal noreply at buildbot.pypy.org
Mon Oct 20 13:42:23 CEST 2014


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r74017:7e7044080cc5
Date: 2014-10-20 13:41 +0200
http://bitbucket.org/pypy/pypy/changeset/7e7044080cc5/

Log:	disable shared-by default on OS X for now, before we figure out how
	to do it

diff --git a/pypy/goal/targetpypystandalone.py b/pypy/goal/targetpypystandalone.py
--- a/pypy/goal/targetpypystandalone.py
+++ b/pypy/goal/targetpypystandalone.py
@@ -251,7 +251,8 @@
             enable_translationmodules(config)
 
         config.translation.suggest(check_str_without_nul=True)
-        config.translation.suggest(shared=True)
+        if sys.platform.startswith('linux'):
+            config.translation.suggest(shared=True)
 
         if config.translation.thread:
             config.objspace.usemodules.thread = True


More information about the pypy-commit mailing list