Home
last modified time | relevance | path

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

/external/rust/crates/libloading/.github/workflows/
Dlibloading.yml59 rust_target:
68 if: startsWith(matrix.rust_target, 'i686')
71 if: startsWith(matrix.rust_target, 'x86_64')
73 run: echo "TARGET=${{ matrix.rust_target}}" | Out-File -FilePath $env:GITHUB_ENV -Append
78 target: ${{ matrix.rust_target }}
84 args: --target ${{ matrix.rust_target }} --manifest-path=Cargo.toml
88 args: --target ${{ matrix.rust_target }} --manifest-path=Cargo.toml
95 rust_target:
116 rustup component add rust-src --toolchain nightly --target ${{ matrix.rust_target }}
122 - name: Build ${{ matrix.rust_target }}
[all …]
/external/mesa3d/.gitlab-ci/
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
30 sed -i -e '/\[binaries\]/a\' -e "rust = ['rustc', '--target=$rust_target', '-C', 'linker=$cc']" "$c…
/external/crosvm/integration_tests/guest_under_test/
DMakefile33 RUST_TARGET ?= $(ARCH)-unknown-linux-musl macro
73 rustup target add $(RUST_TARGET)
75 $(RUSTFLAGS) --target $(RUST_TARGET)
/external/rust/crates/bindgen/src/
Dfeatures.rs146 $( $rust_target:ident {
174 fn from(rust_target: RustTarget) -> Self {
178 if rust_target >= RustTarget::$rust_target {
Dlib.rs246 output_vector.push(self.options.rust_target.into()); in command_line_flags()
252 RustFeatures::from(self.options.rust_target).untagged_union in command_line_flags()
651 pub fn rust_target(mut self, rust_target: RustTarget) -> Self { in rust_target() method
652 self.options.set_rust_target(rust_target); in rust_target()
1340 #[deprecated(note = "please use `rust_target` instead")]
1342 let rust_target = if doit { in unstable_rust() localVariable
1347 self.rust_target(rust_target) in unstable_rust()
1915 rust_target: RustTarget, field
1917 /// Features to enable, derived from `rust_target`
2022 pub fn set_rust_target(&mut self, rust_target: RustTarget) { in set_rust_target()
[all …]
Doptions.rs549 builder = builder.rust_target(RustTarget::Nightly); in builder_from_flags()
557 if let Some(rust_target) = matches.value_of("rust-target") { in builder_from_flags()
558 builder = builder.rust_target(RustTarget::from_str(rust_target)?); in builder_from_flags()
/external/mesa3d/.gitlab-ci/container/
Dlava_build.sh50 RUST_TARGET="aarch64-unknown-linux-gnu"
52 RUST_TARGET="armv7-unknown-linux-gnueabihf"
54 rustup target add $RUST_TARGET
55 export EXTRA_CARGO_ARGS="--target $RUST_TARGET"