[pypy-commit] pypy msvc14: add unsupported platform arg for cross-compilation

mattip pypy.commits at gmail.com
Mon Jan 29 12:59:34 EST 2018


Author: Matti Picus <matti.picus at gmail.com>
Branch: msvc14
Changeset: r93718:8a38c36ebdff
Date: 2018-01-29 19:58 +0200
http://bitbucket.org/pypy/pypy/changeset/8a38c36ebdff/

Log:	add unsupported platform arg for cross-compilation

diff --git a/get_externals.py b/get_externals.py
--- a/get_externals.py
+++ b/get_externals.py
@@ -50,6 +50,9 @@
     p.add_argument('-b', '--branch', default=host.externals_branch,
                    help='branch to check out',
                    )
+    p.add_argument('-p', '--platform', default=None,
+                   help='someday support cross-compilation, ignore for now',
+                   )
     return p.parse_args()
 
 


More information about the pypy-commit mailing list