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!