Searched full:rust_target (Results 1 – 7 of 7) sorted by relevance
68 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 -Append87 target: ${{ matrix.rust_target }}93 args: --target ${{ matrix.rust_target }} --manifest-path=Cargo.toml97 args: --target ${{ matrix.rust_target }} --manifest-path=Cargo.toml104 rust_target:124 rustup component add rust-src --toolchain nightly --target ${{ matrix.rust_target }}130 - 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)
142 $( $rust_target:ident {170 fn from(rust_target: RustTarget) -> Self {174 if rust_target >= RustTarget::$rust_target {
245 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() method628 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() localVariable1316 self.rust_target(rust_target) in unstable_rust()1845 rust_target: RustTarget, field1847 /// Features to enable, derived from `rust_target`1941 pub fn set_rust_target(&mut self, rust_target: RustTarget) { in set_rust_target()[all …]
524 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()
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"