blob: 1e04554ed2d8cc01bd69a75abe421c5b2ac2993c [file] [log] [blame]
---
src/lib.rs | 3 +++
1 file changed, 3 insertions(+)
diff --git b/src/lib.rs a/src/lib.rs
index 638552fc..1bc27e06 100644
--- b/src/lib.rs
+++ a/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::*;