From 8c07db5aac1bf87bce734d34b2c63a0890e02bd4 Mon Sep 17 00:00:00 2001 From: Liigo Zhuang Date: Tue, 25 Nov 2014 19:16:08 +0800 Subject: [PATCH] librustrt: stack_overflow support mipsel linux --- src/librustrt/stack_overflow.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/librustrt/stack_overflow.rs b/src/librustrt/stack_overflow.rs index 19348449680..05f9f6287c4 100644 --- a/src/librustrt/stack_overflow.rs +++ b/src/librustrt/stack_overflow.rs @@ -277,6 +277,7 @@ pub unsafe fn drop_handler(handler: &mut Handler) { all(target_os = "linux", target_arch = "x86_64"), all(target_os = "linux", target_arch = "arm"), // may not match all(target_os = "linux", target_arch = "mips"), // may not match + all(target_os = "linux", target_arch = "mipsel"), // may not match target_os = "android"))] // may not match mod signal { use libc;