Author: Matti Picus <[email protected]>
Branch: throw-away
Changeset: r93842:b11531b4a8a8
Date: 2018-02-20 20:06 -0500
http://bitbucket.org/pypy/pypy/changeset/b11531b4a8a8/

Log:    print the path used by mt.exe

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
@@ -282,7 +282,8 @@
             try:
                 self._execute_c_compiler('mt.exe', args, exe_name)
             except EnvironmentError:
-                print '\n'.join(os.environ['PATH'].split(';'))
+                print '\n'.join(self.c_environ['PATH'].split(';'))
+                raise
 
         return exe_name
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to