[pypy-commit] pypy pypy-in-a-box: for a shared build, we cannot use static lib

fijal noreply at buildbot.pypy.org
Tue Jul 17 19:24:21 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: pypy-in-a-box
Changeset: r56114:f58fe5f81880
Date: 2012-07-17 19:15 +0200
http://bitbucket.org/pypy/pypy/changeset/f58fe5f81880/

Log:	for a shared build, we cannot use static lib

diff --git a/pypy/rlib/clibffi.py b/pypy/rlib/clibffi.py
--- a/pypy/rlib/clibffi.py
+++ b/pypy/rlib/clibffi.py
@@ -84,7 +84,7 @@
     path_libffi_a = None
     if hasattr(platform, 'library_dirs_for_libffi_a'):
         path_libffi_a = find_libffi_a()
-    if path_libffi_a is not None:
+    if False and path_libffi_a is not None:
         # platforms on which we want static linking
         libraries = []
         link_files = [path_libffi_a]


More information about the pypy-commit mailing list