Does it build?

This website builds every rustc target on many nightlies to check which ones work and which ones do not.

Core Build

Builds every target with:

cargo build --release -Zbuild-std=core

This checks that codegen/linking of core works, but does not check whether std builds.

loading...

Std Check Build

Builds every target with:

cargo miri setup

This checks that std builds (on targets that have it) but does not check whether codegen/linking works.

loading...