Connect applications to schemes, filetypes, and more on macOS (more to come)
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix boi

+2 -7
+2 -7
.cargo/config.toml
··· 1 + # Cross-compile to Apple targets from Linux 1 2 [target.aarch64-apple-darwin] 2 3 rustflags = ["-C", "link-arg=-undefined", "-C", "link-arg=dynamic_lookup"] 3 4 4 5 [target.x86_64-apple-darwin] 5 6 rustflags = ["-C", "link-arg=-undefined", "-C", "link-arg=dynamic_lookup"] 6 7 7 - [target.x86_64-unknown-linux-musl] 8 - linker = "x86_64-linux-musl-gcc" 9 - 10 - [target.aarch64-unknown-linux-musl] 11 - linker = "aarch64-linux-musl-gcc" 12 - 8 + # Apple target overrides (for the final binary link) 13 9 [target.aarch64-apple-darwin.objc-sys] 14 10 rustc-link-lib = [] 15 11 ··· 24 20 25 21 [target.aarch64-unknown-linux-musl] 26 22 linker = "aarch64-linux-musl-gcc" 27 -