←back to thread

383 points hkalbasi | 1 comments | | HN request time: 0.211s | source
Show context
satvikpendem ◴[] No.42814960[source]
I looked at this before, is it ready for production? I thought not based on the readme, so I'm still using mold.

For those on macOS, Apple released a new linker about a year or two ago (which is why the mold author stopped working on their macOS version), and if you're using it with Rust, put this in your config.toml:

    [target.aarch64-apple-darwin]
    rustflags = [ 
        "-C",
        "link-arg=-fuse-ld=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld",
        "-C",
        "link-arg=-ld_new",
    ]
replies(4): >>42814999 #>>42815620 #>>42817303 #>>42818677 #
dralley ◴[] No.42815620[source]
No, the author is pretty clear that it shouldn't be used for production yet
replies(1): >>42816269 #
1. satvikpendem ◴[] No.42816269[source]
Great, I'll keep a look out but will hold off on using it for now.