DEV Community

Discussion on: What Elm and Rust Teach us About the Future

Collapse
 
notriddle profile image
Michael "notriddle" Howell

About Rust with MSVC:

Rust's compiler backend is always LLVM. The only difference between the GNU and MSVC Rust compilers that you can download for Windows is the version of libc that your program is linked to, and which ABI they use for repr(C) structs and extern functions.

Collapse
 
martinmodrak profile image
Martin Modrák

Thanks for the note. I'll remove that sentence.