Skip to content

Commit 51cc0e3

Browse files
committed
Add x86_64-linux-android target
1 parent 416d6b7 commit 51cc0e3

File tree

8 files changed

+118
-3
lines changed

8 files changed

+118
-3
lines changed

configure

+2
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,7 @@ valopt i686-linux-android-ndk "" "i686-linux-android NDK standalone path"
479479
valopt arm-linux-androideabi-ndk "" "arm-linux-androideabi NDK standalone path"
480480
valopt armv7-linux-androideabi-ndk "" "armv7-linux-androideabi NDK standalone path"
481481
valopt aarch64-linux-android-ndk "" "aarch64-linux-android NDK standalone path"
482+
valopt x86_64-linux-android-ndk "" "x86_64-linux-android NDK standalone path"
482483
valopt nacl-cross-path "" "NaCl SDK path (Pepper Canary is recommended). Must be absolute!"
483484
valopt musl-root "/usr/local" "MUSL root installation directory (deprecated)"
484485
valopt musl-root-x86_64 "" "x86_64-unknown-linux-musl install directory"
@@ -746,6 +747,7 @@ putvar CFG_AARCH64_LINUX_ANDROID_NDK
746747
putvar CFG_ARM_LINUX_ANDROIDEABI_NDK
747748
putvar CFG_ARMV7_LINUX_ANDROIDEABI_NDK
748749
putvar CFG_I686_LINUX_ANDROID_NDK
750+
putvar CFG_X86_64_LINUX_ANDROID_NDK
749751
putvar CFG_NACL_CROSS_PATH
750752
putvar CFG_MANDIR
751753
putvar CFG_DOCDIR

src/bootstrap/config.rs

