[pypy-commit] pypy default: asmgcc requires --shared=False.

arigo noreply at buildbot.pypy.org
Sat Jun 9 12:28:58 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r55532:12c1f0538f76
Date: 2012-06-09 12:28 +0200
http://bitbucket.org/pypy/pypy/changeset/12c1f0538f76/

Log:	asmgcc requires --shared=False.

diff --git a/pypy/config/translationoption.py b/pypy/config/translationoption.py
--- a/pypy/config/translationoption.py
+++ b/pypy/config/translationoption.py
@@ -96,7 +96,8 @@
                  requires={
                      "shadowstack": [("translation.gctransformer", "framework")],
                      "asmgcc": [("translation.gctransformer", "framework"),
-                                ("translation.backend", "c")],
+                                ("translation.backend", "c"),
+                                ("translation.shared", False)],
                     }),
 
     # other noticeable options


More information about the pypy-commit mailing list