Raw File
mozconfig.rust
# Options to enable rust in automation builds.

TOOLTOOL_DIR=${TOOLTOOL_DIR:-$topsrcdir}

# Tell configure to use the tooltool rustc.
RUSTC="$MOZ_FETCHES_DIR/rustc/bin/rustc"
CARGO="$MOZ_FETCHES_DIR/rustc/bin/cargo"
RUSTDOC="$MOZ_FETCHES_DIR/rustc/bin/rustdoc"
RUSTFMT="$MOZ_FETCHES_DIR/rustc/bin/rustfmt"
CBINDGEN="$MOZ_FETCHES_DIR/cbindgen/cbindgen"

ac_add_options --enable-rust-simd
back to top