[pypy-commit] pypy win64-stage1: Mission Accomplished

ctismer noreply at buildbot.pypy.org
Tue Nov 29 01:36:14 CET 2011


Author: Christian Tismer <tismer at stackless.com>
Branch: win64-stage1
Changeset: r49935:09f1440c631c
Date: 2011-11-29 01:35 +0100
http://bitbucket.org/pypy/pypy/changeset/09f1440c631c/

Log:	Mission Accomplished ===================== as suggested by Armin as
	a good step: 1. pypy/annotation/test pypy/rpython/test 2.
	pypy/translator/c/testtest_typed.py 3. translate.py
	targetrpystonedalone
	-------------------------------------------------------------------
	The output of 3. is still wrong, but the translated program works.
	Taking a break!

diff --git a/pypy/translator/c/src/main.h b/pypy/translator/c/src/main.h
--- a/pypy/translator/c/src/main.h
+++ b/pypy/translator/c/src/main.h
@@ -38,11 +38,14 @@
     pypy_asm_stack_bottom();
     instrument_setup();
 
+#ifndef MS_WINDOWS
+    /* this message does no longer apply to win64 :-) */
     if (sizeof(void*) != SIZEOF_LONG) {
         errmsg = "only support platforms where sizeof(void*) == sizeof(long),"
                  " for now";
         goto error;
     }
+#endif
 
 #ifdef MS_WINDOWS
     pypy_Windows_startup();


More information about the pypy-commit mailing list