this post was submitted on 30 Jul 2024
103 points (96.4% liked)

Rust

5771 readers
18 users here now

Welcome to the Rust community! This is a place to discuss about the Rust programming language.

Wormhole

!performance@programming.dev

Credits

  • The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] FizzyOrange@programming.dev 4 points 1 month ago (1 children)

It actually statically links the Rust standard library too. You can also avoid glibc by using musl with a one line change.

[โ€“] BatmanAoD@programming.dev 3 points 1 month ago

Oh, right, yes; of course it statically links the standard library. I was thinking of the fact that the standard lib is precompiled, but yes, it's statically linked.