Index: Makefile
===================================================================
--- Makefile (revision 373)
+++ Makefile (revision 374)
@@ -67,7 +67,7 @@
REQUIRES += libs/icu4c/73.1
REQUIRES += libs/dbus-glib/0.112
REQUIRES += media/libvpx/1.12.0
-REQUIRES += net/nss/3.93
+REQUIRES += net/nss/3.97
# ======= __END_OF_REQUIRES__ =======
@@ -193,18 +193,23 @@
# ------------
# $ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# $ source "$HOME/.cargo/env"
-# $ rustup update
-# $ mkdir $HOME/projects
-# $ ( cd $HOME/projects ; rustup override set stable )
#
# List available targets:
# ----------------------
# $ rustc --print target-list
#
+# Install toolchain and make them default:
+# ---------------------------------------
+#
+# $ rustup toolchain install 1.71.1
+# $ rustup default 1.71.1
+#
+# $ rustc --version
+# rustc 1.71.1 (eb26296b5 2023-08-03)
+#
# Add targets:
# -----------
# $ rustup target add arm-unknown-linux-gnueabihf
-# $ rustup target add armv7-unknown-linux-gnueabihf
# $ rustup target add aarch64-unknown-linux-gnu
# $ rustup target add mipsel-unknown-linux-gnu
# $ rustup target add powerpc-unknown-linux-gnu
@@ -215,6 +220,10 @@
# $ rustup target add i686-unknown-linux-gnu
# $ rustup target add x86_64-unknown-linux-gnu
#
+# $ cargo install cbindgen
+#
+
+#
# Rust Target Triplets:
# ====================
#
@@ -330,7 +339,7 @@
extra_environment += RUST_TARGET=$(rust-target)
extra_environment += CARGO='$(cargo-executable)'
-extra_environment += CARGO_EXTRA_FLAGS='+stable-$(rust-host)'
+extra_environment += CARGO_EXTRA_FLAGS='+1.71.1-$(rust-host)'
extra_environment += MOZ_CARGO_WRAP_HOST_LD='/usr/bin/g++'
extra_environment += MOZ_CARGO_WRAP_HOST_LD_CXX='/usr/bin/g++'