From f839a1c60970feecac2ff0646adfbd5322010a28 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Thu, 10 Aug 2017 19:17:15 -0700 Subject: [PATCH] Add s390x to arches list Fixes #1226 --- src/rustup-dist/src/dist.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rustup-dist/src/dist.rs b/src/rustup-dist/src/dist.rs index 0049b8925c..fd9f671c9a 100644 --- a/src/rustup-dist/src/dist.rs +++ b/src/rustup-dist/src/dist.rs @@ -71,7 +71,8 @@ static LIST_ARCHS: &'static [&'static str] = &["i386", "mips64el", "powerpc", "powerpc64", - "powerpc64le"]; + "powerpc64le", + "s390x"]; static LIST_OSES: &'static [&'static str] = &["pc-windows", "unknown-linux", "apple-darwin",