[pypy-commit] pypy default: add more paths to librarydirs

bivab noreply at buildbot.pypy.org
Wed May 1 14:33:23 CEST 2013


Author: David Schneider <david.schneider at picle.org>
Branch: 
Changeset: r63784:08b293dd08d2
Date: 2013-05-01 14:32 +0200
http://bitbucket.org/pypy/pypy/changeset/08b293dd08d2/

Log:	add more paths to librarydirs

diff --git a/rpython/translator/platform/arm.py b/rpython/translator/platform/arm.py
--- a/rpython/translator/platform/arm.py
+++ b/rpython/translator/platform/arm.py
@@ -18,8 +18,11 @@
 class ARM(Linux):
     name = "arm"
 
-    available_librarydirs = [SB2 + '/usr/lib/arm-linux-gnueabi/',
+    available_librarydirs = [SB2 + '/lib/arm-linux-gnueabi/',
+                             SB2 + '/lib/arm-linux-gnueabihf/',
+                             SB2 + '/usr/lib/arm-linux-gnueabi/',
                              SB2 + '/usr/lib/arm-linux-gnueabihf/']
+
     available_includedirs = [SB2 + '/usr/include/arm-linux-gnueabi/',
                              SB2 + '/usr/include/arm-linux-gnueabihf/']
     copied_cache = {}


More information about the pypy-commit mailing list