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.yml68 rust_target:
77 if: startsWith(matrix.rust_target, 'i686')
80 if: startsWith(matrix.rust_target, 'x86_64')
82 run: echo "TARGET=${{ matrix.rust_target}}" | Out-File -FilePath $env:GITHUB_ENV -Append
87 target: ${{ matrix.rust_target }}
93 args: --target ${{ matrix.rust_target }} --manifest-path=Cargo.toml
97 args: --target ${{ matrix.rust_target }} --manifest-path=Cargo.toml
104 rust_target:
124 rustup component add rust-src --toolchain nightly --target ${{ matrix.rust_target }}
130 - 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.rs142 $( $rust_target:ident {
170 fn from(rust_target: RustTarget) -> Self {
174 if rust_target >= RustTarget::$rust_target {
Dlib.rs245 output_vector.push(self.options.rust_target.into()); in command_line_flags()
251 RustFeatures::from(self.options.rust_target).untagged_union in command_line_flags()
627 pub fn rust_target(mut self, rust_target: RustTarget) -> Self { in rust_target() method
628 self.options.set_rust_target(rust_target); in rust_target()
1309 #[deprecated(note = "please use `rust_target` instead")]
1311 let rust_target = if doit { in unstable_rust() localVariable
1316 self.rust_target(rust_target) in unstable_rust()
1845 rust_target: RustTarget, field
1847 /// Features to enable, derived from `rust_target`
1941 pub fn set_rust_target(&mut self, rust_target: RustTarget) { in set_rust_target()
[all …]
Doptions.rs524 builder = builder.rust_target(RustTarget::Nightly); in builder_from_flags()
532 if let Some(rust_target) = matches.value_of("rust-target") { in builder_from_flags()
533 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"