-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial perf counter support, fixes for Windows line endings
- Loading branch information
Showing
2 changed files
with
171 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.