blob: cdb5b08e69a3552281445b1419127fefb34561bc [file] [log] [blame]
Index: ppv-lite86/src/lib.rs
===================================================================
--- ppv-lite86.orig/src/lib.rs
+++ ppv-lite86/src/lib.rs
@@ -5,6 +5,9 @@
// Machine (which is a ZST + Copy type), which can only by created unsafely or safely
// through feature detection (e.g. fn AVX2::try_get() -> Option<Machine>).
+// ANDROID: Use std to allow building as a dylib.
+extern crate std;
+
mod soft;
mod types;
pub use self::types::*;