This repository has been archived on 2023-05-28. You can view files and clone it, but cannot push or open issues/pull-requests.
SkyHook-Native/setup-targets.sh

16 lines
395 B
Bash
Raw Permalink Normal View History

2022-11-03 19:22:12 +09:00
#!/bin/bash
# x86_64
rustup target add x86_64-unknown-linux-gnu
rustup target add x86_64-apple-darwin
rustup target add x86_64-pc-windows-gnu
# i686
rustup target add i686-unknown-linux-gnu
rustup target add i686-pc-windows-gnu
2022-11-03 23:51:14 +09:00
# ARM
rustup target add aarch64-apple-darwin
2022-11-03 19:22:12 +09:00
# sudo pacman -S mingw-w64-binutils mingw-w64-gcc mingw-w64-headers \
# clang gcc zlib libmpc mpfr gmp