From 0aa12e79adbabfcc86fc09fbb6b2e8bebb96178f Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Tue, 23 Apr 2019 11:33:40 -0700 Subject: [PATCH] Detect s390x in rustup-init.sh --- rustup-init.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rustup-init.sh b/rustup-init.sh index 2eebc496b7..801da0b1ec 100755 --- a/rustup-init.sh +++ b/rustup-init.sh @@ -280,6 +280,10 @@ get_architecture() { _cputype=powerpc64le ;; + s390x) + _cputype=s390x + ;; + *) err "unknown CPU type: $_cputype"