python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How should I resolve a "ld: library not found for -liconv" error when running "cargo build"?
After installing Rust and Cargo via the following command...
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
I ran cargo build on a tiny "Hello World" Rust project and got th...

ulysses_rex
Votes: 0
Answers: 2
How to compile lapack with rust
I am trying to use lapack with rust. Therefore I started with the example from the rust crates https://crates.io/crates/lapack
My Cargo.toml file looks like
enter [package]
name = "matmul"
v...
zodiac
Votes: 0
Answers: 1
How to setup default rust compilation target on CI using rustup command on github actions?
I need to compile my code for both 32 and 64 bit windows.
As far as I understand, I basically need to configure my CI so that this command:
rustup default
prints
stable-i686-pc-windows-msvc (defaul...

niedzwiedzwo
Votes: 0
Answers: 1
rust crate cc is creating unwanted directories
I have a custom build.rs file, which is supposed to download a c++ libary from github and build it. My build.rs file is seperated into three parts:
cloning the github repository
compiling all the fil...
Addi873
Votes: 0
Answers: 1