Closed Kerollmops closed 9 months ago
can you try again with this stuff removed from the .cargo/config.toml
# NOTE: you must install [Mach-O LLD Port](https://lld.llvm.org/MachO/index.html) on mac. you can easily do this by installing llvm which includes lld with the "brew" package manager:
# `brew install llvm`
[target.x86_64-apple-darwin]
rustflags = [
"-C",
"link-arg=-fuse-ld=/usr/local/opt/llvm/bin/ld64.lld",
"-Zshare-generics=y",
]
[target.aarch64-apple-darwin]
rustflags = [
"-C",
"link-arg=-fuse-ld=/opt/homebrew/opt/llvm/bin/ld64.lld",
"-Zshare-generics=y",
]
I suspect there are special dependencies for the M1/2 arch that you may not have installed as these seem to be linker issues.
You should probably do a cargo clean
after removing them.
If this fixes it i'll probs remove these from the fast builds config (as I've not a mac to test them on it's difficult :( )
@Kerollmops any luck?
Cannot run the "might" example when running it with
cargo run --example might
.