[pypy-commit] pypy default: Merged in vext01/pypy/openbsd-lib-prefix (pull request #231)

arigo noreply at buildbot.pypy.org
Sun Apr 20 15:31:44 CEST 2014


Author: Armin Rigo <armin.rigo at gmail.com>
Branch: 
Changeset: r70804:c65c5258c686
Date: 2014-04-20 15:31 +0200
http://bitbucket.org/pypy/pypy/changeset/c65c5258c686/

Log:	Merged in vext01/pypy/openbsd-lib-prefix (pull request #231)

	Like Linux, the BSDs use a 'lib' prefix for shared objects.

diff --git a/rpython/translator/platform/bsd.py b/rpython/translator/platform/bsd.py
--- a/rpython/translator/platform/bsd.py
+++ b/rpython/translator/platform/bsd.py
@@ -6,6 +6,7 @@
     DEFAULT_CC = 'clang'
 
     so_ext = 'so'
+    so_prefixes = ('lib', '')
     make_cmd = 'gmake'
 
     standalone_only = []


More information about the pypy-commit mailing list