Closed AxelMontini closed 2 years ago
I was getting this error too (here). I think this is related to num-traits adding num_traits::Float::copysign
in 0.2.15. I can work around this issue by pinning the num-traits
crate to 0.2.14 (from the current 0.2.15) with this in my Cargo.toml
:
num-traits = {version="=0.2.14", default-features=false}
So far I cannot reproduce the build failure with just simba nor can I fix it.
I forgot to close this, #34 got merged which fixed the problem.
I'm currently unable to build nalgebra on an embedded target (
thumbv6m-none-eabi
) due to simba failing to build.Dependencies in Cargo.toml:
Error:
I can get the crate to build by modifying the
impl_real!
macro call to useFloat
as$cpysgn_mod