Skip to content

Commit

Permalink
Fixes to rust triplet target
Browse files Browse the repository at this point in the history
  • Loading branch information
sieniven committed Jul 26, 2023
1 parent 5652859 commit 0b4bdc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1013,8 +1013,8 @@ get_rust_triplet() {
x86_64-pc-linux-gnu) result=x86_64-unknown-linux-gnu;;
aarch64-linux-gnu|aarch64-unknown-linux-gnu) result=aarch64-unknown-linux-gnu;;
arm-linux-gnueabihf|arm-unknown-linux-gnueabihf) result=armv7-unknown-linux-gnueabihf;;
x86_64-apple-darwin) result=x86_64-apple-darwin;;
aarch64-apple-darwin) result=aarch64-apple-darwin;;
x86_64-apple-darwin*) result=x86_64-apple-darwin;;
aarch64-apple-darwin*) result=aarch64-apple-darwin;;
x86_64-w64-mingw32) result=x86_64-pc-windows-gnu;;
*) echo "error: unsupported triplet: ${triplet}"; exit 1;;
esac
Expand Down

0 comments on commit 0b4bdc6

Please sign in to comment.