Author: David Schneider <david.schnei...@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
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to