Author: Maciej Fijalkowski <[email protected]>
Branch:
Changeset: r73964:62dc72d52028
Date: 2014-10-15 10:33 +0200
http://bitbucket.org/pypy/pypy/changeset/62dc72d52028/
Log: disable shared by default and suggest it from pypy instead
diff --git a/pypy/goal/targetpypystandalone.py
b/pypy/goal/targetpypystandalone.py
--- a/pypy/goal/targetpypystandalone.py
+++ b/pypy/goal/targetpypystandalone.py
@@ -251,6 +251,7 @@
enable_translationmodules(config)
config.translation.suggest(check_str_without_nul=True)
+ config.translation.suggest(shared=True)
if config.translation.thread:
config.objspace.usemodules.thread = True
diff --git a/rpython/config/translationoption.py
b/rpython/config/translationoption.py
--- a/rpython/config/translationoption.py
+++ b/rpython/config/translationoption.py
@@ -53,7 +53,7 @@
cmdline="-b --backend"),
BoolOption("shared", "Build as a shared library",
- default=True, cmdline="--shared"),
+ default=False, cmdline="--shared"),
BoolOption("log", "Include debug prints in the translation (PYPYLOG=...)",
default=True, cmdline="--log"),
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit