[pypy-svn] r18041 - pypy/dist/pypy/translator/goal

pedronis at codespeak.net pedronis at codespeak.net
Sat Oct 1 05:31:24 CEST 2005


Author: pedronis
Date: Sat Oct  1 05:31:23 2005
New Revision: 18041

Modified:
   pypy/dist/pypy/translator/goal/driver.py
Log:
oops, confusing between source/compile info message



Modified: pypy/dist/pypy/translator/goal/driver.py
==============================================================================
--- pypy/dist/pypy/translator/goal/driver.py	(original)
+++ pypy/dist/pypy/translator/goal/driver.py	Sat Oct  1 05:31:23 2005
@@ -179,6 +179,7 @@
 
         cbuilder = translator.cbuilder(standalone=standalone, gcpolicy=gcpolicy)
         c_source_filename = cbuilder.generate_source()
+        self.info("written: %s" % (c_source_filename,))
         self.cbuilder = cbuilder
     #
     task_source_c = taskdef(task_source_c, 
@@ -196,7 +197,7 @@
             newexename = mkexename('./'+'pypy-c')
             shutil.copy(exename, newexename)
             self.c_entryp = newexename
-            self.info("written: %s" % (self.c_entryp,))
+            self.info("created: %s" % (self.c_entryp,))
         else:
             cbuilder.import_module()    
             self.c_entryp = cbuilder.get_entry_point()



More information about the Pypy-commit mailing list