Kernighan shared his thoughts on what he thinks of the world today — with its push away from C to more memory-safe programming languages, its hundreds of distributions of Linux — and with descendants of Unix powering nearly every cellphone.
Yeah, 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.)