We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c50d5a commit a983f32Copy full SHA for a983f32
src/rustup-dist/src/dist.rs
@@ -166,6 +166,7 @@ impl TargetTriple {
166
(_, b"armv8l") if cfg!(target_os = "android") => Some("armv7-linux-androideabi"),
167
(_, b"aarch64") if cfg!(target_os = "android") => Some("aarch64-linux-android"),
168
(_, b"i686") if cfg!(target_os = "android") => Some("i686-linux-android"),
169
+ (_, b"x86_64") if cfg!(target_os = "android") => Some("x86_64-linux-android"),
170
(b"Linux", b"x86_64") => Some("x86_64-unknown-linux-gnu"),
171
(b"Linux", b"i686") => Some("i686-unknown-linux-gnu"),
172
(b"Linux", b"mips") => Some(TRIPLE_MIPS_UNKNOWN_LINUX_GNU),
0 commit comments