1Index: ppv-lite86/src/lib.rs 2=================================================================== 3--- ppv-lite86.orig/src/lib.rs 4+++ ppv-lite86/src/lib.rs 5@@ -5,6 +5,9 @@ 6 // Machine (which is a ZST + Copy type), which can only by created unsafely or safely 7 // through feature detection (e.g. fn AVX2::try_get() -> Option<Machine>). 8 9+// ANDROID: Use std to allow building as a dylib. 10+extern crate std; 11+ 12 mod soft; 13 mod types; 14 pub use self::types::*; 15