[pypy-commit] pypy default: The "-llzma" seems to have been checked in by accident. Removing it seems to have no bad effect, and liblzma is not

arigo noreply at buildbot.pypy.org
Sun Apr 26 23:34:29 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r76943:b43cd584adec
Date: 2015-04-26 23:02 +0200
http://bitbucket.org/pypy/pypy/changeset/b43cd584adec/

Log:	The "-llzma" seems to have been checked in by accident. Removing it
	seems to have no bad effect, and liblzma is not necessarily
	installed (e.g. not documented in the list of deps)

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', '-Wl,-Bdynamic', '-llzma'],
+    link_files = ['-Wl,-Bstatic', '-lunwind', '-Wl,-Bdynamic'],
     
     post_include_bits=["""
         void pypy_vmprof_init(void);


More information about the pypy-commit mailing list