You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
459 B

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::*;