who@feddit.org to Programming@programming.devEnglish · 12 days agoUnix Co-Creator Brian Kernighan on Rust, Distros and NixOSthenewstack.ioexternal-linkmessage-square26fedilinkarrow-up1130arrow-down14
arrow-up1126arrow-down1external-linkUnix Co-Creator Brian Kernighan on Rust, Distros and NixOSthenewstack.iowho@feddit.org to Programming@programming.devEnglish · 12 days agomessage-square26fedilink
minus-squareEphera@lemmy.mllinkfedilinkEnglisharrow-up7arrow-down1·12 days agoYeah, cargo build produces a debug build and cargo build --release is for actually distributing to users. (It doesn’t add the debug symbols, but also spends more time optimizing.)
Yeah,
cargo build
produces a debug build andcargo build --release
is for actually distributing to users. (It doesn’t add the debug symbols, but also spends more time optimizing.)