Hello, 2009/10/7 Jan Wedel <[email protected]>: > Ok, I tried to translate PyPy to Java using > > ./translate.py --backend=jvm targetpypystandalone.py > > But it tried to call the MS Compiler cl.exe which I don’t have. I’m > wondering why? This results in several errors (see below). > > What’s happening?
I'm afraid you will need a C compiler to translate pypy: the jvm backend starts with the C implementation of functions, and ultimately replaces system calls with java methods. If you have the mingw32 compiler installed (and in your PATH), you may try with the --cc=mingw32 option. -- Amaury Forgeot d'Arc _______________________________________________ [email protected] http://codespeak.net/mailman/listinfo/pypy-dev
