Compiler Issue - link.exe Error During Build

Hello,
I've encountered an issue while trying to compile my Rust project on Windows 10 using Rust 1.79.0. The build process fails with an error related to link.exe. I've already updated to the latest stable Rust version and made sure all of my dependencies are correctly specified in Cargo.toml.

[package]
name = "rbf_network"
version = "0.1.0"
edition = "2021"

[dependencies]
ndarray = "0.15"
ndarray-linalg = "0.14"
rand = "0.8.5"

I've tried thoroughly cleaning and rebuilding the project, but the issue persists. I'm working with the RustRover IDE, and this problem seems to be more related to the compiler or the development environment rather than my Rust code.
Any guidance or help as to what could be causing this issue would be greatly appreciated.
Thank you in advance!

Well, it might be useful to know what is this error.


From a quick glance I can see that ndarray-linalg requires applications using it to enable exactly one of its backend features, but you're enabling none of them.

1 Like

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.