Skip to content

Instantly share code, notes, and snippets.

View TheBinitGhimire's full-sized avatar
🏠
Working from home

Binit Ghimire TheBinitGhimire

🏠
Working from home
View GitHub Profile
@briansmith
briansmith / install-rust-aarch64-apple-darwin.sh
Created November 20, 2020 22:51
Bootstrap a working native aarch64-apple-darwin Rust toolchain
#!/bin/bash
# "Bash Strict Mode with logging"
set -eux -o pipefail
IFS=$'\n\t'
case $(uname -p) in
arm)
;;
*)