[pypy-svn] r19582 - pypy/dist/pypy/translator/c

arigo at codespeak.net arigo at codespeak.net
Sun Nov 6 17:39:22 CET 2005


Author: arigo
Date: Sun Nov  6 17:39:21 2005
New Revision: 19582

Modified:
   pypy/dist/pypy/translator/c/genc.py
Log:
Show progress while generating the C files.


Modified: pypy/dist/pypy/translator/c/genc.py
==============================================================================
--- pypy/dist/pypy/translator/c/genc.py	(original)
+++ pypy/dist/pypy/translator/c/genc.py	Sun Nov  6 17:39:21 2005
@@ -11,6 +11,7 @@
 from pypy.rpython.lltypesystem import lltype
 from pypy.tool.udir import udir
 from pypy.translator.locality.calltree import CallTree
+from pypy.translator.c.support import log
 
 class CBuilder(object):
     c_source_filename = None
@@ -236,6 +237,7 @@
         return self.namespace.uniquename(name[:-2]) + '.c'
 
     def makefile(self, name):
+        log.writing(name)
         filepath = self.path.join(name)
         if name.endswith('.c'):
             self.extrafiles.append(filepath)



More information about the Pypy-commit mailing list