From 33f8a82c02fa73ba57ac7422e4342839c0228913 Mon Sep 17 00:00:00 2001 From: jxv Date: Tue, 18 Nov 2014 09:24:11 -0800 Subject: [PATCH] librustrt: check for mips+linux config in stack_overflow --- 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 d01b4a3a4b34c..10a3efbca1001 100644 --- a/src/librustrt/stack_overflow.rs +++ b/src/librustrt/stack_overflow.rs @@ -283,6 +283,7 @@ mod imp { #[cfg(any(all(target_os = "linux", target_arch = "x86"), // may not match 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 target_os = "android"))] // may not match mod signal { use libc;