From d464580badce21a010fa791b56e9e498d05bc14a Mon Sep 17 00:00:00 2001 From: Kirby Linvill Date: Fri, 16 Oct 2020 13:01:40 -0400 Subject: [PATCH] Fix README with proper 32-bit build target --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 993c197..fe772d6 100644 --- a/README.md +++ b/README.md @@ -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. \ No newline at end of file