-
-
Notifications
You must be signed in to change notification settings - Fork 352
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Building from source on Windows #157
Comments
The first problem: This seems like an issue with the Rust installation process in general, at https://www.rust-lang.org/tools/install. I actually don't see the Windows instructions here; I'll try spoofing my user agent and pretend to be a windows machine in a minute. The second problem: Just made this easier with 6919c24. Before, you had to ensure that |
The first problem: As mentioned above this fixed it
The second problem: Thanks for making this easier. And I double-checked and no matter what directory I'm doing this from I get the error. Also |
Ah, I understand now; Windows has a different syntax for setting env variables. Thanks! I'll fix the docs. |
Thanks for fixing this. |
Seems like the Developer guide is missing info for Windows.
When running
cargo run --bin updater.
I got this error:Installing Visual Studio 2019 worked for me.
Then running the game
cd game; RUST_BACKTRACE=1 cargo run --release
I got:Das System kann den angegebenen Pfad nicht finden.
German for: System can't find path.Doing this on Windows instead worked for me:
cd game && set RUST_BACKTRACE=1 && cargo run --release
The text was updated successfully, but these errors were encountered: