Skip to content

Commit

Permalink
Add building binaries notes
Browse files Browse the repository at this point in the history
  • Loading branch information
kosinix committed Jan 10, 2017
1 parent 574d92b commit 17b7705
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion dev/notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,22 @@ cargo doc --no-deps --open

# Publishing

run: cargo publish
run: cargo publish

# Build Binaries

## 32 bit win
rustup target add i686-pc-windows-msvc
cargo build --target=i686-pc-windows-msvc

## 64 bit win
rustup target add x86_64-pc-windows-msvc
cargo build --target=x86_64-pc-windows-msvc

## 32 bit linux standalone
rustup target add i686-unknown-linux-musl
cargo build --target=i686-unknown-linux-musl

## 64 bit linux standalone
rustup target add x86_64-unknown-linux-musl
cargo build --target=x86_64-unknown-linux-musl

0 comments on commit 17b7705

Please sign in to comment.