[pypy-commit] pypy default: 4d66c739aa16 was too strict, why?

mattip noreply at buildbot.pypy.org
Fri Mar 20 08:11:46 CET 2015


Author: mattip <matti.picus at gmail.com>
Branch: 
Changeset: r76481:adc34b25572f
Date: 2015-03-20 07:47 +0200
http://bitbucket.org/pypy/pypy/changeset/adc34b25572f/

Log:	4d66c739aa16 was too strict, why?

diff --git a/rpython/translator/platform/darwin.py b/rpython/translator/platform/darwin.py
--- a/rpython/translator/platform/darwin.py
+++ b/rpython/translator/platform/darwin.py
@@ -14,7 +14,8 @@
 
     def get_rpath_flags(self, rel_libdirs):
         # needed for cross compiling on ARM, needs fixing if relevant for darwin
-        assert len(rel_libdirs) < 1
+        if len(rel_libdirs) > 0:
+            print 'in get_rpath_flags, rel_libdirs is not fixed up',rel_libdirs
         return self.rpath_flags 
 
     def _args_for_shared(self, args):


More information about the pypy-commit mailing list