Skip to content

Commit

Permalink
initial perf counter support, fixes for Windows line endings
Browse files Browse the repository at this point in the history
  • Loading branch information
csgordon committed Jan 28, 2022
1 parent 81861cc commit f9451cc
Show file tree
Hide file tree
Showing 2 changed files with 171 additions and 57 deletions.
16 changes: 16 additions & 0 deletions package.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env pwsh

rustup target add x86_64-apple-darwin
rustup target add x86_64-pc-windows-gnu
rustup target add x86_64-unknown-linux-gnu
rustup target add x86_64-pc-windows-msvc

mkdir -p publish
cargo build
cp target/debug/ir441.exe publish/ir442-win-x64.exe
cross build --target x86_64-apple-darwin
cp target/x86_64-apple-darwin/debug/ir441 publish/ir441-macos-x64
cross build --target x86_64-unknown-linux-gnu
cp target/x86_64-unknown-linux-gnu/debug/ir441 publish/ir441-linux-x64
cross build --target x86_64-pc-windows-gnu
cp target/x86_64-pc-windows-gnu/debug/ir441.exe publish/ir441-cygwin-x64.exe
Loading

0 comments on commit f9451cc

Please sign in to comment.