Author: Armin Rigo <[email protected]> Branch: Changeset: r78629:1fcd70b936df Date: 2015-07-21 19:48 +0200 http://bitbucket.org/pypy/pypy/changeset/1fcd70b936df/
Log: Issue #2081: mips64 patch for stacklet 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 @@ -10,6 +10,8 @@ #include "switch_x86_gcc.h" /* gcc on X86 */ #elif defined(__GNUC__) && defined(__arm__) #include "switch_arm_gcc.h" /* gcc on arm */ +#elif defined(__GNUC__) && defined(__mips__) && defined(_ABI64) +#include "switch_mips64_gcc.h" /* gcc on mips64 */ #else #error "Unsupported platform!" #endif _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
