[pypy-svn] r48950 - pypy/dist/pypy/translator/llvm

fijal at codespeak.net fijal at codespeak.net
Thu Nov 22 21:56:55 CET 2007


Author: fijal
Date: Thu Nov 22 21:56:55 2007
New Revision: 48950

Modified:
   pypy/dist/pypy/translator/llvm/externs2ll.py
Log:
Really tell what was wrong.


Modified: pypy/dist/pypy/translator/llvm/externs2ll.py
==============================================================================
--- pypy/dist/pypy/translator/llvm/externs2ll.py	(original)
+++ pypy/dist/pypy/translator/llvm/externs2ll.py	Thu Nov 22 21:56:55 2007
@@ -49,7 +49,7 @@
         include_path, includes, emit_llvm, plain, plain)
 
     if os.system(cmd) != 0:
-        raise Exception("Failed to run '%s'")
+        raise Exception("Failed to run '%s'" % cmd)
 
     llcode = open(plain + '.ll').read()
 



More information about the Pypy-commit mailing list