fenhl / oottracker

A tracker for the Ocarina of Time Randomizer
10 stars 1 forks source link

Linux support #23

Open fenhl opened 2 years ago

fenhl commented 2 years ago

Would be nice to include a version of the GUI compiled for Linux in the releases. Needs the following addition to .cargo/config.toml:

[target.x86_64-unknown-linux-gnu]
rustflags = ["-C", "target-feature=+crt-static"]

Once the GUI runs, auto-tracking on Project64 (via Wine) and RetroArch should work for free. BizHawk runs on Linux but the N64 plugin doesn't work.

Open questions:

fenhl commented 1 year ago

Rather than using the +crt-static feature, which didn't work the last time I tried this, it might make sense to target x86_64-unknown-linux-musl.