From owner-freebsd-python@freebsd.org Mon Jul 13 12:09:07 2015 Return-Path: Delivered-To: freebsd-python@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BCCCC999423 for ; Mon, 13 Jul 2015 12:09:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id A5BEE1B20 for ; Mon, 13 Jul 2015 12:09:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id A2BFF999422; Mon, 13 Jul 2015 12:09:07 +0000 (UTC) Delivered-To: python@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A253099941E for ; Mon, 13 Jul 2015 12:09:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 81B311B1F for ; Mon, 13 Jul 2015 12:09:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id t6DC97fj051565 for ; Mon, 13 Jul 2015 12:09:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: maintainer-feedback requested: [Bug 201523] python2.7 on raspberry B, _ctypes libffi sysv.S 'invalid instruction' Date: Mon, 13 Jul 2015 12:09:07 +0000 X-Bugzilla-Type: request Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Jul 2015 12:09:07 -0000 ArnoB has reassigned Bugzilla Automation 's request for maintainer-feedback to python@FreeBSD.= org: Bug 201523: python2.7 on raspberry B, _ctypes libffi sysv.S 'invalid instruction' https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D201523 --- Description --- compiling lang/python27 fails to compile _ctypes.so due to a non existent assembly instruction: ... /usr/ports/lang/python27/work/Python-2.7.10/Modules/_ctypes/libffi/src/arm/= sysv .S:399:2: error: invalid instruction stmeqia r2, {r0, r1} ^ ... i found a similar report online: http://lists.freedesktop.org/archives/gstreamer-commits/2013-September/0745= 31.h tml so i replaced line 399: stmeqia r2, {r0, r1} with: stmiaeq r2, {r0, r1} and then it compiles fine. # diff sysv.S sysv.S.new=20 399c399 < stmeqia r2, {r0, r1} --- > stmiaeq r2, {r0, r1}=