[pypy-commit] pypy default: Temporarily revert 976baeae86ed, seems to break some stuff for obscure reasons

fijal noreply at buildbot.pypy.org
Sat Dec 17 15:27:34 CET 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r50617:e42742946b48
Date: 2011-12-17 16:27 +0200
http://bitbucket.org/pypy/pypy/changeset/e42742946b48/

Log:	Temporarily revert 976baeae86ed, seems to break some stuff for
	obscure reasons

diff --git a/pypy/tool/gcc_cache.py b/pypy/tool/gcc_cache.py
--- a/pypy/tool/gcc_cache.py
+++ b/pypy/tool/gcc_cache.py
@@ -11,9 +11,6 @@
     # Import 'platform' every time, the compiler may have been changed
     from pypy.translator.platform import platform
     cache_dir = cache_dir_root.join(cachename).ensure(dir=1)
-    c_files.extend([py.path.local(f) for f in eci.separate_module_files])
-    eci = ExternalCompilationInfo(**eci._copy_attributes())
-    eci.separate_module_files = ()
     filecontents = [c_file.read() for c_file in c_files]
     key = repr((filecontents, eci, platform.key()))
     hash = md5(key).hexdigest()


More information about the pypy-commit mailing list