diff options
author | Eric Le Bihan <eric.le.bihan.dev@free.fr> | 2018-08-08 10:45:59 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-08-09 10:38:32 +0200 |
commit | 831271b90101ae3961be9c547f15c245f7fd1a16 (patch) | |
tree | 8dfceabb6285dfc6247a4dd14cfc9886a0225930 /package/rust/rust.mk | |
parent | a878cdcf02876cda74c5b2ab019fb72ebf5651cb (diff) | |
download | buildroot-831271b90101ae3961be9c547f15c245f7fd1a16.tar.gz buildroot-831271b90101ae3961be9c547f15c245f7fd1a16.zip |
rust: bump version to 1.27.2
Bump version to 1.27.2 and force use of "stable" channel when configuring.
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/rust/rust.mk')
-rw-r--r-- | package/rust/rust.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/rust/rust.mk b/package/rust/rust.mk index 74df7d234a..541e49d43d 100644 --- a/package/rust/rust.mk +++ b/package/rust/rust.mk @@ -4,7 +4,7 @@ # ################################################################################ -RUST_VERSION = 1.27.1 +RUST_VERSION = 1.27.2 RUST_SOURCE = rustc-$(RUST_VERSION)-src.tar.xz RUST_SITE = https://static.rust-lang.org/dist RUST_LICENSE = Apache-2.0 or MIT @@ -61,6 +61,7 @@ define HOST_RUST_CONFIGURE_CMDS echo 'prefix = "$(HOST_DIR)"'; \ echo '[rust]'; \ echo 'use-jemalloc = $(HOST_RUST_JEMALLOC_ENABLED)'; \ + echo 'channel = "stable"'; \ echo '[target.$(RUSTC_TARGET_NAME)]'; \ echo 'cc = "$(TARGET_CROSS)gcc"'; \ echo $(HOST_RUST_JEMALLOC_CONF); \ |