+6
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,12 @@ impl Config {
570570
.or_insert(Target::default());
571571
target.ndk = Some(parse_configure_path(value));
572572
}
573+
"CFG_X86_64_LINUX_ANDROID_NDK" if value.len() > 0 => {
574+
let target = "x86_64-linux-android".to_string();
575+
let target = self.target_config.entry(target)
576+
.or_insert(Target::default());
577+
target.ndk = Some(parse_configure_path(value));
578+
}
573579
"CFG_LOCAL_RUST_ROOT" if value.len() > 0 => {
574580
let path = parse_configure_path(value);
575581
self.rustc = Some(push_exe_path(path.clone(), &["bin", "rustc"]));

src/ci/docker/dist-android/Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,18 @@ RUN curl -o /usr/local/bin/sccache \
3636
chmod +x /usr/local/bin/sccache
3737

3838
ENV TARGETS=arm-linux-androideabi
39+
ENV TARGETS=$TARGETS,armv7-linux-androideabi
3940
ENV TARGETS=$TARGETS,i686-linux-android
4041
ENV TARGETS=$TARGETS,aarch64-linux-android
41-
ENV TARGETS=$TARGETS,armv7-linux-androideabi
42+
ENV TARGETS=$TARGETS,x86_64-linux-android
4243

4344
ENV RUST_CONFIGURE_ARGS \
4445
--target=$TARGETS \
4546
--enable-extended \
4647
--arm-linux-androideabi-ndk=/android/ndk-arm-9 \
4748
--armv7-linux-androideabi-ndk=/android/ndk-arm-9 \
4849
--i686-linux-android-ndk=/android/ndk-x86-9 \
49-
--aarch64-linux-android-ndk=/android/ndk-aarch64
50+
--aarch64-linux-android-ndk=/android/ndk-arm64-21 \
51+
--x86_64-linux-android-ndk=/android/ndk-x86_64-21
5052

5153
ENV SCRIPT python2.7 ../x.py dist --target $TARGETS

src/ci/docker/dist-android/install-ndk.sh

+7-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ bash android-ndk-r11c/build/tools/make-standalone-toolchain.sh \
2525
bash android-ndk-r11c/build/tools/make-standalone-toolchain.sh \
2626
--platform=android-21 \
2727
--toolchain=aarch64-linux-android-4.9 \
28-
--install-dir=/android/ndk-aarch64 \
28+
--install-dir=/android/ndk-arm64-21 \
2929
--ndk-dir=/android/android-ndk-r11c \
3030
--arch=arm64
3131
bash android-ndk-r11c/build/tools/make-standalone-toolchain.sh \
@@ -34,5 +34,11 @@ bash android-ndk-r11c/build/tools/make-standalone-toolchain.sh \
3434
--install-dir=/android/ndk-x86-9 \
3535
--ndk-dir=/android/android-ndk-r11c \
3636
--arch=x86
37+
bash android-ndk-r11c/build/tools/make-standalone-toolchain.sh \
38+
--platform=android-21 \
39+
--toolchain=x86_64-4.9 \
40+
--install-dir=/android/ndk-x86_64-21 \
41+
--ndk-dir=/android/android-ndk-r11c \
42+
--arch=x86_64
3743

3844
rm -rf ./android-ndk-r11c-linux-x86_64.zip ./android-ndk-r11c

src/librustc_back/target/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ supported_targets! {
162162
("sparc64-unknown-linux-gnu", sparc64_unknown_linux_gnu),
163163

164164
("i686-linux-android", i686_linux_android),
165+
("x86_64-linux-android", x86_64_linux_android),
165166
("arm-linux-androideabi", arm_linux_androideabi),
166167
("armv7-linux-androideabi", armv7_linux_androideabi),
167168
("aarch64-linux-android", aarch64_linux_android),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
use LinkerFlavor;
12+
use target::{Target, TargetResult};
13+
14+
pub fn target() -> TargetResult {
15+
let mut base = super::android_base::opts();
16+
base.cpu = "x86-64".to_string();
17+
// https://developer.android.com/ndk/guides/abis.html#86-64
18+
base.features = "+mmx,+sse,+sse2,+sse3,+ssse3,+sse4.1,+sse4.2,+popcnt".to_string();
19+
base.max_atomic_width = Some(64);
20+
base.pre_link_args.get_mut(&LinkerFlavor::Gcc).unwrap().push("-m64".to_string());
21+
22+
Ok(Target {
23+
llvm_target: "x86_64-linux-android".to_string(),
24+
target_endian: "little".to_string(),
25+
target_pointer_width: "64".to_string(),
26+
data_layout: "e-m:e-i64:64-f80:128-n8:16:32:64-S128".to_string(),
27+
arch: "x86_64".to_string(),
28+
target_os: "android".to_string(),
29+
target_env: "".to_string(),
30+
target_vendor: "unknown".to_string(),
31+
linker_flavor: LinkerFlavor::Gcc,
32+
options: base,
33+
})
34+
}

src/libstd/os/android/raw.rs

+63
Original file line numberDiff line numberDiff line change
@@ -165,3 +165,66 @@ mod arch {
165165
}
166166
}
167167

168+
#[cfg(target_arch = "x86_64")]
169+
mod arch {
170+
use os::raw::{c_uint, c_long, c_ulong};
171+
use os::unix::raw::{uid_t, gid_t};
172+
173+
#[stable(feature = "raw_ext", since = "1.1.0")]
174+
pub type dev_t = u64;
175+
#[stable(feature = "raw_ext", since = "1.1.0")]
176+
pub type mode_t = u32;
177+
178+
#[stable(feature = "raw_ext", since = "1.1.0")]
179+
pub type blkcnt_t = u64;
180+
#[stable(feature = "raw_ext", since = "1.1.0")]
181+
pub type blksize_t = u64;
182+
#[stable(feature = "raw_ext", since = "1.1.0")]
183+
pub type ino_t = u64;
184+
#[stable(feature = "raw_ext", since = "1.1.0")]
185+
pub type nlink_t = u32;
186+
#[stable(feature = "raw_ext", since = "1.1.0")]
187+
pub type off_t = u64;
188+
#[stable(feature = "raw_ext", since = "1.1.0")]
189+
pub type time_t = i64;
190+
191+
#[repr(C)]
192+
#[derive(Clone)]
193+
#[stable(feature = "raw_ext", since = "1.1.0")]
194+
pub struct stat {
195+
#[stable(feature = "raw_ext", since = "1.1.0")]
196+
pub st_dev: dev_t,
197+
#[stable(feature = "raw_ext", since = "1.1.0")]
198+
pub st_ino: ino_t,
199+
#[stable(feature = "raw_ext", since = "1.1.0")]
200+
pub st_nlink: c_ulong,
201+
#[stable(feature = "raw_ext", since = "1.1.0")]
202+
pub st_mode: c_uint,
203+
#[stable(feature = "raw_ext", since = "1.1.0")]
204+
pub st_uid: uid_t,
205+
#[stable(feature = "raw_ext", since = "1.1.0")]
206+
pub st_gid: gid_t,
207+
#[stable(feature = "raw_ext", since = "1.1.0")]
208+
pub st_rdev: dev_t,
209+
#[stable(feature = "raw_ext", since = "1.1.0")]
210+
pub st_size: i64,
211+
#[stable(feature = "raw_ext", since = "1.1.0")]
212+
pub st_blksize: c_long,
213+
#[stable(feature = "raw_ext", since = "1.1.0")]
214+
pub st_blocks: c_long,
215+
#[stable(feature = "raw_ext", since = "1.1.0")]
216+
pub st_atime: c_ulong,
217+
#[stable(feature = "raw_ext", since = "1.1.0")]
218+
pub st_atime_nsec: c_ulong,
219+
#[stable(feature = "raw_ext", since = "1.1.0")]
220+
pub st_mtime: c_ulong,
221+
#[stable(feature = "raw_ext", since = "1.1.0")]
222+
pub st_mtime_nsec: c_ulong,
223+
#[stable(feature = "raw_ext", since = "1.1.0")]
224+
pub st_ctime: c_ulong,
225+
#[stable(feature = "raw_ext", since = "1.1.0")]
226+
pub st_ctime_nsec: c_ulong,
227+
__unused: [c_long; 3],
228+
}
229+
}
230+

src/tools/build-manifest/src/main.rs

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ static TARGETS: &'static [&'static str] = &[
8181
"s390x-unknown-linux-gnu",
8282
"sparc64-unknown-linux-gnu",
8383
"wasm32-unknown-emscripten",
84+
"x86_64-linux-android",
8485
"x86_64-apple-darwin",
8586
"x86_64-apple-ios",
8687
"x86_64-pc-windows-gnu",

0 commit comments

Comments
 (0)