[pypy-commit] pypy no_boehm_libdl: remove libdl from linker for boehm gc

mattip noreply at buildbot.pypy.org
Fri Aug 21 15:59:26 CEST 2015


Author: mattip <matti.picus at gmail.com>
Branch: no_boehm_libdl
Changeset: r79119:b84a79056d18
Date: 2015-08-21 16:59 +0300
http://bitbucket.org/pypy/pypy/changeset/b84a79056d18/

Log:	remove libdl from linker for boehm gc

diff --git a/rpython/rtyper/tool/rffi_platform.py b/rpython/rtyper/tool/rffi_platform.py
--- a/rpython/rtyper/tool/rffi_platform.py
+++ b/rpython/rtyper/tool/rffi_platform.py
@@ -854,7 +854,7 @@
         platform = None
     else:
         library_dir = ''
-        libraries = ['gc', 'dl']
+        libraries = ['gc']
         includes=['gc/gc.h']
     eci = ExternalCompilationInfo(
         platform=platform,


More information about the pypy-commit mailing list