Skip to content

Commit a983f32

Browse files
committed
Add x86_64 android case in rustup-dist
1 parent 6c50d5a commit a983f32

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/rustup-dist/src/dist.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ impl TargetTriple {
166166
(_, b"armv8l") if cfg!(target_os = "android") => Some("armv7-linux-androideabi"),
167167
(_, b"aarch64") if cfg!(target_os = "android") => Some("aarch64-linux-android"),
168168
(_, 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"),
169170
(b"Linux", b"x86_64") => Some("x86_64-unknown-linux-gnu"),
170171
(b"Linux", b"i686") => Some("i686-unknown-linux-gnu"),
171172
(b"Linux", b"mips") => Some(TRIPLE_MIPS_UNKNOWN_LINUX_GNU),

0 commit comments

Comments
 (0)