Searched full:rust_target (Results 1 – 7 of 7) sorted by relevance
59 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 -Append78 target: ${{ matrix.rust_target }}84 args: --target ${{ matrix.rust_target }} --manifest-path=Cargo.toml88 args: --target ${{ matrix.rust_target }} --manifest-path=Cargo.toml95 rust_target:116 rustup component add rust-src --toolchain nightly --target ${{ matrix.rust_target }}122 - name: Build ${{ matrix.rust_target }}[all …]
18 rust_target=aarch64-unknown-linux-gnu20 rust_target=armv7-unknown-linux-gnueabihf22 rust_target=i686-unknown-linux-gnu24 rust_target=powerpc64le-unknown-linux-gnu26 rust_target=s390x-unknown-linux-gnu30 sed -i -e '/\[binaries\]/a\' -e "rust = ['rustc', '--target=$rust_target', '-C', 'linker=$cc']" "$c…
33 RUST_TARGET ?= $(ARCH)-unknown-linux-musl macro73 rustup target add $(RUST_TARGET)75 $(RUSTFLAGS) --target $(RUST_TARGET)
146 $( $rust_target:ident {174 fn from(rust_target: RustTarget) -> Self {178 if rust_target >= RustTarget::$rust_target {
246 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() method652 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() localVariable1347 self.rust_target(rust_target) in unstable_rust()1915 rust_target: RustTarget, field1917 /// Features to enable, derived from `rust_target`2022 pub fn set_rust_target(&mut self, rust_target: RustTarget) { in set_rust_target()[all …]
549 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()
50 RUST_TARGET="aarch64-unknown-linux-gnu"52 RUST_TARGET="armv7-unknown-linux-gnueabihf"54 rustup target add $RUST_TARGET55 export EXTRA_CARGO_ARGS="--target $RUST_TARGET"