[pypy-commit] pypy arm-stacklet: add arm to available platforms for selection

bivab noreply at buildbot.pypy.org
Wed May 22 10:17:01 CEST 2013


Author: David Schneider <david.schneider at picle.org>
Branch: arm-stacklet
Changeset: r64420:8cc441451529
Date: 2013-05-22 03:03 -0500
http://bitbucket.org/pypy/pypy/changeset/8cc441451529/

Log:	add arm to available platforms for selection

diff --git a/rpython/translator/c/src/stacklet/slp_platformselect.h b/rpython/translator/c/src/stacklet/slp_platformselect.h
--- a/rpython/translator/c/src/stacklet/slp_platformselect.h
+++ b/rpython/translator/c/src/stacklet/slp_platformselect.h
@@ -8,6 +8,8 @@
 #include "switch_x86_64_gcc.h" /* gcc on amd64 */
 #elif defined(__GNUC__) && defined(__i386__)
 #include "switch_x86_gcc.h" /* gcc on X86 */
+#elif defined(__GNUC__) && defined(__arm__)
+#include "switch_arm_gcc.h" /* gcc on arm */
 #else
 #error "Unsupported platform!"
 #endif


More information about the pypy-commit mailing list