Author: Matti Picus <matti.pi...@gmail.com> Branch: py3.5 Changeset: r95298:aea8f2fd3593 Date: 2018-11-11 00:50 -0800 http://bitbucket.org/pypy/pypy/changeset/aea8f2fd3593/
Log: merge heads diff --git a/rpython/translator/platform/windows.py b/rpython/translator/platform/windows.py --- a/rpython/translator/platform/windows.py +++ b/rpython/translator/platform/windows.py @@ -85,6 +85,9 @@ stdout, stderr = popen.communicate() if popen.wait() != 0: return None + if stdout[:5].lower() == 'error': + log.msg('Running "%s" errored: %s' %(vcvars, stdout.split()[0])) + return None except: return None _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit