summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2020-12-02 19:05:02 -0600
committerMatthew Bauer <mjbauer95@gmail.com>2020-12-02 19:05:02 -0600
commitaddf9f4edeab8e8e2cb115dd98dc764cc1f19fcf (patch)
tree1ac24d1a92dbaa415976b3532d51389c2e9e7ef3 /scripts
parentb0de7b20160ba1910987c9165bc88689e6587c41 (diff)
Call it aarch64-darwin instead of arm64-darwin
gnu-config standardized on aarch64 for machine name so host_cpu part of $system will always be aarch64. That means system will be aarch64-darwin too. uname however could report either “aarch64” (if gnu coreutils) or “arm64” (if apple’s uname). We should support both for compatiblity here.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/install.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/install.in b/scripts/install.in
index 46d3817b9..9c8831d2b 100755
--- a/scripts/install.in
+++ b/scripts/install.in
@@ -45,7 +45,7 @@ case "$(uname -s).$(uname -m)" in
path=@tarballPath_x86_64-darwin@
system=x86_64-darwin
;;
- Darwin.arm64)
+ Darwin.arm64|Darwin.aarch64)
# check for Rosetta 2 support
if ! [ -d /Library/Apple/usr/libexec/oah ]; then
oops "Rosetta 2 is not installed on this ARM64 macOS machine. Run softwareupdate --install-rosetta then restart installation"
@@ -53,7 +53,7 @@ case "$(uname -s).$(uname -m)" in
hash=@binaryTarball_x86_64-darwin@
path=@tarballPath_x86_64-darwin@
- # eventually maybe: arm64-darwin
+ # eventually maybe: aarch64-darwin
system=x86_64-darwin
;;
*) oops "sorry, there is no binary distribution of Nix for your platform";;