From 0a7187c85b50ca66c62d7de7a5e167ac58359a3a Mon Sep 17 00:00:00 2001 From: pan93412 Date: Sat, 27 Aug 2022 16:18:26 +0000 Subject: [PATCH] pkg(rust-1.63.0): Added Rust 1.63.0 Following template from #503 to bump the Rust toolchain to the latest stable Signed-off-by: pan93412 --- packages/rust/1.63.0/build.sh | 5 +++++ packages/rust/1.63.0/compile | 6 ++++++ packages/rust/1.63.0/environment | 5 +++++ packages/rust/1.63.0/metadata.json | 7 +++++++ packages/rust/1.63.0/run | 4 ++++ packages/rust/1.63.0/test.rs | 7 +++++++ 6 files changed, 34 insertions(+) create mode 100755 packages/rust/1.63.0/build.sh create mode 100755 packages/rust/1.63.0/compile create mode 100755 packages/rust/1.63.0/environment create mode 100644 packages/rust/1.63.0/metadata.json create mode 100755 packages/rust/1.63.0/run create mode 100644 packages/rust/1.63.0/test.rs diff --git a/packages/rust/1.63.0/build.sh b/packages/rust/1.63.0/build.sh new file mode 100755 index 0000000..8ea9e92 --- /dev/null +++ b/packages/rust/1.63.0/build.sh @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +curl -OL "https://static.rust-lang.org/dist/rust-1.63.0-x86_64-unknown-linux-gnu.tar.gz" +tar xzvf rust-1.63.0-x86_64-unknown-linux-gnu.tar.gz +rm rust-1.63.0-x86_64-unknown-linux-gnu.tar.gz diff --git a/packages/rust/1.63.0/compile b/packages/rust/1.63.0/compile new file mode 100755 index 0000000..201318a --- /dev/null +++ b/packages/rust/1.63.0/compile @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +# https://stackoverflow.com/questions/38041331/rust-compiler-cant-find-crate-for-std +# Rust compiler needs to find the stdlib to link against +rustc -o binary -L ${RUST_INSTALL_LOC}/rustc/lib -L ${RUST_INSTALL_LOC}/rust-std-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib "$@" +chmod +x binary diff --git a/packages/rust/1.63.0/environment b/packages/rust/1.63.0/environment new file mode 100755 index 0000000..139787a --- /dev/null +++ b/packages/rust/1.63.0/environment @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +# Put 'export' statements here for environment variables +export PATH=$PWD/rust-1.63.0-x86_64-unknown-linux-gnu/rustc/bin/:$PATH +export RUST_INSTALL_LOC=$PWD/rust-1.63.0-x86_64-unknown-linux-gnu diff --git a/packages/rust/1.63.0/metadata.json b/packages/rust/1.63.0/metadata.json new file mode 100644 index 0000000..cfd11b3 --- /dev/null +++ b/packages/rust/1.63.0/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "rust", + "version": "1.63.0", + "aliases": [ + "rs" + ] +} diff --git a/packages/rust/1.63.0/run b/packages/rust/1.63.0/run new file mode 100755 index 0000000..d377dd9 --- /dev/null +++ b/packages/rust/1.63.0/run @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +shift +./binary "$@" diff --git a/packages/rust/1.63.0/test.rs b/packages/rust/1.63.0/test.rs new file mode 100644 index 0000000..52bfc22 --- /dev/null +++ b/packages/rust/1.63.0/test.rs @@ -0,0 +1,7 @@ +fn main() { + println!("OK"); + + // 1.63.0 features + use std::sync::Mutex; + const _M: Mutex<()> = Mutex::new(()); +}