Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Invalid
-
0.17.0
-
None
Description
I'm trying to run some Rust code that has a dependency on the Arrow 0.17 crates and the build fails as follows on a Raspberry Pi running Raspbian.
error[E0432]: unresolved import `crate::compute::util::simd_load_set_invalid`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/arrow-0.17.0/src/compute/kernels/arithmetic.rs:42:5
|
42 | use crate::compute::util::simd_load_set_invalid;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `simd_load_set_invalid` in `compute::util`
Linux version:
Linux raspberrypi 4.19.97-v7l+ #1294 SMP Thu Jan 30 13:21:14 GMT 2020 armv7l GNU/Linux
I tried declaring the dependency without default features, but it still hits that import and fails to compile.