Author: Maciej Fijalkowski <[email protected]>
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
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to