93
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 02 Jun 2025
93 points (93.5% liked)
PC Gaming
11236 readers
363 users here now
For PC gaming news and discussion. PCGamingWiki
Rules:
- Be Respectful.
- No Spam or Porn.
- No Advertising.
- No Memes.
- No Tech Support.
- No questions about buying/building computers.
- No game suggestions, friend requests, surveys, or begging.
- No Let's Plays, streams, highlight reels/montages, random videos or shorts.
- No off-topic posts/comments, within reason.
- Use the original source, no clickbait titles, no duplicates. (Submissions should be from the original source if possible, unless from paywalled or non-english sources. If the title is clickbait or lacks context you may lightly edit the title.)
founded 2 years ago
MODERATORS
Non-gaming anecdote: Colleagues wanted to build a Rust application for different platforms. (Save for scripting languages, Rust has some of the nicest tooling around that.)
Building for Windows:
cross build --release --target=x86_64-pc-windows-gnu
Building for Linux:
cross build --release --target=x86_64-unknown-linux-gnu
Building for macOS:
Uh, you need some signing key or something like that? I believe, they had also concluded that you'd need to use a Mac to do the build, rather than being able to cross-compile from wherever.
In the end, they decided not to support macOS...