[pypy-dev] translationmodules option failing
pypy at pocketnix.org
pypy at pocketnix.org
Mon Apr 11 13:44:21 CEST 2011
Hi
just tried to bootstrap myself in the quickest way possible via the
--translationmodules option (cmdline below) and encountered an issue
with the md5 module which appears to be renamed _md5. the patch below
corrects this.
while there was an md5 directory present in my tree it only contained
untracked pyc files and as such i have also removed this
-------------------------------------
./translate.py -O jit --thread --make-jobs=9 ./targetpypystandalone.py
--translationmodules
-------------------------------------
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -39,7 +39,7 @@
translation_modules = default_modules.copy()
translation_modules.update(dict.fromkeys(
["fcntl", "rctime", "select", "signal", "_rawffi", "zlib",
- "struct", "md5", "cStringIO", "array"]))
+ "struct", "_md5", "cStringIO", "array"]))
-------------------------------------
More information about the Pypy-dev
mailing list