[pypy-commit] pypy default: give up on static linking of libunwind

fijal noreply at buildbot.pypy.org
Mon May 4 13:00:45 CEST 2015


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r77035:cab2df5e8468
Date: 2015-05-04 13:00 +0200
http://bitbucket.org/pypy/pypy/changeset/cab2df5e8468/

Log:	give up on static linking of libunwind

diff --git a/pypy/module/_vmprof/interp_vmprof.py b/pypy/module/_vmprof/interp_vmprof.py
--- a/pypy/module/_vmprof/interp_vmprof.py
+++ b/pypy/module/_vmprof/interp_vmprof.py
@@ -27,7 +27,7 @@
     include_dirs = [SRC],
     includes = ['vmprof.h', 'trampoline.h'],
     separate_module_files = [SRC.join('trampoline.asmgcc.s')],
-    link_files = ['-Wl,-Bstatic', '-lunwind', '-llzma','-Wl,-Bdynamic'],
+    libraries = ['unwind'],
     
     post_include_bits=["""
         void pypy_vmprof_init(void);


More information about the pypy-commit mailing list