[pypy-commit] pypy default: Issue #2112: [patch by david n.] properly detect arm on FreeBSD

arigo noreply at buildbot.pypy.org
Sat Aug 15 00:16:31 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r78991:9106028eee0f
Date: 2015-08-15 00:16 +0200
http://bitbucket.org/pypy/pypy/changeset/9106028eee0f/

Log:	Issue #2112: [patch by david n.] properly detect arm on FreeBSD

diff --git a/rpython/jit/backend/detect_cpu.py b/rpython/jit/backend/detect_cpu.py
--- a/rpython/jit/backend/detect_cpu.py
+++ b/rpython/jit/backend/detect_cpu.py
@@ -63,6 +63,7 @@
             'AMD64': MODEL_X86,    # win64
             'armv7l': MODEL_ARM,
             'armv6l': MODEL_ARM,
+            'arm': MODEL_ARM,      # freebsd
             }.get(mach)
 
     if result is None:


More information about the pypy-commit mailing list