Searched full:rust_target (Results 1 – 15 of 15) sorted by relevance
40 rust_target:44 - rust_target: x86_64-pc-windows-gnu47 - rust_target: i686-pc-windows-gnu54 - 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-std96 rust_target:[all …]
56 if [ -z "${RUST_TARGET:-}" ]; then57 RUST_TARGET=""60 if [[ "$RUST_TARGET" != *-android ]]; then65 if [ "$RUST_TARGET" = "armv7-unknown-linux-gnueabihf" ]; then80 rustup target add $RUST_TARGET81 RUSTFLAGS='-C target-feature=+crt-static' cargo ndk --target $RUST_TARGET build --release83 mv target/$RUST_TARGET/release/deqp-runner /deqp-runner
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-gnu32 sed -i -e '/\[binaries\]/a\' -e "rust = ['rustc', '--target=$rust_target', '-C', 'linker=$cc']" "$c…
122 RUST_TARGET="aarch64-unknown-linux-gnu"124 RUST_TARGET="armv7-unknown-linux-gnueabihf"126 rustup target add $RUST_TARGET127 export EXTRA_CARGO_ARGS="--target $RUST_TARGET"
316 let rust_target = ctx.options().rust_target; in float_expr() localVariable319 let tokens = if rust_target >= RustTarget::Stable_1_43 { in float_expr()333 if rust_target >= RustTarget::Stable_1_43 { in float_expr()344 if rust_target >= RustTarget::Stable_1_43 { in float_expr()
81 if [ ! -z "$RUST_TARGET" ]; then82 args+=" --target $RUST_TARGET"
528 let rust_target = self.rust_target; in build() localVariable530 if rust_target <= RustTarget::Stable_1_30 { in build()531 deprecated_target_diagnostic(rust_target, self); in build()541 pub fn set_rust_target(&mut self, rust_target: RustTarget) { in set_rust_target()542 self.rust_target = rust_target; in set_rust_target()544 // Keep rust_features synced with rust_target in set_rust_target()545 self.rust_features = rust_target.into(); in set_rust_target()666 fn rust_to_clang_target(rust_target: &str) -> Box<str> { in rust_to_clang_target()669 let mut clang_target = rust_target.to_owned(); in rust_to_clang_target()
38 * [`bindgen::Builder::rust_target()`](https://docs.rs/bindgen/latest/bindgen/struct.Builder.html#me…
292 rust_target: Option<RustTarget>, field532 rust_target, in builder_from_flags()607 if let Some(rust_target) = rust_target { in builder_from_flags()608 builder = builder.rust_target(rust_target); in builder_from_flags()
70 .rust_target(RustTarget::Stable_1_47) in run()115 .rust_target(RustTarget::Stable_1_47) in run_boringssl()
52 export RUST_TARGET=x86_64-linux-android
62 CARGO_OUT_DIR = "${CARGO_TARGET_DIR}/${RUST_TARGET}/release"
1597 rust_target: RustTarget {1602 pub fn rust_target(mut self, rust_target: RustTarget) -> Self {1603 self.options.set_rust_target(rust_target);1607 as_args: |rust_target, args| {1609 args.push(rust_target.to_string());1612 /// Features to be enabled. They are derived from `rust_target`.1626 /// [`Builder::rust_target`].
205 RUST_TARGET: ${{matrix.target.rust}}
1667 .rust_target(bindgen::RustTarget::Stable_1_19)1668 // or `.rust_target(bindgen::RustTarget::Nightly)` to use unstable features1729 `bindgen::Builder::rust_target`/`--rust-target` instead. [#832][]