[pypy-commit] pypy default: back-port df06edd62de5: Add s390x z14 support to gcc command

arigo pypy.commits at gmail.com
Thu May 16 03:42:14 EDT 2019


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r96626:d7d99b9b6d25
Date: 2019-05-16 09:41 +0200
http://bitbucket.org/pypy/pypy/changeset/d7d99b9b6d25/

Log:	back-port df06edd62de5: Add s390x z14 support to gcc command

diff --git a/rpython/translator/platform/arch/s390x.py b/rpython/translator/platform/arch/s390x.py
--- a/rpython/translator/platform/arch/s390x.py
+++ b/rpython/translator/platform/arch/s390x.py
@@ -88,6 +88,8 @@
         return "zEC12"
     if machine == 0x2964:
         return "z13"
+    if machine == 0x3907:  # gcc supports z14 as of 2019/05/08
+	    return "z14"
 
     # well all others are unsupported!
     return "unknown"


More information about the pypy-commit mailing list