Home
last modified time | relevance | path

Searched full:rust_target (Results 1 – 24 of 24) sorted by relevance

/external/rust/crates/libloading/.github/workflows/
Dlibloading.yml40 rust_target:
44 - rust_target: x86_64-pc-windows-gnu
47 - rust_target: i686-pc-windows-gnu
54 - run: rustup target add ${{ matrix.rust_target }}
62 - run: cargo test --target ${{ matrix.rust_target }}
64 TARGET: ${{ matrix.rust_target}}
72 rust_target:
87 - run: rustup component add rust-src --toolchain nightly --target ${{ matrix.rust_target }}
88 - run: cargo build --target ${{ matrix.rust_target }} -Zbuild-std
96 rust_target:
[all …]
/external/mesa3d/.gitlab-ci/container/
Dcreate-cross-file.sh18 rust_target=aarch64-unknown-linux-gnu
20 rust_target=armv7-unknown-linux-gnueabihf
22 rust_target=i686-unknown-linux-gnu
24 rust_target=powerpc64le-unknown-linux-gnu
26 rust_target=s390x-unknown-linux-gnu
32 sed -i -e '/\[binaries\]/a\' -e "rust = ['rustc', '--target=$rust_target', '-C', 'linker=$cc']" "$c…
Dlava_build.sh96 RUST_TARGET="aarch64-unknown-linux-gnu"
98 RUST_TARGET="armv7-unknown-linux-gnueabihf"
100 rustup target add $RUST_TARGET
101 export EXTRA_CARGO_ARGS="--target $RUST_TARGET"
/external/crosvm/e2e_tests/guest_under_test/
DMakefile31 RUST_TARGET ?= $(ARCH)-unknown-linux-musl macro
89 rustup target add $(RUST_TARGET)
90 …CARGO_TARGET_DIR=$(TARGET) RUSTFLAGS=$(RUSTFLAGS) cargo build --target $(RUST_TARGET) --release --…
92 cp $(TARGET)/$(RUST_TARGET)/release/delegate $(TARGET)/rootfs-build/delegate
96 rustup target add $(RUST_TARGET)
97 …CARGO_TARGET_DIR=$(TARGET) RUSTFLAGS=$(RUSTFLAGS) cargo build --target $(RUST_TARGET) --release --…
99 cp $(TARGET)/$(RUST_TARGET)/release/readclock $(TARGET)/rootfs-build/readclock
/external/angle/build/rust/
Drust_unit_test.gni37 # in terms of rust_target in order to avoid the duplication of logic around
38 # features and editions. We don't do that because rust_target actually
40 # (and therefore depending on rust_target here would lead to an infinite
133 # Duplicated from rust_target since we didn't use the rust_executable
Drust_macro.gni6 import("//build/rust/rust_target.gni")
12 rust_target(target_name) {
Drust_shared_library.gni5 import("//build/rust/rust_target.gni")
14 rust_target(target_name) {
Drust_executable.gni5 import("//build/rust/rust_target.gni")
55 rust_target(target_name) {
Drust_static_library.gni5 import("//build/rust/rust_target.gni")
176 # simultaneously in 3 places: here, //build/rust/rust_target.gni,
214 rust_target(_target_name) {
Drust_target.gni26 # If you're using rust_target directly, you will also need to specify:
34 template("rust_target") {
Dcargo_crate.gni34 # All just as in rust_target.gni
/external/rust/crates/bindgen/
Dlib.rs529 let rust_target = self.rust_target; in build() localVariable
531 if rust_target <= RustTarget::Stable_1_30 { in build()
532 deprecated_target_diagnostic(rust_target, self); in build()
542 pub fn set_rust_target(&mut self, rust_target: RustTarget) { in set_rust_target()
543 self.rust_target = rust_target; in set_rust_target()
545 // Keep rust_features synced with rust_target in set_rust_target()
546 self.rust_features = rust_target.into(); in set_rust_target()
686 fn rust_to_clang_target(rust_target: &str) -> Box<str> { in rust_to_clang_target()
687 if rust_target.starts_with("aarch64-apple-") { in rust_to_clang_target()
690 .push_str(rust_target.strip_prefix("aarch64-apple-").unwrap()); in rust_to_clang_target()
[all …]
/external/cronet/build/rust/
Drust_unit_test.gni37 # in terms of rust_target in order to avoid the duplication of logic around
38 # features and editions. We don't do that because rust_target actually
40 # (and therefore depending on rust_target here would lead to an infinite
Drust_macro.gni6 import("//build/rust/rust_target.gni")
12 rust_target(target_name) {
Drust_shared_library.gni5 import("//build/rust/rust_target.gni")
14 rust_target(target_name) {
Drust_executable.gni5 import("//build/rust/rust_target.gni")
55 rust_target(target_name) {
Drust_static_library.gni5 import("//build/rust/rust_target.gni")
185 rust_target(_target_name) {
Drust_target.gni26 # If you're using rust_target directly, you will also need to specify:
34 template("rust_target") {
Dcargo_crate.gni34 # All just as in rust_target.gni
/external/rust/crates/bindgen-cli/
Doptions.rs286 rust_target: Option<RustTarget>, field
516 rust_target, in builder_from_flags()
598 if let Some(rust_target) = rust_target { in builder_from_flags()
599 builder = builder.rust_target(rust_target); in builder_from_flags()
/external/rust/crates/bindgen/options/
Dmod.rs1551 rust_target: RustTarget {
1556 pub fn rust_target(mut self, rust_target: RustTarget) -> Self {
1557 self.options.set_rust_target(rust_target);
1561 as_args: |rust_target, args| {
1563 args.push(rust_target.to_string());
1566 /// Features to be enabled. They are derived from `rust_target`.
1580 /// [`Builder::rust_target`].
/external/angle/build/rust/chromium_prelude/
Dimport_attribute.rs159 // simultaneously in 3 places: here, //build/rust/rust_target.gni, in escape_non_identifier_chars()
/external/cronet/testing/
Dtest.gni88 # internally-generated targets. However, rust_target requires a strict
/external/rust/crates/bindgen/codegen/
Dmod.rs4365 ctx.options().rust_target in unsupported_abi_diagnostic()