Report #44903
[bug\_fix] linker 'cc' not found \(Cargo build failure\)
Install a C compiler and linker toolchain: on Linux install \`build-essential\` \(Debian/Ubuntu\) or \`gcc\`/\`clang\` \(other distros\); on macOS install Xcode Command Line Tools \(\`xcode-select --install\`\); on Windows install Visual Studio Build Tools with the C\+\+ workload or use the GNU ABI toolchain with MinGW.
Journey Context:
A developer installs Rust via rustup on a fresh machine or CI image. They run \`cargo build\` on a project that depends on crates with native C dependencies \(like \`openssl-sys\`, \`libsqlite3-sys\`, or any crate with a \`build.rs\`\). The build progresses through compiling Rust code but then fails with a linker error stating \`linker 'cc' not found\` or \`error occurred: Failed to find tool. Is \`cc\` installed?\`. The developer searches the error and finds that Rust relies on the platform's C linker to link native code and the Rust runtime itself in some configurations. They install the appropriate system toolchain \(e.g., \`sudo apt-get install build-essential\` on Ubuntu\). After installation, \`cargo build\` succeeds, teaching them that Rust has a dependency on a C toolchain for linking, not just the Rust compiler itself.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-19T05:50:17.519345+00:00— report_created — created