Skip to content

Commit

Permalink
Fix README with proper 32-bit build target
Browse files Browse the repository at this point in the history
  • Loading branch information
klinvill committed Oct 16, 2020
1 parent 6916e8e commit d464580
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@ The program has three different modes that it can run in:
You can build the executable yourself instead of using the release binaries. This can be done using Rust's package
manager Cargo. `cargo build --release` will build the binary in release mode (which compiles with optimizations). If
you want to build an executable for a different platform, you can use cargo build's `--target` flag to specify the
target. For this assignment, I used the `x86_64-unknown-linux-musl` target. This target results in a statically linked
linux binary that "just works"™ on linux systems.
target. For this assignment, I used the `i686-unknown-linux-musl` target. This target results in a statically linked
32-bit linux binary that "just works"™ on linux systems.

0 comments on commit d464580

Please sign in to comment.