42
top 7 comments
sorted by: hot top controversial new old
[-] PriorProject@lemmy.world 7 points 1 year ago

I read the design notes and found them pretty interesting even though I haven't really been pining for a faster linker: https://github.com/rui314/mold/blob/main/docs/design.md

[-] fubo@lemmy.world 5 points 1 year ago

Parallelize all the things! 🧹

[-] verstra@programming.dev 3 points 1 year ago* (last edited 1 year ago)

Cool. Any idea how would i use this with rustc?

[-] AnarchoYeasty@beehaw.org 1 points 1 year ago

From their repo (https://github.com/rui314/mold#how-to-use)

Create .cargo/config.toml in your project directory with the following:

[target.x86_64-unknown-linux-gnu] linker = "clang" rustflags = ["-C", "link-arg=-fuse-ld=/path/to/mold"] where /path/to/mold is an absolute path to the mold executable. In the example above, we use clang as a linker driver since it always accepts the -fuse-ld option. If your GCC is recent enough to recognize the option, you may be able to remove the linker = "clang" line.

[target.x86_64-unknown-linux-gnu] rustflags = ["-C", "link-arg=-fuse-ld=/path/to/mold"] If you want to use mold for all projects, add the above snippet to ~/.cargo/config.toml

[-] Jamie@jamie.moe 3 points 1 year ago

I remember reading about Mold years ago and being impressed, even though most of my programs that I compile don't really benefit in any way. I appreciate that it kept going.

this post was submitted on 26 Jul 2023
42 points (95.7% liked)

Programming

17775 readers
303 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS