[pypy-commit] pypy dj_s390: Add s390x z14 support to gcc command

djones6 pypy.commits at gmail.com
Thu May 16 02:28:57 EDT 2019


Author: DeVerne Jones <djones6 at unb.ca>
Branch: dj_s390
Changeset: r96624:df06edd62de5
Date: 2019-05-15 16:42 -0300
http://bitbucket.org/pypy/pypy/changeset/df06edd62de5/

Log:	Add s390x z14 support to gcc command

diff --git a/rpython/translator/platform/arch/s390x.py b/rpython/translator/platform/arch/s390x.py
old mode 100644
new mode 100755
--- 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