[pypy-commit] pypy default: more debug; make sure PATH is found

mattip pypy.commits at gmail.com
Wed Jan 16 01:51:11 EST 2019


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r95645:3e4d7fa709ba
Date: 2019-01-16 08:50 +0200
http://bitbucket.org/pypy/pypy/changeset/3e4d7fa709ba/

Log:	more debug; make sure PATH is found

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
@@ -107,6 +107,8 @@
     for key, value in vcdict.items():
         if key.upper() in ['PATH', 'INCLUDE', 'LIB']:
             env[key.upper()] = value
+    if 'PATH' not in env:
+        log.msg('Did not find "PATH" in stdout\n%s' %(stdout))
     log.msg("Updated environment with vsver %d, using x64 %s" % (vsver, x64flag,))
     return env
 


More information about the pypy-commit mailing list